base.po 311 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461
  1. msgid ""
  2. msgstr ""
  3. "PO-Revision-Date: 2021-06-01 13:26+0000\n"
  4. "Last-Translator: Kalin Iliev <kalin.t.iliev@gmail.com>\n"
  5. "Language-Team: Bulgarian <https://hosted.weblate.org/projects/openwrt/luci/"
  6. "bg/>\n"
  7. "Language: bg\n"
  8. "Content-Type: text/plain; charset=UTF-8\n"
  9. "Content-Transfer-Encoding: 8bit\n"
  10. "Plural-Forms: nplurals=2; plural=n != 1;\n"
  11. "X-Generator: Weblate 4.7-dev\n"
  12. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1480
  13. msgid "%.1f dB"
  14. msgstr "%.1f dB"
  15. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:117
  16. msgid "%d Bit"
  17. msgstr "%d Бита"
  18. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3710
  19. msgid "%d invalid field(s)"
  20. msgstr "%d невалидни полета"
  21. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:35
  22. msgid "%s is untagged in multiple VLANs!"
  23. msgstr ""
  24. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:294
  25. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:403
  26. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:270
  27. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:307
  28. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:325
  29. msgid "(%d minute window, %d second interval)"
  30. msgstr ""
  31. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:118
  32. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:124
  33. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:258
  34. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:282
  35. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:88
  36. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:91
  37. msgid "(empty)"
  38. msgstr ""
  39. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:351
  40. #: modules/luci-compat/luasrc/view/cbi/network_netinfo.htm:23
  41. #: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:58
  42. msgid "(no interfaces attached)"
  43. msgstr ""
  44. #: modules/luci-compat/luasrc/view/cbi/ucisection.htm:48
  45. msgid "-- Additional Field --"
  46. msgstr ""
  47. #: modules/luci-base/htdocs/luci-static/resources/cbi.js:275
  48. #: modules/luci-base/htdocs/luci-static/resources/form.js:3397
  49. #: modules/luci-base/htdocs/luci-static/resources/form.js:3763
  50. #: modules/luci-base/htdocs/luci-static/resources/ui.js:784
  51. #: modules/luci-base/htdocs/luci-static/resources/ui.js:1022
  52. #: modules/luci-base/htdocs/luci-static/resources/ui.js:1993
  53. #: modules/luci-compat/luasrc/view/cbi/header.htm:8
  54. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:89
  55. msgid "-- Please choose --"
  56. msgstr ""
  57. #: modules/luci-base/htdocs/luci-static/resources/cbi.js:276
  58. #: modules/luci-base/htdocs/luci-static/resources/ui.js:1023
  59. #: modules/luci-base/htdocs/luci-static/resources/ui.js:1994
  60. #: modules/luci-compat/luasrc/view/cbi/header.htm:9
  61. msgid "-- custom --"
  62. msgstr ""
  63. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:270
  64. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:379
  65. msgid "-- match by label --"
  66. msgstr ""
  67. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:256
  68. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:362
  69. msgid "-- match by uuid --"
  70. msgstr ""
  71. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:27
  72. #: modules/luci-compat/luasrc/view/cbi/network_ifacelist.htm:44
  73. #: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:23
  74. msgid "-- please select --"
  75. msgstr ""
  76. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:55
  77. msgctxt "sstp log level value"
  78. msgid "0"
  79. msgstr ""
  80. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:969
  81. msgid "0 = not using RSSI threshold, 1 = do not change driver default"
  82. msgstr ""
  83. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:56
  84. msgctxt "sstp log level value"
  85. msgid "1"
  86. msgstr ""
  87. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:231
  88. msgid "1 Minute Load:"
  89. msgstr ""
  90. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:251
  91. msgid "15 Minute Load:"
  92. msgstr ""
  93. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:57
  94. msgctxt "sstp log level value"
  95. msgid "2"
  96. msgstr ""
  97. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:58
  98. msgctxt "sstp log level value"
  99. msgid "3"
  100. msgstr ""
  101. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:59
  102. msgctxt "sstp log level value"
  103. msgid "4"
  104. msgstr ""
  105. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1481
  106. msgid "4-character hexadecimal ID"
  107. msgstr ""
  108. #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:18
  109. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:11
  110. msgid "464XLAT (CLAT)"
  111. msgstr "464XLAT (CLAT)"
  112. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:241
  113. msgid "5 Minute Load:"
  114. msgstr ""
  115. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1510
  116. msgid "6-octet identifier as a hex string - no colons"
  117. msgstr ""
  118. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1470
  119. msgid "802.11r Fast Transition"
  120. msgstr ""
  121. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1657
  122. msgid "802.11w Association SA Query maximum timeout"
  123. msgstr ""
  124. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1664
  125. msgid "802.11w Association SA Query retry timeout"
  126. msgstr ""
  127. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1645
  128. msgid "802.11w Management Frame Protection"
  129. msgstr ""
  130. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1657
  131. msgid "802.11w maximum timeout"
  132. msgstr ""
  133. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1664
  134. msgid "802.11w retry timeout"
  135. msgstr ""
  136. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:986
  137. msgid "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>"
  138. msgstr "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>"
  139. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:326
  140. msgid "<abbr title=\"Domain Name System\">DNS</abbr> query port"
  141. msgstr ""
  142. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:317
  143. msgid "<abbr title=\"Domain Name System\">DNS</abbr> server port"
  144. msgstr ""
  145. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:260
  146. msgid ""
  147. "<abbr title=\"Domain Name System\">DNS</abbr> servers will be queried in the "
  148. "order of the resolvfile"
  149. msgstr ""
  150. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:975
  151. msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>"
  152. msgstr "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>"
  153. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:495
  154. msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Address"
  155. msgstr ""
  156. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:42
  157. msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Gateway"
  158. msgstr ""
  159. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:679
  160. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:36
  161. msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Netmask"
  162. msgstr ""
  163. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:31
  164. msgid ""
  165. "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Address or Network "
  166. "(CIDR)"
  167. msgstr ""
  168. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:42
  169. msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Gateway"
  170. msgstr ""
  171. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:531
  172. msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Suffix (hex)"
  173. msgstr ""
  174. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:58
  175. msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Configuration"
  176. msgstr ""
  177. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:69
  178. msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Name"
  179. msgstr ""
  180. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:431
  181. msgid "<abbr title=\"Media Access Control\">MAC</abbr>-Address"
  182. msgstr ""
  183. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:885
  184. msgid "<abbr title=\"Neighbour Discovery Protocol\">NDP</abbr>-Proxy"
  185. msgstr ""
  186. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:779
  187. msgid "<abbr title=\"Router Advertisement\">RA</abbr> Flags"
  188. msgstr ""
  189. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:837
  190. msgid "<abbr title=\"Router Advertisement\">RA</abbr> Hop Limit"
  191. msgstr ""
  192. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:813
  193. msgid "<abbr title=\"Router Advertisement\">RA</abbr> Lifetime"
  194. msgstr ""
  195. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:820
  196. msgid "<abbr title=\"Router Advertisement\">RA</abbr> MTU"
  197. msgstr ""
  198. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:751
  199. msgid "<abbr title=\"Router Advertisement\">RA</abbr>-Service"
  200. msgstr ""
  201. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:525
  202. msgid "<abbr title=\"The DHCP Unique Identifier\">DUID</abbr>"
  203. msgstr "<abbr title=\"The DHCP Unique Identifier\">DUID</abbr>"
  204. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:335
  205. msgid ""
  206. "<abbr title=\"maximal\">Max.</abbr> <abbr title=\"Dynamic Host Configuration "
  207. "Protocol\">DHCP</abbr> leases"
  208. msgstr ""
  209. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:344
  210. msgid ""
  211. "<abbr title=\"maximal\">Max.</abbr> <abbr title=\"Extension Mechanisms for "
  212. "Domain Name System\">EDNS0</abbr> packet size"
  213. msgstr ""
  214. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:353
  215. msgid "<abbr title=\"maximal\">Max.</abbr> concurrent queries"
  216. msgstr ""
  217. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/crontab.js:29
  218. msgid ""
  219. "<br/>Note: you need to manually restart the cron service if the crontab file "
  220. "was empty before editing."
  221. msgstr ""
  222. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:420
  223. msgid "A configuration for the device \"%s\" already exists"
  224. msgstr ""
  225. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2739
  226. msgid "A directory with the same name already exists."
  227. msgstr ""
  228. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2671
  229. msgid "A new login is required since the authentication session expired."
  230. msgstr ""
  231. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1460
  232. msgid "A43C + J43 + A43"
  233. msgstr "A43C + J43 + A43"
  234. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1461
  235. msgid "A43C + J43 + A43 + V43"
  236. msgstr "A43C + J43 + A43 + V43"
  237. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1473
  238. msgid "ADSL"
  239. msgstr "ADSL"
  240. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1449
  241. msgid "ANSI T1.413"
  242. msgstr "ANSI T1.413"
  243. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:95
  244. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:94
  245. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:87
  246. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:68
  247. msgid "APN"
  248. msgstr "APN"
  249. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:200
  250. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:352
  251. msgid "ARP"
  252. msgstr "ARP"
  253. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:365
  254. msgid "ARP IP Targets"
  255. msgstr ""
  256. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:357
  257. msgid "ARP Interval"
  258. msgstr ""
  259. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:381
  260. msgid "ARP Validation"
  261. msgstr ""
  262. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:373
  263. msgid "ARP mode to consider a slave as being up"
  264. msgstr ""
  265. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:77
  266. msgid "ARP monitoring is not supported for the selected policy!"
  267. msgstr ""
  268. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:175
  269. msgid "ARP retry threshold"
  270. msgstr ""
  271. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1468
  272. msgid "ATM (Asynchronous Transfer Mode)"
  273. msgstr ""
  274. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1489
  275. msgid "ATM Bridges"
  276. msgstr ""
  277. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1521
  278. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:66
  279. msgid "ATM Virtual Channel Identifier (VCI)"
  280. msgstr ""
  281. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1522
  282. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:70
  283. msgid "ATM Virtual Path Identifier (VPI)"
  284. msgstr ""
  285. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1489
  286. msgid ""
  287. "ATM bridges expose encapsulated ethernet in AAL5 connections as virtual "
  288. "Linux network interfaces which can be used in conjunction with DHCP or PPP "
  289. "to dial into the provider network."
  290. msgstr ""
  291. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1528
  292. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:62
  293. msgid "ATM device number"
  294. msgstr ""
  295. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:36
  296. msgid "ATU-C System Vendor ID"
  297. msgstr ""
  298. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:265
  299. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:544
  300. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:548
  301. msgid "Absent Interface"
  302. msgstr ""
  303. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:686
  304. msgid "Accept local"
  305. msgstr ""
  306. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:686
  307. msgid "Accept packets with local source addresses"
  308. msgstr ""
  309. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:47
  310. msgid "Access Concentrator"
  311. msgstr ""
  312. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:957
  313. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1071
  314. msgid "Access Point"
  315. msgstr ""
  316. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:358
  317. msgid "Actions"
  318. msgstr "Действия"
  319. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:14
  320. msgid "Active"
  321. msgstr ""
  322. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:203
  323. msgid "Active <abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Routes"
  324. msgstr ""
  325. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:209
  326. msgid "Active <abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Routes"
  327. msgstr ""
  328. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:81
  329. msgid "Active Connections"
  330. msgstr ""
  331. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:33
  332. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:173
  333. msgid "Active DHCP Leases"
  334. msgstr ""
  335. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:52
  336. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:175
  337. msgid "Active DHCPv6 Leases"
  338. msgstr ""
  339. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:203
  340. msgid "Active-Backup policy (active-backup, 1)"
  341. msgstr ""
  342. #: modules/luci-base/htdocs/luci-static/resources/network.js:3822
  343. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:959
  344. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:23
  345. msgid "Ad-Hoc"
  346. msgstr "Ad-Hoc"
  347. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:208
  348. msgid "Adaptive load balancing (balance-alb, 6)"
  349. msgstr ""
  350. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:207
  351. msgid "Adaptive transmit load balancing (balance-tlb, 5)"
  352. msgstr ""
  353. #: modules/luci-base/htdocs/luci-static/resources/form.js:2192
  354. #: modules/luci-base/htdocs/luci-static/resources/form.js:2195
  355. #: modules/luci-base/htdocs/luci-static/resources/form.js:2209
  356. #: modules/luci-base/htdocs/luci-static/resources/form.js:2210
  357. #: modules/luci-base/htdocs/luci-static/resources/form.js:3195
  358. #: modules/luci-compat/luasrc/view/cbi/nsection.htm:25
  359. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:189
  360. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:197
  361. #: modules/luci-compat/luasrc/view/cbi/tsection.htm:39
  362. #: modules/luci-compat/luasrc/view/cbi/tsection.htm:47
  363. #: modules/luci-compat/luasrc/view/cbi/ucisection.htm:54
  364. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:851
  365. msgid "Add"
  366. msgstr ""
  367. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1493
  368. msgid "Add ATM Bridge"
  369. msgstr ""
  370. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:92
  371. msgid "Add IPv4 address…"
  372. msgstr ""
  373. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:185
  374. msgid "Add IPv6 address…"
  375. msgstr ""
  376. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:65
  377. msgid "Add LED action"
  378. msgstr ""
  379. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:219
  380. msgid "Add VLAN"
  381. msgstr ""
  382. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1287
  383. msgid "Add device configuration"
  384. msgstr ""
  385. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1215
  386. msgid "Add device configuration…"
  387. msgstr ""
  388. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:15
  389. msgid "Add instance"
  390. msgstr ""
  391. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:165
  392. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:171
  393. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:268
  394. msgid "Add key"
  395. msgstr ""
  396. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:248
  397. msgid "Add local domain suffix to names served from hosts files"
  398. msgstr ""
  399. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:453
  400. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1102
  401. msgid "Add new interface..."
  402. msgstr ""
  403. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:120
  404. msgid "Add peer"
  405. msgstr ""
  406. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:331
  407. msgid "Add to Blacklist"
  408. msgstr ""
  409. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:331
  410. msgid "Add to Whitelist"
  411. msgstr ""
  412. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:200
  413. msgid "Additional Hosts files"
  414. msgstr ""
  415. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:255
  416. msgid "Additional servers file"
  417. msgstr ""
  418. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:34
  419. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:35
  420. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:36
  421. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:37
  422. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:38
  423. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:39
  424. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:40
  425. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:41
  426. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:42
  427. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:43
  428. msgid "Address"
  429. msgstr ""
  430. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:151
  431. msgid "Address to access local relay bridge"
  432. msgstr ""
  433. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:285
  434. msgid "Addresses"
  435. msgstr ""
  436. #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:3
  437. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:15
  438. msgid "Administration"
  439. msgstr ""
  440. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:164
  441. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:466
  442. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:621
  443. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1519
  444. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:25
  445. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:890
  446. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:954
  447. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:241
  448. msgid "Advanced Settings"
  449. msgstr ""
  450. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:395
  451. msgid "Advanced device options"
  452. msgstr ""
  453. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:549
  454. msgid "Ageing time"
  455. msgstr ""
  456. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:27
  457. msgid "Aggregate Transmit Power (ACTATP)"
  458. msgstr ""
  459. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:258
  460. msgid "Aggregation Selection Logic"
  461. msgstr ""
  462. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:261
  463. msgid "Aggregator: All slaves down or has no slaves (stable, 0)"
  464. msgstr ""
  465. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:263
  466. msgid ""
  467. "Aggregator: Chosen by the largest number of ports + slave added/removed or "
  468. "state changes (count, 2)"
  469. msgstr ""
  470. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:262
  471. msgid "Aggregator: Slave added/removed or state changes (bandwidth, 1)"
  472. msgstr ""
  473. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:178
  474. msgid "Alert"
  475. msgstr ""
  476. #: modules/luci-base/htdocs/luci-static/resources/network.js:2984
  477. #: modules/luci-compat/luasrc/model/network.lua:1417
  478. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:62
  479. msgid "Alias Interface"
  480. msgstr ""
  481. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:146
  482. msgid "Alias of \"%s\""
  483. msgstr ""
  484. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:263
  485. msgid "All Servers"
  486. msgstr ""
  487. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:209
  488. msgid ""
  489. "Allocate IP addresses sequentially, starting from the lowest available "
  490. "address"
  491. msgstr ""
  492. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:208
  493. msgid "Allocate IP sequentially"
  494. msgstr ""
  495. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:25
  496. msgid "Allow <abbr title=\"Secure Shell\">SSH</abbr> password authentication"
  497. msgstr ""
  498. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1151
  499. msgid "Allow AP mode to disconnect STAs based on low ACK condition"
  500. msgstr ""
  501. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1055
  502. msgid "Allow all except listed"
  503. msgstr ""
  504. #: modules/luci-compat/root/usr/share/rpcd/acl.d/luci-compat.json:3
  505. msgid "Allow full UCI access for legacy applications"
  506. msgstr ""
  507. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:910
  508. msgid "Allow legacy 802.11b rates"
  509. msgstr ""
  510. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1054
  511. msgid "Allow listed only"
  512. msgstr ""
  513. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:300
  514. msgid "Allow localhost"
  515. msgstr ""
  516. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:157
  517. msgid "Allow rebooting the device"
  518. msgstr ""
  519. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:36
  520. msgid "Allow remote hosts to connect to local SSH forwarded ports"
  521. msgstr ""
  522. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:31
  523. msgid "Allow root logins with password"
  524. msgstr ""
  525. #: modules/luci-base/root/usr/share/rpcd/acl.d/luci-base.json:3
  526. msgid "Allow system feature probing"
  527. msgstr ""
  528. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:31
  529. msgid "Allow the <em>root</em> user to login with password"
  530. msgstr ""
  531. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301
  532. msgid ""
  533. "Allow upstream responses in the 127.0.0.0/8 range, e.g. for RBL services"
  534. msgstr ""
  535. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:143
  536. msgid "Allowed IPs"
  537. msgstr ""
  538. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:758
  539. msgid "Always"
  540. msgstr ""
  541. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/none.js:5
  542. msgid "Always off (kernel: none)"
  543. msgstr ""
  544. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/default-on.js:6
  545. msgid "Always on (kernel: default-on)"
  546. msgstr ""
  547. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:937
  548. msgid ""
  549. "Always use 40MHz channels even if the secondary channel overlaps. Using this "
  550. "option does not comply with IEEE 802.11n-2009!"
  551. msgstr ""
  552. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:719
  553. msgid "Amount of Duplicate Address Detection probes to send"
  554. msgstr ""
  555. #: modules/luci-base/htdocs/luci-static/resources/form.js:603
  556. msgid "An error occurred while saving the form:"
  557. msgstr ""
  558. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:125
  559. msgid "An optional, short description for this device"
  560. msgstr ""
  561. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1441
  562. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:20
  563. msgid "Annex"
  564. msgstr ""
  565. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1442
  566. msgid "Annex A + L + M (all)"
  567. msgstr ""
  568. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1450
  569. msgid "Annex A G.992.1"
  570. msgstr ""
  571. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1451
  572. msgid "Annex A G.992.2"
  573. msgstr ""
  574. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1452
  575. msgid "Annex A G.992.3"
  576. msgstr ""
  577. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1453
  578. msgid "Annex A G.992.5"
  579. msgstr ""
  580. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1443
  581. msgid "Annex B (all)"
  582. msgstr ""
  583. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1446
  584. msgid "Annex B G.992.1"
  585. msgstr ""
  586. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1447
  587. msgid "Annex B G.992.3"
  588. msgstr ""
  589. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1448
  590. msgid "Annex B G.992.5"
  591. msgstr ""
  592. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1444
  593. msgid "Annex J (all)"
  594. msgstr ""
  595. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1454
  596. msgid "Annex L G.992.3 POTS 1"
  597. msgstr ""
  598. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1445
  599. msgid "Annex M (all)"
  600. msgstr ""
  601. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1455
  602. msgid "Annex M G.992.3"
  603. msgstr ""
  604. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1456
  605. msgid "Annex M G.992.5"
  606. msgstr ""
  607. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:873
  608. msgid "Announce this device as IPv6 DNS server."
  609. msgstr ""
  610. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:765
  611. msgid ""
  612. "Announce this device as default router if a local IPv6 default route is "
  613. "present."
  614. msgstr ""
  615. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:767
  616. msgid ""
  617. "Announce this device as default router if a public IPv6 prefix is available, "
  618. "regardless of local default route availability."
  619. msgstr ""
  620. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:769
  621. msgid ""
  622. "Announce this device as default router regardless of whether a prefix or "
  623. "default route is present."
  624. msgstr ""
  625. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:878
  626. msgid "Announced DNS domains"
  627. msgstr ""
  628. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:866
  629. msgid "Announced IPv6 DNS servers"
  630. msgstr ""
  631. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1635
  632. msgid "Anonymous Identity"
  633. msgstr ""
  634. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:162
  635. msgid "Anonymous Mount"
  636. msgstr ""
  637. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:158
  638. msgid "Anonymous Swap"
  639. msgstr ""
  640. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:84
  641. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:174
  642. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:195
  643. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:60
  644. msgid "Any zone"
  645. msgstr ""
  646. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:119
  647. msgid "Apply backup?"
  648. msgstr ""
  649. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4297
  650. msgid "Apply request failed with status <code>%h</code>"
  651. msgstr ""
  652. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2182
  653. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4163
  654. msgid "Apply unchecked"
  655. msgstr ""
  656. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4236
  657. msgid "Applying configuration changes… %ds"
  658. msgstr ""
  659. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:56
  660. msgid "Architecture"
  661. msgstr ""
  662. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:946
  663. msgid ""
  664. "Assign a part of given length of every public IPv6-prefix to this interface"
  665. msgstr ""
  666. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:951
  667. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:27
  668. msgid ""
  669. "Assign prefix parts using this hexadecimal subprefix ID for this interface."
  670. msgstr ""
  671. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2125
  672. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:362
  673. msgid "Associated Stations"
  674. msgstr ""
  675. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:145
  676. msgid "Associations"
  677. msgstr ""
  678. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:154
  679. msgid "Attempt to enable configured mount points for attached devices"
  680. msgstr ""
  681. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:110
  682. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:64
  683. msgid "Auth Group"
  684. msgstr ""
  685. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1574
  686. msgid "Authentication"
  687. msgstr ""
  688. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:97
  689. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:71
  690. msgid "Authentication Type"
  691. msgstr ""
  692. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:172
  693. msgid "Authoritative"
  694. msgstr ""
  695. #: modules/luci-base/luasrc/view/sysauth.htm:17
  696. msgid "Authorization Required"
  697. msgstr ""
  698. #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:196
  699. #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:197
  700. msgid "Auto Refresh"
  701. msgstr ""
  702. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:108
  703. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:18
  704. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:24
  705. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:100
  706. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:51
  707. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:96
  708. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:82
  709. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:56
  710. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:69
  711. msgid "Automatic"
  712. msgstr ""
  713. #: modules/luci-compat/luasrc/model/network/proto_hnet.lua:7
  714. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:7
  715. msgid "Automatic Homenet (HNCP)"
  716. msgstr ""
  717. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:174
  718. msgid "Automatically check filesystem for errors before mounting"
  719. msgstr ""
  720. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:170
  721. msgid "Automatically mount filesystems on hotplug"
  722. msgstr ""
  723. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:166
  724. msgid "Automatically mount swap on hotplug"
  725. msgstr ""
  726. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:170
  727. msgid "Automount Filesystem"
  728. msgstr ""
  729. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:166
  730. msgid "Automount Swap"
  731. msgstr ""
  732. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:193
  733. msgid "Available"
  734. msgstr ""
  735. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:268
  736. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:278
  737. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:329
  738. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:339
  739. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:349
  740. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:234
  741. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:244
  742. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:254
  743. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:263
  744. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:273
  745. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:291
  746. msgid "Average:"
  747. msgstr ""
  748. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1462
  749. msgid "B43 + B43C"
  750. msgstr "B43 + B43C"
  751. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1463
  752. msgid "B43 + B43C + V43"
  753. msgstr "B43 + B43C + V43"
  754. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:48
  755. msgid "BR / DMR / AFTR"
  756. msgstr "BR / DMR / AFTR"
  757. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:158
  758. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:182
  759. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1702
  760. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:379
  761. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:143
  762. msgid "BSSID"
  763. msgstr "BSSID"
  764. #: modules/luci-compat/luasrc/view/cbi/footer.htm:14
  765. #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:48
  766. msgid "Back to Overview"
  767. msgstr ""
  768. #: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:48
  769. msgid "Back to configuration"
  770. msgstr ""
  771. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:361
  772. msgid "Backup"
  773. msgstr ""
  774. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:114
  775. msgid "Backup / Flash Firmware"
  776. msgstr ""
  777. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:321
  778. #: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:12
  779. msgid "Backup file list"
  780. msgstr ""
  781. #: modules/luci-compat/luasrc/view/cbi/wireless_modefreq.htm:158
  782. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:473
  783. msgid "Band"
  784. msgstr ""
  785. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:424
  786. msgid "Base device"
  787. msgstr ""
  788. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:940
  789. msgid "Beacon Interval"
  790. msgstr ""
  791. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:322
  792. #: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:46
  793. msgid ""
  794. "Below is the determined list of files to backup. It consists of changed "
  795. "configuration files marked by opkg, essential base files and the user "
  796. "defined backup patterns."
  797. msgstr ""
  798. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:395
  799. msgid ""
  800. "Bind dynamically to interfaces rather than wildcard address (recommended as "
  801. "linux default)"
  802. msgstr ""
  803. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:59
  804. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64
  805. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64
  806. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:69
  807. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:48
  808. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:55
  809. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:57
  810. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:52
  811. msgid "Bind interface"
  812. msgstr ""
  813. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:59
  814. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64
  815. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64
  816. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:69
  817. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:48
  818. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:55
  819. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:57
  820. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:52
  821. msgid "Bind the tunnel to this interface (optional)."
  822. msgstr ""
  823. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:129
  824. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:188
  825. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:165
  826. msgid "Bitrate"
  827. msgstr ""
  828. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:266
  829. msgid "Bogus NX Domain Override"
  830. msgstr ""
  831. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:199
  832. msgid "Bonding Policy"
  833. msgstr ""
  834. #: modules/luci-base/htdocs/luci-static/resources/network.js:2990
  835. #: modules/luci-compat/luasrc/model/network.lua:1421
  836. msgid "Bridge"
  837. msgstr ""
  838. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:476
  839. msgctxt "MACVLAN mode"
  840. msgid "Bridge (Support direct communication between MAC VLANs)"
  841. msgstr ""
  842. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:397
  843. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:469
  844. msgid "Bridge VLAN filtering"
  845. msgstr ""
  846. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:402
  847. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1364
  848. msgid "Bridge device"
  849. msgstr ""
  850. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:396
  851. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:468
  852. msgid "Bridge port specific options"
  853. msgstr ""
  854. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:503
  855. msgid "Bridge ports"
  856. msgstr ""
  857. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1529
  858. msgid "Bridge unit number"
  859. msgstr ""
  860. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:540
  861. msgid "Bring up empty bridge"
  862. msgstr ""
  863. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:563
  864. msgid "Bring up on boot"
  865. msgstr ""
  866. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:540
  867. msgid "Bring up the bridge interface even if no ports are attached"
  868. msgstr ""
  869. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:205
  870. msgid "Broadcast policy (broadcast, 3)"
  871. msgstr ""
  872. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2829
  873. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3820
  874. msgid "Browse…"
  875. msgstr ""
  876. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:37
  877. msgid "Buffered"
  878. msgstr ""
  879. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:144
  880. msgid "CA certificate; if empty it will be saved after the first connection."
  881. msgstr ""
  882. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:7
  883. msgid "CLAT configuration failed"
  884. msgstr ""
  885. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:72
  886. msgid "CPU usage (%)"
  887. msgstr ""
  888. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:41
  889. msgid "Cached"
  890. msgstr ""
  891. #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:53
  892. #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:53
  893. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:21
  894. msgid "Call failed"
  895. msgstr ""
  896. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2922
  897. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3829
  898. #: modules/luci-compat/luasrc/view/cbi/delegator.htm:14
  899. #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:52
  900. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:188
  901. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1108
  902. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1999
  903. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:128
  904. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:270
  905. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:203
  906. msgid "Cancel"
  907. msgstr "Отмени"
  908. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:17
  909. msgid "Category"
  910. msgstr ""
  911. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1558
  912. msgid "Certificate constraint (Domain)"
  913. msgstr ""
  914. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1555
  915. msgid "Certificate constraint (SAN)"
  916. msgstr ""
  917. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1552
  918. msgid "Certificate constraint (Subject)"
  919. msgstr ""
  920. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1561
  921. msgid "Certificate constraint (Wildcard)"
  922. msgstr ""
  923. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1552
  924. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1610
  925. msgid ""
  926. "Certificate constraint substring - e.g. /CN=wifi.mycompany.com<br />See "
  927. "`logread -f` during handshake for actual values"
  928. msgstr ""
  929. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1558
  930. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1616
  931. msgid ""
  932. "Certificate constraint(s) against DNS SAN values (if available)<br />or "
  933. "Subject CN (exact match)"
  934. msgstr ""
  935. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1561
  936. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1619
  937. msgid ""
  938. "Certificate constraint(s) against DNS SAN values (if available)<br />or "
  939. "Subject CN (suffix match)"
  940. msgstr ""
  941. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1555
  942. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1613
  943. msgid ""
  944. "Certificate constraint(s) via Subject Alternate Name values<br />(supported "
  945. "attributes: EMAIL, DNS, URI) - e.g. DNS:wifi.mycompany.com"
  946. msgstr ""
  947. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:54
  948. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:57
  949. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:212
  950. msgid "Chain"
  951. msgstr ""
  952. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4049
  953. msgid "Changes"
  954. msgstr ""
  955. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4332
  956. msgid "Changes have been reverted."
  957. msgstr ""
  958. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:46
  959. msgid "Changes the administrator password for accessing the device"
  960. msgstr ""
  961. #: modules/luci-compat/luasrc/view/cbi/wireless_modefreq.htm:162
  962. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:128
  963. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:184
  964. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:482
  965. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1700
  966. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:376
  967. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:164
  968. msgid "Channel"
  969. msgstr ""
  970. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:75
  971. msgid "Channel Analysis"
  972. msgstr ""
  973. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:377
  974. msgid "Channel Width"
  975. msgstr ""
  976. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:174
  977. msgid "Check filesystems before mount"
  978. msgstr ""
  979. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1961
  980. msgid "Check this option to delete the existing networks from this radio."
  981. msgstr ""
  982. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:110
  983. msgid "Checking archive…"
  984. msgstr ""
  985. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:193
  986. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:195
  987. msgid "Checking image…"
  988. msgstr ""
  989. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:397
  990. msgid "Choose mtdblock"
  991. msgstr ""
  992. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:568
  993. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1989
  994. msgid ""
  995. "Choose the firewall zone you want to assign to this interface. Select "
  996. "<em>unspecified</em> to remove the interface from the associated zone or "
  997. "fill out the <em>custom</em> field to define a new zone and attach the "
  998. "interface to it."
  999. msgstr ""
  1000. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:989
  1001. msgid ""
  1002. "Choose the network(s) you want to attach to this wireless interface or fill "
  1003. "out the <em>custom</em> field to define a new network."
  1004. msgstr ""
  1005. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1187
  1006. msgid "Cipher"
  1007. msgstr ""
  1008. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:91
  1009. msgid "Cisco UDP encapsulation"
  1010. msgstr ""
  1011. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:361
  1012. msgid ""
  1013. "Click \"Generate archive\" to download a tar archive of the current "
  1014. "configuration files."
  1015. msgstr ""
  1016. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:394
  1017. msgid ""
  1018. "Click \"Save mtdblock\" to download specified mtdblock file. (NOTE: THIS "
  1019. "FEATURE IS FOR PROFESSIONALS! )"
  1020. msgstr ""
  1021. #: modules/luci-base/htdocs/luci-static/resources/network.js:3821
  1022. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:958
  1023. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1072
  1024. msgid "Client"
  1025. msgstr ""
  1026. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37
  1027. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:33
  1028. msgid "Client ID to send when requesting DHCP"
  1029. msgstr ""
  1030. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4066
  1031. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:167
  1032. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:173
  1033. msgid "Close"
  1034. msgstr ""
  1035. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:144
  1036. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:128
  1037. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:114
  1038. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:92
  1039. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:101
  1040. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:124
  1041. msgid ""
  1042. "Close inactive connection after the given amount of seconds, use 0 to "
  1043. "persist connection"
  1044. msgstr ""
  1045. #: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:49
  1046. msgid "Close list..."
  1047. msgstr ""
  1048. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:42
  1049. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:61
  1050. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2123
  1051. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:389
  1052. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:352
  1053. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:355
  1054. #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:204
  1055. msgid "Collecting data..."
  1056. msgstr ""
  1057. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:71
  1058. msgid "Command"
  1059. msgstr ""
  1060. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:401
  1061. msgid "Command OK"
  1062. msgstr ""
  1063. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:33
  1064. msgid "Command failed"
  1065. msgstr ""
  1066. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:73
  1067. msgid "Comment"
  1068. msgstr ""
  1069. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1671
  1070. msgid ""
  1071. "Complicates key reinstallation attacks on the client side by disabling "
  1072. "retransmission of EAPOL-Key frames that are used to install keys. This "
  1073. "workaround might cause interoperability issues and reduced robustness of key "
  1074. "negotiation especially in environments with heavy traffic load."
  1075. msgstr ""
  1076. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:101
  1077. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:106
  1078. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:103
  1079. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:108
  1080. msgid "Compute outgoing checksum (optional)."
  1081. msgstr ""
  1082. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4049
  1083. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:424
  1084. msgid "Configuration"
  1085. msgstr ""
  1086. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4211
  1087. msgid "Configuration changes applied."
  1088. msgstr ""
  1089. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4149
  1090. msgid "Configuration changes have been rolled back!"
  1091. msgstr ""
  1092. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:63
  1093. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:21
  1094. msgid "Configuration failed"
  1095. msgstr ""
  1096. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:919
  1097. msgid ""
  1098. "Configures data rates based on the coverage cell density. Normal configures "
  1099. "basic rates to 6, 12, 24 Mbps if legacy 802.11b rates are not used else to "
  1100. "5.5, 11 Mbps. High configures basic rates to 12, 24 Mbps if legacy 802.11b "
  1101. "rates are not used else to the 11 Mbps rate. Very High configures 24 Mbps as "
  1102. "the basic rate. Supported rates lower than the minimum basic rate are not "
  1103. "offered."
  1104. msgstr ""
  1105. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:763
  1106. msgid ""
  1107. "Configures the default router advertisement in <abbr title=\"Router "
  1108. "Advertisement\">RA</abbr> messages."
  1109. msgstr ""
  1110. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:752
  1111. msgid ""
  1112. "Configures the operation mode of the <abbr title=\"Router Advertisement"
  1113. "\">RA</abbr> service on this interface."
  1114. msgstr ""
  1115. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:856
  1116. msgid "Configures the operation mode of the DHCPv6 service on this interface."
  1117. msgstr ""
  1118. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:886
  1119. msgid ""
  1120. "Configures the operation mode of the NDP proxy service on this interface."
  1121. msgstr ""
  1122. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1273
  1123. msgid "Configure…"
  1124. msgstr ""
  1125. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:176
  1126. msgid "Confirm disconnect"
  1127. msgstr ""
  1128. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:55
  1129. msgid "Confirmation"
  1130. msgstr ""
  1131. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:47
  1132. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:51
  1133. msgid "Connected"
  1134. msgstr ""
  1135. #: modules/luci-base/htdocs/luci-static/resources/network.js:9
  1136. #: modules/luci-compat/luasrc/model/network.lua:27
  1137. msgid "Connection attempt failed"
  1138. msgstr ""
  1139. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:40
  1140. msgid "Connection attempt failed."
  1141. msgstr ""
  1142. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:411
  1143. msgid "Connection lost"
  1144. msgstr ""
  1145. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:130
  1146. msgid "Connections"
  1147. msgstr ""
  1148. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:377
  1149. msgid "Consider the slave up when all ARP IP targets are reachable (all, 1)"
  1150. msgstr ""
  1151. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:376
  1152. msgid "Consider the slave up when any ARP IP target is reachable (any, 0)"
  1153. msgstr ""
  1154. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/crontab.js:18
  1155. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:338
  1156. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:55
  1157. msgid "Contents have been saved."
  1158. msgstr ""
  1159. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:387
  1160. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:421
  1161. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:766
  1162. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:132
  1163. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:262
  1164. msgid "Continue"
  1165. msgstr ""
  1166. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4185
  1167. msgid ""
  1168. "Could not regain access to the device after applying the configuration "
  1169. "changes. You might need to reconnect if you modified network related "
  1170. "settings such as the IP address or wireless security credentials."
  1171. msgstr ""
  1172. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:189
  1173. msgid "Country"
  1174. msgstr ""
  1175. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:916
  1176. msgid "Country Code"
  1177. msgstr ""
  1178. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:919
  1179. msgid "Coverage cell density"
  1180. msgstr ""
  1181. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:568
  1182. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1989
  1183. msgid "Create / Assign firewall-zone"
  1184. msgstr ""
  1185. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1137
  1186. msgid "Create interface"
  1187. msgstr ""
  1188. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:177
  1189. msgid "Critical"
  1190. msgstr ""
  1191. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:181
  1192. msgid "Cron Log Level"
  1193. msgstr ""
  1194. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:557
  1195. msgid "Current power"
  1196. msgstr ""
  1197. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:569
  1198. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:571
  1199. #: modules/luci-compat/luasrc/view/cbi/network_ifacelist.htm:51
  1200. #: modules/luci-compat/luasrc/view/cbi/network_ifacelist.htm:53
  1201. #: modules/luci-compat/luasrc/view/cbi/network_ifacelist.htm:82
  1202. #: modules/luci-compat/luasrc/view/cbi/network_ifacelist.htm:83
  1203. msgid "Custom Interface"
  1204. msgstr ""
  1205. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:380
  1206. msgid ""
  1207. "Custom files (certificates, scripts) may remain on the system. To prevent "
  1208. "this, perform a factory-reset first."
  1209. msgstr ""
  1210. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/timer.js:6
  1211. msgid "Custom flash interval (kernel: timer)"
  1212. msgstr ""
  1213. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:59
  1214. msgid ""
  1215. "Customizes the behaviour of the device <abbr title=\"Light Emitting Diode"
  1216. "\">LED</abbr>s if possible."
  1217. msgstr ""
  1218. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:719
  1219. msgid "DAD transmits"
  1220. msgstr ""
  1221. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1392
  1222. msgid "DAE-Client"
  1223. msgstr ""
  1224. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1397
  1225. msgid "DAE-Port"
  1226. msgstr ""
  1227. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1402
  1228. msgid "DAE-Secret"
  1229. msgstr ""
  1230. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:471
  1231. msgid "DHCP Server"
  1232. msgstr ""
  1233. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:155
  1234. #: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:50
  1235. msgid "DHCP and DNS"
  1236. msgstr ""
  1237. #: modules/luci-base/htdocs/luci-static/resources/network.js:2099
  1238. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:16
  1239. #: modules/luci-compat/luasrc/model/network.lua:969
  1240. msgid "DHCP client"
  1241. msgstr ""
  1242. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:695
  1243. msgid "DHCP-Options"
  1244. msgstr ""
  1245. #: modules/luci-compat/luasrc/model/network/proto_dhcpv6.lua:7
  1246. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:7
  1247. msgid "DHCPv6 client"
  1248. msgstr ""
  1249. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:855
  1250. msgid "DHCPv6-Service"
  1251. msgstr ""
  1252. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:45
  1253. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:46
  1254. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:47
  1255. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:48
  1256. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:49
  1257. msgid "DNS"
  1258. msgstr ""
  1259. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:277
  1260. msgid "DNS forwardings"
  1261. msgstr ""
  1262. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:920
  1263. msgid "DNS search domains"
  1264. msgstr ""
  1265. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:925
  1266. msgid "DNS weight"
  1267. msgstr ""
  1268. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:33
  1269. msgid "DNS-Label / FQDN"
  1270. msgstr ""
  1271. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:228
  1272. msgid "DNSSEC"
  1273. msgstr ""
  1274. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:232
  1275. msgid "DNSSEC check unsigned"
  1276. msgstr ""
  1277. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:99
  1278. msgid "DPD Idle Timeout"
  1279. msgstr ""
  1280. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:41
  1281. msgid "DS-Lite AFTR address"
  1282. msgstr ""
  1283. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1438
  1284. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:44
  1285. msgid "DSL"
  1286. msgstr "DSL"
  1287. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:14
  1288. msgid "DSL Status"
  1289. msgstr ""
  1290. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1471
  1291. msgid "DSL line mode"
  1292. msgstr ""
  1293. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1127
  1294. msgid "DTIM Interval"
  1295. msgstr ""
  1296. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:57
  1297. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:127
  1298. msgid "DUID"
  1299. msgstr "DUID"
  1300. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:21
  1301. msgid "Data Rate"
  1302. msgstr ""
  1303. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:172
  1304. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:183
  1305. msgid "Debug"
  1306. msgstr ""
  1307. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1367
  1308. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1382
  1309. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1397
  1310. msgid "Default %d"
  1311. msgstr ""
  1312. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:762
  1313. msgid "Default router"
  1314. msgstr ""
  1315. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/default-on.js:11
  1316. msgid "Default state"
  1317. msgstr ""
  1318. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:695
  1319. msgid ""
  1320. "Define additional DHCP options, for example "
  1321. "\"<code>6,192.168.2.1,192.168.2.2</code>\" which advertises different DNS "
  1322. "servers to clients."
  1323. msgstr ""
  1324. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:497
  1325. msgid ""
  1326. "Defines a mapping of Linux internal packet priority to VLAN header priority "
  1327. "but for outgoing frames"
  1328. msgstr ""
  1329. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:491
  1330. msgid ""
  1331. "Defines a mapping of VLAN header priority to the Linux internal packet "
  1332. "priority on incoming frames"
  1333. msgstr ""
  1334. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:943
  1335. msgid "Delegate IPv6 prefixes"
  1336. msgstr ""
  1337. #: modules/luci-base/htdocs/luci-static/resources/form.js:2262
  1338. #: modules/luci-base/htdocs/luci-static/resources/form.js:2687
  1339. #: modules/luci-base/htdocs/luci-static/resources/form.js:2691
  1340. #: modules/luci-base/htdocs/luci-static/resources/form.js:3179
  1341. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2891
  1342. #: modules/luci-compat/luasrc/view/cbi/nsection.htm:11
  1343. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:162
  1344. #: modules/luci-compat/luasrc/view/cbi/tsection.htm:16
  1345. msgid "Delete"
  1346. msgstr ""
  1347. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:199
  1348. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:205
  1349. msgid "Delete key"
  1350. msgstr ""
  1351. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2788
  1352. msgid "Delete request failed: %s"
  1353. msgstr ""
  1354. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:871
  1355. msgid "Delete this network"
  1356. msgstr ""
  1357. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1127
  1358. msgid "Delivery Traffic Indication Message Interval"
  1359. msgstr ""
  1360. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:340
  1361. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:125
  1362. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:129
  1363. msgid "Description"
  1364. msgstr "Описание"
  1365. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2887
  1366. msgid "Deselect"
  1367. msgstr ""
  1368. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:222
  1369. msgid "Design"
  1370. msgstr ""
  1371. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:703
  1372. msgid "Designated master"
  1373. msgstr ""
  1374. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:384
  1375. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:71
  1376. msgid "Destination"
  1377. msgstr ""
  1378. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:48
  1379. msgid "Destination port"
  1380. msgstr ""
  1381. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:59
  1382. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:165
  1383. msgid "Destination zone"
  1384. msgstr ""
  1385. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:67
  1386. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:191
  1387. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:43
  1388. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:46
  1389. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:81
  1390. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:557
  1391. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1090
  1392. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1380
  1393. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:55
  1394. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:12
  1395. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:247
  1396. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:280
  1397. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:356
  1398. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:392
  1399. msgid "Device"
  1400. msgstr ""
  1401. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:885
  1402. msgid "Device Configuration"
  1403. msgstr ""
  1404. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:132
  1405. msgid "Device is not active"
  1406. msgstr ""
  1407. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:233
  1408. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:623
  1409. msgid "Device is restarting…"
  1410. msgstr ""
  1411. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:480
  1412. msgid "Device name"
  1413. msgstr ""
  1414. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:45
  1415. msgid "Device not managed by ModemManager."
  1416. msgstr ""
  1417. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1355
  1418. msgid "Device not present"
  1419. msgstr ""
  1420. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:399
  1421. msgid "Device type"
  1422. msgstr ""
  1423. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4184
  1424. msgid "Device unreachable!"
  1425. msgstr ""
  1426. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:53
  1427. msgid "Device unreachable! Still waiting for device..."
  1428. msgstr "Недостъпно устройство! Все още се изчаква устройството..."
  1429. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1212
  1430. msgid "Devices"
  1431. msgstr ""
  1432. #: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:88
  1433. msgid "Diagnostics"
  1434. msgstr ""
  1435. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:102
  1436. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:94
  1437. msgid "Dial number"
  1438. msgstr ""
  1439. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2684
  1440. msgid "Directory"
  1441. msgstr ""
  1442. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:863
  1443. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:903
  1444. msgid "Disable"
  1445. msgstr ""
  1446. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:654
  1447. msgid ""
  1448. "Disable <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</abbr> for "
  1449. "this interface."
  1450. msgstr ""
  1451. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:174
  1452. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:373
  1453. msgid "Disable DNS lookups"
  1454. msgstr ""
  1455. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:93
  1456. msgid "Disable Encryption"
  1457. msgstr ""
  1458. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1137
  1459. msgid "Disable Inactivity Polling"
  1460. msgstr ""
  1461. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:861
  1462. msgid "Disable this network"
  1463. msgstr ""
  1464. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:920
  1465. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1646
  1466. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:13
  1467. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:66
  1468. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:109
  1469. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:101
  1470. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:52
  1471. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:97
  1472. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:83
  1473. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:57
  1474. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:70
  1475. msgid "Disabled"
  1476. msgstr ""
  1477. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1151
  1478. msgid "Disassociate On Low Acknowledgement"
  1479. msgstr ""
  1480. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:294
  1481. msgid "Discard upstream RFC1918 responses"
  1482. msgstr ""
  1483. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:198
  1484. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:689
  1485. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:332
  1486. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:347
  1487. msgid "Disconnect"
  1488. msgstr ""
  1489. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:64
  1490. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:22
  1491. msgid "Disconnection attempt failed"
  1492. msgstr ""
  1493. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:48
  1494. msgid "Disconnection attempt failed."
  1495. msgstr ""
  1496. #: modules/luci-base/htdocs/luci-static/resources/form.js:606
  1497. #: modules/luci-base/htdocs/luci-static/resources/form.js:2886
  1498. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3328
  1499. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4155
  1500. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1725
  1501. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:328
  1502. msgid "Dismiss"
  1503. msgstr "Откажи"
  1504. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:925
  1505. msgid "Distance Optimization"
  1506. msgstr ""
  1507. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:925
  1508. msgid "Distance to farthest network member in meters."
  1509. msgstr ""
  1510. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:155
  1511. msgid ""
  1512. "Dnsmasq is a combined <abbr title=\"Dynamic Host Configuration Protocol"
  1513. "\">DHCP</abbr>-Server and <abbr title=\"Domain Name System\">DNS</abbr>-"
  1514. "Forwarder for <abbr title=\"Network Address Translation\">NAT</abbr> "
  1515. "firewalls"
  1516. msgstr ""
  1517. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:252
  1518. msgid "Do not cache negative replies, e.g. for not existing domains"
  1519. msgstr ""
  1520. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:86
  1521. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:91
  1522. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:88
  1523. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:93
  1524. msgid "Do not create host route to peer (optional)."
  1525. msgstr ""
  1526. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:219
  1527. msgid "Do not forward requests that cannot be answered by public name servers"
  1528. msgstr ""
  1529. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:214
  1530. msgid "Do not forward reverse lookups for local networks"
  1531. msgstr ""
  1532. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:858
  1533. msgid "Do not offer DHCPv6 service on this interface."
  1534. msgstr ""
  1535. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:208
  1536. msgctxt "VLAN port state"
  1537. msgid "Do not participate"
  1538. msgstr ""
  1539. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:888
  1540. msgid ""
  1541. "Do not proxy any <abbr title=\"Neighbour Discovery Protocol\">NDP</abbr> "
  1542. "packets."
  1543. msgstr ""
  1544. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:25
  1545. msgid "Do not send a hostname"
  1546. msgstr ""
  1547. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:754
  1548. msgid ""
  1549. "Do not send any <abbr title=\"Router Advertisement, ICMPv6 Type 134\">RA</"
  1550. "abbr> messages on this interface."
  1551. msgstr ""
  1552. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2774
  1553. msgid "Do you really want to delete \"%s\" ?"
  1554. msgstr ""
  1555. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:200
  1556. msgid "Do you really want to delete the following SSH key?"
  1557. msgstr ""
  1558. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:94
  1559. msgid "Do you really want to erase all settings?"
  1560. msgstr ""
  1561. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2772
  1562. msgid "Do you really want to recursively delete the directory \"%s\" ?"
  1563. msgstr ""
  1564. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:168
  1565. msgid "Domain required"
  1566. msgstr ""
  1567. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:307
  1568. msgid "Domain whitelist"
  1569. msgstr ""
  1570. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:83
  1571. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:88
  1572. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:67
  1573. msgid "Don't Fragment"
  1574. msgstr ""
  1575. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:169
  1576. msgid ""
  1577. "Don't forward <abbr title=\"Domain Name System\">DNS</abbr>-Requests without "
  1578. "<abbr title=\"Domain Name System\">DNS</abbr>-Name"
  1579. msgstr ""
  1580. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:152
  1581. msgid "Down"
  1582. msgstr ""
  1583. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:402
  1584. msgid "Down Delay"
  1585. msgstr ""
  1586. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:364
  1587. msgid "Download backup"
  1588. msgstr ""
  1589. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:402
  1590. msgid "Download mtdblock"
  1591. msgstr ""
  1592. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1476
  1593. msgid "Downstream SNR offset"
  1594. msgstr ""
  1595. #: modules/luci-base/htdocs/luci-static/resources/form.js:2645
  1596. msgid "Drag to reorder"
  1597. msgstr ""
  1598. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:341
  1599. msgid "Drop Duplicate Frames"
  1600. msgstr ""
  1601. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:12
  1602. msgid "Dropbear Instance"
  1603. msgstr ""
  1604. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:10
  1605. msgid ""
  1606. "Dropbear offers <abbr title=\"Secure Shell\">SSH</abbr> network shell access "
  1607. "and an integrated <abbr title=\"Secure Copy\">SCP</abbr> server"
  1608. msgstr ""
  1609. #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:14
  1610. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:11
  1611. msgid "Dual-Stack Lite (RFC6333)"
  1612. msgstr ""
  1613. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:671
  1614. msgid "Dynamic <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</abbr>"
  1615. msgstr ""
  1616. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:60
  1617. msgid "Dynamic tunnel"
  1618. msgstr ""
  1619. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:671
  1620. msgid ""
  1621. "Dynamically allocate DHCP addresses for clients. If disabled, only clients "
  1622. "having static leases will be served."
  1623. msgstr ""
  1624. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:67
  1625. msgid "EA-bits length"
  1626. msgstr ""
  1627. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1530
  1628. msgid "EAP-Method"
  1629. msgstr ""
  1630. #: modules/luci-base/htdocs/luci-static/resources/form.js:2665
  1631. #: modules/luci-base/htdocs/luci-static/resources/form.js:2668
  1632. #: modules/luci-base/htdocs/luci-static/resources/form.js:3042
  1633. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:154
  1634. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:160
  1635. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:483
  1636. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:868
  1637. msgid "Edit"
  1638. msgstr ""
  1639. #: modules/luci-compat/luasrc/view/cbi/error.htm:13
  1640. msgid ""
  1641. "Edit the raw configuration data above to fix any error and hit \"Save\" to "
  1642. "reload the page."
  1643. msgstr ""
  1644. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:866
  1645. msgid "Edit this network"
  1646. msgstr ""
  1647. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:817
  1648. msgid "Edit wireless network"
  1649. msgstr ""
  1650. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:497
  1651. msgid "Egress QoS mapping"
  1652. msgstr ""
  1653. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:216
  1654. msgctxt "VLAN port state"
  1655. msgid "Egress tagged"
  1656. msgstr ""
  1657. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:212
  1658. msgctxt "VLAN port state"
  1659. msgid "Egress untagged"
  1660. msgstr ""
  1661. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:179
  1662. msgid "Emergency"
  1663. msgstr ""
  1664. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:863
  1665. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:903
  1666. msgid "Enable"
  1667. msgstr ""
  1668. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:574
  1669. msgid ""
  1670. "Enable <abbr title=\"Internet Group Management Protocol\">IGMP</abbr> "
  1671. "snooping"
  1672. msgstr ""
  1673. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:554
  1674. msgid "Enable <abbr title=\"Spanning Tree Protocol\">STP</abbr>"
  1675. msgstr ""
  1676. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:773
  1677. msgid "Enable <abbr title=\"Stateless Address Auto Config\">SLAAC</abbr>"
  1678. msgstr ""
  1679. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:174
  1680. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:367
  1681. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:373
  1682. msgid "Enable DNS lookups"
  1683. msgstr ""
  1684. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:292
  1685. msgid "Enable Dynamic Shuffling Of Flows"
  1686. msgstr ""
  1687. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:60
  1688. msgid "Enable HE.net dynamic endpoint update"
  1689. msgstr ""
  1690. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:709
  1691. msgid "Enable IPv6"
  1692. msgstr ""
  1693. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:90
  1694. msgid "Enable IPv6 negotiation"
  1695. msgstr ""
  1696. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:49
  1697. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:94
  1698. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:80
  1699. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:54
  1700. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:67
  1701. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:93
  1702. msgid "Enable IPv6 negotiation on the PPP link"
  1703. msgstr ""
  1704. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:192
  1705. msgid "Enable Jumbo Frame passthrough"
  1706. msgstr ""
  1707. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:743
  1708. msgid "Enable MAC address learning"
  1709. msgstr ""
  1710. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:242
  1711. msgid "Enable NTP client"
  1712. msgstr ""
  1713. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:96
  1714. msgid "Enable Single DES"
  1715. msgstr ""
  1716. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:368
  1717. msgid "Enable TFTP server"
  1718. msgstr ""
  1719. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:770
  1720. msgid "Enable VLAN filterering"
  1721. msgstr ""
  1722. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:184
  1723. msgid "Enable VLAN functionality"
  1724. msgstr ""
  1725. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1675
  1726. msgid "Enable WPS pushbutton, requires WPA(2)-PSK/WPA3-SAE"
  1727. msgstr ""
  1728. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:943
  1729. msgid ""
  1730. "Enable downstream delegation of IPv6 prefixes available on this interface"
  1731. msgstr ""
  1732. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1671
  1733. msgid "Enable key reinstallation (KRACK) countermeasures"
  1734. msgstr ""
  1735. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:187
  1736. msgid "Enable learning and aging"
  1737. msgstr ""
  1738. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:198
  1739. msgid "Enable mirroring of incoming packets"
  1740. msgstr ""
  1741. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:199
  1742. msgid "Enable mirroring of outgoing packets"
  1743. msgstr ""
  1744. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:765
  1745. msgid "Enable multicast fast leave"
  1746. msgstr ""
  1747. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:583
  1748. msgid "Enable multicast querier"
  1749. msgstr ""
  1750. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:725
  1751. msgid "Enable multicast support"
  1752. msgstr ""
  1753. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1433
  1754. msgid ""
  1755. "Enable packet steering across all CPUs. May help or hinder network speed."
  1756. msgstr ""
  1757. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:659
  1758. msgid "Enable promiscuous mode"
  1759. msgstr ""
  1760. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:71
  1761. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:66
  1762. msgid "Enable rx checksum"
  1763. msgstr ""
  1764. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:89
  1765. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:94
  1766. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:91
  1767. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:96
  1768. msgid "Enable support for multicast traffic (optional)."
  1769. msgstr ""
  1770. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:83
  1771. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:88
  1772. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:67
  1773. msgid "Enable the DF (Don't Fragment) flag of the encapsulating packets."
  1774. msgstr ""
  1775. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:861
  1776. msgid "Enable this network"
  1777. msgstr ""
  1778. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:75
  1779. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:70
  1780. msgid "Enable tx checksum"
  1781. msgstr ""
  1782. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:747
  1783. msgid "Enable unicast flooding"
  1784. msgstr ""
  1785. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:243
  1786. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:352
  1787. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:66
  1788. msgid "Enabled"
  1789. msgstr ""
  1790. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:574
  1791. msgid "Enables IGMP snooping on this bridge"
  1792. msgstr ""
  1793. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1470
  1794. msgid ""
  1795. "Enables fast roaming among access points that belong to the same Mobility "
  1796. "Domain"
  1797. msgstr ""
  1798. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:554
  1799. msgid "Enables the Spanning Tree Protocol on this bridge"
  1800. msgstr ""
  1801. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:59
  1802. msgid "Encapsulation limit"
  1803. msgstr ""
  1804. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1466
  1805. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1524
  1806. msgid "Encapsulation mode"
  1807. msgstr ""
  1808. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:159
  1809. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:183
  1810. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1156
  1811. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1703
  1812. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:144
  1813. msgid "Encryption"
  1814. msgstr ""
  1815. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:156
  1816. msgid "Endpoint Host"
  1817. msgstr ""
  1818. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:160
  1819. msgid "Endpoint Port"
  1820. msgstr ""
  1821. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:731
  1822. msgid "Enforce IGMPv1"
  1823. msgstr ""
  1824. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:732
  1825. msgid "Enforce IGMPv2"
  1826. msgstr ""
  1827. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:733
  1828. msgid "Enforce IGMPv3"
  1829. msgstr ""
  1830. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:738
  1831. msgid "Enforce MLD version 1"
  1832. msgstr ""
  1833. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:739
  1834. msgid "Enforce MLD version 2"
  1835. msgstr ""
  1836. #: modules/luci-compat/luasrc/view/cbi/dropdown.htm:16
  1837. msgid "Enter custom value"
  1838. msgstr ""
  1839. #: modules/luci-compat/luasrc/view/cbi/dropdown.htm:16
  1840. msgid "Enter custom values"
  1841. msgstr ""
  1842. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:97
  1843. msgid "Erasing..."
  1844. msgstr ""
  1845. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:103
  1846. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:104
  1847. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:105
  1848. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:106
  1849. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:107
  1850. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:176
  1851. msgid "Error"
  1852. msgstr ""
  1853. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:29
  1854. msgid "Errored seconds (ES)"
  1855. msgstr ""
  1856. #: modules/luci-base/htdocs/luci-static/resources/network.js:3003
  1857. #: modules/luci-compat/luasrc/model/network.lua:1433
  1858. msgid "Ethernet Adapter"
  1859. msgstr ""
  1860. #: modules/luci-base/htdocs/luci-static/resources/network.js:2994
  1861. #: modules/luci-compat/luasrc/model/network.lua:1423
  1862. msgid "Ethernet Switch"
  1863. msgstr ""
  1864. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:270
  1865. msgid "Every 30 seconds (slow, 0)"
  1866. msgstr ""
  1867. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:271
  1868. msgid "Every second (fast, 1)"
  1869. msgstr ""
  1870. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:406
  1871. msgid "Exclude interfaces"
  1872. msgstr ""
  1873. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:408
  1874. msgid "Existing device"
  1875. msgstr ""
  1876. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:247
  1877. msgid "Expand hosts"
  1878. msgstr ""
  1879. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:960
  1880. msgid "Expecting a hexadecimal assignment hint"
  1881. msgstr ""
  1882. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:17
  1883. msgid "Expecting a valid IPv4 address"
  1884. msgstr ""
  1885. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:17
  1886. msgid "Expecting a valid IPv6 address"
  1887. msgstr ""
  1888. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:44
  1889. msgid "Expecting two priority values separated by a colon"
  1890. msgstr ""
  1891. #: modules/luci-base/htdocs/luci-static/resources/validation.js:64
  1892. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:73
  1893. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:79
  1894. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:107
  1895. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:121
  1896. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:125
  1897. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:129
  1898. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:132
  1899. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:136
  1900. msgid "Expecting: %s"
  1901. msgstr ""
  1902. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:48
  1903. msgid "Expecting: non-empty value"
  1904. msgstr ""
  1905. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:50
  1906. msgid "Expires"
  1907. msgstr ""
  1908. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:667
  1909. msgid ""
  1910. "Expiry time of leased addresses, minimum is 2 minutes (<code>2m</code>)."
  1911. msgstr ""
  1912. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:19
  1913. msgid "External"
  1914. msgstr ""
  1915. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1521
  1916. msgid "External R0 Key Holder List"
  1917. msgstr ""
  1918. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1525
  1919. msgid "External R1 Key Holder List"
  1920. msgstr ""
  1921. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:153
  1922. msgid "External system log server"
  1923. msgstr ""
  1924. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:158
  1925. msgid "External system log server port"
  1926. msgstr ""
  1927. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:163
  1928. msgid "External system log server protocol"
  1929. msgstr ""
  1930. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:79
  1931. msgid "Extra SSH command options"
  1932. msgstr ""
  1933. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:68
  1934. msgid "Extra pppd options"
  1935. msgstr ""
  1936. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:66
  1937. msgid "Extra sstpc options"
  1938. msgstr ""
  1939. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1495
  1940. msgid "FT over DS"
  1941. msgstr ""
  1942. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1496
  1943. msgid "FT over the Air"
  1944. msgstr ""
  1945. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1493
  1946. msgid "FT protocol"
  1947. msgstr ""
  1948. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:87
  1949. msgid "Failed to change the system password."
  1950. msgstr ""
  1951. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4143
  1952. msgid "Failed to confirm apply within %ds, waiting for rollback…"
  1953. msgstr ""
  1954. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:37
  1955. msgid "Failed to execute \"/etc/init.d/%s %s\" action: %s"
  1956. msgstr ""
  1957. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2692
  1958. msgid "File"
  1959. msgstr ""
  1960. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2639
  1961. msgid "File not accessible"
  1962. msgstr ""
  1963. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2830
  1964. msgid "Filename"
  1965. msgstr ""
  1966. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:381
  1967. msgid "Filename of the boot image advertised to clients"
  1968. msgstr ""
  1969. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:191
  1970. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:314
  1971. msgid "Filesystem"
  1972. msgstr ""
  1973. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:213
  1974. msgid "Filter private"
  1975. msgstr ""
  1976. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:218
  1977. msgid "Filter useless"
  1978. msgstr ""
  1979. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:388
  1980. msgid "Filtering for all slaves, no validation"
  1981. msgstr ""
  1982. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:389
  1983. msgid "Filtering for all slaves, validation only for active slave"
  1984. msgstr ""
  1985. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:390
  1986. msgid "Filtering for all slaves, validation only for backup slaves"
  1987. msgstr ""
  1988. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:65
  1989. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:23
  1990. msgid "Finalizing failed"
  1991. msgstr ""
  1992. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:150
  1993. msgid ""
  1994. "Find all currently attached filesystems and swap and replace configuration "
  1995. "with defaults based on what was detected"
  1996. msgstr ""
  1997. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:844
  1998. msgid "Find and join network"
  1999. msgstr ""
  2000. #: modules/luci-compat/luasrc/view/cbi/delegator.htm:9
  2001. msgid "Finish"
  2002. msgstr ""
  2003. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:15
  2004. msgid "Firewall"
  2005. msgstr ""
  2006. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:97
  2007. msgid "Firewall Mark"
  2008. msgstr ""
  2009. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:470
  2010. msgid "Firewall Settings"
  2011. msgstr ""
  2012. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:326
  2013. msgid "Firewall Status"
  2014. msgstr ""
  2015. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1483
  2016. msgid "Firmware File"
  2017. msgstr ""
  2018. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:57
  2019. msgid "Firmware Version"
  2020. msgstr ""
  2021. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:327
  2022. msgid "Fixed source port for outbound DNS queries"
  2023. msgstr ""
  2024. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:281
  2025. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:419
  2026. msgid "Flash image..."
  2027. msgstr ""
  2028. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:277
  2029. msgid "Flash image?"
  2030. msgstr ""
  2031. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:409
  2032. msgid "Flash new firmware image"
  2033. msgstr ""
  2034. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:354
  2035. msgid "Flash operations"
  2036. msgstr ""
  2037. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:286
  2038. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:288
  2039. msgid "Flashing…"
  2040. msgstr ""
  2041. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:674
  2042. msgid "Force"
  2043. msgstr ""
  2044. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:937
  2045. msgid "Force 40MHz mode"
  2046. msgstr ""
  2047. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1197
  2048. msgid "Force CCMP (AES)"
  2049. msgstr ""
  2050. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:674
  2051. msgid "Force DHCP on this network even if another server is detected."
  2052. msgstr ""
  2053. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:729
  2054. msgid "Force IGMP version"
  2055. msgstr ""
  2056. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:736
  2057. msgid "Force MLD version"
  2058. msgstr ""
  2059. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1198
  2060. msgid "Force TKIP"
  2061. msgstr ""
  2062. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1199
  2063. msgid "Force TKIP and CCMP (AES)"
  2064. msgstr ""
  2065. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1203
  2066. msgid "Force link"
  2067. msgstr ""
  2068. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:255
  2069. msgid ""
  2070. "Force upgrade: Select 'Force upgrade' to flash the image even if the image "
  2071. "format check fails. Use only if you are sure that the firmware is correct "
  2072. "and meant for your device!"
  2073. msgstr ""
  2074. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:90
  2075. msgid "Force use of NAT-T"
  2076. msgstr ""
  2077. #: modules/luci-base/luasrc/view/csrftoken.htm:8
  2078. msgid "Form token mismatch"
  2079. msgstr ""
  2080. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:890
  2081. msgid ""
  2082. "Forward <abbr title=\"Neighbour Discovery Protocol\">NDP</abbr> <abbr title="
  2083. "\"Neighbour Solicitation, Type 135\">NS</abbr> and <abbr title=\"Neighbour "
  2084. "Advertisement, Type 136\">NA</abbr> messages between the designated master "
  2085. "interface and downstream interfaces."
  2086. msgstr ""
  2087. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:758
  2088. msgid ""
  2089. "Forward <abbr title=\"Router Advertisement, ICMPv6 Type 134\">RA</abbr> "
  2090. "messages received on the designated master interface to downstream "
  2091. "interfaces."
  2092. msgstr ""
  2093. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:164
  2094. msgid "Forward DHCP traffic"
  2095. msgstr ""
  2096. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:862
  2097. msgid ""
  2098. "Forward DHCPv6 messages between the designated master interface and "
  2099. "downstream interfaces."
  2100. msgstr ""
  2101. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:28
  2102. msgid "Forward Error Correction Seconds (FECS)"
  2103. msgstr ""
  2104. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:161
  2105. msgid "Forward broadcast traffic"
  2106. msgstr ""
  2107. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:563
  2108. msgid "Forward delay"
  2109. msgstr ""
  2110. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:964
  2111. msgid "Forward mesh peer traffic"
  2112. msgstr ""
  2113. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:761
  2114. msgid "Forward multicast packets as unicast packets on this device."
  2115. msgstr ""
  2116. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1531
  2117. msgid "Forwarding mode"
  2118. msgstr ""
  2119. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:929
  2120. msgid "Fragmentation Threshold"
  2121. msgstr ""
  2122. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:110
  2123. msgid ""
  2124. "Further information about WireGuard interfaces and peers at <a href='http://"
  2125. "wireguard.com'>wireguard.com</a>."
  2126. msgstr ""
  2127. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:128
  2128. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:184
  2129. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:164
  2130. msgid "GHz"
  2131. msgstr "GHz"
  2132. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:92
  2133. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:78
  2134. msgid "GPRS only"
  2135. msgstr ""
  2136. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:10
  2137. msgid "GRE tunnel over IPv4"
  2138. msgstr ""
  2139. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:10
  2140. msgid "GRE tunnel over IPv6"
  2141. msgstr ""
  2142. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:10
  2143. msgid "GRETAP tunnel over IPv4"
  2144. msgstr ""
  2145. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:10
  2146. msgid "GRETAP tunnel over IPv6"
  2147. msgstr ""
  2148. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:44
  2149. msgid "Gateway"
  2150. msgstr ""
  2151. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:36
  2152. msgid "Gateway Ports"
  2153. msgstr ""
  2154. #: modules/luci-base/htdocs/luci-static/resources/network.js:11
  2155. #: modules/luci-compat/luasrc/model/network.lua:29
  2156. msgid "Gateway address is invalid"
  2157. msgstr ""
  2158. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:161
  2159. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:465
  2160. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:24
  2161. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:240
  2162. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:108
  2163. msgid "General Settings"
  2164. msgstr ""
  2165. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:620
  2166. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1518
  2167. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:889
  2168. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:951
  2169. msgid "General Setup"
  2170. msgstr ""
  2171. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:394
  2172. msgid "General device options"
  2173. msgstr ""
  2174. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:150
  2175. msgid "Generate Config"
  2176. msgstr ""
  2177. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:66
  2178. msgid "Generate Key"
  2179. msgstr ""
  2180. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1499
  2181. msgid "Generate PMK locally"
  2182. msgstr ""
  2183. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:366
  2184. msgid "Generate archive"
  2185. msgstr ""
  2186. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:79
  2187. msgid "Given password confirmation did not match, password not changed!"
  2188. msgstr ""
  2189. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:146
  2190. msgid "Global Settings"
  2191. msgstr ""
  2192. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1426
  2193. msgid "Global network options"
  2194. msgstr ""
  2195. #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:57
  2196. #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215
  2197. #: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:62
  2198. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:82
  2199. msgid "Go to password configuration..."
  2200. msgstr ""
  2201. #: modules/luci-base/htdocs/luci-static/resources/form.js:2587
  2202. #: modules/luci-base/htdocs/luci-static/resources/form.js:3361
  2203. #: modules/luci-compat/luasrc/view/cbi/full_valueheader.htm:4
  2204. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:58
  2205. msgid "Go to relevant configuration page"
  2206. msgstr ""
  2207. #: modules/luci-mod-network/root/usr/share/rpcd/acl.d/luci-mod-network.json:37
  2208. msgid "Grant access to DHCP configuration"
  2209. msgstr ""
  2210. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:111
  2211. msgid "Grant access to DHCP status display"
  2212. msgstr ""
  2213. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:120
  2214. msgid "Grant access to DSL status display"
  2215. msgstr ""
  2216. #: protocols/luci-proto-openconnect/root/usr/share/rpcd/acl.d/luci-openconnect.json:3
  2217. msgid "Grant access to LuCI OpenConnect procedures"
  2218. msgstr ""
  2219. #: protocols/luci-proto-wireguard/root/usr/share/rpcd/acl.d/luci-wireguard.json:3
  2220. msgid "Grant access to LuCI Wireguard procedures"
  2221. msgstr ""
  2222. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:19
  2223. msgid "Grant access to SSH configuration"
  2224. msgstr ""
  2225. #: modules/luci-base/root/usr/share/rpcd/acl.d/luci-base.json:12
  2226. msgid "Grant access to basic LuCI procedures"
  2227. msgstr ""
  2228. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:64
  2229. msgid "Grant access to crontab configuration"
  2230. msgstr ""
  2231. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:69
  2232. msgid "Grant access to firewall status"
  2233. msgstr ""
  2234. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:116
  2235. msgid "Grant access to flash operations"
  2236. msgstr ""
  2237. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:95
  2238. msgid "Grant access to main status display"
  2239. msgstr ""
  2240. #: protocols/luci-proto-modemmanager/root/usr/share/rpcd/acl.d/luci-proto-modemmanager.json:3
  2241. msgid "Grant access to mmcli"
  2242. msgstr ""
  2243. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:84
  2244. msgid "Grant access to mount configuration"
  2245. msgstr ""
  2246. #: modules/luci-mod-network/root/usr/share/rpcd/acl.d/luci-mod-network.json:3
  2247. msgid "Grant access to network configuration"
  2248. msgstr ""
  2249. #: modules/luci-mod-network/root/usr/share/rpcd/acl.d/luci-mod-network.json:50
  2250. msgid "Grant access to network diagnostic tools"
  2251. msgstr ""
  2252. #: modules/luci-base/root/usr/share/rpcd/acl.d/luci-base.json:36
  2253. msgid "Grant access to network status information"
  2254. msgstr ""
  2255. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:13
  2256. msgid "Grant access to process status"
  2257. msgstr ""
  2258. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:3
  2259. msgid "Grant access to realtime statistics"
  2260. msgstr ""
  2261. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:42
  2262. msgid "Grant access to startup configuration"
  2263. msgstr ""
  2264. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:3
  2265. msgid "Grant access to system configuration"
  2266. msgstr ""
  2267. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:30
  2268. msgid "Grant access to system logs"
  2269. msgstr ""
  2270. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:47
  2271. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:60
  2272. msgid "Grant access to the system route status"
  2273. msgstr ""
  2274. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:129
  2275. msgid "Grant access to wireless status display"
  2276. msgstr ""
  2277. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:66
  2278. msgid "Group Password"
  2279. msgstr ""
  2280. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:22
  2281. msgid "Guest"
  2282. msgstr ""
  2283. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:81
  2284. msgid "HE.net password"
  2285. msgstr ""
  2286. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:73
  2287. msgid "HE.net username"
  2288. msgstr ""
  2289. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:46
  2290. msgid "Hang Up"
  2291. msgstr ""
  2292. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:33
  2293. msgid "Header Error Code Errors (HEC)"
  2294. msgstr ""
  2295. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/heartbeat.js:5
  2296. msgid "Heartbeat interval (kernel: heartbeat)"
  2297. msgstr ""
  2298. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:558
  2299. msgid "Hello interval"
  2300. msgstr ""
  2301. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:100
  2302. msgid ""
  2303. "Here you can configure the basic aspects of your device like its hostname or "
  2304. "the timezone."
  2305. msgstr ""
  2306. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1105
  2307. msgid "Hide <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>"
  2308. msgstr ""
  2309. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:293
  2310. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:332
  2311. msgid "Hide empty chains"
  2312. msgstr ""
  2313. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:922
  2314. msgid "High"
  2315. msgstr ""
  2316. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:55
  2317. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2117
  2318. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:125
  2319. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:230
  2320. msgid "Host"
  2321. msgstr ""
  2322. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/hosts.js:22
  2323. msgid "Host entries"
  2324. msgstr ""
  2325. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:171
  2326. msgid "Host expiry timeout"
  2327. msgstr ""
  2328. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:31
  2329. msgid "Host-<abbr title=\"Internet Protocol Address\">IP</abbr> or Network"
  2330. msgstr ""
  2331. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:88
  2332. msgid "Host-Uniq tag content"
  2333. msgstr ""
  2334. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:36
  2335. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:419
  2336. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/hosts.js:27
  2337. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:54
  2338. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:86
  2339. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:121
  2340. msgid "Hostname"
  2341. msgstr ""
  2342. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:22
  2343. msgid "Hostname to send when requesting DHCP"
  2344. msgstr ""
  2345. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/hosts.js:20
  2346. #: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:63
  2347. msgid "Hostnames"
  2348. msgstr ""
  2349. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:276
  2350. msgid "Human-readable counters"
  2351. msgstr ""
  2352. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:24
  2353. msgid "Hybrid"
  2354. msgstr ""
  2355. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:53
  2356. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:48
  2357. msgid "ID used to uniquely identify the VXLAN"
  2358. msgstr ""
  2359. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:206
  2360. msgid "IEEE 802.3ad Dynamic link aggregation (802.3ad, 4)"
  2361. msgstr ""
  2362. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:75
  2363. msgid "IKE DH Group"
  2364. msgstr ""
  2365. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:83
  2366. msgid "IP Addresses"
  2367. msgstr ""
  2368. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:81
  2369. msgid "IP Protocol"
  2370. msgstr ""
  2371. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:115
  2372. msgid "IP Type"
  2373. msgstr ""
  2374. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/hosts.js:31
  2375. msgid "IP address"
  2376. msgstr ""
  2377. #: modules/luci-base/htdocs/luci-static/resources/network.js:10
  2378. #: modules/luci-compat/luasrc/model/network.lua:28
  2379. msgid "IP address is invalid"
  2380. msgstr ""
  2381. #: modules/luci-base/htdocs/luci-static/resources/network.js:13
  2382. #: modules/luci-compat/luasrc/model/network.lua:31
  2383. msgid "IP address is missing"
  2384. msgstr ""
  2385. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:79
  2386. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:102
  2387. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:86
  2388. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:87
  2389. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:88
  2390. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:89
  2391. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:90
  2392. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:83
  2393. msgid "IPv4"
  2394. msgstr "IPv4"
  2395. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:351
  2396. msgid "IPv4 Firewall"
  2397. msgstr ""
  2398. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:29
  2399. msgid "IPv4 Upstream"
  2400. msgstr ""
  2401. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:178
  2402. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:37
  2403. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:87
  2404. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:155
  2405. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:162
  2406. msgid "IPv4 address"
  2407. msgstr ""
  2408. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:29
  2409. msgid "IPv4 assignment length"
  2410. msgstr ""
  2411. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:181
  2412. msgid "IPv4 broadcast"
  2413. msgstr ""
  2414. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:180
  2415. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:165
  2416. msgid "IPv4 gateway"
  2417. msgstr ""
  2418. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:179
  2419. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:168
  2420. msgid "IPv4 netmask"
  2421. msgstr ""
  2422. #: modules/luci-base/htdocs/luci-static/resources/validation.js:294
  2423. msgid "IPv4 network in address/netmask notation"
  2424. msgstr ""
  2425. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:117
  2426. msgid "IPv4 only"
  2427. msgstr ""
  2428. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:52
  2429. msgid "IPv4 prefix"
  2430. msgstr ""
  2431. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:61
  2432. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:55
  2433. msgid "IPv4 prefix length"
  2434. msgstr ""
  2435. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:84
  2436. msgid "IPv4+IPv6"
  2437. msgstr ""
  2438. #: modules/luci-compat/luasrc/model/network/proto_ipip.lua:9
  2439. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:10
  2440. msgid "IPv4-in-IPv4 (RFC2003)"
  2441. msgstr ""
  2442. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:116
  2443. msgid "IPv4/IPv6 (both - defaults to IPv4)"
  2444. msgstr ""
  2445. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:80
  2446. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:103
  2447. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:91
  2448. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:92
  2449. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:93
  2450. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:94
  2451. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:95
  2452. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:96
  2453. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:97
  2454. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:98
  2455. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:99
  2456. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:100
  2457. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:85
  2458. msgid "IPv6"
  2459. msgstr ""
  2460. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:354
  2461. msgid "IPv6 Firewall"
  2462. msgstr ""
  2463. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:714
  2464. msgid "IPv6 MTU"
  2465. msgstr ""
  2466. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:206
  2467. msgid "IPv6 Neighbours"
  2468. msgstr ""
  2469. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:623
  2470. msgid "IPv6 RA Settings"
  2471. msgstr ""
  2472. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:622
  2473. msgid "IPv6 Settings"
  2474. msgstr ""
  2475. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1430
  2476. msgid "IPv6 ULA-Prefix"
  2477. msgstr ""
  2478. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:29
  2479. msgid "IPv6 Upstream"
  2480. msgstr ""
  2481. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:183
  2482. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:56
  2483. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:126
  2484. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:174
  2485. msgid "IPv6 address"
  2486. msgstr ""
  2487. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:951
  2488. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:27
  2489. msgid "IPv6 assignment hint"
  2490. msgstr ""
  2491. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:946
  2492. msgid "IPv6 assignment length"
  2493. msgstr ""
  2494. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:188
  2495. msgid "IPv6 gateway"
  2496. msgstr ""
  2497. #: modules/luci-base/htdocs/luci-static/resources/validation.js:299
  2498. msgid "IPv6 network in address/netmask notation"
  2499. msgstr ""
  2500. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:118
  2501. msgid "IPv6 only"
  2502. msgstr ""
  2503. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:995
  2504. msgid "IPv6 preference"
  2505. msgstr ""
  2506. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:53
  2507. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:59
  2508. msgid "IPv6 prefix"
  2509. msgstr ""
  2510. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:968
  2511. msgid "IPv6 prefix filter"
  2512. msgstr ""
  2513. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:57
  2514. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:63
  2515. msgid "IPv6 prefix length"
  2516. msgstr ""
  2517. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:192
  2518. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:57
  2519. msgid "IPv6 routed prefix"
  2520. msgstr ""
  2521. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:991
  2522. msgid "IPv6 suffix"
  2523. msgstr ""
  2524. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:51
  2525. msgid "IPv6 support"
  2526. msgstr ""
  2527. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:101
  2528. msgid "IPv6-PD"
  2529. msgstr ""
  2530. #: modules/luci-compat/luasrc/model/network/proto_6x4.lua:13
  2531. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:10
  2532. msgid "IPv6-in-IPv4 (RFC4213)"
  2533. msgstr ""
  2534. #: modules/luci-compat/luasrc/model/network/proto_6x4.lua:17
  2535. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:9
  2536. msgid "IPv6-over-IPv4 (6rd)"
  2537. msgstr ""
  2538. #: modules/luci-compat/luasrc/model/network/proto_6x4.lua:15
  2539. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6to4.js:9
  2540. msgid "IPv6-over-IPv4 (6to4)"
  2541. msgstr ""
  2542. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1632
  2543. msgid "Identity"
  2544. msgstr ""
  2545. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:96
  2546. msgid "If checked, 1DES is enabled"
  2547. msgstr ""
  2548. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:51
  2549. msgid "If checked, adds \"+ipv6\" to the pppd options"
  2550. msgstr ""
  2551. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:93
  2552. msgid "If checked, encryption is disabled"
  2553. msgstr ""
  2554. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:968
  2555. msgid ""
  2556. "If set, downstream subnets are only allocated from the given IPv6 prefix "
  2557. "classes."
  2558. msgstr ""
  2559. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:254
  2560. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:360
  2561. msgid ""
  2562. "If specified, mount the device by its UUID instead of a fixed device node"
  2563. msgstr ""
  2564. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:267
  2565. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:376
  2566. msgid ""
  2567. "If specified, mount the device by the partition label instead of a fixed "
  2568. "device node"
  2569. msgstr ""
  2570. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:907
  2571. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:64
  2572. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:111
  2573. msgid "If unchecked, no default route is configured"
  2574. msgstr ""
  2575. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:911
  2576. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:68
  2577. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:122
  2578. msgid "If unchecked, the advertised DNS server addresses are ignored"
  2579. msgstr ""
  2580. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:339
  2581. msgid ""
  2582. "If your physical memory is insufficient unused data can be temporarily "
  2583. "swapped to a swap-device resulting in a higher amount of usable <abbr title="
  2584. "\"Random Access Memory\">RAM</abbr>. Be aware that swapping data is a very "
  2585. "slow process as the swap-device cannot be accessed with the high datarates "
  2586. "of the <abbr title=\"Random Access Memory\">RAM</abbr>."
  2587. msgstr ""
  2588. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:197
  2589. msgid "Ignore <code>/etc/hosts</code>"
  2590. msgstr ""
  2591. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:654
  2592. msgid "Ignore interface"
  2593. msgstr ""
  2594. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:185
  2595. msgid "Ignore resolve file"
  2596. msgstr ""
  2597. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:417
  2598. msgid "Image"
  2599. msgstr ""
  2600. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:68
  2601. msgid "In"
  2602. msgstr ""
  2603. #: modules/luci-base/luasrc/view/csrftoken.htm:13
  2604. msgid ""
  2605. "In order to prevent unauthorized access to the system, your request has been "
  2606. "blocked. Click \"Continue »\" below to return to the previous page."
  2607. msgstr ""
  2608. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:125
  2609. msgid "In seconds"
  2610. msgstr ""
  2611. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:144
  2612. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:128
  2613. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:114
  2614. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:92
  2615. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:101
  2616. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:124
  2617. msgid "Inactivity timeout"
  2618. msgstr ""
  2619. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:265
  2620. msgid "Inbound:"
  2621. msgstr ""
  2622. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:100
  2623. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:105
  2624. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:102
  2625. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:107
  2626. msgid "Incoming checksum"
  2627. msgstr ""
  2628. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:92
  2629. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:97
  2630. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:94
  2631. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:99
  2632. msgid "Incoming key"
  2633. msgstr ""
  2634. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:102
  2635. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:107
  2636. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:104
  2637. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:109
  2638. msgid "Incoming serialization"
  2639. msgstr ""
  2640. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:173
  2641. msgid "Info"
  2642. msgstr ""
  2643. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:102
  2644. msgid "Information"
  2645. msgstr ""
  2646. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:491
  2647. msgid "Ingress QoS mapping"
  2648. msgstr ""
  2649. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:67
  2650. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:25
  2651. msgid "Initialization failure"
  2652. msgstr ""
  2653. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:77
  2654. msgid "Initscript"
  2655. msgstr ""
  2656. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:111
  2657. msgid "Initscripts"
  2658. msgstr ""
  2659. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1616
  2660. msgid "Inner certificate constraint (Domain)"
  2661. msgstr ""
  2662. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1613
  2663. msgid "Inner certificate constraint (SAN)"
  2664. msgstr ""
  2665. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1610
  2666. msgid "Inner certificate constraint (Subject)"
  2667. msgstr ""
  2668. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1619
  2669. msgid "Inner certificate constraint (Wildcard)"
  2670. msgstr ""
  2671. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:300
  2672. msgid "Install protocol extensions..."
  2673. msgstr ""
  2674. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1985
  2675. msgid ""
  2676. "Instead of joining any network with a matching SSID, only connect to the "
  2677. "BSSID <code>%h</code>."
  2678. msgstr ""
  2679. #: modules/luci-compat/luasrc/view/cbi/map.htm:43
  2680. msgid "Insufficient permissions to read UCI configuration."
  2681. msgstr ""
  2682. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:27
  2683. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:157
  2684. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:176
  2685. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:17
  2686. msgid "Interface"
  2687. msgstr ""
  2688. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:706
  2689. msgid "Interface \"%h\" is already marked as designated master."
  2690. msgstr ""
  2691. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:62
  2692. msgid "Interface %q device auto-migrated from %q to %q."
  2693. msgstr ""
  2694. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:947
  2695. msgid "Interface Configuration"
  2696. msgstr ""
  2697. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:111
  2698. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:151
  2699. msgid "Interface has %d pending changes"
  2700. msgstr ""
  2701. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:92
  2702. msgid "Interface is disabled"
  2703. msgstr ""
  2704. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:65
  2705. msgid "Interface is marked for deletion"
  2706. msgstr ""
  2707. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:210
  2708. msgid "Interface is reconnecting..."
  2709. msgstr ""
  2710. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:194
  2711. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:204
  2712. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:210
  2713. msgid "Interface is shutting down..."
  2714. msgstr ""
  2715. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:285
  2716. msgid "Interface is starting..."
  2717. msgstr ""
  2718. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:288
  2719. msgid "Interface is stopping..."
  2720. msgstr ""
  2721. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1118
  2722. msgid "Interface name"
  2723. msgstr ""
  2724. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:123
  2725. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:304
  2726. msgid "Interface not present or not connected yet."
  2727. msgstr ""
  2728. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:450
  2729. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:479
  2730. #: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:38
  2731. msgid "Interfaces"
  2732. msgstr ""
  2733. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:20
  2734. msgid "Internal"
  2735. msgstr ""
  2736. #: modules/luci-base/luasrc/view/error500.htm:8
  2737. msgid "Internal Server Error"
  2738. msgstr ""
  2739. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:283
  2740. msgid "Interval For Sending Learning Packets"
  2741. msgstr ""
  2742. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:592
  2743. msgid ""
  2744. "Interval in centiseconds between multicast general queries. By varying the "
  2745. "value, an administrator may tune the number of IGMP messages on the subnet; "
  2746. "larger values cause IGMP Queries to be sent less often"
  2747. msgstr ""
  2748. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:558
  2749. msgid "Interval in seconds for STP hello packets"
  2750. msgstr ""
  2751. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:192
  2752. #: modules/luci-compat/luasrc/view/cbi/tsection.htm:42
  2753. msgid "Invalid"
  2754. msgstr ""
  2755. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:19
  2756. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:22
  2757. msgid "Invalid Base64 key string"
  2758. msgstr ""
  2759. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:78
  2760. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:83
  2761. msgid "Invalid TOS value, expected 00..FF or inherit"
  2762. msgstr ""
  2763. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:83
  2764. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:88
  2765. msgid "Invalid Traffic Class value, expected 00..FF or inherit"
  2766. msgstr ""
  2767. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:285
  2768. msgid "Invalid VLAN ID given! Only IDs between %d and %d are allowed."
  2769. msgstr ""
  2770. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:294
  2771. msgid "Invalid VLAN ID given! Only unique IDs are allowed"
  2772. msgstr ""
  2773. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:403
  2774. msgid "Invalid argument"
  2775. msgstr ""
  2776. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:46
  2777. msgid ""
  2778. "Invalid bearer list. Possibly too many bearers created. This protocol "
  2779. "supports one and only one bearer."
  2780. msgstr ""
  2781. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:402
  2782. msgid "Invalid command"
  2783. msgstr ""
  2784. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:101
  2785. msgid "Invalid hexadecimal value"
  2786. msgstr ""
  2787. #: modules/luci-base/luasrc/view/sysauth.htm:12
  2788. msgid "Invalid username and/or password! Please try again."
  2789. msgstr ""
  2790. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1114
  2791. msgid "Isolate Clients"
  2792. msgstr ""
  2793. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:231
  2794. msgid ""
  2795. "It appears that you are trying to flash an image that does not fit into the "
  2796. "flash memory, please verify the image file!"
  2797. msgstr ""
  2798. #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:64
  2799. #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:222
  2800. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:72
  2801. msgid "JavaScript required!"
  2802. msgstr ""
  2803. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1783
  2804. msgid "Join Network"
  2805. msgstr ""
  2806. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1717
  2807. msgid "Join Network: Wireless Scan"
  2808. msgstr ""
  2809. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1993
  2810. msgid "Joining Network: %q"
  2811. msgstr ""
  2812. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:223
  2813. msgid "Keep settings and retain the current configuration"
  2814. msgstr ""
  2815. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/dmesg.js:20
  2816. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:51
  2817. msgid "Kernel Log"
  2818. msgstr ""
  2819. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:58
  2820. msgid "Kernel Version"
  2821. msgstr ""
  2822. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1408
  2823. msgid "Key"
  2824. msgstr ""
  2825. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1436
  2826. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1437
  2827. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1438
  2828. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1439
  2829. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1451
  2830. msgid "Key #%d"
  2831. msgstr ""
  2832. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:92
  2833. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:97
  2834. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:94
  2835. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:99
  2836. msgid "Key for incoming packets (optional)."
  2837. msgstr ""
  2838. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:96
  2839. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:101
  2840. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:98
  2841. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:103
  2842. msgid "Key for outgoing packets (optional)."
  2843. msgstr ""
  2844. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:54
  2845. msgid "Kill"
  2846. msgstr ""
  2847. #: modules/luci-compat/luasrc/model/network/proto_ppp.lua:21
  2848. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:10
  2849. msgid "L2TP"
  2850. msgstr ""
  2851. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:40
  2852. msgid "L2TP Server"
  2853. msgstr ""
  2854. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:267
  2855. msgid "LACPDU Packets"
  2856. msgstr ""
  2857. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:118
  2858. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:102
  2859. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:88
  2860. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:62
  2861. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:75
  2862. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:98
  2863. msgid "LCP echo failure threshold"
  2864. msgstr ""
  2865. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:131
  2866. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:115
  2867. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:101
  2868. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:75
  2869. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:88
  2870. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:111
  2871. msgid "LCP echo interval"
  2872. msgstr ""
  2873. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:101
  2874. msgid "LED Configuration"
  2875. msgstr ""
  2876. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1525
  2877. msgid "LLC"
  2878. msgstr ""
  2879. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:267
  2880. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:376
  2881. msgid "Label"
  2882. msgstr ""
  2883. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:211
  2884. msgid "Language"
  2885. msgstr ""
  2886. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:111
  2887. msgid "Language and Style"
  2888. msgstr ""
  2889. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:611
  2890. msgid "Last member interval"
  2891. msgstr ""
  2892. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:23
  2893. msgid "Latency"
  2894. msgstr ""
  2895. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:21
  2896. msgid "Leaf"
  2897. msgstr ""
  2898. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:757
  2899. msgid "Learn"
  2900. msgstr ""
  2901. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:894
  2902. msgid "Learn routes"
  2903. msgstr ""
  2904. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:522
  2905. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:667
  2906. msgid "Lease time"
  2907. msgstr ""
  2908. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:39
  2909. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:58
  2910. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:89
  2911. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:128
  2912. msgid "Lease time remaining"
  2913. msgstr ""
  2914. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:181
  2915. msgid "Leasefile"
  2916. msgstr ""
  2917. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:41
  2918. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:47
  2919. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:50
  2920. msgid "Leave empty to autodetect"
  2921. msgstr ""
  2922. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:40
  2923. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:39
  2924. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6to4.js:39
  2925. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:45
  2926. msgid "Leave empty to use the current WAN address"
  2927. msgstr ""
  2928. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:910
  2929. msgid ""
  2930. "Legacy or badly behaving devices may require legacy 802.11b rates to "
  2931. "interoperate. Airtime efficiency may be significantly reduced where these "
  2932. "are used. It is recommended to not allow 802.11b rates where possible."
  2933. msgstr ""
  2934. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4051
  2935. msgid "Legend:"
  2936. msgstr ""
  2937. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:662
  2938. msgid "Limit"
  2939. msgstr ""
  2940. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:389
  2941. msgid "Limit DNS service to subnets interfaces on which we are serving DNS."
  2942. msgstr ""
  2943. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:402
  2944. msgid "Limit listening to these interfaces, and loopback."
  2945. msgstr ""
  2946. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:24
  2947. msgid "Line Attenuation (LATN)"
  2948. msgstr ""
  2949. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:18
  2950. msgid "Line Mode"
  2951. msgstr ""
  2952. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:17
  2953. msgid "Line State"
  2954. msgstr ""
  2955. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:19
  2956. msgid "Line Uptime"
  2957. msgstr ""
  2958. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:123
  2959. msgid "Link Aggregation (Channel Bonding)"
  2960. msgstr ""
  2961. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:348
  2962. msgid "Link Monitoring"
  2963. msgstr ""
  2964. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:23
  2965. msgid "Link On"
  2966. msgstr ""
  2967. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:278
  2968. msgid ""
  2969. "List of <abbr title=\"Domain Name System\">DNS</abbr> servers to forward "
  2970. "requests to"
  2971. msgstr ""
  2972. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1521
  2973. msgid ""
  2974. "List of R0KHs in the same Mobility Domain. <br />Format: MAC-address,NAS-"
  2975. "Identifier,128-bit key as hex string. <br />This list is used to map R0KH-ID "
  2976. "(NAS Identifier) to a destination MAC address when requesting PMK-R1 key "
  2977. "from the R0KH that the STA used during the Initial Mobility Domain "
  2978. "Association."
  2979. msgstr ""
  2980. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1525
  2981. msgid ""
  2982. "List of R1KHs in the same Mobility Domain. <br />Format: MAC-address,R1KH-ID "
  2983. "as 6 octets with colons,128-bit key as hex string. <br />This list is used "
  2984. "to map R1KH-ID to a destination MAC address when sending PMK-R1 key from the "
  2985. "R0KH. This is also the list of authorized R1KHs in the MD that can request "
  2986. "PMK-R1 keys."
  2987. msgstr ""
  2988. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:82
  2989. msgid "List of SSH key files for auth"
  2990. msgstr ""
  2991. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:308
  2992. msgid "List of domains to allow RFC1918 responses for"
  2993. msgstr ""
  2994. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:286
  2995. msgid "List of domains to force to an IP address."
  2996. msgstr ""
  2997. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:267
  2998. msgid "List of hosts that supply bogus NX domain results"
  2999. msgstr ""
  3000. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:401
  3001. msgid "Listen Interfaces"
  3002. msgstr ""
  3003. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:78
  3004. msgid "Listen Port"
  3005. msgstr ""
  3006. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:17
  3007. msgid "Listen only on the given interface or, if unspecified, on all"
  3008. msgstr ""
  3009. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:318
  3010. msgid "Listening port for inbound DNS queries"
  3011. msgstr ""
  3012. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:100
  3013. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:54
  3014. msgid "Load"
  3015. msgstr ""
  3016. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:61
  3017. msgid "Load Average"
  3018. msgstr ""
  3019. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2957
  3020. msgid "Loading directory contents…"
  3021. msgstr ""
  3022. #: modules/luci-base/htdocs/luci-static/resources/luci.js:1949
  3023. #: modules/luci-base/luasrc/view/view.htm:4
  3024. #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:12
  3025. msgid "Loading view…"
  3026. msgstr ""
  3027. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:923
  3028. msgid "Local"
  3029. msgstr ""
  3030. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:77
  3031. msgid "Local IP address"
  3032. msgstr ""
  3033. #: modules/luci-base/htdocs/luci-static/resources/network.js:12
  3034. #: modules/luci-compat/luasrc/model/network.lua:30
  3035. msgid "Local IP address is invalid"
  3036. msgstr ""
  3037. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:86
  3038. msgid "Local IP address to assign"
  3039. msgstr ""
  3040. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:46
  3041. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:46
  3042. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:44
  3043. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:40
  3044. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:39
  3045. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6to4.js:39
  3046. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:151
  3047. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:44
  3048. msgid "Local IPv4 address"
  3049. msgstr ""
  3050. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:872
  3051. msgid "Local IPv6 DNS server"
  3052. msgstr ""
  3053. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:46
  3054. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:53
  3055. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:54
  3056. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:45
  3057. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:44
  3058. msgid "Local IPv6 address"
  3059. msgstr ""
  3060. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388
  3061. msgid "Local Service Only"
  3062. msgstr ""
  3063. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:115
  3064. msgid "Local Startup"
  3065. msgstr ""
  3066. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:59
  3067. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:117
  3068. msgid "Local Time"
  3069. msgstr ""
  3070. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:969
  3071. msgid "Local ULA"
  3072. msgstr ""
  3073. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:243
  3074. msgid "Local domain"
  3075. msgstr ""
  3076. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:240
  3077. msgid ""
  3078. "Local domain specification. Names matching this domain are never forwarded "
  3079. "and are resolved from DHCP or hosts files only"
  3080. msgstr ""
  3081. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:244
  3082. msgid "Local domain suffix appended to DHCP names and hosts file entries"
  3083. msgstr ""
  3084. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:239
  3085. msgid "Local server"
  3086. msgstr ""
  3087. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:224
  3088. msgid ""
  3089. "Localise hostname depending on the requesting subnet if multiple IPs are "
  3090. "available"
  3091. msgstr ""
  3092. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:223
  3093. msgid "Localise queries"
  3094. msgstr ""
  3095. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1985
  3096. msgid "Lock to BSSID"
  3097. msgstr ""
  3098. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:171
  3099. msgid "Log output level"
  3100. msgstr ""
  3101. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:274
  3102. msgid "Log queries"
  3103. msgstr ""
  3104. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:109
  3105. msgid "Logging"
  3106. msgstr ""
  3107. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57
  3108. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:57
  3109. msgid ""
  3110. "Logical network from which to select the local endpoint if local IPv6 "
  3111. "address is empty and no WAN IPv6 is available (optional)."
  3112. msgstr ""
  3113. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:57
  3114. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62
  3115. msgid "Logical network to which the tunnel will be added (bridged) (optional)."
  3116. msgstr ""
  3117. #: modules/luci-base/luasrc/view/sysauth.htm:38
  3118. msgid "Login"
  3119. msgstr ""
  3120. #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:81
  3121. msgid "Logout"
  3122. msgstr ""
  3123. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:666
  3124. msgid "Loose filtering"
  3125. msgstr ""
  3126. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:31
  3127. msgid "Loss of Signal Seconds (LOSS)"
  3128. msgstr ""
  3129. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:657
  3130. msgid "Lowest leased address as offset from the network address."
  3131. msgstr ""
  3132. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:48
  3133. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:83
  3134. msgid "MAC"
  3135. msgstr "MAC"
  3136. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1402
  3137. msgid "MAC Address"
  3138. msgstr ""
  3139. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1050
  3140. msgid "MAC Address Filter"
  3141. msgstr ""
  3142. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:251
  3143. msgid "MAC Address For The Actor"
  3144. msgstr ""
  3145. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:405
  3146. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1370
  3147. msgid "MAC VLAN"
  3148. msgstr ""
  3149. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:622
  3150. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:38
  3151. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2116
  3152. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:56
  3153. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:88
  3154. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:229
  3155. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:156
  3156. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:175
  3157. msgid "MAC address"
  3158. msgstr ""
  3159. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:953
  3160. msgid "MAC-Filter"
  3161. msgstr ""
  3162. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1057
  3163. msgid "MAC-List"
  3164. msgstr ""
  3165. #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:16
  3166. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:13
  3167. msgid "MAP / LW4over6"
  3168. msgstr ""
  3169. #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:62
  3170. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:7
  3171. msgid "MAP rule is invalid"
  3172. msgstr ""
  3173. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:218
  3174. msgid "MD5"
  3175. msgstr "MD5"
  3176. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:199
  3177. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:28
  3178. msgid "MHz"
  3179. msgstr "MHz"
  3180. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:353
  3181. msgid "MII"
  3182. msgstr ""
  3183. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:421
  3184. msgid "MII / ETHTOOL ioctls"
  3185. msgstr ""
  3186. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:394
  3187. msgid "MII Interval"
  3188. msgstr ""
  3189. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:616
  3190. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1414
  3191. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:54
  3192. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:53
  3193. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:92
  3194. msgid "MTU"
  3195. msgstr "MTU"
  3196. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:302
  3197. msgid ""
  3198. "Make sure to clone the root filesystem using something like the commands "
  3199. "below:"
  3200. msgstr ""
  3201. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:110
  3202. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:102
  3203. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:53
  3204. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:98
  3205. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:84
  3206. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:58
  3207. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:71
  3208. msgid "Manual"
  3209. msgstr ""
  3210. #: modules/luci-base/htdocs/luci-static/resources/network.js:3820
  3211. msgid "Master"
  3212. msgstr ""
  3213. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:799
  3214. msgid "Max <abbr title=\"Router Advertisement\">RA</abbr> interval"
  3215. msgstr ""
  3216. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:22
  3217. msgid "Max. Attainable Data Rate (ATTNDR)"
  3218. msgstr ""
  3219. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:568
  3220. msgid "Maximum age"
  3221. msgstr ""
  3222. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1146
  3223. msgid "Maximum allowed Listen Interval"
  3224. msgstr ""
  3225. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:336
  3226. msgid "Maximum allowed number of active DHCP leases"
  3227. msgstr ""
  3228. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:354
  3229. msgid "Maximum allowed number of concurrent DNS queries"
  3230. msgstr ""
  3231. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:345
  3232. msgid "Maximum allowed size of EDNS.0 UDP packets"
  3233. msgstr ""
  3234. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:114
  3235. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:106
  3236. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:95
  3237. msgid "Maximum amount of seconds to wait for the modem to become ready"
  3238. msgstr ""
  3239. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:662
  3240. msgid "Maximum number of leased addresses."
  3241. msgstr ""
  3242. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:578
  3243. msgid "Maximum snooping table size"
  3244. msgstr ""
  3245. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:799
  3246. msgid ""
  3247. "Maximum time allowed between sending unsolicited <abbr title=\"Router "
  3248. "Advertisement, ICMPv6 Type 134\">RA</abbr>. Default is 600 seconds."
  3249. msgstr ""
  3250. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:913
  3251. msgid "Maximum transmit power"
  3252. msgstr ""
  3253. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:129
  3254. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:188
  3255. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:199
  3256. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:28
  3257. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:165
  3258. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:321
  3259. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:322
  3260. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:323
  3261. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:327
  3262. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:328
  3263. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:329
  3264. msgid "Mbit/s"
  3265. msgstr ""
  3266. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:35
  3267. msgid "Medium"
  3268. msgstr ""
  3269. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:24
  3270. msgid "Memory"
  3271. msgstr ""
  3272. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:73
  3273. msgid "Memory usage (%)"
  3274. msgstr ""
  3275. #: modules/luci-base/htdocs/luci-static/resources/network.js:3823
  3276. msgid "Mesh"
  3277. msgstr ""
  3278. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:156
  3279. msgid "Mesh ID"
  3280. msgstr ""
  3281. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:961
  3282. msgid "Mesh Id"
  3283. msgstr ""
  3284. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:404
  3285. msgid "Method not found"
  3286. msgstr ""
  3287. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:349
  3288. msgid "Method of link monitoring"
  3289. msgstr ""
  3290. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:418
  3291. msgid "Method to determine link status"
  3292. msgstr ""
  3293. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:46
  3294. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:166
  3295. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:185
  3296. msgid "Metric"
  3297. msgstr ""
  3298. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:806
  3299. msgid "Min <abbr title=\"Router Advertisement\">RA</abbr> interval"
  3300. msgstr ""
  3301. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:704
  3302. msgid "Minimum ARP validity time"
  3303. msgstr ""
  3304. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:235
  3305. msgid "Minimum Number of Links"
  3306. msgstr ""
  3307. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:704
  3308. msgid ""
  3309. "Minimum required time in seconds before an ARP entry may be replaced. "
  3310. "Prevents ARP cache thrashing."
  3311. msgstr ""
  3312. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:806
  3313. msgid ""
  3314. "Minimum time allowed between sending unsolicited <abbr title=\"Router "
  3315. "Advertisement, ICMPv6 Type 134\">RA</abbr>. Default is 200 seconds."
  3316. msgstr ""
  3317. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:202
  3318. msgid "Mirror monitor port"
  3319. msgstr ""
  3320. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:201
  3321. msgid "Mirror source port"
  3322. msgstr ""
  3323. #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:9
  3324. msgid "Mobile Data"
  3325. msgstr ""
  3326. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1481
  3327. msgid "Mobility Domain"
  3328. msgstr ""
  3329. #: modules/luci-compat/luasrc/view/cbi/wireless_modefreq.htm:154
  3330. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:473
  3331. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:157
  3332. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:180
  3333. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:464
  3334. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:956
  3335. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1701
  3336. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:378
  3337. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:142
  3338. msgid "Mode"
  3339. msgstr ""
  3340. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:55
  3341. msgid "Model"
  3342. msgstr ""
  3343. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:43
  3344. msgid "Modem bearer teardown in progress."
  3345. msgstr ""
  3346. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:42
  3347. msgid ""
  3348. "Modem connection in progress. Please wait. This process will timeout after 2 "
  3349. "minutes."
  3350. msgstr ""
  3351. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:73
  3352. msgid "Modem default"
  3353. msgstr ""
  3354. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:73
  3355. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:82
  3356. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:61
  3357. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:73
  3358. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:57
  3359. msgid "Modem device"
  3360. msgstr ""
  3361. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:41
  3362. msgid "Modem disconnection in progress. Please wait."
  3363. msgstr ""
  3364. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:66
  3365. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:24
  3366. msgid "Modem information query failed"
  3367. msgstr ""
  3368. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:114
  3369. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:106
  3370. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:95
  3371. msgid "Modem init timeout"
  3372. msgstr ""
  3373. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:44
  3374. msgid "Modem is disabled."
  3375. msgstr ""
  3376. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:52
  3377. msgid "ModemManager"
  3378. msgstr ""
  3379. #: modules/luci-base/htdocs/luci-static/resources/network.js:3824
  3380. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1044
  3381. msgid "Monitor"
  3382. msgstr ""
  3383. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:31
  3384. msgid "More Characters"
  3385. msgstr ""
  3386. #: modules/luci-base/htdocs/luci-static/resources/form.js:2529
  3387. msgid "More…"
  3388. msgstr ""
  3389. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:192
  3390. msgid "Mount Point"
  3391. msgstr ""
  3392. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:144
  3393. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:228
  3394. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:88
  3395. msgid "Mount Points"
  3396. msgstr ""
  3397. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:229
  3398. msgid "Mount Points - Mount Entry"
  3399. msgstr ""
  3400. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:340
  3401. msgid "Mount Points - Swap Entry"
  3402. msgstr ""
  3403. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:228
  3404. msgid ""
  3405. "Mount Points define at which point a memory device will be attached to the "
  3406. "filesystem"
  3407. msgstr ""
  3408. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:154
  3409. msgid "Mount attached devices"
  3410. msgstr ""
  3411. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:162
  3412. msgid "Mount filesystems not specifically configured"
  3413. msgstr ""
  3414. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:331
  3415. msgid "Mount options"
  3416. msgstr ""
  3417. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:292
  3418. msgid "Mount point"
  3419. msgstr ""
  3420. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:158
  3421. msgid "Mount swap not specifically configured"
  3422. msgstr ""
  3423. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:223
  3424. msgid "Mounted file systems"
  3425. msgstr ""
  3426. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:152
  3427. msgid "Move down"
  3428. msgstr ""
  3429. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:151
  3430. msgid "Move up"
  3431. msgstr ""
  3432. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:89
  3433. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:94
  3434. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:91
  3435. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:96
  3436. msgid "Multicast"
  3437. msgstr ""
  3438. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:755
  3439. msgid "Multicast routing"
  3440. msgstr ""
  3441. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:761
  3442. msgid "Multicast to unicast"
  3443. msgstr ""
  3444. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1476
  3445. msgid "NAS ID"
  3446. msgstr ""
  3447. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:87
  3448. msgid "NAT-T Mode"
  3449. msgstr ""
  3450. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:41
  3451. msgid "NAT64 Prefix"
  3452. msgstr ""
  3453. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:26
  3454. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:31
  3455. msgid "NCM"
  3456. msgstr "NCM"
  3457. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:899
  3458. msgid "NDP-Proxy slave"
  3459. msgstr ""
  3460. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:72
  3461. msgid "NT Domain"
  3462. msgstr ""
  3463. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:276
  3464. msgid "NTP server candidates"
  3465. msgstr ""
  3466. #: modules/luci-base/htdocs/luci-static/resources/form.js:2567
  3467. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3806
  3468. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:27
  3469. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1070
  3470. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:67
  3471. msgid "Name"
  3472. msgstr ""
  3473. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1963
  3474. msgid "Name of the new network"
  3475. msgstr ""
  3476. #: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:44
  3477. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:50
  3478. msgid "Navigation"
  3479. msgstr ""
  3480. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:694
  3481. msgid "Neighbour cache validity"
  3482. msgstr ""
  3483. #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:45
  3484. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:989
  3485. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2115
  3486. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:381
  3487. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:63
  3488. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:228
  3489. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:163
  3490. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:182
  3491. msgid "Network"
  3492. msgstr ""
  3493. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1957
  3494. msgid "Network SSID"
  3495. msgstr ""
  3496. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:68
  3497. msgid "Network Utilities"
  3498. msgstr ""
  3499. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:380
  3500. msgid "Network boot image"
  3501. msgstr ""
  3502. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:380
  3503. msgid "Network bridge configuration migration"
  3504. msgstr ""
  3505. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:401
  3506. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1376
  3507. msgid "Network device"
  3508. msgstr ""
  3509. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:7
  3510. msgid "Network device activity (kernel: netdev)"
  3511. msgstr ""
  3512. #: modules/luci-base/htdocs/luci-static/resources/network.js:15
  3513. #: modules/luci-compat/luasrc/model/network.lua:33
  3514. msgid "Network device is not present"
  3515. msgstr ""
  3516. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:414
  3517. msgid "Network ifname configuration migration"
  3518. msgstr ""
  3519. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:57
  3520. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62
  3521. msgid "Network interface"
  3522. msgstr ""
  3523. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:756
  3524. msgid "Never"
  3525. msgstr ""
  3526. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1122
  3527. msgid "New interface for \"%s\" can not be created: %s"
  3528. msgstr ""
  3529. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1073
  3530. msgid "New interface name…"
  3531. msgstr ""
  3532. #: modules/luci-compat/luasrc/view/cbi/delegator.htm:11
  3533. msgid "Next »"
  3534. msgstr ""
  3535. #: modules/luci-base/htdocs/luci-static/resources/form.js:3702
  3536. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:296
  3537. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:345
  3538. msgid "No"
  3539. msgstr ""
  3540. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:631
  3541. msgid "No DHCP Server configured for this interface"
  3542. msgstr ""
  3543. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:196
  3544. msgid "No Data"
  3545. msgstr ""
  3546. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1349
  3547. msgid "No Encryption"
  3548. msgstr ""
  3549. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:87
  3550. msgid "No Host Routes"
  3551. msgstr ""
  3552. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:89
  3553. msgid "No NAT-T"
  3554. msgstr ""
  3555. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:79
  3556. msgid "No RX signal"
  3557. msgstr ""
  3558. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69
  3559. msgid "No client associated"
  3560. msgstr ""
  3561. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:406
  3562. msgid "No data received"
  3563. msgstr ""
  3564. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:730
  3565. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:737
  3566. msgid "No enforcement"
  3567. msgstr ""
  3568. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2897
  3569. msgid "No entries in this directory"
  3570. msgstr ""
  3571. #: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:82
  3572. msgid "No files found"
  3573. msgstr ""
  3574. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:86
  3575. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:91
  3576. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:88
  3577. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:93
  3578. msgid "No host route"
  3579. msgstr ""
  3580. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:698
  3581. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:142
  3582. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:358
  3583. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:59
  3584. msgid "No information available"
  3585. msgstr ""
  3586. #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:63
  3587. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:8
  3588. msgid "No matching prefix delegation"
  3589. msgstr ""
  3590. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:140
  3591. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:143
  3592. msgid "No more slaves available"
  3593. msgstr ""
  3594. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:187
  3595. msgid "No more slaves available, can not save interface"
  3596. msgstr ""
  3597. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:251
  3598. msgid "No negative cache"
  3599. msgstr ""
  3600. #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:54
  3601. #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:212
  3602. #: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:59
  3603. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:79
  3604. msgid "No password set!"
  3605. msgstr ""
  3606. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:125
  3607. msgid "No peers defined yet"
  3608. msgstr ""
  3609. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:140
  3610. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:277
  3611. msgid "No public keys present yet."
  3612. msgstr ""
  3613. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:91
  3614. msgid "No rules in this chain."
  3615. msgstr ""
  3616. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:384
  3617. msgid "No validation or filtering"
  3618. msgstr ""
  3619. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:153
  3620. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1164
  3621. msgid "No zone assigned"
  3622. msgstr ""
  3623. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:58
  3624. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:84
  3625. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:187
  3626. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:231
  3627. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:275
  3628. msgid "Noise"
  3629. msgstr ""
  3630. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:26
  3631. msgid "Noise Margin (SNR)"
  3632. msgstr ""
  3633. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:270
  3634. msgid "Noise:"
  3635. msgstr ""
  3636. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:34
  3637. msgid "Non Pre-emptive CRC errors (CRC_P)"
  3638. msgstr ""
  3639. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:394
  3640. msgid "Non-wildcard"
  3641. msgstr ""
  3642. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:159
  3643. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:183
  3644. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:101
  3645. msgid "None"
  3646. msgstr ""
  3647. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:921
  3648. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:184
  3649. msgid "Normal"
  3650. msgstr ""
  3651. #: modules/luci-base/luasrc/view/error404.htm:8
  3652. msgid "Not Found"
  3653. msgstr ""
  3654. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:75
  3655. msgid "Not associated"
  3656. msgstr ""
  3657. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:32
  3658. msgid "Not connected"
  3659. msgstr ""
  3660. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:46
  3661. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:81
  3662. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:121
  3663. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:147
  3664. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:312
  3665. msgid "Not present"
  3666. msgstr ""
  3667. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:102
  3668. msgid "Not started on boot"
  3669. msgstr ""
  3670. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:409
  3671. msgid "Not supported"
  3672. msgstr ""
  3673. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1645
  3674. msgid ""
  3675. "Note: Some wireless drivers do not fully support 802.11w. E.g. mwlwifi may "
  3676. "have problems"
  3677. msgstr ""
  3678. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:128
  3679. msgid "Notes"
  3680. msgstr ""
  3681. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:174
  3682. msgid "Notice"
  3683. msgstr ""
  3684. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:127
  3685. msgid "Nslookup"
  3686. msgstr ""
  3687. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:332
  3688. msgid "Number of IGMP membership reports"
  3689. msgstr ""
  3690. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:362
  3691. msgid "Number of cached DNS entries (max is 10000, 0 is no caching)"
  3692. msgstr ""
  3693. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:309
  3694. msgid "Number of peer notifications after failover event"
  3695. msgstr ""
  3696. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:69
  3697. msgid "Obfuscated Group Password"
  3698. msgstr ""
  3699. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:61
  3700. msgid "Obfuscated Password"
  3701. msgstr ""
  3702. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:106
  3703. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:98
  3704. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:49
  3705. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:94
  3706. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:80
  3707. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:54
  3708. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:67
  3709. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:93
  3710. msgid "Obtain IPv6 address"
  3711. msgstr ""
  3712. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/default-on.js:18
  3713. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:351
  3714. msgid "Off"
  3715. msgstr ""
  3716. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/timer.js:15
  3717. msgid "Off-State Delay"
  3718. msgstr ""
  3719. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/default-on.js:18
  3720. msgid "On"
  3721. msgstr ""
  3722. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:96
  3723. msgid "On-Link route"
  3724. msgstr ""
  3725. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/timer.js:11
  3726. msgid "On-State Delay"
  3727. msgstr ""
  3728. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:504
  3729. msgid "One of hostname or mac address must be specified!"
  3730. msgstr ""
  3731. #: modules/luci-base/htdocs/luci-static/resources/validation.js:469
  3732. msgid "One of the following: %s"
  3733. msgstr ""
  3734. #: modules/luci-compat/luasrc/view/cbi/nullsection.htm:17
  3735. #: modules/luci-compat/luasrc/view/cbi/ucisection.htm:22
  3736. msgid "One or more fields contain invalid values!"
  3737. msgstr ""
  3738. #: modules/luci-compat/luasrc/view/cbi/map.htm:32
  3739. msgid "One or more invalid/required values on tab"
  3740. msgstr ""
  3741. #: modules/luci-compat/luasrc/view/cbi/nullsection.htm:19
  3742. #: modules/luci-compat/luasrc/view/cbi/ucisection.htm:24
  3743. msgid "One or more required fields have no value!"
  3744. msgstr ""
  3745. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:751
  3746. msgid "Only allow communication with non-isolated bridge ports when enabled"
  3747. msgstr ""
  3748. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:229
  3749. msgid ""
  3750. "Only if current active slave fails and the primary slave is up (failure, 2)"
  3751. msgstr ""
  3752. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:442
  3753. #: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:19
  3754. msgid "Open list..."
  3755. msgstr ""
  3756. #: modules/luci-compat/luasrc/model/network/proto_openconnect.lua:9
  3757. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:64
  3758. msgid "OpenConnect (CISCO AnyConnect)"
  3759. msgstr ""
  3760. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:12
  3761. msgid "OpenFortivpn"
  3762. msgstr ""
  3763. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:712
  3764. msgid ""
  3765. "Operate in <em>relay mode</em> if a designated master interface is "
  3766. "configured and active, otherwise disable <abbr title=\"Neighbour Discovery "
  3767. "Protocol\">NDP</abbr> proxying."
  3768. msgstr ""
  3769. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:711
  3770. msgid ""
  3771. "Operate in <em>relay mode</em> if a designated master interface is "
  3772. "configured and active, otherwise fall back to <em>server mode</em>."
  3773. msgstr ""
  3774. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:713
  3775. msgid ""
  3776. "Operate in <em>relay mode</em> if an upstream IPv6 prefix is present, "
  3777. "otherwise disable service."
  3778. msgstr ""
  3779. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:906
  3780. msgid "Operating frequency"
  3781. msgstr ""
  3782. #: modules/luci-base/htdocs/luci-static/resources/form.js:1974
  3783. #: modules/luci-base/htdocs/luci-static/resources/form.js:3712
  3784. msgid "Option \"%s\" contains an invalid input value."
  3785. msgstr ""
  3786. #: modules/luci-base/htdocs/luci-static/resources/form.js:1987
  3787. msgid "Option \"%s\" must not be empty."
  3788. msgstr ""
  3789. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4058
  3790. msgid "Option changed"
  3791. msgstr ""
  3792. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4060
  3793. msgid "Option removed"
  3794. msgstr ""
  3795. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1647
  3796. msgid "Optional"
  3797. msgstr ""
  3798. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:128
  3799. msgid "Optional, free-form notes about this device"
  3800. msgstr ""
  3801. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:97
  3802. msgid ""
  3803. "Optional. 32-bit mark for outgoing encrypted packets. Enter value in hex, "
  3804. "starting with <code>0x</code>."
  3805. msgstr ""
  3806. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:991
  3807. msgid ""
  3808. "Optional. Allowed values: 'eui64', 'random', fixed value like '::1' or "
  3809. "'::1:2'. When IPv6 prefix (like 'a:b:c:d::') is received from a delegating "
  3810. "server, use the suffix (like '::1') to form the IPv6 address ('a:b:c:d::1') "
  3811. "for the interface."
  3812. msgstr ""
  3813. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:138
  3814. msgid ""
  3815. "Optional. Base64-encoded preshared key. Adds in an additional layer of "
  3816. "symmetric-key cryptography for post-quantum resistance."
  3817. msgstr ""
  3818. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
  3819. msgid "Optional. Create routes for Allowed IPs for this peer."
  3820. msgstr ""
  3821. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:129
  3822. msgid "Optional. Description of peer."
  3823. msgstr ""
  3824. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:87
  3825. msgid "Optional. Do not create host routes to peers."
  3826. msgstr ""
  3827. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:156
  3828. msgid ""
  3829. "Optional. Host of peer. Names are resolved prior to bringing up the "
  3830. "interface."
  3831. msgstr ""
  3832. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:92
  3833. msgid "Optional. Maximum Transmission Unit of tunnel interface."
  3834. msgstr ""
  3835. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:160
  3836. msgid "Optional. Port of peer."
  3837. msgstr ""
  3838. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:164
  3839. msgid ""
  3840. "Optional. Seconds between keep alive messages. Default is 0 (disabled). "
  3841. "Recommended value if this device is behind a NAT is 25."
  3842. msgstr ""
  3843. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:78
  3844. msgid "Optional. UDP port used for outgoing and incoming packets."
  3845. msgstr ""
  3846. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:72
  3847. msgid "Options"
  3848. msgstr ""
  3849. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:119
  3850. msgid "Options:"
  3851. msgstr ""
  3852. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:346
  3853. msgid "Other:"
  3854. msgstr ""
  3855. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:69
  3856. msgid "Out"
  3857. msgstr ""
  3858. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:275
  3859. msgid "Outbound:"
  3860. msgstr ""
  3861. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:101
  3862. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:106
  3863. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:103
  3864. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:108
  3865. msgid "Outgoing checksum"
  3866. msgstr ""
  3867. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:96
  3868. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:101
  3869. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:98
  3870. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:103
  3871. msgid "Outgoing key"
  3872. msgstr ""
  3873. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:103
  3874. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:108
  3875. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:105
  3876. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:110
  3877. msgid "Outgoing serialization"
  3878. msgstr ""
  3879. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:50
  3880. msgid "Output Interface"
  3881. msgstr ""
  3882. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:59
  3883. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:165
  3884. msgid "Output zone"
  3885. msgstr ""
  3886. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:16
  3887. msgid "Overlap"
  3888. msgstr ""
  3889. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:933
  3890. msgid "Override IPv4 routing table"
  3891. msgstr ""
  3892. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:938
  3893. msgid "Override IPv6 routing table"
  3894. msgstr ""
  3895. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:64
  3896. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:69
  3897. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:69
  3898. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:74
  3899. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:53
  3900. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:121
  3901. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:156
  3902. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:57
  3903. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:132
  3904. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:118
  3905. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:96
  3906. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:105
  3907. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:99
  3908. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:62
  3909. msgid "Override MTU"
  3910. msgstr ""
  3911. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:74
  3912. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:79
  3913. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:63
  3914. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:67
  3915. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:62
  3916. msgid "Override TOS"
  3917. msgstr ""
  3918. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:69
  3919. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:74
  3920. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:74
  3921. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:79
  3922. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:58
  3923. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:62
  3924. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:57
  3925. msgid "Override TTL"
  3926. msgstr ""
  3927. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1118
  3928. msgid "Override default interface name"
  3929. msgstr ""
  3930. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:167
  3931. msgid "Override the gateway in DHCP responses"
  3932. msgstr ""
  3933. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:679
  3934. msgid ""
  3935. "Override the netmask sent to clients. Normally it is calculated from the "
  3936. "subnet that is served."
  3937. msgstr ""
  3938. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:179
  3939. msgid "Override the table used for internal routes"
  3940. msgstr ""
  3941. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:3
  3942. msgid "Overview"
  3943. msgstr ""
  3944. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2740
  3945. msgid "Overwrite existing file \"%s\" ?"
  3946. msgstr ""
  3947. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:70
  3948. msgid "Owner"
  3949. msgstr ""
  3950. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:98
  3951. msgid "PAP/CHAP (both)"
  3952. msgstr ""
  3953. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:99
  3954. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:109
  3955. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:91
  3956. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:45
  3957. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:90
  3958. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:76
  3959. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:44
  3960. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:63
  3961. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:83
  3962. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:46
  3963. msgid "PAP/CHAP password"
  3964. msgstr ""
  3965. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:97
  3966. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:104
  3967. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:89
  3968. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:43
  3969. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:88
  3970. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:74
  3971. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:42
  3972. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:61
  3973. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:78
  3974. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:44
  3975. msgid "PAP/CHAP username"
  3976. msgstr ""
  3977. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:103
  3978. msgid "PDP Type"
  3979. msgstr ""
  3980. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:69
  3981. msgid "PID"
  3982. msgstr ""
  3983. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:96
  3984. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:95
  3985. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:88
  3986. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:69
  3987. msgid "PIN"
  3988. msgstr ""
  3989. #: modules/luci-base/htdocs/luci-static/resources/network.js:21
  3990. #: modules/luci-compat/luasrc/model/network.lua:39
  3991. msgid "PIN code rejected"
  3992. msgstr ""
  3993. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1516
  3994. msgid "PMK R1 Push"
  3995. msgstr ""
  3996. #: modules/luci-compat/luasrc/model/network/proto_ppp.lua:13
  3997. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:43
  3998. msgid "PPP"
  3999. msgstr "PPP"
  4000. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:58
  4001. msgid "PPPoA Encapsulation"
  4002. msgstr ""
  4003. #: modules/luci-compat/luasrc/model/network/proto_ppp.lua:19
  4004. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:28
  4005. msgid "PPPoATM"
  4006. msgstr "PPPoATM"
  4007. #: modules/luci-compat/luasrc/model/network/proto_ppp.lua:17
  4008. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:28
  4009. msgid "PPPoE"
  4010. msgstr "PPPoE"
  4011. #: modules/luci-compat/luasrc/model/network/proto_pppossh.lua:9
  4012. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:28
  4013. msgid "PPPoSSH"
  4014. msgstr "PPPoSSH"
  4015. #: modules/luci-compat/luasrc/model/network/proto_ppp.lua:15
  4016. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:28
  4017. msgid "PPtP"
  4018. msgstr ""
  4019. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:73
  4020. msgid "PSID offset"
  4021. msgstr ""
  4022. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:70
  4023. msgid "PSID-bits length"
  4024. msgstr ""
  4025. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1469
  4026. msgid "PTM/EFM (Packet Transfer Mode)"
  4027. msgstr ""
  4028. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1433
  4029. msgid "Packet Steering"
  4030. msgstr ""
  4031. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:54
  4032. msgid "Packets"
  4033. msgstr ""
  4034. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:275
  4035. msgid "Packets To Transmit Before Moving To Next Slave"
  4036. msgstr ""
  4037. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:153
  4038. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1164
  4039. msgid "Part of zone %q"
  4040. msgstr ""
  4041. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:477
  4042. msgctxt "MACVLAN mode"
  4043. msgid "Pass-through (Mirror physical device to single MAC VLAN)"
  4044. msgstr ""
  4045. #: modules/luci-base/luasrc/view/sysauth.htm:29
  4046. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1638
  4047. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:51
  4048. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:114
  4049. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:52
  4050. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:58
  4051. msgid "Password"
  4052. msgstr ""
  4053. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:25
  4054. msgid "Password authentication"
  4055. msgstr ""
  4056. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1570
  4057. msgid "Password of Private Key"
  4058. msgstr ""
  4059. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1628
  4060. msgid "Password of inner Private Key"
  4061. msgstr ""
  4062. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:31
  4063. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:33
  4064. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:35
  4065. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:37
  4066. msgid "Password strength"
  4067. msgstr ""
  4068. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:117
  4069. msgid "Password2"
  4070. msgstr ""
  4071. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:260
  4072. msgid "Paste or drag SSH key file…"
  4073. msgstr ""
  4074. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1549
  4075. msgid "Path to CA-Certificate"
  4076. msgstr ""
  4077. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1564
  4078. msgid "Path to Client-Certificate"
  4079. msgstr ""
  4080. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1567
  4081. msgid "Path to Private Key"
  4082. msgstr ""
  4083. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1607
  4084. msgid "Path to inner CA-Certificate"
  4085. msgstr ""
  4086. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1622
  4087. msgid "Path to inner Client-Certificate"
  4088. msgstr ""
  4089. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1625
  4090. msgid "Path to inner Private Key"
  4091. msgstr ""
  4092. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2732
  4093. msgid "Paused"
  4094. msgstr ""
  4095. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:271
  4096. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:281
  4097. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:332
  4098. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:342
  4099. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:352
  4100. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:237
  4101. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:247
  4102. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:257
  4103. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:266
  4104. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:276
  4105. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:294
  4106. msgid "Peak:"
  4107. msgstr ""
  4108. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:89
  4109. msgid "Peer IP address to assign"
  4110. msgstr ""
  4111. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:649
  4112. msgid "Peer MAC address"
  4113. msgstr ""
  4114. #: modules/luci-base/htdocs/luci-static/resources/network.js:14
  4115. #: modules/luci-compat/luasrc/model/network.lua:32
  4116. msgid "Peer address is missing"
  4117. msgstr ""
  4118. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:630
  4119. msgid "Peer device name"
  4120. msgstr ""
  4121. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:110
  4122. msgid "Peers"
  4123. msgstr ""
  4124. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:80
  4125. msgid "Perfect Forward Secrecy"
  4126. msgstr ""
  4127. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:103
  4128. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:108
  4129. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:105
  4130. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:110
  4131. msgid "Perform outgoing packets serialization (optional)."
  4132. msgstr ""
  4133. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:34
  4134. msgid "Perform reboot"
  4135. msgstr ""
  4136. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:376
  4137. msgid "Perform reset"
  4138. msgstr ""
  4139. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:407
  4140. msgid "Permission denied"
  4141. msgstr ""
  4142. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:164
  4143. msgid "Persistent Keep Alive"
  4144. msgstr ""
  4145. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:288
  4146. msgid "Phy Rate:"
  4147. msgstr ""
  4148. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:467
  4149. msgid "Physical Settings"
  4150. msgstr ""
  4151. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:79
  4152. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:80
  4153. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:90
  4154. msgid "Ping"
  4155. msgstr ""
  4156. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:49
  4157. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:50
  4158. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:84
  4159. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:85
  4160. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:138
  4161. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:64
  4162. msgid "Pkts."
  4163. msgstr ""
  4164. #: modules/luci-base/luasrc/view/sysauth.htm:19
  4165. msgid "Please enter your username and password."
  4166. msgstr ""
  4167. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3789
  4168. msgid "Please select the file to upload."
  4169. msgstr ""
  4170. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:54
  4171. msgid "Policy"
  4172. msgstr ""
  4173. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:21
  4174. msgid "Port"
  4175. msgstr ""
  4176. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:751
  4177. msgid "Port isolation"
  4178. msgstr ""
  4179. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:278
  4180. msgid "Port status:"
  4181. msgstr ""
  4182. #: modules/luci-base/htdocs/luci-static/resources/validation.js:495
  4183. msgid "Potential negation of: %s"
  4184. msgstr ""
  4185. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:37
  4186. msgid "Power Management Mode"
  4187. msgstr ""
  4188. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:35
  4189. msgid "Pre-emptive CRC errors (CRCP_P)"
  4190. msgstr ""
  4191. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:74
  4192. msgid "Prefer LTE"
  4193. msgstr ""
  4194. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:75
  4195. msgid "Prefer UMTS"
  4196. msgstr ""
  4197. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:33
  4198. msgid "Prefix Delegated"
  4199. msgstr ""
  4200. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:138
  4201. msgid "Preshared Key"
  4202. msgstr ""
  4203. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:118
  4204. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:102
  4205. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:88
  4206. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:62
  4207. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:75
  4208. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:98
  4209. msgid ""
  4210. "Presume peer to be dead after given amount of LCP echo failures, use 0 to "
  4211. "ignore failures"
  4212. msgstr ""
  4213. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:407
  4214. msgid "Prevent listening on these interfaces."
  4215. msgstr ""
  4216. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1114
  4217. msgid "Prevents client-to-client communication"
  4218. msgstr ""
  4219. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:211
  4220. msgid "Primary Slave"
  4221. msgstr ""
  4222. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:220
  4223. msgctxt "VLAN port state"
  4224. msgid "Primary VLAN ID"
  4225. msgstr ""
  4226. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:228
  4227. msgid ""
  4228. "Primary becomes active slave when it comes back up if speed and duplex "
  4229. "better than current slave (better, 1)"
  4230. msgstr ""
  4231. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:227
  4232. msgid "Primary becomes active slave whenever it comes back up (always, 0)"
  4233. msgstr ""
  4234. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:544
  4235. msgid "Priority"
  4236. msgstr ""
  4237. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:475
  4238. msgctxt "MACVLAN mode"
  4239. msgid "Private (Prevent communication between MAC VLANs)"
  4240. msgstr ""
  4241. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:61
  4242. msgid "Private Key"
  4243. msgstr ""
  4244. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:64
  4245. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:63
  4246. msgid "Processes"
  4247. msgstr ""
  4248. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:67
  4249. msgid "Prot."
  4250. msgstr ""
  4251. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:80
  4252. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:542
  4253. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1087
  4254. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:382
  4255. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:32
  4256. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:168
  4257. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:187
  4258. msgid "Protocol"
  4259. msgstr ""
  4260. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:267
  4261. msgid "Provide NTP server"
  4262. msgstr ""
  4263. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:860
  4264. msgid ""
  4265. "Provide a DHCPv6 server on this interface and reply to DHCPv6 solicitations "
  4266. "and requests."
  4267. msgstr ""
  4268. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:849
  4269. msgid "Provide new network"
  4270. msgstr ""
  4271. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1043
  4272. msgid "Pseudo Ad-Hoc (ahdemo)"
  4273. msgstr ""
  4274. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:134
  4275. msgid "Public Key"
  4276. msgstr ""
  4277. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:284
  4278. msgid ""
  4279. "Public keys allow for the passwordless SSH logins with a higher security "
  4280. "compared to the use of plain passwords. In order to upload a new key to the "
  4281. "device, paste an OpenSSH compatible public key line or drag a <code>.pub</"
  4282. "code> file into the input field."
  4283. msgstr ""
  4284. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:192
  4285. msgid "Public prefix routed to this device for distribution to clients."
  4286. msgstr ""
  4287. #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:9
  4288. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:27
  4289. msgid "QMI Cellular"
  4290. msgstr ""
  4291. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:140
  4292. msgid "Quality"
  4293. msgstr ""
  4294. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:264
  4295. msgid ""
  4296. "Query all available upstream <abbr title=\"Domain Name System\">DNS</abbr> "
  4297. "servers"
  4298. msgstr ""
  4299. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:592
  4300. msgid "Query interval"
  4301. msgstr ""
  4302. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:597
  4303. msgid "Query response interval"
  4304. msgstr ""
  4305. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1504
  4306. msgid "R0 Key Lifetime"
  4307. msgstr ""
  4308. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1510
  4309. msgid "R1 Key Holder"
  4310. msgstr ""
  4311. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:88
  4312. msgid "RFC3947 NAT-T mode"
  4313. msgstr ""
  4314. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:969
  4315. msgid "RSSI threshold for joining"
  4316. msgstr ""
  4317. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:933
  4318. msgid "RTS/CTS Threshold"
  4319. msgstr ""
  4320. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:49
  4321. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:84
  4322. msgid "RX"
  4323. msgstr ""
  4324. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:232
  4325. msgid "RX Rate"
  4326. msgstr ""
  4327. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2119
  4328. msgid "RX Rate / TX Rate"
  4329. msgstr ""
  4330. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1382
  4331. msgid "Radius-Accounting-Port"
  4332. msgstr ""
  4333. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1387
  4334. msgid "Radius-Accounting-Secret"
  4335. msgstr ""
  4336. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1377
  4337. msgid "Radius-Accounting-Server"
  4338. msgstr ""
  4339. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1367
  4340. msgid "Radius-Authentication-Port"
  4341. msgstr ""
  4342. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1372
  4343. msgid "Radius-Authentication-Secret"
  4344. msgstr ""
  4345. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1362
  4346. msgid "Radius-Authentication-Server"
  4347. msgstr ""
  4348. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:88
  4349. msgid "Raw hex-encoded bytes. Leave empty unless your ISP require this"
  4350. msgstr ""
  4351. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:178
  4352. msgid ""
  4353. "Read <code>/etc/ethers</code> to configure the <abbr title=\"Dynamic Host "
  4354. "Configuration Protocol\">DHCP</abbr>-Server"
  4355. msgstr ""
  4356. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:547
  4357. msgid "Really switch protocol?"
  4358. msgstr ""
  4359. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:88
  4360. msgid "Realtime Graphs"
  4361. msgstr ""
  4362. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1487
  4363. msgid "Reassociation Deadline"
  4364. msgstr ""
  4365. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:293
  4366. msgid "Rebind protection"
  4367. msgstr ""
  4368. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:20
  4369. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:126
  4370. msgid "Reboot"
  4371. msgstr ""
  4372. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:153
  4373. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:162
  4374. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:46
  4375. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:51
  4376. msgid "Rebooting…"
  4377. msgstr ""
  4378. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:21
  4379. msgid "Reboots the operating system of your device"
  4380. msgstr ""
  4381. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:25
  4382. msgid "Receive"
  4383. msgstr ""
  4384. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:83
  4385. msgid "Recommended. IP addresses of the WireGuard interface."
  4386. msgstr ""
  4387. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:492
  4388. msgid "Reconnect this interface"
  4389. msgstr ""
  4390. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:57
  4391. msgid "References"
  4392. msgstr ""
  4393. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2726
  4394. msgid "Refreshing"
  4395. msgstr ""
  4396. #: modules/luci-compat/luasrc/model/network/proto_relay.lua:153
  4397. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:39
  4398. msgid "Relay"
  4399. msgstr ""
  4400. #: modules/luci-compat/luasrc/model/network/proto_relay.lua:157
  4401. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:36
  4402. msgid "Relay Bridge"
  4403. msgstr ""
  4404. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:154
  4405. msgid "Relay between networks"
  4406. msgstr ""
  4407. #: modules/luci-compat/luasrc/model/network/proto_relay.lua:12
  4408. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:64
  4409. msgid "Relay bridge"
  4410. msgstr ""
  4411. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:50
  4412. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:49
  4413. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:40
  4414. msgid "Remote IPv4 address"
  4415. msgstr ""
  4416. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:42
  4417. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:42
  4418. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:40
  4419. msgid "Remote IPv4 address or FQDN"
  4420. msgstr ""
  4421. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:40
  4422. msgid "Remote IPv6 address"
  4423. msgstr ""
  4424. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:42
  4425. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:42
  4426. msgid "Remote IPv6 address or FQDN"
  4427. msgstr ""
  4428. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:873
  4429. msgid "Remove"
  4430. msgstr ""
  4431. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1277
  4432. msgid "Remove related device settings from the configuration"
  4433. msgstr ""
  4434. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1961
  4435. msgid "Replace wireless configuration"
  4436. msgstr ""
  4437. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:17
  4438. msgid "Request IPv6-address"
  4439. msgstr ""
  4440. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:23
  4441. msgid "Request IPv6-prefix of length"
  4442. msgstr ""
  4443. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:408
  4444. msgid "Request timeout"
  4445. msgstr ""
  4446. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:100
  4447. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:105
  4448. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:102
  4449. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:107
  4450. msgid "Require incoming checksum (optional)."
  4451. msgstr ""
  4452. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:102
  4453. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:107
  4454. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:104
  4455. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:109
  4456. msgid "Require incoming packets serialization (optional)."
  4457. msgstr ""
  4458. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1648
  4459. msgid "Required"
  4460. msgstr ""
  4461. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34
  4462. msgid "Required for certain ISPs, e.g. Charter with DOCSIS 3"
  4463. msgstr ""
  4464. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:61
  4465. msgid "Required. Base64-encoded private key for this interface."
  4466. msgstr ""
  4467. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:134
  4468. msgid "Required. Base64-encoded public key of peer."
  4469. msgstr ""
  4470. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:143
  4471. msgid ""
  4472. "Required. IP addresses and prefixes that this peer is allowed to use inside "
  4473. "the tunnel. Usually the peer's tunnel IP addresses and the networks the peer "
  4474. "routes through the tunnel."
  4475. msgstr ""
  4476. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1278
  4477. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1279
  4478. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1280
  4479. msgid "Requires hostapd"
  4480. msgstr ""
  4481. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1285
  4482. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1286
  4483. msgid "Requires hostapd with EAP Suite-B support"
  4484. msgstr ""
  4485. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1283
  4486. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1284
  4487. msgid "Requires hostapd with EAP support"
  4488. msgstr ""
  4489. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1287
  4490. msgid "Requires hostapd with OWE support"
  4491. msgstr ""
  4492. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1281
  4493. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1282
  4494. msgid "Requires hostapd with SAE support"
  4495. msgstr ""
  4496. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1276
  4497. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1277
  4498. msgid "Requires hostapd with WEP support"
  4499. msgstr ""
  4500. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:233
  4501. msgid ""
  4502. "Requires upstream supports DNSSEC; verify unsigned domain responses really "
  4503. "come from unsigned domains"
  4504. msgstr ""
  4505. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1292
  4506. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1293
  4507. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1294
  4508. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1306
  4509. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1307
  4510. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1308
  4511. msgid "Requires wpa-supplicant"
  4512. msgstr ""
  4513. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1299
  4514. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1300
  4515. msgid "Requires wpa-supplicant with EAP Suite-B support"
  4516. msgstr ""
  4517. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1297
  4518. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1298
  4519. msgid "Requires wpa-supplicant with EAP support"
  4520. msgstr ""
  4521. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1301
  4522. msgid "Requires wpa-supplicant with OWE support"
  4523. msgstr ""
  4524. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1295
  4525. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1296
  4526. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1311
  4527. msgid "Requires wpa-supplicant with SAE support"
  4528. msgstr ""
  4529. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1290
  4530. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1291
  4531. msgid "Requires wpa-supplicant with WEP support"
  4532. msgstr ""
  4533. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:224
  4534. msgid "Reselection policy for primary slave"
  4535. msgstr ""
  4536. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2204
  4537. #: modules/luci-base/luasrc/view/sysauth.htm:39
  4538. #: modules/luci-compat/luasrc/view/cbi/delegator.htm:17
  4539. #: modules/luci-compat/luasrc/view/cbi/footer.htm:30
  4540. #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:66
  4541. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1276
  4542. msgid "Reset"
  4543. msgstr ""
  4544. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:343
  4545. msgid "Reset Counters"
  4546. msgstr ""
  4547. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:374
  4548. msgid "Reset to defaults"
  4549. msgstr ""
  4550. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:162
  4551. msgid "Resolv and Hosts Files"
  4552. msgstr ""
  4553. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:188
  4554. msgid "Resolve file"
  4555. msgstr ""
  4556. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:405
  4557. msgid "Resource not found"
  4558. msgstr ""
  4559. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:494
  4560. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:841
  4561. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:100
  4562. msgid "Restart"
  4563. msgstr ""
  4564. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:348
  4565. msgid "Restart Firewall"
  4566. msgstr ""
  4567. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:839
  4568. msgid "Restart radio interface"
  4569. msgstr ""
  4570. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:370
  4571. msgid "Restore"
  4572. msgstr ""
  4573. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:380
  4574. msgid "Restore backup"
  4575. msgstr ""
  4576. #: modules/luci-base/htdocs/luci-static/resources/ui.js:371
  4577. #: modules/luci-base/htdocs/luci-static/resources/ui.js:372
  4578. msgid "Reveal/hide password"
  4579. msgstr ""
  4580. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:663
  4581. msgid "Reverse path filter"
  4582. msgstr ""
  4583. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4074
  4584. msgid "Revert"
  4585. msgstr ""
  4586. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4159
  4587. msgid "Revert changes"
  4588. msgstr ""
  4589. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4341
  4590. msgid "Revert request failed with status <code>%h</code>"
  4591. msgstr ""
  4592. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4321
  4593. msgid "Reverting configuration…"
  4594. msgstr ""
  4595. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:587
  4596. msgid "Robustness"
  4597. msgstr ""
  4598. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:372
  4599. msgid "Root directory for files served via TFTP"
  4600. msgstr ""
  4601. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:297
  4602. msgid "Root preparation"
  4603. msgstr ""
  4604. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:202
  4605. msgid "Round-Robin policy (balance-rr, 0)"
  4606. msgstr ""
  4607. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
  4608. msgid "Route Allowed IPs"
  4609. msgstr ""
  4610. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:73
  4611. msgid "Route table"
  4612. msgstr ""
  4613. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:60
  4614. msgid "Route type"
  4615. msgstr ""
  4616. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:813
  4617. msgid ""
  4618. "Router Lifetime published in <abbr title=\"Router Advertisement, ICMPv6 Type "
  4619. "134\">RA</abbr> messages. Maximum is 9000 seconds."
  4620. msgstr ""
  4621. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:46
  4622. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:26
  4623. msgid "Router Password"
  4624. msgstr ""
  4625. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:15
  4626. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:197
  4627. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:27
  4628. msgid "Routes"
  4629. msgstr ""
  4630. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:15
  4631. msgid ""
  4632. "Routes specify over which interface and gateway a certain host or network "
  4633. "can be reached."
  4634. msgstr ""
  4635. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:218
  4636. msgid "Rule"
  4637. msgstr ""
  4638. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:335
  4639. msgid "Run a filesystem check before mounting the device"
  4640. msgstr ""
  4641. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:335
  4642. msgid "Run filesystem check"
  4643. msgstr ""
  4644. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2365
  4645. msgid "Runtime error"
  4646. msgstr ""
  4647. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:219
  4648. msgid "SHA256"
  4649. msgstr ""
  4650. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:59
  4651. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:276
  4652. msgid "SNR"
  4653. msgstr ""
  4654. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:10
  4655. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:38
  4656. msgid "SSH Access"
  4657. msgstr ""
  4658. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:70
  4659. msgid "SSH server address"
  4660. msgstr ""
  4661. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:74
  4662. msgid "SSH server port"
  4663. msgstr ""
  4664. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:58
  4665. msgid "SSH username"
  4666. msgstr ""
  4667. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:283
  4668. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:51
  4669. msgid "SSH-Keys"
  4670. msgstr ""
  4671. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:156
  4672. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:181
  4673. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1699
  4674. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:375
  4675. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:141
  4676. msgid "SSID"
  4677. msgstr "SSID"
  4678. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:9
  4679. msgid "SSTP"
  4680. msgstr ""
  4681. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:41
  4682. msgid "SSTP Server"
  4683. msgstr ""
  4684. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:339
  4685. msgid "SWAP"
  4686. msgstr ""
  4687. #: modules/luci-base/htdocs/luci-static/resources/form.js:2891
  4688. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2199
  4689. #: modules/luci-compat/luasrc/view/cbi/error.htm:17
  4690. #: modules/luci-compat/luasrc/view/cbi/footer.htm:26
  4691. #: modules/luci-compat/luasrc/view/cbi/header.htm:20
  4692. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:433
  4693. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:123
  4694. msgid "Save"
  4695. msgstr ""
  4696. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2181
  4697. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4070
  4698. #: modules/luci-compat/luasrc/view/cbi/footer.htm:22
  4699. msgid "Save & Apply"
  4700. msgstr ""
  4701. #: modules/luci-base/htdocs/luci-static/resources/form.js:602
  4702. msgid "Save error"
  4703. msgstr ""
  4704. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:404
  4705. msgid "Save mtdblock"
  4706. msgstr ""
  4707. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:394
  4708. msgid "Save mtdblock contents"
  4709. msgstr ""
  4710. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:846
  4711. msgid "Scan"
  4712. msgstr ""
  4713. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/crontab.js:26
  4714. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:76
  4715. msgid "Scheduled Tasks"
  4716. msgstr ""
  4717. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4054
  4718. msgid "Section added"
  4719. msgstr ""
  4720. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4056
  4721. msgid "Section removed"
  4722. msgstr ""
  4723. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:331
  4724. msgid "See \"mount\" manpage for details"
  4725. msgstr ""
  4726. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2641
  4727. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2781
  4728. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2946
  4729. msgid "Select file…"
  4730. msgstr ""
  4731. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:318
  4732. msgid "Selects the transmit hash policy to use for slave selection"
  4733. msgstr ""
  4734. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:756
  4735. msgid ""
  4736. "Send <abbr title=\"Router Advertisement, ICMPv6 Type 134\">RA</abbr> "
  4737. "messages advertising this device as IPv6 router."
  4738. msgstr ""
  4739. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:690
  4740. msgid "Send ICMP redirects"
  4741. msgstr ""
  4742. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:131
  4743. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:115
  4744. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:101
  4745. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:75
  4746. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:88
  4747. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:111
  4748. msgid ""
  4749. "Send LCP echo requests at the given interval in seconds, only effective in "
  4750. "conjunction with failure threshold"
  4751. msgstr ""
  4752. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:24
  4753. msgid "Send the hostname of this device"
  4754. msgstr ""
  4755. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:157
  4756. msgid "Server Settings"
  4757. msgstr ""
  4758. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:50
  4759. msgid "Service Name"
  4760. msgstr ""
  4761. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:88
  4762. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:72
  4763. msgid "Service Type"
  4764. msgstr ""
  4765. #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:36
  4766. msgid "Services"
  4767. msgstr ""
  4768. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2669
  4769. msgid "Session expired"
  4770. msgstr ""
  4771. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:117
  4772. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:166
  4773. msgid "Set Static"
  4774. msgstr ""
  4775. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:899
  4776. msgid "Set interface as NDP-Proxy external slave. Default is off."
  4777. msgstr ""
  4778. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1203
  4779. msgid ""
  4780. "Set interface properties regardless of the link carrier (If set, carrier "
  4781. "sense events do not invoke hotplug handlers)."
  4782. msgstr ""
  4783. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:300
  4784. msgid "Set same MAC Address to all slaves"
  4785. msgstr ""
  4786. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:774
  4787. msgid ""
  4788. "Set the autonomous address-configuration flag in the prefix information "
  4789. "options of sent <abbr title=\"Router Advertisement\">RA</abbr> messages. "
  4790. "When enabled, clients will perform stateless IPv6 address autoconfiguration."
  4791. msgstr ""
  4792. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:707
  4793. msgid ""
  4794. "Set this interface as master for RA and DHCPv6 relaying as well as NDP "
  4795. "proxying."
  4796. msgstr ""
  4797. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:304
  4798. msgid "Set to currently active slave (active, 1)"
  4799. msgstr ""
  4800. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:305
  4801. msgid "Set to first slave added to the bond (follow, 2)"
  4802. msgstr ""
  4803. #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:55
  4804. #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:55
  4805. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:23
  4806. msgid "Setting PLMN failed"
  4807. msgstr ""
  4808. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:68
  4809. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:26
  4810. msgid "Setting operation mode failed"
  4811. msgstr ""
  4812. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:634
  4813. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:650
  4814. msgid "Setup DHCP Server"
  4815. msgstr ""
  4816. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:894
  4817. msgid "Setup routes for proxied IPv6 neighbours."
  4818. msgstr ""
  4819. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:30
  4820. msgid "Severely Errored Seconds (SES)"
  4821. msgstr ""
  4822. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:210
  4823. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:37
  4824. msgid "Short GI"
  4825. msgstr ""
  4826. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1124
  4827. msgid "Short Preamble"
  4828. msgstr ""
  4829. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:440
  4830. #: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:18
  4831. msgid "Show current backup file list"
  4832. msgstr ""
  4833. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:293
  4834. msgid "Show empty chains"
  4835. msgstr ""
  4836. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:276
  4837. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:338
  4838. msgid "Show raw counters"
  4839. msgstr ""
  4840. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:498
  4841. msgid "Shutdown this interface"
  4842. msgstr ""
  4843. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:57
  4844. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:63
  4845. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:186
  4846. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1698
  4847. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:42
  4848. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:374
  4849. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:140
  4850. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:231
  4851. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:274
  4852. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:280
  4853. msgid "Signal"
  4854. msgstr ""
  4855. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2118
  4856. msgid "Signal / Noise"
  4857. msgstr ""
  4858. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:25
  4859. msgid "Signal Attenuation (SATN)"
  4860. msgstr ""
  4861. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:125
  4862. msgid "Signal Refresh Rate"
  4863. msgstr ""
  4864. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:260
  4865. msgid "Signal:"
  4866. msgstr ""
  4867. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3807
  4868. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:217
  4869. msgid "Size"
  4870. msgstr ""
  4871. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:361
  4872. msgid "Size of DNS query cache"
  4873. msgstr ""
  4874. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:194
  4875. msgid "Size of the ZRam device in megabytes"
  4876. msgstr ""
  4877. #: modules/luci-compat/luasrc/view/cbi/footer.htm:18
  4878. #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:57
  4879. msgid "Skip"
  4880. msgstr ""
  4881. #: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:40
  4882. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:46
  4883. msgid "Skip to content"
  4884. msgstr ""
  4885. #: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:39
  4886. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:45
  4887. msgid "Skip to navigation"
  4888. msgstr ""
  4889. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:178
  4890. msgid "Slave Interfaces"
  4891. msgstr ""
  4892. #: modules/luci-base/htdocs/luci-static/resources/network.js:2997
  4893. #: modules/luci-compat/luasrc/model/network.lua:1428
  4894. msgid "Software VLAN"
  4895. msgstr ""
  4896. #: modules/luci-compat/luasrc/view/cbi/header.htm:5
  4897. msgid "Some fields are invalid, cannot save values!"
  4898. msgstr ""
  4899. #: modules/luci-base/luasrc/view/error404.htm:9
  4900. msgid "Sorry, the object you requested was not found."
  4901. msgstr ""
  4902. #: modules/luci-base/luasrc/view/error500.htm:9
  4903. msgid "Sorry, the server encountered an unexpected error."
  4904. msgstr ""
  4905. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:412
  4906. msgid ""
  4907. "Sorry, there is no sysupgrade support present; a new firmware image must be "
  4908. "flashed manually. Please refer to the wiki for device specific install "
  4909. "instructions."
  4910. msgstr ""
  4911. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:383
  4912. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:70
  4913. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:184
  4914. msgid "Source"
  4915. msgstr ""
  4916. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:84
  4917. msgid "Source Address"
  4918. msgstr ""
  4919. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57
  4920. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:57
  4921. msgid "Source interface"
  4922. msgstr ""
  4923. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:879
  4924. msgid ""
  4925. "Specifies a fixed list of DNS search domains to announce via DHCPv6. If left "
  4926. "unspecified, the local device DNS search domain will be announced."
  4927. msgstr ""
  4928. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:867
  4929. msgid ""
  4930. "Specifies a fixed list of IPv6 DNS server addresses to announce via DHCPv6. "
  4931. "If left unspecified, the device will announce itself as IPv6 DNS server "
  4932. "unless the <em>Local IPv6 DNS server</em> option is disabled."
  4933. msgstr ""
  4934. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:342
  4935. msgid ""
  4936. "Specifies that duplicate frames (received on inactive ports) should be "
  4937. "dropped or delivered"
  4938. msgstr ""
  4939. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:358
  4940. msgid "Specifies the ARP link monitoring frequency in milliseconds"
  4941. msgstr ""
  4942. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:366
  4943. msgid "Specifies the IP addresses to use for ARP monitoring"
  4944. msgstr ""
  4945. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:395
  4946. msgid "Specifies the MII link monitoring frequency in milliseconds"
  4947. msgstr ""
  4948. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:259
  4949. msgid "Specifies the aggregation selection logic to use"
  4950. msgstr ""
  4951. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:292
  4952. msgid "Specifies the directory the device is attached to"
  4953. msgstr ""
  4954. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:780
  4955. msgid ""
  4956. "Specifies the flags sent in <abbr title=\"Router Advertisement\">RA</abbr> "
  4957. "messages, for example to instruct clients to request further information via "
  4958. "stateful DHCPv6."
  4959. msgstr ""
  4960. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:252
  4961. msgid ""
  4962. "Specifies the mac-address for the actor in protocol packet exchanges "
  4963. "(LACPDUs). If empty, masters' mac address defaults to system default"
  4964. msgstr ""
  4965. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:175
  4966. msgid ""
  4967. "Specifies the maximum amount of failed ARP requests until hosts are presumed "
  4968. "to be dead"
  4969. msgstr ""
  4970. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:171
  4971. msgid ""
  4972. "Specifies the maximum amount of seconds after which hosts are presumed to be "
  4973. "dead"
  4974. msgstr ""
  4975. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:913
  4976. msgid ""
  4977. "Specifies the maximum transmit power the wireless radio may use. Depending "
  4978. "on regulatory requirements and wireless usage, the actual transmit power may "
  4979. "be reduced by the driver."
  4980. msgstr ""
  4981. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:236
  4982. msgid ""
  4983. "Specifies the minimum number of links that must be active before asserting "
  4984. "carrier"
  4985. msgstr ""
  4986. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:200
  4987. msgid "Specifies the mode to be used for this bonding interface"
  4988. msgstr ""
  4989. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:333
  4990. msgid ""
  4991. "Specifies the number of IGMP membership reports to be issued after a "
  4992. "failover event in 200ms intervals"
  4993. msgstr ""
  4994. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:276
  4995. msgid ""
  4996. "Specifies the number of packets to transmit through a slave before moving to "
  4997. "the next one"
  4998. msgstr ""
  4999. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:310
  5000. msgid ""
  5001. "Specifies the number of peer notifications (gratuitous ARPs and unsolicited "
  5002. "IPv6 Neighbor Advertisements) to be issued after a failover event"
  5003. msgstr ""
  5004. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:284
  5005. msgid ""
  5006. "Specifies the number of seconds between instances where the bonding driver "
  5007. "sends learning packets to each slaves peer switch"
  5008. msgstr ""
  5009. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:374
  5010. msgid "Specifies the quantity of ARP IP targets that must be reachable"
  5011. msgstr ""
  5012. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:268
  5013. msgid ""
  5014. "Specifies the rate in which the link partner will be asked to transmit "
  5015. "LACPDU packets"
  5016. msgstr ""
  5017. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:225
  5018. msgid ""
  5019. "Specifies the reselection policy for the primary slave when failure of the "
  5020. "active slave or recovery of the primary slave occurs"
  5021. msgstr ""
  5022. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:244
  5023. msgid "Specifies the system priority"
  5024. msgstr ""
  5025. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:403
  5026. msgid ""
  5027. "Specifies the time in milliseconds to wait before disabling a slave after a "
  5028. "link failure detection"
  5029. msgstr ""
  5030. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:411
  5031. msgid ""
  5032. "Specifies the time in milliseconds to wait before enabling a slave after a "
  5033. "link recovery detection"
  5034. msgstr ""
  5035. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:530
  5036. msgid ""
  5037. "Specifies the wired ports to attach to this bridge. In order to attach "
  5038. "wireless networks, choose the associated interface as network in the "
  5039. "wireless settings."
  5040. msgstr ""
  5041. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:382
  5042. msgid ""
  5043. "Specifies whether ARP probes and replies should be validated or non-ARP "
  5044. "traffic should be filtered for link monitoring"
  5045. msgstr ""
  5046. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:301
  5047. msgid ""
  5048. "Specifies whether active-backup mode should set all slaves to the same MAC "
  5049. "address at enslavement"
  5050. msgstr ""
  5051. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:419
  5052. msgid ""
  5053. "Specifies whether or not miimon should use MII or ETHTOOL ioctls vs. "
  5054. "netif_carrier_ok()"
  5055. msgstr ""
  5056. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:293
  5057. msgid ""
  5058. "Specifies whether to shuffle active flows across slaves based on the load"
  5059. msgstr ""
  5060. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:179
  5061. msgid ""
  5062. "Specifies which slave interfaces should be attached to this bonding interface"
  5063. msgstr ""
  5064. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:212
  5065. msgid ""
  5066. "Specifies which slave is the primary device. It will always be the active "
  5067. "slave while it is available"
  5068. msgstr ""
  5069. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:63
  5070. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:67
  5071. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:62
  5072. msgid "Specify a TOS (Type of Service)."
  5073. msgstr ""
  5074. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:79
  5075. msgid ""
  5076. "Specify a TOS (Type of Service). Can be <code>inherit</code> (the outer "
  5077. "header inherits the value of the inner header) or an hexadecimal value "
  5078. "<code>00..FF</code> (optional)."
  5079. msgstr ""
  5080. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:74
  5081. msgid ""
  5082. "Specify a TOS (Type of Service). Can be <code>inherit</code> (the outer "
  5083. "header inherits the value of the inner header), or an hexadecimal value "
  5084. "<code>00..FF</code> (optional)."
  5085. msgstr ""
  5086. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:69
  5087. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:74
  5088. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:74
  5089. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:79
  5090. msgid ""
  5091. "Specify a TTL (Time to Live) for the encapsulating packet other than the "
  5092. "default (64) (optional)."
  5093. msgstr ""
  5094. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:58
  5095. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:62
  5096. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:57
  5097. msgid ""
  5098. "Specify a TTL (Time to Live) for the encapsulating packet other than the "
  5099. "default (64)."
  5100. msgstr ""
  5101. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:79
  5102. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:84
  5103. msgid ""
  5104. "Specify a Traffic Class. Can be <code>inherit</code> (the outer header "
  5105. "inherits the value of the inner header) or an hexadecimal value <code>00.."
  5106. "FF</code> (optional)."
  5107. msgstr ""
  5108. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:64
  5109. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:69
  5110. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:69
  5111. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:74
  5112. msgid ""
  5113. "Specify an MTU (Maximum Transmission Unit) other than the default (1280 "
  5114. "bytes) (optional)."
  5115. msgstr ""
  5116. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:53
  5117. msgid ""
  5118. "Specify an MTU (Maximum Transmission Unit) other than the default (1280 "
  5119. "bytes)."
  5120. msgstr ""
  5121. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1978
  5122. msgid "Specify the secret encryption key here."
  5123. msgstr ""
  5124. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:699
  5125. msgid "Stale neighbour cache timeout"
  5126. msgstr ""
  5127. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:657
  5128. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:99
  5129. msgid "Start"
  5130. msgstr ""
  5131. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:134
  5132. msgid "Start WPS"
  5133. msgstr ""
  5134. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:76
  5135. msgid "Start priority"
  5136. msgstr ""
  5137. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1802
  5138. msgid "Start refresh"
  5139. msgstr ""
  5140. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4274
  5141. msgid "Starting configuration apply…"
  5142. msgstr ""
  5143. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1715
  5144. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:398
  5145. msgid "Starting wireless scan..."
  5146. msgstr ""
  5147. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:109
  5148. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:64
  5149. msgid "Startup"
  5150. msgstr ""
  5151. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:19
  5152. msgid "Static IPv4 Routes"
  5153. msgstr ""
  5154. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:19
  5155. msgid "Static IPv6 Routes"
  5156. msgstr ""
  5157. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:90
  5158. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:129
  5159. msgid "Static Lease"
  5160. msgstr ""
  5161. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:165
  5162. msgid "Static Leases"
  5163. msgstr ""
  5164. #: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:76
  5165. msgid "Static Routes"
  5166. msgstr ""
  5167. #: modules/luci-base/htdocs/luci-static/resources/network.js:2098
  5168. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:172
  5169. #: modules/luci-compat/luasrc/model/network.lua:967
  5170. msgid "Static address"
  5171. msgstr ""
  5172. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:411
  5173. msgid ""
  5174. "Static leases are used to assign fixed IP addresses and symbolic hostnames "
  5175. "to DHCP clients. They are also required for non-dynamic interface "
  5176. "configurations where only hosts with a corresponding lease are served."
  5177. msgstr ""
  5178. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1141
  5179. msgid "Station inactivity limit"
  5180. msgstr ""
  5181. #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:16
  5182. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:529
  5183. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:895
  5184. #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:9
  5185. msgid "Status"
  5186. msgstr ""
  5187. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:500
  5188. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:101
  5189. msgid "Stop"
  5190. msgstr ""
  5191. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:129
  5192. msgid "Stop WPS"
  5193. msgstr ""
  5194. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1713
  5195. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1807
  5196. msgid "Stop refresh"
  5197. msgstr ""
  5198. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:667
  5199. msgid "Strict filtering"
  5200. msgstr ""
  5201. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:259
  5202. msgid "Strict order"
  5203. msgstr ""
  5204. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:33
  5205. msgid "Strong"
  5206. msgstr ""
  5207. #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:61
  5208. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2003
  5209. msgid "Submit"
  5210. msgstr ""
  5211. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:203
  5212. msgid "Suppress logging"
  5213. msgstr ""
  5214. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:204
  5215. msgid "Suppress logging of the routine operation of these protocols"
  5216. msgstr ""
  5217. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:44
  5218. msgid "Swap free"
  5219. msgstr ""
  5220. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:139
  5221. #: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:3
  5222. msgid "Switch"
  5223. msgstr ""
  5224. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:172
  5225. msgid "Switch %q"
  5226. msgstr ""
  5227. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:150
  5228. msgid ""
  5229. "Switch %q has an unknown topology - the VLAN settings might not be accurate."
  5230. msgstr ""
  5231. #: modules/luci-base/htdocs/luci-static/resources/network.js:2997
  5232. #: modules/luci-compat/luasrc/model/network.lua:1426
  5233. msgid "Switch VLAN"
  5234. msgstr ""
  5235. #: modules/luci-base/htdocs/luci-static/resources/network.js:2994
  5236. msgid "Switch port"
  5237. msgstr ""
  5238. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:548
  5239. msgid "Switch protocol"
  5240. msgstr ""
  5241. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:103
  5242. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:104
  5243. #: modules/luci-compat/luasrc/view/cbi/ipaddr.htm:26
  5244. msgid "Switch to CIDR list notation"
  5245. msgstr ""
  5246. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2676
  5247. msgid "Symbolic link"
  5248. msgstr ""
  5249. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:75
  5250. msgid "Sync with NTP-Server"
  5251. msgstr ""
  5252. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:67
  5253. msgid "Sync with browser"
  5254. msgstr ""
  5255. #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:26
  5256. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:17
  5257. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:99
  5258. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:3
  5259. msgid "System"
  5260. msgstr ""
  5261. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/syslog.js:25
  5262. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:39
  5263. msgid "System Log"
  5264. msgstr ""
  5265. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:243
  5266. msgid "System Priority"
  5267. msgstr ""
  5268. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:104
  5269. msgid "System Properties"
  5270. msgstr ""
  5271. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:148
  5272. msgid "System log buffer size"
  5273. msgstr ""
  5274. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:336
  5275. msgid "TCP:"
  5276. msgstr ""
  5277. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:163
  5278. msgid "TFTP Settings"
  5279. msgstr ""
  5280. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:371
  5281. msgid "TFTP server root"
  5282. msgstr ""
  5283. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:50
  5284. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:85
  5285. msgid "TX"
  5286. msgstr ""
  5287. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:232
  5288. msgid "TX Rate"
  5289. msgstr ""
  5290. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:654
  5291. msgid "TX queue length"
  5292. msgstr ""
  5293. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:18
  5294. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:167
  5295. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:186
  5296. msgid "Table"
  5297. msgstr ""
  5298. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:31
  5299. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:66
  5300. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:164
  5301. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:183
  5302. msgid "Target"
  5303. msgstr ""
  5304. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:103
  5305. msgid "Target network"
  5306. msgstr ""
  5307. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:50
  5308. msgid "Terminate"
  5309. msgstr ""
  5310. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:820
  5311. msgid ""
  5312. "The <abbr title=\"Maximum Transmission Unit\">MTU</abbr> to be published in "
  5313. "<abbr title=\"Router Advertisement, ICMPv6 Type 134\">RA</abbr> messages. "
  5314. "Minimum is 1280 bytes."
  5315. msgstr ""
  5316. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:782
  5317. msgid ""
  5318. "The <em>Managed address configuration</em> (M) flag indicates that IPv6 "
  5319. "addresses are available via DHCPv6."
  5320. msgstr ""
  5321. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:786
  5322. msgid ""
  5323. "The <em>Mobile IPv6 Home Agent</em> (H) flag indicates that the device is "
  5324. "also acting as Mobile IPv6 home agent on this link."
  5325. msgstr ""
  5326. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:784
  5327. msgid ""
  5328. "The <em>Other configuration</em> (O) flag indicates that other information, "
  5329. "such as DNS servers, is available via DHCPv6."
  5330. msgstr ""
  5331. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:84
  5332. msgid "The <em>block mount</em> command failed with code %d"
  5333. msgstr ""
  5334. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:925
  5335. msgid ""
  5336. "The DNS server entries in the local resolv.conf are primarily sorted by the "
  5337. "weight specified here"
  5338. msgstr ""
  5339. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:77
  5340. msgid ""
  5341. "The HE.net endpoint update configuration changed, you must now use the plain "
  5342. "username instead of the user ID!"
  5343. msgstr ""
  5344. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:40
  5345. msgid "The IPv4 address or the fully-qualified domain name of the remote end."
  5346. msgstr ""
  5347. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:42
  5348. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:42
  5349. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:40
  5350. msgid ""
  5351. "The IPv4 address or the fully-qualified domain name of the remote tunnel end."
  5352. msgstr ""
  5353. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:40
  5354. msgid "The IPv6 address or the fully-qualified domain name of the remote end."
  5355. msgstr ""
  5356. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:42
  5357. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:42
  5358. msgid ""
  5359. "The IPv6 address or the fully-qualified domain name of the remote tunnel end."
  5360. msgstr ""
  5361. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:53
  5362. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:59
  5363. msgid ""
  5364. "The IPv6 prefix assigned to the provider, usually ends with <code>::</code>"
  5365. msgstr ""
  5366. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:917
  5367. msgid "The VLAN ID must be unique"
  5368. msgstr ""
  5369. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1963
  5370. msgid ""
  5371. "The allowed characters are: <code>A-Z</code>, <code>a-z</code>, <code>0-9</"
  5372. "code> and <code>_</code>"
  5373. msgstr ""
  5374. #: modules/luci-compat/luasrc/view/cbi/error.htm:6
  5375. msgid "The configuration file could not be loaded due to the following error:"
  5376. msgstr ""
  5377. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1957
  5378. msgid ""
  5379. "The correct SSID must be manually specified when joining a hidden wireless "
  5380. "network"
  5381. msgstr ""
  5382. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4150
  5383. msgid ""
  5384. "The device could not be reached within %d seconds after applying the pending "
  5385. "changes, which caused the configuration to be rolled back for safety "
  5386. "reasons. If you believe that the configuration changes are correct "
  5387. "nonetheless, perform an unchecked configuration apply. Alternatively, you "
  5388. "can dismiss this warning and edit changes before attempting to apply again, "
  5389. "or revert all pending changes to keep the currently working configuration "
  5390. "state."
  5391. msgstr ""
  5392. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:280
  5393. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:392
  5394. msgid ""
  5395. "The device file of the memory or partition (<abbr title=\"for example\">e.g."
  5396. "</abbr> <code>/dev/sda1</code>)"
  5397. msgstr ""
  5398. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:487
  5399. msgid "The device name \"%s\" is already taken"
  5400. msgstr ""
  5401. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:381
  5402. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:415
  5403. msgid ""
  5404. "The existing network configuration needs to be changed for LuCI to function "
  5405. "properly."
  5406. msgstr ""
  5407. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:760
  5408. msgid ""
  5409. "The existing wireless configuration needs to be changed for LuCI to function "
  5410. "properly."
  5411. msgstr ""
  5412. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:215
  5413. msgid ""
  5414. "The flash image was uploaded. Below is the checksum and file size listed, "
  5415. "compare them with the original file to ensure data integrity. <br /> Click "
  5416. "'Continue' below to start the flash procedure."
  5417. msgstr ""
  5418. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:198
  5419. msgid "The following rules are currently active on this system."
  5420. msgstr ""
  5421. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:154
  5422. msgid "The gateway address must not be a local IP address"
  5423. msgstr ""
  5424. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:166
  5425. msgid "The given SSH public key has already been added."
  5426. msgstr ""
  5427. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:172
  5428. msgid ""
  5429. "The given SSH public key is invalid. Please supply proper public RSA or "
  5430. "ECDSA keys."
  5431. msgstr ""
  5432. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1076
  5433. msgid "The interface name is already used"
  5434. msgstr ""
  5435. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1082
  5436. msgid "The interface name is too long"
  5437. msgstr ""
  5438. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:61
  5439. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:55
  5440. msgid ""
  5441. "The length of the IPv4 prefix in bits, the remainder is used in the IPv6 "
  5442. "addresses."
  5443. msgstr ""
  5444. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:57
  5445. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:63
  5446. msgid "The length of the IPv6 prefix in bits"
  5447. msgstr ""
  5448. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:163
  5449. msgid "The local IPv4 address"
  5450. msgstr ""
  5451. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:46
  5452. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:46
  5453. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:44
  5454. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:44
  5455. msgid "The local IPv4 address over which the tunnel is created (optional)."
  5456. msgstr ""
  5457. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:169
  5458. msgid "The local IPv4 netmask"
  5459. msgstr ""
  5460. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:46
  5461. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:53
  5462. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:44
  5463. msgid "The local IPv6 address over which the tunnel is created (optional)."
  5464. msgstr ""
  5465. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:611
  5466. msgid ""
  5467. "The max response time in centiseconds inserted into group-specific queries "
  5468. "sent in response to leave group messages. It is also the amount of time "
  5469. "between group-specific query messages. This value may be tuned to modify the "
  5470. "\"leave latency\" of the network. A reduced value results in reduced time to "
  5471. "detect the loss of the last member of a group"
  5472. msgstr ""
  5473. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:597
  5474. msgid ""
  5475. "The max response time in centiseconds inserted into the periodic general "
  5476. "queries. By varying the value, an administrator may tune the burstiness of "
  5477. "IGMP messages on the subnet; larger values make the traffic less bursty, as "
  5478. "host responses are spread out over a larger interval"
  5479. msgstr ""
  5480. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:837
  5481. msgid ""
  5482. "The maximum hops to be published in <abbr title=\"Router Advertisement\">RA</"
  5483. "abbr> messages. Maximum is 255 hops."
  5484. msgstr ""
  5485. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1969
  5486. msgid "The network name is already used"
  5487. msgstr ""
  5488. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:139
  5489. msgid ""
  5490. "The network ports on this device can be combined to several <abbr title="
  5491. "\"Virtual Local Area Network\">VLAN</abbr>s in which computers can "
  5492. "communicate directly with each other. <abbr title=\"Virtual Local Area "
  5493. "Network\">VLAN</abbr>s are often used to separate different network "
  5494. "segments. Often there is by default one Uplink port for a connection to the "
  5495. "next greater network like the internet and other ports for a local network."
  5496. msgstr ""
  5497. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:605
  5498. msgid "The query response interval must be lower than the query interval value"
  5499. msgstr ""
  5500. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:158
  5501. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:42
  5502. msgid "The reboot command failed with code %d"
  5503. msgstr ""
  5504. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:147
  5505. msgid "The restore command failed with code %d"
  5506. msgstr ""
  5507. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:587
  5508. msgid ""
  5509. "The robustness value allows tuning for the expected packet loss on the "
  5510. "network. If a network is expected to be lossy, the robustness value may be "
  5511. "increased. IGMP is robust to (Robustness-1) packet losses"
  5512. msgstr ""
  5513. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1336
  5514. msgid "The selected %s mode is incompatible with %s encryption"
  5515. msgstr ""
  5516. #: modules/luci-base/luasrc/view/csrftoken.htm:11
  5517. msgid "The submitted security token is invalid or already expired!"
  5518. msgstr ""
  5519. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:98
  5520. msgid ""
  5521. "The system is erasing the configuration partition now and will reboot itself "
  5522. "when finished."
  5523. msgstr ""
  5524. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:289
  5525. msgid ""
  5526. "The system is flashing now.<br /> DO NOT POWER OFF THE DEVICE!<br /> Wait a "
  5527. "few minutes before you try to reconnect. It might be necessary to renew the "
  5528. "address of your computer to reach the device again, depending on your "
  5529. "settings."
  5530. msgstr ""
  5531. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:163
  5532. msgid ""
  5533. "The system is rebooting now. If the restored configuration changed the "
  5534. "current LAN IP address, you might need to reconnect manually."
  5535. msgstr ""
  5536. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:85
  5537. msgid "The system password has been successfully changed."
  5538. msgstr ""
  5539. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:315
  5540. msgid "The sysupgrade command failed with code %d"
  5541. msgstr ""
  5542. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:120
  5543. msgid ""
  5544. "The uploaded backup archive appears to be valid and contains the files "
  5545. "listed below. Press \"Continue\" to restore the backup and reboot, or "
  5546. "\"Cancel\" to abort the operation."
  5547. msgstr ""
  5548. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:115
  5549. msgid "The uploaded backup archive is not readable"
  5550. msgstr ""
  5551. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:244
  5552. msgid "The uploaded firmware does not allow keeping current configuration."
  5553. msgstr ""
  5554. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:239
  5555. msgid ""
  5556. "The uploaded image file does not contain a supported format. Make sure that "
  5557. "you choose the generic image format for your platform."
  5558. msgstr ""
  5559. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1410
  5560. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1422
  5561. msgid "The value is overridden by configuration. Original: %s"
  5562. msgstr ""
  5563. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:562
  5564. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:594
  5565. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:121
  5566. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:170
  5567. msgid "There are no active leases"
  5568. msgstr ""
  5569. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4289
  5570. msgid "There are no changes to apply"
  5571. msgstr ""
  5572. #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:55
  5573. #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:213
  5574. #: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:60
  5575. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:80
  5576. msgid ""
  5577. "There is no password set on this router. Please configure a root password to "
  5578. "protect the web interface."
  5579. msgstr ""
  5580. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:49
  5581. msgid "This IPv4 address of the relay"
  5582. msgstr ""
  5583. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1590
  5584. msgid "This authentication type is not applicable to the selected EAP method."
  5585. msgstr ""
  5586. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:57
  5587. msgid "This does not look like a valid PEM file"
  5588. msgstr ""
  5589. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:256
  5590. msgid ""
  5591. "This file may contain lines like 'server=/domain/1.2.3.4' or "
  5592. "'server=1.2.3.4' for domain-specific or full upstream <abbr title=\"Domain "
  5593. "Name System\">DNS</abbr> servers."
  5594. msgstr ""
  5595. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:424
  5596. #: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:16
  5597. msgid ""
  5598. "This is a list of shell glob patterns for matching files and directories to "
  5599. "include during sysupgrade. Modified files in /etc/config/ and certain other "
  5600. "configurations are automatically preserved."
  5601. msgstr ""
  5602. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:81
  5603. msgid ""
  5604. "This is either the \"Update Key\" configured for the tunnel or the account "
  5605. "password if no update key has been configured"
  5606. msgstr ""
  5607. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:116
  5608. msgid ""
  5609. "This is the content of /etc/rc.local. Insert your own commands here (in "
  5610. "front of 'exit 0') to execute them at the end of the boot process."
  5611. msgstr ""
  5612. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:54
  5613. msgid ""
  5614. "This is the local endpoint address assigned by the tunnel broker, it usually "
  5615. "ends with <code>...:2/64</code>"
  5616. msgstr ""
  5617. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:173
  5618. msgid ""
  5619. "This is the only <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</"
  5620. "abbr> in the local network"
  5621. msgstr ""
  5622. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:73
  5623. msgid "This is the plain username for logging into the account"
  5624. msgstr ""
  5625. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:57
  5626. msgid ""
  5627. "This is the prefix routed to you by the tunnel broker for use by clients"
  5628. msgstr ""
  5629. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/crontab.js:28
  5630. msgid "This is the system crontab in which scheduled tasks can be defined."
  5631. msgstr ""
  5632. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:50
  5633. msgid ""
  5634. "This is usually the address of the nearest PoP operated by the tunnel broker"
  5635. msgstr ""
  5636. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:65
  5637. msgid ""
  5638. "This list gives an overview over currently running system processes and "
  5639. "their status."
  5640. msgstr ""
  5641. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1544
  5642. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1602
  5643. msgid ""
  5644. "This option cannot be used because the ca-bundle package is not installed."
  5645. msgstr ""
  5646. #: modules/luci-base/htdocs/luci-static/resources/form.js:2230
  5647. #: modules/luci-base/htdocs/luci-static/resources/form.js:2536
  5648. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:172
  5649. #: modules/luci-compat/luasrc/view/cbi/tsection.htm:32
  5650. msgid "This section contains no values yet"
  5651. msgstr ""
  5652. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:110
  5653. msgid "Time Synchronization"
  5654. msgstr ""
  5655. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:694
  5656. msgid "Time in milliseconds"
  5657. msgstr ""
  5658. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:563
  5659. msgid "Time in seconds to spend in listening and learning states"
  5660. msgstr ""
  5661. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1132
  5662. msgid "Time interval for rekeying GTK"
  5663. msgstr ""
  5664. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:15
  5665. msgid "Timed-out"
  5666. msgstr ""
  5667. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:699
  5668. msgid "Timeout in seconds"
  5669. msgstr ""
  5670. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:549
  5671. msgid "Timeout in seconds for learned MAC addresses in the forwarding database"
  5672. msgstr ""
  5673. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:568
  5674. msgid "Timeout in seconds until topology updates on link loss"
  5675. msgstr ""
  5676. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:131
  5677. msgid "Timezone"
  5678. msgstr ""
  5679. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2679
  5680. msgid "To login…"
  5681. msgstr ""
  5682. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:370
  5683. msgid ""
  5684. "To restore configuration files, you can upload a previously generated backup "
  5685. "archive here. To reset the firmware to its initial state, click \"Perform "
  5686. "reset\" (only possible with squashfs images)."
  5687. msgstr ""
  5688. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1458
  5689. msgid "Tone"
  5690. msgstr ""
  5691. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:35
  5692. msgid "Total Available"
  5693. msgstr ""
  5694. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:102
  5695. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:103
  5696. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:113
  5697. msgid "Traceroute"
  5698. msgstr ""
  5699. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:54
  5700. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:65
  5701. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:109
  5702. msgid "Traffic"
  5703. msgstr ""
  5704. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:79
  5705. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:84
  5706. msgid "Traffic Class"
  5707. msgstr ""
  5708. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:385
  5709. msgid "Transfer"
  5710. msgstr ""
  5711. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:24
  5712. msgid "Transmit"
  5713. msgstr ""
  5714. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:317
  5715. msgid "Transmit Hash Policy"
  5716. msgstr ""
  5717. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:74
  5718. msgid "Trigger"
  5719. msgstr ""
  5720. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:19
  5721. msgid "Trigger Mode"
  5722. msgstr ""
  5723. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:69
  5724. msgid "Tunnel ID"
  5725. msgstr ""
  5726. #: modules/luci-base/htdocs/luci-static/resources/network.js:3000
  5727. #: modules/luci-compat/luasrc/model/network.lua:1431
  5728. msgid "Tunnel Interface"
  5729. msgstr ""
  5730. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:44
  5731. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:55
  5732. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:76
  5733. msgid "Tunnel Link"
  5734. msgstr ""
  5735. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1367
  5736. msgid "Tunnel device"
  5737. msgstr ""
  5738. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:185
  5739. msgid "Tx-Power"
  5740. msgstr ""
  5741. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:45
  5742. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1398
  5743. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:163
  5744. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:43
  5745. msgid "Type"
  5746. msgstr ""
  5747. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:326
  5748. msgid "UDP:"
  5749. msgstr ""
  5750. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:91
  5751. msgid "UMTS only"
  5752. msgstr ""
  5753. #: modules/luci-compat/luasrc/model/network/proto_3g.lua:10
  5754. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:43
  5755. msgid "UMTS/GPRS/EV-DO"
  5756. msgstr ""
  5757. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:254
  5758. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:360
  5759. msgid "UUID"
  5760. msgstr ""
  5761. #: modules/luci-base/htdocs/luci-static/resources/network.js:16
  5762. #: modules/luci-base/htdocs/luci-static/resources/network.js:17
  5763. #: modules/luci-compat/luasrc/model/network.lua:34
  5764. #: modules/luci-compat/luasrc/model/network.lua:35
  5765. msgid "Unable to determine device name"
  5766. msgstr ""
  5767. #: modules/luci-base/htdocs/luci-static/resources/network.js:18
  5768. #: modules/luci-compat/luasrc/model/network.lua:36
  5769. msgid "Unable to determine external IP address"
  5770. msgstr ""
  5771. #: modules/luci-base/htdocs/luci-static/resources/network.js:19
  5772. #: modules/luci-compat/luasrc/model/network.lua:37
  5773. msgid "Unable to determine upstream interface"
  5774. msgstr ""
  5775. #: modules/luci-base/luasrc/view/error404.htm:11
  5776. msgid "Unable to dispatch"
  5777. msgstr ""
  5778. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/dmesg.js:9
  5779. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/syslog.js:15
  5780. msgid "Unable to load log data:"
  5781. msgstr ""
  5782. #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:54
  5783. #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:54
  5784. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:22
  5785. msgid "Unable to obtain client ID"
  5786. msgstr ""
  5787. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:221
  5788. msgid "Unable to obtain mount information"
  5789. msgstr ""
  5790. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:307
  5791. msgid "Unable to reset ip6tables counters: %s"
  5792. msgstr ""
  5793. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:305
  5794. msgid "Unable to reset iptables counters: %s"
  5795. msgstr ""
  5796. #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:61
  5797. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:7
  5798. msgid "Unable to resolve AFTR host name"
  5799. msgstr ""
  5800. #: modules/luci-base/htdocs/luci-static/resources/network.js:20
  5801. #: modules/luci-compat/luasrc/model/network.lua:38
  5802. msgid "Unable to resolve peer host name"
  5803. msgstr ""
  5804. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:313
  5805. msgid "Unable to restart firewall: %s"
  5806. msgstr ""
  5807. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/crontab.js:20
  5808. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:340
  5809. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:57
  5810. msgid "Unable to save contents: %s"
  5811. msgstr ""
  5812. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:32
  5813. msgid "Unavailable Seconds (UAS)"
  5814. msgstr ""
  5815. #: modules/luci-base/htdocs/luci-static/resources/fs.js:102
  5816. msgid "Unexpected reply data format"
  5817. msgstr ""
  5818. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1430
  5819. msgid ""
  5820. "Unique Local Address - in the range <code>fc00::/7</code>. Typically only "
  5821. "within the &#8216;local&#8217; half <code>fd00::/8</code>. ULA for IPv6 is "
  5822. "analogous to IPv4 private network addressing. This prefix is randomly "
  5823. "generated at first install."
  5824. msgstr ""
  5825. #: modules/luci-base/htdocs/luci-static/resources/network.js:2100
  5826. #: modules/luci-compat/luasrc/model/network.lua:971
  5827. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:17
  5828. msgid "Unknown"
  5829. msgstr ""
  5830. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:47
  5831. msgid "Unknown and unsupported connection method."
  5832. msgstr ""
  5833. #: modules/luci-base/htdocs/luci-static/resources/network.js:2409
  5834. #: modules/luci-compat/luasrc/model/network.lua:1138
  5835. msgid "Unknown error (%s)"
  5836. msgstr ""
  5837. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:412
  5838. msgid "Unknown error code"
  5839. msgstr ""
  5840. #: modules/luci-base/htdocs/luci-static/resources/network.js:2097
  5841. #: modules/luci-base/htdocs/luci-static/resources/protocol/none.js:6
  5842. #: modules/luci-compat/luasrc/model/network.lua:965
  5843. msgid "Unmanaged"
  5844. msgstr ""
  5845. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:195
  5846. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:217
  5847. msgid "Unmount"
  5848. msgstr ""
  5849. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:115
  5850. msgid "Unnamed key"
  5851. msgstr ""
  5852. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3994
  5853. msgid "Unsaved Changes"
  5854. msgstr ""
  5855. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:410
  5856. msgid "Unspecified error"
  5857. msgstr ""
  5858. #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:64
  5859. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:9
  5860. msgid "Unsupported MAP type"
  5861. msgstr ""
  5862. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:69
  5863. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:27
  5864. msgid "Unsupported modem"
  5865. msgstr ""
  5866. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:299
  5867. msgid "Unsupported protocol type."
  5868. msgstr ""
  5869. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:151
  5870. msgid "Up"
  5871. msgstr ""
  5872. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:410
  5873. msgid "Up Delay"
  5874. msgstr ""
  5875. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3881
  5876. msgid "Upload"
  5877. msgstr ""
  5878. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:411
  5879. msgid ""
  5880. "Upload a sysupgrade-compatible image here to replace the running firmware."
  5881. msgstr ""
  5882. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:138
  5883. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:169
  5884. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:382
  5885. msgid "Upload archive..."
  5886. msgstr ""
  5887. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2835
  5888. msgid "Upload file"
  5889. msgstr ""
  5890. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2810
  5891. msgid "Upload file…"
  5892. msgstr ""
  5893. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2757
  5894. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3869
  5895. msgid "Upload request failed: %s"
  5896. msgstr ""
  5897. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3788
  5898. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3842
  5899. msgid "Uploading file…"
  5900. msgstr ""
  5901. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:761
  5902. msgid ""
  5903. "Upon pressing \"Continue\", anonymous \"wifi-iface\" sections will be "
  5904. "assigned with a name in the form <em>wifinet#</em> and the network will be "
  5905. "restarted to apply the updated configuration."
  5906. msgstr ""
  5907. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:382
  5908. msgid ""
  5909. "Upon pressing \"Continue\", bridges configuration will be updated and the "
  5910. "network will be restarted to apply the updated configuration."
  5911. msgstr ""
  5912. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:416
  5913. msgid ""
  5914. "Upon pressing \"Continue\", ifname options will get renamed and the network "
  5915. "will be restarted to apply the updated configuration."
  5916. msgstr ""
  5917. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:82
  5918. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:60
  5919. msgid "Uptime"
  5920. msgstr ""
  5921. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:177
  5922. msgid "Use <code>/etc/ethers</code>"
  5923. msgstr ""
  5924. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:271
  5925. msgid "Use DHCP advertised servers"
  5926. msgstr ""
  5927. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:167
  5928. msgid "Use DHCP gateway"
  5929. msgstr ""
  5930. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:911
  5931. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:68
  5932. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:121
  5933. msgid "Use DNS servers advertised by peer"
  5934. msgstr ""
  5935. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:589
  5936. msgid "Use ISO/IEC 3166 alpha2 country codes."
  5937. msgstr ""
  5938. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:48
  5939. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:89
  5940. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:69
  5941. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6to4.js:53
  5942. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:67
  5943. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:84
  5944. msgid "Use MTU on tunnel interface"
  5945. msgstr ""
  5946. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:85
  5947. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:65
  5948. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6to4.js:49
  5949. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:80
  5950. msgid "Use TTL on tunnel interface"
  5951. msgstr ""
  5952. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:320
  5953. msgid "Use XOR of hardware MAC addresses (layer2)"
  5954. msgstr ""
  5955. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:321
  5956. msgid "Use XOR of hardware MAC addresses and IP addresses (layer2+3)"
  5957. msgstr ""
  5958. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:323
  5959. msgid ""
  5960. "Use XOR of hardware MAC addresses and IP addresses, rely on skb_flow_dissect "
  5961. "(encap2+3)"
  5962. msgstr ""
  5963. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:294
  5964. msgid "Use as external overlay (/overlay)"
  5965. msgstr ""
  5966. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:293
  5967. msgid "Use as root filesystem (/)"
  5968. msgstr ""
  5969. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34
  5970. msgid "Use broadcast flag"
  5971. msgstr ""
  5972. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1199
  5973. msgid "Use builtin IPv6-management"
  5974. msgstr ""
  5975. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:915
  5976. msgid "Use custom DNS servers"
  5977. msgstr ""
  5978. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:907
  5979. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:64
  5980. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:110
  5981. msgid "Use default gateway"
  5982. msgstr ""
  5983. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:929
  5984. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:72
  5985. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:115
  5986. msgid "Use gateway metric"
  5987. msgstr ""
  5988. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:88
  5989. msgid "Use legacy MAP"
  5990. msgstr ""
  5991. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:88
  5992. msgid ""
  5993. "Use legacy MAP interface identifier format (draft-ietf-softwire-map-00) "
  5994. "instead of RFC7597"
  5995. msgstr ""
  5996. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:179
  5997. msgid "Use routing table"
  5998. msgstr ""
  5999. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1537
  6000. msgid "Use system certificates"
  6001. msgstr ""
  6002. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1595
  6003. msgid "Use system certificates for inner-tunnel"
  6004. msgstr ""
  6005. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:412
  6006. msgid ""
  6007. "Use the <em>Add</em> Button to add a new lease entry. The <em>MAC address</"
  6008. "em> identifies the host, the <em>IPv4 address</em> specifies the fixed "
  6009. "address to use, and the <em>Hostname</em> is assigned as a symbolic name to "
  6010. "the requesting host. The optional <em>Lease time</em> can be used to set non-"
  6011. "standard host-specific lease time, e.g. 12h, 3d or infinite."
  6012. msgstr ""
  6013. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:322
  6014. msgid "Use upper layer protocol information (layer3+4)"
  6015. msgstr ""
  6016. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:324
  6017. msgid ""
  6018. "Use upper layer protocol information, rely on skb_flow_dissect (encap3+4)"
  6019. msgstr ""
  6020. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:36
  6021. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:194
  6022. msgid "Used"
  6023. msgstr ""
  6024. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1433
  6025. msgid "Used Key Slot"
  6026. msgstr ""
  6027. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1476
  6028. msgid ""
  6029. "Used for two different purposes: RADIUS NAS ID and 802.11r R0KH-ID. Not "
  6030. "needed with normal WPA(2)-PSK."
  6031. msgstr ""
  6032. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:111
  6033. msgid "User Group"
  6034. msgstr ""
  6035. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:120
  6036. msgid "User certificate (PEM encoded)"
  6037. msgstr ""
  6038. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:132
  6039. msgid "User key (PEM encoded)"
  6040. msgstr ""
  6041. #: modules/luci-base/luasrc/view/sysauth.htm:23
  6042. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:112
  6043. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:50
  6044. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:56
  6045. msgid "Username"
  6046. msgstr ""
  6047. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1526
  6048. msgid "VC-Mux"
  6049. msgstr ""
  6050. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1474
  6051. msgid "VDSL"
  6052. msgstr ""
  6053. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:474
  6054. msgctxt "MACVLAN mode"
  6055. msgid "VEPA (Virtual Ethernet Port Aggregator)"
  6056. msgstr ""
  6057. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:404
  6058. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1361
  6059. msgid "VLAN (802.1ad)"
  6060. msgstr ""
  6061. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:403
  6062. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1358
  6063. msgid "VLAN (802.1q)"
  6064. msgstr ""
  6065. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:453
  6066. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:898
  6067. msgid "VLAN ID"
  6068. msgstr ""
  6069. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:173
  6070. msgid "VLANs on %q"
  6071. msgstr ""
  6072. #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:54
  6073. msgid "VPN"
  6074. msgstr "VPN"
  6075. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:42
  6076. msgid "VPN Local address"
  6077. msgstr ""
  6078. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:46
  6079. msgid "VPN Local port"
  6080. msgstr ""
  6081. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:96
  6082. msgid "VPN Protocol"
  6083. msgstr ""
  6084. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:102
  6085. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:42
  6086. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:58
  6087. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:39
  6088. msgid "VPN Server"
  6089. msgstr ""
  6090. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:105
  6091. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:45
  6092. msgid "VPN Server port"
  6093. msgstr ""
  6094. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:109
  6095. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:60
  6096. msgid "VPN Server's certificate SHA1 hash"
  6097. msgstr ""
  6098. #: modules/luci-compat/luasrc/model/network/proto_vpnc.lua:9
  6099. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:9
  6100. msgid "VPNC (CISCO 3000 (and others) VPN)"
  6101. msgstr ""
  6102. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:10
  6103. msgid "VXLAN (RFC7348)"
  6104. msgstr ""
  6105. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:53
  6106. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:48
  6107. msgid "VXLAN network identifier"
  6108. msgstr ""
  6109. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:10
  6110. msgid "VXLANv6 (RFC7348)"
  6111. msgstr ""
  6112. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1537
  6113. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1595
  6114. msgid ""
  6115. "Validate server certificate using built-in system CA bundle,<br />requires "
  6116. "the \"ca-bundle\" package"
  6117. msgstr ""
  6118. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:387
  6119. msgid "Validation for all slaves"
  6120. msgstr ""
  6121. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:385
  6122. msgid "Validation only for active slave"
  6123. msgstr ""
  6124. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:386
  6125. msgid "Validation only for backup slaves"
  6126. msgstr ""
  6127. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:149
  6128. msgid "Value must not be empty"
  6129. msgstr ""
  6130. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:73
  6131. msgid "Vendor"
  6132. msgstr ""
  6133. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:40
  6134. msgid "Vendor Class to send when requesting DHCP"
  6135. msgstr ""
  6136. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:196
  6137. msgid "Verifying the uploaded image file."
  6138. msgstr ""
  6139. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:923
  6140. msgid "Very High"
  6141. msgstr ""
  6142. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:406
  6143. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1373
  6144. msgid "Virtual Ethernet"
  6145. msgstr ""
  6146. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:60
  6147. msgid "Virtual dynamic interface"
  6148. msgstr ""
  6149. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1071
  6150. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1072
  6151. msgid "WDS"
  6152. msgstr "WDS"
  6153. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1256
  6154. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1345
  6155. msgid "WEP Open System"
  6156. msgstr ""
  6157. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1257
  6158. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1346
  6159. msgid "WEP Shared Key"
  6160. msgstr ""
  6161. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1978
  6162. msgid "WEP passphrase"
  6163. msgstr ""
  6164. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1109
  6165. msgid "WMM Mode"
  6166. msgstr ""
  6167. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1978
  6168. msgid "WPA passphrase"
  6169. msgstr ""
  6170. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1247
  6171. msgid ""
  6172. "WPA-Encryption requires wpa_supplicant (for client mode) or hostapd (for AP "
  6173. "and ad-hoc mode) to be installed."
  6174. msgstr ""
  6175. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:147
  6176. msgid "WPS status"
  6177. msgstr ""
  6178. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:47
  6179. msgid "Waiting for device..."
  6180. msgstr ""
  6181. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:175
  6182. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:185
  6183. msgid "Warning"
  6184. msgstr ""
  6185. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:26
  6186. msgid "Warning: There are unsaved changes that will get lost on reboot!"
  6187. msgstr ""
  6188. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:37
  6189. msgid "Weak"
  6190. msgstr ""
  6191. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:995
  6192. msgid ""
  6193. "When delegating prefixes to multiple downstreams, interfaces with a higher "
  6194. "preference value are considered first when allocating subnets."
  6195. msgstr ""
  6196. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1499
  6197. msgid ""
  6198. "When using a PSK, the PMK can be automatically generated. When enabled, the "
  6199. "R0/R1 key options below are not applied. Disable this to use the R0 and R1 "
  6200. "key options."
  6201. msgstr ""
  6202. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1109
  6203. msgid ""
  6204. "Where Wi-Fi Multimedia (WMM) Mode QoS is disabled, clients may be limited to "
  6205. "802.11a/802.11g rates."
  6206. msgstr ""
  6207. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1105
  6208. msgid ""
  6209. "Where the ESSID is hidden, clients may fail to roam and airtime efficiency "
  6210. "may be significantly reduced."
  6211. msgstr ""
  6212. #: modules/luci-compat/luasrc/view/cbi/wireless_modefreq.htm:166
  6213. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:491
  6214. msgid "Width"
  6215. msgstr ""
  6216. #: modules/luci-compat/luasrc/model/network/proto_wireguard.lua:9
  6217. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:29
  6218. msgid "WireGuard VPN"
  6219. msgstr ""
  6220. #: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:17
  6221. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:10
  6222. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:118
  6223. msgid "Wireless"
  6224. msgstr ""
  6225. #: modules/luci-base/htdocs/luci-static/resources/network.js:2987
  6226. #: modules/luci-compat/luasrc/model/network.lua:1419
  6227. msgid "Wireless Adapter"
  6228. msgstr ""
  6229. #: modules/luci-base/htdocs/luci-static/resources/network.js:2966
  6230. #: modules/luci-base/htdocs/luci-static/resources/network.js:4232
  6231. #: modules/luci-compat/luasrc/model/network.lua:1405
  6232. #: modules/luci-compat/luasrc/model/network.lua:1868
  6233. msgid "Wireless Network"
  6234. msgstr ""
  6235. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:777
  6236. msgid "Wireless Overview"
  6237. msgstr ""
  6238. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:952
  6239. msgid "Wireless Security"
  6240. msgstr ""
  6241. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:759
  6242. msgid "Wireless configuration migration"
  6243. msgstr ""
  6244. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:153
  6245. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:193
  6246. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:146
  6247. msgid "Wireless is disabled"
  6248. msgstr ""
  6249. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:153
  6250. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:193
  6251. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:146
  6252. msgid "Wireless is not associated"
  6253. msgstr ""
  6254. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:901
  6255. msgid "Wireless network is disabled"
  6256. msgstr ""
  6257. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:901
  6258. msgid "Wireless network is enabled"
  6259. msgstr ""
  6260. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:275
  6261. msgid "Write received DNS requests to syslog"
  6262. msgstr ""
  6263. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:167
  6264. msgid "Write system log to file"
  6265. msgstr ""
  6266. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:204
  6267. msgid "XOR policy (balance-xor, 2)"
  6268. msgstr ""
  6269. #: modules/luci-base/htdocs/luci-static/resources/form.js:3702
  6270. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:295
  6271. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:344
  6272. msgid "Yes"
  6273. msgstr ""
  6274. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:303
  6275. msgid "Yes (none, 0)"
  6276. msgstr ""
  6277. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:177
  6278. msgid ""
  6279. "You appear to be currently connected to the device via the \"%h\" interface. "
  6280. "Do you really want to shut down the interface?"
  6281. msgstr ""
  6282. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:112
  6283. msgid ""
  6284. "You can enable or disable installed init scripts here. Changes will applied "
  6285. "after a device reboot.<br /><strong>Warning: If you disable essential init "
  6286. "scripts like \"network\", your device might become inaccessible!</strong>"
  6287. msgstr ""
  6288. #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:65
  6289. #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:223
  6290. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:73
  6291. msgid ""
  6292. "You must enable JavaScript in your browser or LuCI will not work properly."
  6293. msgstr ""
  6294. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:115
  6295. msgid ""
  6296. "You must select a primary interface which is included in selected slave "
  6297. "interfaces!"
  6298. msgstr ""
  6299. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:96
  6300. msgid ""
  6301. "You must select at least one ARP IP target if ARP monitoring is selected!"
  6302. msgstr ""
  6303. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:199
  6304. msgid "ZRam Compression Algorithm"
  6305. msgstr ""
  6306. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:192
  6307. msgid "ZRam Settings"
  6308. msgstr ""
  6309. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:194
  6310. msgid "ZRam Size"
  6311. msgstr ""
  6312. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:331
  6313. msgid "any"
  6314. msgstr ""
  6315. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1459
  6316. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1467
  6317. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1472
  6318. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1196
  6319. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:79
  6320. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:48
  6321. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:51
  6322. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:89
  6323. msgid "auto"
  6324. msgstr ""
  6325. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:764
  6326. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:85
  6327. msgid "automatic"
  6328. msgstr ""
  6329. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:82
  6330. msgid "baseT"
  6331. msgstr ""
  6332. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1532
  6333. msgid "bridged"
  6334. msgstr ""
  6335. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:146
  6336. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:402
  6337. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:35
  6338. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:99
  6339. #: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:31
  6340. msgid "create"
  6341. msgstr ""
  6342. #: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:69
  6343. msgid "create:"
  6344. msgstr ""
  6345. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:55
  6346. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:57
  6347. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:58
  6348. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:62
  6349. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:63
  6350. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:83
  6351. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:84
  6352. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:87
  6353. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:185
  6354. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:186
  6355. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:187
  6356. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:41
  6357. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:42
  6358. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:272
  6359. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:274
  6360. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:275
  6361. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:279
  6362. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:280
  6363. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:261
  6364. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:264
  6365. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:267
  6366. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:271
  6367. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:274
  6368. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:277
  6369. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:303
  6370. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:304
  6371. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:305
  6372. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:309
  6373. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:310
  6374. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:311
  6375. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:313
  6376. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:314
  6377. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:315
  6378. msgid "dBm"
  6379. msgstr "dBm"
  6380. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1053
  6381. msgid "disable"
  6382. msgstr ""
  6383. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:665
  6384. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:753
  6385. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:857
  6386. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:887
  6387. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:947
  6388. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:91
  6389. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:25
  6390. msgid "disabled"
  6391. msgstr ""
  6392. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:543
  6393. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:577
  6394. msgid "driver default"
  6395. msgstr ""
  6396. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:66
  6397. msgid "e.g: --proxy 10.10.10.10"
  6398. msgstr ""
  6399. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:68
  6400. msgid "e.g: dump"
  6401. msgstr ""
  6402. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:551
  6403. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:572
  6404. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:100
  6405. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:139
  6406. msgid "expired"
  6407. msgstr ""
  6408. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:182
  6409. msgid ""
  6410. "file where given <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</"
  6411. "abbr>-leases will be stored"
  6412. msgstr ""
  6413. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:768
  6414. msgid "forced"
  6415. msgstr ""
  6416. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:85
  6417. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:195
  6418. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:61
  6419. msgid "forward"
  6420. msgstr ""
  6421. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:84
  6422. msgid "full-duplex"
  6423. msgstr ""
  6424. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:84
  6425. msgid "half-duplex"
  6426. msgstr ""
  6427. #: modules/luci-base/htdocs/luci-static/resources/validation.js:572
  6428. msgid "hexadecimal encoded value"
  6429. msgstr ""
  6430. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1775
  6431. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:297
  6432. msgid "hidden"
  6433. msgstr ""
  6434. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:759
  6435. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:863
  6436. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:891
  6437. msgid "hybrid mode"
  6438. msgstr ""
  6439. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:36
  6440. msgid "if target is a network"
  6441. msgstr ""
  6442. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:63
  6443. msgid "ignore"
  6444. msgstr ""
  6445. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:69
  6446. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:191
  6447. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:46
  6448. msgid "input"
  6449. msgstr ""
  6450. #: modules/luci-base/htdocs/luci-static/resources/validation.js:398
  6451. msgid "key between 8 and 63 characters"
  6452. msgstr ""
  6453. #: modules/luci-base/htdocs/luci-static/resources/validation.js:410
  6454. msgid "key with either 5 or 13 characters"
  6455. msgstr ""
  6456. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:189
  6457. msgid "local <abbr title=\"Domain Name System\">DNS</abbr> file"
  6458. msgstr ""
  6459. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:781
  6460. msgid "managed config (M)"
  6461. msgstr ""
  6462. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1355
  6463. msgid "medium security"
  6464. msgstr ""
  6465. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1504
  6466. msgid "minutes"
  6467. msgstr ""
  6468. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:785
  6469. msgid "mobile home agent (H)"
  6470. msgstr ""
  6471. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:422
  6472. msgid "netif_carrier_ok()"
  6473. msgstr ""
  6474. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:47
  6475. msgid "no"
  6476. msgstr ""
  6477. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:76
  6478. msgid "no link"
  6479. msgstr ""
  6480. #: modules/luci-base/htdocs/luci-static/resources/validation.js:59
  6481. msgid "non-empty value"
  6482. msgstr ""
  6483. #: modules/luci-base/htdocs/luci-static/resources/form.js:3032
  6484. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:788
  6485. msgid "none"
  6486. msgstr ""
  6487. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:41
  6488. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:55
  6489. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:69
  6490. msgid "not present"
  6491. msgstr ""
  6492. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:347
  6493. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:931
  6494. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:935
  6495. #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:197
  6496. msgid "off"
  6497. msgstr ""
  6498. #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:196
  6499. msgid "on"
  6500. msgstr ""
  6501. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:766
  6502. msgid "on available prefix"
  6503. msgstr ""
  6504. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1356
  6505. msgid "open network"
  6506. msgstr ""
  6507. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:783
  6508. msgid "other config (O)"
  6509. msgstr ""
  6510. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:69
  6511. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:46
  6512. msgid "output"
  6513. msgstr ""
  6514. #: modules/luci-base/htdocs/luci-static/resources/validation.js:241
  6515. msgid "positive decimal value"
  6516. msgstr ""
  6517. #: modules/luci-base/htdocs/luci-static/resources/validation.js:233
  6518. msgid "positive integer value"
  6519. msgstr ""
  6520. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:80
  6521. msgid "random"
  6522. msgstr ""
  6523. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:757
  6524. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:861
  6525. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:889
  6526. msgid "relay mode"
  6527. msgstr ""
  6528. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1533
  6529. msgid "routed"
  6530. msgstr ""
  6531. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1132
  6532. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1141
  6533. msgid "sec"
  6534. msgstr ""
  6535. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:755
  6536. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:859
  6537. msgid "server mode"
  6538. msgstr ""
  6539. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:54
  6540. msgid "sstpc Log-level"
  6541. msgstr ""
  6542. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1354
  6543. msgid "strong security"
  6544. msgstr ""
  6545. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:352
  6546. msgid "tagged"
  6547. msgstr ""
  6548. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1487
  6549. msgid "time units (TUs / 1.024 ms) [1000-65535]"
  6550. msgstr ""
  6551. #: modules/luci-base/htdocs/luci-static/resources/validation.js:562
  6552. msgid "unique value"
  6553. msgstr ""
  6554. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1410
  6555. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1422
  6556. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:558
  6557. msgid "unknown"
  6558. msgstr ""
  6559. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:340
  6560. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:549
  6561. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:570
  6562. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:98
  6563. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:137
  6564. msgid "unlimited"
  6565. msgstr ""
  6566. #: modules/luci-base/htdocs/luci-static/resources/form.js:3397
  6567. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:76
  6568. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:138
  6569. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:369
  6570. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:393
  6571. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:429
  6572. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:466
  6573. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:562
  6574. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:53
  6575. #: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:38
  6576. msgid "unspecified"
  6577. msgstr ""
  6578. #: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:71
  6579. msgid "unspecified -or- create:"
  6580. msgstr ""
  6581. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:350
  6582. msgid "untagged"
  6583. msgstr ""
  6584. #: modules/luci-base/htdocs/luci-static/resources/validation.js:246
  6585. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:121
  6586. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:132
  6587. msgid "valid IP address"
  6588. msgstr ""
  6589. #: modules/luci-base/htdocs/luci-static/resources/validation.js:246
  6590. msgid "valid IP address or prefix"
  6591. msgstr ""
  6592. #: modules/luci-base/htdocs/luci-static/resources/validation.js:283
  6593. msgid "valid IPv4 CIDR"
  6594. msgstr ""
  6595. #: modules/luci-base/htdocs/luci-static/resources/validation.js:254
  6596. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:125
  6597. msgid "valid IPv4 address"
  6598. msgstr ""
  6599. #: modules/luci-base/htdocs/luci-static/resources/validation.js:254
  6600. msgid "valid IPv4 address or network"
  6601. msgstr ""
  6602. #: modules/luci-base/htdocs/luci-static/resources/validation.js:377
  6603. msgid "valid IPv4 address:port"
  6604. msgstr ""
  6605. #: modules/luci-base/htdocs/luci-static/resources/validation.js:317
  6606. msgid "valid IPv4 network"
  6607. msgstr ""
  6608. #: modules/luci-base/htdocs/luci-static/resources/validation.js:277
  6609. msgid "valid IPv4 or IPv6 CIDR"
  6610. msgstr ""
  6611. #: modules/luci-base/htdocs/luci-static/resources/validation.js:267
  6612. msgid "valid IPv4 prefix value (0-32)"
  6613. msgstr ""
  6614. #: modules/luci-base/htdocs/luci-static/resources/validation.js:289
  6615. msgid "valid IPv6 CIDR"
  6616. msgstr ""
  6617. #: modules/luci-base/htdocs/luci-static/resources/validation.js:262
  6618. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:129
  6619. msgid "valid IPv6 address"
  6620. msgstr ""
  6621. #: modules/luci-base/htdocs/luci-static/resources/validation.js:262
  6622. msgid "valid IPv6 address or prefix"
  6623. msgstr ""
  6624. #: modules/luci-base/htdocs/luci-static/resources/validation.js:307
  6625. msgid "valid IPv6 host id"
  6626. msgstr ""
  6627. #: modules/luci-base/htdocs/luci-static/resources/validation.js:322
  6628. msgid "valid IPv6 network"
  6629. msgstr ""
  6630. #: modules/luci-base/htdocs/luci-static/resources/validation.js:272
  6631. msgid "valid IPv6 prefix value (0-128)"
  6632. msgstr ""
  6633. #: modules/luci-base/htdocs/luci-static/resources/validation.js:343
  6634. msgid "valid MAC address"
  6635. msgstr ""
  6636. #: modules/luci-base/htdocs/luci-static/resources/validation.js:414
  6637. msgid "valid UCI identifier"
  6638. msgstr ""
  6639. #: modules/luci-base/htdocs/luci-static/resources/validation.js:365
  6640. msgid "valid UCI identifier, hostname or IP address range"
  6641. msgstr ""
  6642. #: modules/luci-base/htdocs/luci-static/resources/validation.js:386
  6643. #: modules/luci-base/htdocs/luci-static/resources/validation.js:389
  6644. msgid "valid address:port"
  6645. msgstr ""
  6646. #: modules/luci-base/htdocs/luci-static/resources/validation.js:536
  6647. #: modules/luci-base/htdocs/luci-static/resources/validation.js:540
  6648. msgid "valid date (YYYY-MM-DD)"
  6649. msgstr ""
  6650. #: modules/luci-base/htdocs/luci-static/resources/validation.js:237
  6651. msgid "valid decimal value"
  6652. msgstr ""
  6653. #: modules/luci-base/htdocs/luci-static/resources/validation.js:408
  6654. msgid "valid hexadecimal WEP key"
  6655. msgstr ""
  6656. #: modules/luci-base/htdocs/luci-static/resources/validation.js:396
  6657. msgid "valid hexadecimal WPA key"
  6658. msgstr ""
  6659. #: modules/luci-base/htdocs/luci-static/resources/validation.js:371
  6660. msgid "valid host:port"
  6661. msgstr ""
  6662. #: modules/luci-base/htdocs/luci-static/resources/validation.js:358
  6663. #: modules/luci-base/htdocs/luci-static/resources/validation.js:360
  6664. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:73
  6665. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:79
  6666. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:107
  6667. msgid "valid hostname"
  6668. msgstr ""
  6669. #: modules/luci-base/htdocs/luci-static/resources/validation.js:348
  6670. msgid "valid hostname or IP address"
  6671. msgstr ""
  6672. #: modules/luci-base/htdocs/luci-static/resources/validation.js:229
  6673. msgid "valid integer value"
  6674. msgstr ""
  6675. #: modules/luci-base/htdocs/luci-static/resources/validation.js:312
  6676. msgid "valid network in address/netmask notation"
  6677. msgstr ""
  6678. #: modules/luci-base/htdocs/luci-static/resources/validation.js:511
  6679. msgid "valid phone digit (0-9, \"*\", \"#\", \"!\" or \".\")"
  6680. msgstr ""
  6681. #: modules/luci-base/htdocs/luci-static/resources/validation.js:335
  6682. #: modules/luci-base/htdocs/luci-static/resources/validation.js:338
  6683. msgid "valid port or port range (port1-port2)"
  6684. msgstr ""
  6685. #: modules/luci-base/htdocs/luci-static/resources/validation.js:327
  6686. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:136
  6687. msgid "valid port value"
  6688. msgstr ""
  6689. #: modules/luci-base/htdocs/luci-static/resources/validation.js:516
  6690. msgid "valid time (HH:MM:SS)"
  6691. msgstr ""
  6692. #: modules/luci-base/htdocs/luci-static/resources/validation.js:438
  6693. msgid "value between %d and %d characters"
  6694. msgstr ""
  6695. #: modules/luci-base/htdocs/luci-static/resources/validation.js:419
  6696. msgid "value between %f and %f"
  6697. msgstr ""
  6698. #: modules/luci-base/htdocs/luci-static/resources/validation.js:423
  6699. msgid "value greater or equal to %f"
  6700. msgstr ""
  6701. #: modules/luci-base/htdocs/luci-static/resources/validation.js:427
  6702. msgid "value smaller or equal to %f"
  6703. msgstr ""
  6704. #: modules/luci-base/htdocs/luci-static/resources/validation.js:432
  6705. msgid "value with %d characters"
  6706. msgstr ""
  6707. #: modules/luci-base/htdocs/luci-static/resources/validation.js:443
  6708. msgid "value with at least %d characters"
  6709. msgstr ""
  6710. #: modules/luci-base/htdocs/luci-static/resources/validation.js:448
  6711. msgid "value with at most %d characters"
  6712. msgstr ""
  6713. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1356
  6714. msgid "weak security"
  6715. msgstr ""
  6716. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:47
  6717. msgid "yes"
  6718. msgstr ""
  6719. #: modules/luci-compat/luasrc/view/cbi/delegator.htm:20
  6720. msgid "« Back"
  6721. msgstr ""