base.po 316 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490
  1. msgid ""
  2. msgstr ""
  3. "PO-Revision-Date: 2021-05-29 16:19+0000\n"
  4. "Last-Translator: Jonathan Mohamed <jonathanmohamed34@gmail.com>\n"
  5. "Language-Team: Dutch <https://hosted.weblate.org/projects/openwrt/luci/nl/>\n"
  6. "Language: nl\n"
  7. "Content-Type: text/plain; charset=UTF-8\n"
  8. "Content-Transfer-Encoding: 8bit\n"
  9. "Plural-Forms: nplurals=2; plural=n != 1;\n"
  10. "X-Generator: Weblate 4.7-dev\n"
  11. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1480
  12. msgid "%.1f dB"
  13. msgstr "%.1f dB"
  14. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:117
  15. msgid "%d Bit"
  16. msgstr "%d Bit"
  17. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3710
  18. msgid "%d invalid field(s)"
  19. msgstr "%d ongeldige velden"
  20. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:35
  21. msgid "%s is untagged in multiple VLANs!"
  22. msgstr "%s mag niet zonder tag in meerdere VLANs voorkomen!"
  23. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:294
  24. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:403
  25. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:270
  26. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:307
  27. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:325
  28. msgid "(%d minute window, %d second interval)"
  29. msgstr "(bereik van %d minuten, %d seconden interval)"
  30. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:118
  31. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:124
  32. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:258
  33. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:282
  34. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:88
  35. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:91
  36. msgid "(empty)"
  37. msgstr "(leeg)"
  38. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:351
  39. #: modules/luci-compat/luasrc/view/cbi/network_netinfo.htm:23
  40. #: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:58
  41. msgid "(no interfaces attached)"
  42. msgstr "(geen gekoppelde interfaces)"
  43. #: modules/luci-compat/luasrc/view/cbi/ucisection.htm:48
  44. msgid "-- Additional Field --"
  45. msgstr "-- Extra Veld --"
  46. #: modules/luci-base/htdocs/luci-static/resources/cbi.js:275
  47. #: modules/luci-base/htdocs/luci-static/resources/form.js:3397
  48. #: modules/luci-base/htdocs/luci-static/resources/form.js:3763
  49. #: modules/luci-base/htdocs/luci-static/resources/ui.js:784
  50. #: modules/luci-base/htdocs/luci-static/resources/ui.js:1022
  51. #: modules/luci-base/htdocs/luci-static/resources/ui.js:1993
  52. #: modules/luci-compat/luasrc/view/cbi/header.htm:8
  53. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:89
  54. msgid "-- Please choose --"
  55. msgstr "-- Maak een keuze --"
  56. #: modules/luci-base/htdocs/luci-static/resources/cbi.js:276
  57. #: modules/luci-base/htdocs/luci-static/resources/ui.js:1023
  58. #: modules/luci-base/htdocs/luci-static/resources/ui.js:1994
  59. #: modules/luci-compat/luasrc/view/cbi/header.htm:9
  60. msgid "-- custom --"
  61. msgstr "-- aangepast --"
  62. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:270
  63. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:379
  64. msgid "-- match by label --"
  65. msgstr "-- op label selecteren --"
  66. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:256
  67. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:362
  68. msgid "-- match by uuid --"
  69. msgstr "-- op uuid selecteren --"
  70. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:27
  71. #: modules/luci-compat/luasrc/view/cbi/network_ifacelist.htm:44
  72. #: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:23
  73. msgid "-- please select --"
  74. msgstr "-- maak een keuze --"
  75. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:55
  76. msgctxt "sstp log level value"
  77. msgid "0"
  78. msgstr "0"
  79. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:969
  80. msgid "0 = not using RSSI threshold, 1 = do not change driver default"
  81. msgstr ""
  82. "0 = geen signaaldrempelwaarde gebruiken, 1 = standaardwaarde van driver niet "
  83. "wijzigen"
  84. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:56
  85. msgctxt "sstp log level value"
  86. msgid "1"
  87. msgstr "1"
  88. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:231
  89. msgid "1 Minute Load:"
  90. msgstr "Systeembelasting (1 minuut):"
  91. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:251
  92. msgid "15 Minute Load:"
  93. msgstr "Systeembelasting (15 minuten):"
  94. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:57
  95. msgctxt "sstp log level value"
  96. msgid "2"
  97. msgstr "2"
  98. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:58
  99. msgctxt "sstp log level value"
  100. msgid "3"
  101. msgstr "3"
  102. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:59
  103. msgctxt "sstp log level value"
  104. msgid "4"
  105. msgstr "4"
  106. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1481
  107. msgid "4-character hexadecimal ID"
  108. msgstr "4-teken hexadecimaal ID"
  109. #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:18
  110. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:11
  111. msgid "464XLAT (CLAT)"
  112. msgstr "464XLAT (CLAT)"
  113. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:241
  114. msgid "5 Minute Load:"
  115. msgstr "Systeembelasting (5 minuten):"
  116. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1510
  117. msgid "6-octet identifier as a hex string - no colons"
  118. msgstr "6-octet ID als hex tekenreeks - zonder dubbele punten"
  119. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1470
  120. msgid "802.11r Fast Transition"
  121. msgstr "802.11r Snelle overgang"
  122. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1657
  123. msgid "802.11w Association SA Query maximum timeout"
  124. msgstr "802.11w Association SA Query maximale time-out"
  125. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1664
  126. msgid "802.11w Association SA Query retry timeout"
  127. msgstr "802.11w Associatie SA Vraag herproberen time-out"
  128. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1645
  129. msgid "802.11w Management Frame Protection"
  130. msgstr ""
  131. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1657
  132. msgid "802.11w maximum timeout"
  133. msgstr "802.11w maximale time-out"
  134. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1664
  135. msgid "802.11w retry timeout"
  136. msgstr "802.11w herproberen time-out"
  137. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:986
  138. msgid "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>"
  139. msgstr "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>"
  140. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:326
  141. msgid "<abbr title=\"Domain Name System\">DNS</abbr> query port"
  142. msgstr "<abbr title=\"Domain Name System\">DNS</abbr> verzoekpoort"
  143. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:317
  144. msgid "<abbr title=\"Domain Name System\">DNS</abbr> server port"
  145. msgstr "<abbr title=\"Domain Name System\">DNS</abbr> serverpoort"
  146. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:260
  147. msgid ""
  148. "<abbr title=\"Domain Name System\">DNS</abbr> servers will be queried in the "
  149. "order of the resolvfile"
  150. msgstr ""
  151. "<abbr title=\"Domain Name System\">DNS</abbr> servers worden geraadpleegd in "
  152. "volgorde van het resolvbestand"
  153. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:975
  154. msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>"
  155. msgstr "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>"
  156. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:495
  157. msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Address"
  158. msgstr "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Adres"
  159. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:42
  160. msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Gateway"
  161. msgstr "<abbr title=\"Internet Protocol Versie 4\">IPv4</abbr>-Gateway"
  162. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:679
  163. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:36
  164. msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Netmask"
  165. msgstr "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Netwerkmasker"
  166. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:31
  167. msgid ""
  168. "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Address or Network "
  169. "(CIDR)"
  170. msgstr ""
  171. "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Adres of Netwerk "
  172. "(CIDR)"
  173. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:42
  174. msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Gateway"
  175. msgstr "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Gateway"
  176. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:531
  177. msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Suffix (hex)"
  178. msgstr ""
  179. "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Achtervoegsel (hex)"
  180. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:58
  181. msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Configuration"
  182. msgstr "<abbr title=\"Light Emitting Diode\">LED</abbr> Configuratie"
  183. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:69
  184. msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Name"
  185. msgstr "<abbr title=\"Light Emitting Diode\">LED</abbr> Naam"
  186. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:431
  187. msgid "<abbr title=\"Media Access Control\">MAC</abbr>-Address"
  188. msgstr "<abbr title=\"Media Access Control\">MAC</abbr>-Adres"
  189. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:885
  190. msgid "<abbr title=\"Neighbour Discovery Protocol\">NDP</abbr>-Proxy"
  191. msgstr ""
  192. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:779
  193. msgid "<abbr title=\"Router Advertisement\">RA</abbr> Flags"
  194. msgstr ""
  195. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:837
  196. msgid "<abbr title=\"Router Advertisement\">RA</abbr> Hop Limit"
  197. msgstr ""
  198. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:813
  199. msgid "<abbr title=\"Router Advertisement\">RA</abbr> Lifetime"
  200. msgstr ""
  201. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:820
  202. msgid "<abbr title=\"Router Advertisement\">RA</abbr> MTU"
  203. msgstr ""
  204. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:751
  205. msgid "<abbr title=\"Router Advertisement\">RA</abbr>-Service"
  206. msgstr ""
  207. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:525
  208. msgid "<abbr title=\"The DHCP Unique Identifier\">DUID</abbr>"
  209. msgstr "<abbr title=\"The DHCP Unique Identifier\">DUID</abbr>"
  210. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:335
  211. msgid ""
  212. "<abbr title=\"maximal\">Max.</abbr> <abbr title=\"Dynamic Host Configuration "
  213. "Protocol\">DHCP</abbr> leases"
  214. msgstr ""
  215. "<abbr title=\"maximal\">Max.</abbr> <abbr title=\"Dynamic Host Configuration "
  216. "Protocol\">DHCP</abbr> toewijzingen"
  217. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:344
  218. msgid ""
  219. "<abbr title=\"maximal\">Max.</abbr> <abbr title=\"Extension Mechanisms for "
  220. "Domain Name System\">EDNS0</abbr> packet size"
  221. msgstr ""
  222. "<abbr title=\"maximale\">Max.</abbr> <abbr title=\"Extension Mechanisms for "
  223. "Domain Name System\">EDNS0</abbr> packetgrootte"
  224. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:353
  225. msgid "<abbr title=\"maximal\">Max.</abbr> concurrent queries"
  226. msgstr "<abbr title=\"maximaal aantal\">Max.</abbr> gelijktijdige verzoeken"
  227. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/crontab.js:29
  228. msgid ""
  229. "<br/>Note: you need to manually restart the cron service if the crontab file "
  230. "was empty before editing."
  231. msgstr ""
  232. "<br/>Noot: de cron service moet handmatig worden herstart indien het "
  233. "crontabbestand voor het bewerken leeg was."
  234. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:420
  235. msgid "A configuration for the device \"%s\" already exists"
  236. msgstr ""
  237. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2739
  238. msgid "A directory with the same name already exists."
  239. msgstr "Er bestaat al een map met deze naam."
  240. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2671
  241. msgid "A new login is required since the authentication session expired."
  242. msgstr "Er moet opnieuw worden ingelogd omdat de sessie is verlopen."
  243. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1460
  244. msgid "A43C + J43 + A43"
  245. msgstr "A43C + J43 + A43"
  246. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1461
  247. msgid "A43C + J43 + A43 + V43"
  248. msgstr "A43C + J43 + A43 + V43"
  249. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1473
  250. msgid "ADSL"
  251. msgstr "ADSL"
  252. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1449
  253. msgid "ANSI T1.413"
  254. msgstr "ANSI T1.413"
  255. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:95
  256. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:94
  257. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:87
  258. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:68
  259. msgid "APN"
  260. msgstr "APN"
  261. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:200
  262. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:352
  263. msgid "ARP"
  264. msgstr "ARP"
  265. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:365
  266. msgid "ARP IP Targets"
  267. msgstr "ARP IP-Doelen"
  268. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:357
  269. msgid "ARP Interval"
  270. msgstr "ARP Interval"
  271. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:381
  272. msgid "ARP Validation"
  273. msgstr "ARP Validatie"
  274. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:373
  275. msgid "ARP mode to consider a slave as being up"
  276. msgstr "ARP modus om een slaaf te beschouwen als actief"
  277. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:77
  278. msgid "ARP monitoring is not supported for the selected policy!"
  279. msgstr ""
  280. "ARP monitoring wordt niet ondersteund voor de geselecteerde instelling!"
  281. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:175
  282. msgid "ARP retry threshold"
  283. msgstr "Drempelwaarde voor hernieuwde ARP-pogingen"
  284. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1468
  285. msgid "ATM (Asynchronous Transfer Mode)"
  286. msgstr "ATM (Asynchronous Transfer Mode)"
  287. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1489
  288. msgid "ATM Bridges"
  289. msgstr "ATM Bruggen"
  290. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1521
  291. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:66
  292. msgid "ATM Virtual Channel Identifier (VCI)"
  293. msgstr "ATM Virtual Circuit Identifier (VCI)"
  294. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1522
  295. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:70
  296. msgid "ATM Virtual Path Identifier (VPI)"
  297. msgstr "ATM Virtual Path Identifier (VPI)"
  298. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1489
  299. msgid ""
  300. "ATM bridges expose encapsulated ethernet in AAL5 connections as virtual "
  301. "Linux network interfaces which can be used in conjunction with DHCP or PPP "
  302. "to dial into the provider network."
  303. msgstr ""
  304. "ATM bruggen maken in AAL5 omhulde ethernetverbindingen beschikbaar als "
  305. "virtuele Linux netwerkinterfaces welke met DHCP of PPP gebruikt kunnen "
  306. "worden om in het netwerk van de provider in te bellen."
  307. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1528
  308. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:62
  309. msgid "ATM device number"
  310. msgstr "ATM apparaatnummer"
  311. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:36
  312. msgid "ATU-C System Vendor ID"
  313. msgstr "ATU-C Systeemleverancier-ID"
  314. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:265
  315. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:544
  316. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:548
  317. msgid "Absent Interface"
  318. msgstr "Geen interface"
  319. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:686
  320. msgid "Accept local"
  321. msgstr ""
  322. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:686
  323. msgid "Accept packets with local source addresses"
  324. msgstr ""
  325. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:47
  326. msgid "Access Concentrator"
  327. msgstr "Toegang Concentrator"
  328. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:957
  329. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1071
  330. msgid "Access Point"
  331. msgstr "Toegangspunt"
  332. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:358
  333. msgid "Actions"
  334. msgstr "Acties"
  335. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:14
  336. msgid "Active"
  337. msgstr "Actief"
  338. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:203
  339. msgid "Active <abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Routes"
  340. msgstr "Actieve <abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Routes"
  341. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:209
  342. msgid "Active <abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Routes"
  343. msgstr "Actieve <abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Routes"
  344. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:81
  345. msgid "Active Connections"
  346. msgstr "Actieve verbindingen"
  347. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:33
  348. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:173
  349. msgid "Active DHCP Leases"
  350. msgstr "Actieve DHCP toewijzingen"
  351. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:52
  352. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:175
  353. msgid "Active DHCPv6 Leases"
  354. msgstr "Actieve DHCPv6 toewijzingen"
  355. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:203
  356. msgid "Active-Backup policy (active-backup, 1)"
  357. msgstr "Actieve-Backup instelling (active-backup, 1)"
  358. #: modules/luci-base/htdocs/luci-static/resources/network.js:3822
  359. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:959
  360. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:23
  361. msgid "Ad-Hoc"
  362. msgstr "Ad-Hocmodus"
  363. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:208
  364. msgid "Adaptive load balancing (balance-alb, 6)"
  365. msgstr "Adaptieve lastbalancering (balance-alb, 6)"
  366. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:207
  367. msgid "Adaptive transmit load balancing (balance-tlb, 5)"
  368. msgstr "Adaptieve verzendlastbalancering (balance-tlb, 5)"
  369. #: modules/luci-base/htdocs/luci-static/resources/form.js:2192
  370. #: modules/luci-base/htdocs/luci-static/resources/form.js:2195
  371. #: modules/luci-base/htdocs/luci-static/resources/form.js:2209
  372. #: modules/luci-base/htdocs/luci-static/resources/form.js:2210
  373. #: modules/luci-base/htdocs/luci-static/resources/form.js:3195
  374. #: modules/luci-compat/luasrc/view/cbi/nsection.htm:25
  375. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:189
  376. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:197
  377. #: modules/luci-compat/luasrc/view/cbi/tsection.htm:39
  378. #: modules/luci-compat/luasrc/view/cbi/tsection.htm:47
  379. #: modules/luci-compat/luasrc/view/cbi/ucisection.htm:54
  380. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:851
  381. msgid "Add"
  382. msgstr "Toevoegen"
  383. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1493
  384. msgid "Add ATM Bridge"
  385. msgstr "ATM brug toevoegen"
  386. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:92
  387. msgid "Add IPv4 address…"
  388. msgstr "IPv4-adres toevoegen…"
  389. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:185
  390. msgid "Add IPv6 address…"
  391. msgstr "IPv6-adres toevoegen…"
  392. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:65
  393. msgid "Add LED action"
  394. msgstr "LED-actie toevoegen"
  395. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:219
  396. msgid "Add VLAN"
  397. msgstr "VLAN toevoegen"
  398. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1287
  399. msgid "Add device configuration"
  400. msgstr ""
  401. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1215
  402. msgid "Add device configuration…"
  403. msgstr ""
  404. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:15
  405. msgid "Add instance"
  406. msgstr "Instantie toevoegen"
  407. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:165
  408. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:171
  409. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:268
  410. msgid "Add key"
  411. msgstr "Sleutel toevoegen"
  412. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:248
  413. msgid "Add local domain suffix to names served from hosts files"
  414. msgstr ""
  415. "Lokaal-domeinachtervoegsel toevoegen aan uit hostsfiles geserveerde namen"
  416. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:453
  417. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1102
  418. msgid "Add new interface..."
  419. msgstr "Nieuwe interface toevoegen..."
  420. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:120
  421. msgid "Add peer"
  422. msgstr "Peer toevoegen"
  423. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:331
  424. msgid "Add to Blacklist"
  425. msgstr ""
  426. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:331
  427. msgid "Add to Whitelist"
  428. msgstr ""
  429. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:200
  430. msgid "Additional Hosts files"
  431. msgstr "Aanvullende Hostsbestanden"
  432. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:255
  433. msgid "Additional servers file"
  434. msgstr "Aanvullende-serversbestand"
  435. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:34
  436. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:35
  437. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:36
  438. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:37
  439. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:38
  440. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:39
  441. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:40
  442. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:41
  443. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:42
  444. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:43
  445. msgid "Address"
  446. msgstr "Adres"
  447. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:151
  448. msgid "Address to access local relay bridge"
  449. msgstr "Adres van lokale relay-brug"
  450. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:285
  451. msgid "Addresses"
  452. msgstr "Adressen"
  453. #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:3
  454. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:15
  455. msgid "Administration"
  456. msgstr "Administratie"
  457. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:164
  458. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:466
  459. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:621
  460. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1519
  461. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:25
  462. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:890
  463. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:954
  464. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:241
  465. msgid "Advanced Settings"
  466. msgstr "Geavanceerde instellingen"
  467. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:395
  468. msgid "Advanced device options"
  469. msgstr ""
  470. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:549
  471. msgid "Ageing time"
  472. msgstr ""
  473. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:27
  474. msgid "Aggregate Transmit Power (ACTATP)"
  475. msgstr "Geaggregeerd verzendvermogen (ACTATP)"
  476. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:258
  477. msgid "Aggregation Selection Logic"
  478. msgstr "Aggregatie Selectie Logica"
  479. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:261
  480. msgid "Aggregator: All slaves down or has no slaves (stable, 0)"
  481. msgstr ""
  482. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:263
  483. msgid ""
  484. "Aggregator: Chosen by the largest number of ports + slave added/removed or "
  485. "state changes (count, 2)"
  486. msgstr ""
  487. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:262
  488. msgid "Aggregator: Slave added/removed or state changes (bandwidth, 1)"
  489. msgstr ""
  490. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:178
  491. msgid "Alert"
  492. msgstr "Waarschuwing"
  493. #: modules/luci-base/htdocs/luci-static/resources/network.js:2984
  494. #: modules/luci-compat/luasrc/model/network.lua:1417
  495. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:62
  496. msgid "Alias Interface"
  497. msgstr "Alias Interface"
  498. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:146
  499. msgid "Alias of \"%s\""
  500. msgstr "Alias van \"%s\""
  501. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:263
  502. msgid "All Servers"
  503. msgstr "Alle servers"
  504. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:209
  505. msgid ""
  506. "Allocate IP addresses sequentially, starting from the lowest available "
  507. "address"
  508. msgstr ""
  509. "IP-adressen op volgorde toewijzen, beginnend bij het laagst beschikbare adres"
  510. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:208
  511. msgid "Allocate IP sequentially"
  512. msgstr "IP-adressen sequentieel toewijzen"
  513. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:25
  514. msgid "Allow <abbr title=\"Secure Shell\">SSH</abbr> password authentication"
  515. msgstr ""
  516. "<abbr title=\"Secure Shell\">SSH</abbr> wachtwoordauthenticatie toestaan"
  517. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1151
  518. msgid "Allow AP mode to disconnect STAs based on low ACK condition"
  519. msgstr "AP toestaan verbindingen met lage signaalkwaliteit te verbreken"
  520. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1055
  521. msgid "Allow all except listed"
  522. msgstr "Alles behalve vermelde toestaan"
  523. #: modules/luci-compat/root/usr/share/rpcd/acl.d/luci-compat.json:3
  524. msgid "Allow full UCI access for legacy applications"
  525. msgstr "Volledige UCI toegang voor verouderde applicaties toestaan"
  526. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:910
  527. msgid "Allow legacy 802.11b rates"
  528. msgstr "Verouderde 802.11b-snelheden toestaan"
  529. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1054
  530. msgid "Allow listed only"
  531. msgstr "Alleen vermelde toestaan"
  532. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:300
  533. msgid "Allow localhost"
  534. msgstr "Localhost toestaan"
  535. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:157
  536. msgid "Allow rebooting the device"
  537. msgstr "Herstarten van apparaat toestaan"
  538. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:36
  539. msgid "Allow remote hosts to connect to local SSH forwarded ports"
  540. msgstr ""
  541. "Hosts op afstand toestaan te verbinden met locale middels SSH doorverbonden "
  542. "poorten"
  543. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:31
  544. msgid "Allow root logins with password"
  545. msgstr "Root-logins met wachtwoord toestaan"
  546. #: modules/luci-base/root/usr/share/rpcd/acl.d/luci-base.json:3
  547. msgid "Allow system feature probing"
  548. msgstr ""
  549. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:31
  550. msgid "Allow the <em>root</em> user to login with password"
  551. msgstr "<em>root</em>gebruiker toestaan zonder wachtwoord in te loggen"
  552. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301
  553. msgid ""
  554. "Allow upstream responses in the 127.0.0.0/8 range, e.g. for RBL services"
  555. msgstr ""
  556. "DNS-antwoorden in het 127.0.0.0/8 bereik toestaan, bijvoorbeeld voor "
  557. "blokkeerlijstdiensten"
  558. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:143
  559. msgid "Allowed IPs"
  560. msgstr "Toegestane IP-adressen"
  561. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:758
  562. msgid "Always"
  563. msgstr ""
  564. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/none.js:5
  565. msgid "Always off (kernel: none)"
  566. msgstr "Altijd uit (kernel: geen)"
  567. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/default-on.js:6
  568. msgid "Always on (kernel: default-on)"
  569. msgstr "Altijd aan (kernel: altijd-aan)"
  570. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:937
  571. msgid ""
  572. "Always use 40MHz channels even if the secondary channel overlaps. Using this "
  573. "option does not comply with IEEE 802.11n-2009!"
  574. msgstr ""
  575. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:719
  576. msgid "Amount of Duplicate Address Detection probes to send"
  577. msgstr ""
  578. #: modules/luci-base/htdocs/luci-static/resources/form.js:603
  579. msgid "An error occurred while saving the form:"
  580. msgstr "Er is een fout opgetreden bij het opslaan van het formulier:"
  581. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:125
  582. msgid "An optional, short description for this device"
  583. msgstr ""
  584. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1441
  585. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:20
  586. msgid "Annex"
  587. msgstr ""
  588. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1442
  589. msgid "Annex A + L + M (all)"
  590. msgstr ""
  591. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1450
  592. msgid "Annex A G.992.1"
  593. msgstr ""
  594. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1451
  595. msgid "Annex A G.992.2"
  596. msgstr ""
  597. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1452
  598. msgid "Annex A G.992.3"
  599. msgstr ""
  600. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1453
  601. msgid "Annex A G.992.5"
  602. msgstr ""
  603. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1443
  604. msgid "Annex B (all)"
  605. msgstr ""
  606. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1446
  607. msgid "Annex B G.992.1"
  608. msgstr ""
  609. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1447
  610. msgid "Annex B G.992.3"
  611. msgstr ""
  612. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1448
  613. msgid "Annex B G.992.5"
  614. msgstr ""
  615. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1444
  616. msgid "Annex J (all)"
  617. msgstr ""
  618. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1454
  619. msgid "Annex L G.992.3 POTS 1"
  620. msgstr ""
  621. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1445
  622. msgid "Annex M (all)"
  623. msgstr ""
  624. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1455
  625. msgid "Annex M G.992.3"
  626. msgstr ""
  627. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1456
  628. msgid "Annex M G.992.5"
  629. msgstr ""
  630. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:873
  631. msgid "Announce this device as IPv6 DNS server."
  632. msgstr ""
  633. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:765
  634. msgid ""
  635. "Announce this device as default router if a local IPv6 default route is "
  636. "present."
  637. msgstr ""
  638. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:767
  639. msgid ""
  640. "Announce this device as default router if a public IPv6 prefix is available, "
  641. "regardless of local default route availability."
  642. msgstr ""
  643. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:769
  644. msgid ""
  645. "Announce this device as default router regardless of whether a prefix or "
  646. "default route is present."
  647. msgstr ""
  648. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:878
  649. msgid "Announced DNS domains"
  650. msgstr "Aangekondigde DNS domeinen"
  651. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:866
  652. msgid "Announced IPv6 DNS servers"
  653. msgstr ""
  654. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1635
  655. msgid "Anonymous Identity"
  656. msgstr "Anonieme identiteit"
  657. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:162
  658. msgid "Anonymous Mount"
  659. msgstr "Anoniem Monteren"
  660. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:158
  661. msgid "Anonymous Swap"
  662. msgstr "Anoniem Verwisselen"
  663. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:84
  664. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:174
  665. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:195
  666. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:60
  667. msgid "Any zone"
  668. msgstr ""
  669. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:119
  670. msgid "Apply backup?"
  671. msgstr "Backup toepassen?"
  672. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4297
  673. msgid "Apply request failed with status <code>%h</code>"
  674. msgstr "Aanvraag is mislukt met status <code>%h</code>"
  675. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2182
  676. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4163
  677. msgid "Apply unchecked"
  678. msgstr ""
  679. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4236
  680. msgid "Applying configuration changes… %ds"
  681. msgstr ""
  682. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:56
  683. msgid "Architecture"
  684. msgstr "Architectuur"
  685. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:946
  686. msgid ""
  687. "Assign a part of given length of every public IPv6-prefix to this interface"
  688. msgstr ""
  689. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:951
  690. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:27
  691. msgid ""
  692. "Assign prefix parts using this hexadecimal subprefix ID for this interface."
  693. msgstr ""
  694. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2125
  695. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:362
  696. msgid "Associated Stations"
  697. msgstr ""
  698. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:145
  699. msgid "Associations"
  700. msgstr "Associaties"
  701. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:154
  702. msgid "Attempt to enable configured mount points for attached devices"
  703. msgstr ""
  704. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:110
  705. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:64
  706. msgid "Auth Group"
  707. msgstr "Auth Groep"
  708. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1574
  709. msgid "Authentication"
  710. msgstr "Authenticatie"
  711. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:97
  712. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:71
  713. msgid "Authentication Type"
  714. msgstr ""
  715. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:172
  716. msgid "Authoritative"
  717. msgstr "Autoritatieve"
  718. #: modules/luci-base/luasrc/view/sysauth.htm:17
  719. msgid "Authorization Required"
  720. msgstr "Autorisatie Vereist"
  721. #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:196
  722. #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:197
  723. msgid "Auto Refresh"
  724. msgstr "Automatisch Vernieuwen"
  725. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:108
  726. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:18
  727. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:24
  728. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:100
  729. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:51
  730. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:96
  731. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:82
  732. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:56
  733. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:69
  734. msgid "Automatic"
  735. msgstr "Automatisch"
  736. #: modules/luci-compat/luasrc/model/network/proto_hnet.lua:7
  737. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:7
  738. msgid "Automatic Homenet (HNCP)"
  739. msgstr ""
  740. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:174
  741. msgid "Automatically check filesystem for errors before mounting"
  742. msgstr ""
  743. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:170
  744. msgid "Automatically mount filesystems on hotplug"
  745. msgstr ""
  746. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:166
  747. msgid "Automatically mount swap on hotplug"
  748. msgstr ""
  749. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:170
  750. msgid "Automount Filesystem"
  751. msgstr ""
  752. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:166
  753. msgid "Automount Swap"
  754. msgstr ""
  755. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:193
  756. msgid "Available"
  757. msgstr "Beschikbaar"
  758. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:268
  759. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:278
  760. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:329
  761. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:339
  762. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:349
  763. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:234
  764. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:244
  765. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:254
  766. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:263
  767. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:273
  768. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:291
  769. msgid "Average:"
  770. msgstr "Gemiddelde:"
  771. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1462
  772. msgid "B43 + B43C"
  773. msgstr ""
  774. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1463
  775. msgid "B43 + B43C + V43"
  776. msgstr ""
  777. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:48
  778. msgid "BR / DMR / AFTR"
  779. msgstr ""
  780. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:158
  781. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:182
  782. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1702
  783. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:379
  784. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:143
  785. msgid "BSSID"
  786. msgstr ""
  787. #: modules/luci-compat/luasrc/view/cbi/footer.htm:14
  788. #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:48
  789. msgid "Back to Overview"
  790. msgstr "Terug naar het overzicht"
  791. #: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:48
  792. msgid "Back to configuration"
  793. msgstr "Terug naar de configuratie"
  794. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:361
  795. msgid "Backup"
  796. msgstr "Backup"
  797. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:114
  798. msgid "Backup / Flash Firmware"
  799. msgstr "Backup / Flash Firmware"
  800. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:321
  801. #: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:12
  802. msgid "Backup file list"
  803. msgstr ""
  804. #: modules/luci-compat/luasrc/view/cbi/wireless_modefreq.htm:158
  805. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:473
  806. msgid "Band"
  807. msgstr ""
  808. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:424
  809. msgid "Base device"
  810. msgstr ""
  811. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:940
  812. msgid "Beacon Interval"
  813. msgstr ""
  814. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:322
  815. #: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:46
  816. msgid ""
  817. "Below is the determined list of files to backup. It consists of changed "
  818. "configuration files marked by opkg, essential base files and the user "
  819. "defined backup patterns."
  820. msgstr ""
  821. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:395
  822. msgid ""
  823. "Bind dynamically to interfaces rather than wildcard address (recommended as "
  824. "linux default)"
  825. msgstr ""
  826. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:59
  827. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64
  828. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64
  829. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:69
  830. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:48
  831. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:55
  832. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:57
  833. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:52
  834. msgid "Bind interface"
  835. msgstr ""
  836. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:59
  837. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64
  838. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64
  839. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:69
  840. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:48
  841. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:55
  842. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:57
  843. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:52
  844. msgid "Bind the tunnel to this interface (optional)."
  845. msgstr ""
  846. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:129
  847. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:188
  848. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:165
  849. msgid "Bitrate"
  850. msgstr "Bitrate"
  851. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:266
  852. msgid "Bogus NX Domain Override"
  853. msgstr ""
  854. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:199
  855. msgid "Bonding Policy"
  856. msgstr ""
  857. #: modules/luci-base/htdocs/luci-static/resources/network.js:2990
  858. #: modules/luci-compat/luasrc/model/network.lua:1421
  859. msgid "Bridge"
  860. msgstr ""
  861. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:476
  862. msgctxt "MACVLAN mode"
  863. msgid "Bridge (Support direct communication between MAC VLANs)"
  864. msgstr ""
  865. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:397
  866. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:469
  867. msgid "Bridge VLAN filtering"
  868. msgstr ""
  869. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:402
  870. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1364
  871. msgid "Bridge device"
  872. msgstr ""
  873. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:396
  874. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:468
  875. msgid "Bridge port specific options"
  876. msgstr ""
  877. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:503
  878. msgid "Bridge ports"
  879. msgstr ""
  880. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1529
  881. msgid "Bridge unit number"
  882. msgstr ""
  883. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:540
  884. msgid "Bring up empty bridge"
  885. msgstr ""
  886. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:563
  887. msgid "Bring up on boot"
  888. msgstr ""
  889. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:540
  890. msgid "Bring up the bridge interface even if no ports are attached"
  891. msgstr ""
  892. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:205
  893. msgid "Broadcast policy (broadcast, 3)"
  894. msgstr ""
  895. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2829
  896. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3820
  897. msgid "Browse…"
  898. msgstr ""
  899. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:37
  900. msgid "Buffered"
  901. msgstr ""
  902. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:144
  903. msgid "CA certificate; if empty it will be saved after the first connection."
  904. msgstr ""
  905. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:7
  906. msgid "CLAT configuration failed"
  907. msgstr ""
  908. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:72
  909. msgid "CPU usage (%)"
  910. msgstr "CPU gebruik (%)"
  911. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:41
  912. msgid "Cached"
  913. msgstr "Cached"
  914. #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:53
  915. #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:53
  916. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:21
  917. msgid "Call failed"
  918. msgstr ""
  919. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2922
  920. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3829
  921. #: modules/luci-compat/luasrc/view/cbi/delegator.htm:14
  922. #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:52
  923. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:188
  924. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1108
  925. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1999
  926. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:128
  927. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:270
  928. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:203
  929. msgid "Cancel"
  930. msgstr "Annuleren"
  931. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:17
  932. msgid "Category"
  933. msgstr "Categorie"
  934. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1558
  935. msgid "Certificate constraint (Domain)"
  936. msgstr ""
  937. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1555
  938. msgid "Certificate constraint (SAN)"
  939. msgstr ""
  940. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1552
  941. msgid "Certificate constraint (Subject)"
  942. msgstr ""
  943. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1561
  944. msgid "Certificate constraint (Wildcard)"
  945. msgstr ""
  946. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1552
  947. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1610
  948. msgid ""
  949. "Certificate constraint substring - e.g. /CN=wifi.mycompany.com<br />See "
  950. "`logread -f` during handshake for actual values"
  951. msgstr ""
  952. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1558
  953. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1616
  954. msgid ""
  955. "Certificate constraint(s) against DNS SAN values (if available)<br />or "
  956. "Subject CN (exact match)"
  957. msgstr ""
  958. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1561
  959. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1619
  960. msgid ""
  961. "Certificate constraint(s) against DNS SAN values (if available)<br />or "
  962. "Subject CN (suffix match)"
  963. msgstr ""
  964. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1555
  965. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1613
  966. msgid ""
  967. "Certificate constraint(s) via Subject Alternate Name values<br />(supported "
  968. "attributes: EMAIL, DNS, URI) - e.g. DNS:wifi.mycompany.com"
  969. msgstr ""
  970. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:54
  971. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:57
  972. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:212
  973. msgid "Chain"
  974. msgstr ""
  975. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4049
  976. msgid "Changes"
  977. msgstr "Veranderingen"
  978. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4332
  979. msgid "Changes have been reverted."
  980. msgstr "Wijzigingen zijn teruggedraaid."
  981. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:46
  982. msgid "Changes the administrator password for accessing the device"
  983. msgstr ""
  984. #: modules/luci-compat/luasrc/view/cbi/wireless_modefreq.htm:162
  985. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:128
  986. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:184
  987. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:482
  988. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1700
  989. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:376
  990. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:164
  991. msgid "Channel"
  992. msgstr "Kanaal"
  993. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:75
  994. msgid "Channel Analysis"
  995. msgstr ""
  996. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:377
  997. msgid "Channel Width"
  998. msgstr ""
  999. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:174
  1000. msgid "Check filesystems before mount"
  1001. msgstr ""
  1002. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1961
  1003. msgid "Check this option to delete the existing networks from this radio."
  1004. msgstr ""
  1005. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:110
  1006. msgid "Checking archive…"
  1007. msgstr ""
  1008. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:193
  1009. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:195
  1010. msgid "Checking image…"
  1011. msgstr ""
  1012. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:397
  1013. msgid "Choose mtdblock"
  1014. msgstr ""
  1015. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:568
  1016. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1989
  1017. msgid ""
  1018. "Choose the firewall zone you want to assign to this interface. Select "
  1019. "<em>unspecified</em> to remove the interface from the associated zone or "
  1020. "fill out the <em>custom</em> field to define a new zone and attach the "
  1021. "interface to it."
  1022. msgstr ""
  1023. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:989
  1024. msgid ""
  1025. "Choose the network(s) you want to attach to this wireless interface or fill "
  1026. "out the <em>custom</em> field to define a new network."
  1027. msgstr ""
  1028. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1187
  1029. msgid "Cipher"
  1030. msgstr ""
  1031. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:91
  1032. msgid "Cisco UDP encapsulation"
  1033. msgstr ""
  1034. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:361
  1035. msgid ""
  1036. "Click \"Generate archive\" to download a tar archive of the current "
  1037. "configuration files."
  1038. msgstr ""
  1039. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:394
  1040. msgid ""
  1041. "Click \"Save mtdblock\" to download specified mtdblock file. (NOTE: THIS "
  1042. "FEATURE IS FOR PROFESSIONALS! )"
  1043. msgstr ""
  1044. #: modules/luci-base/htdocs/luci-static/resources/network.js:3821
  1045. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:958
  1046. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1072
  1047. msgid "Client"
  1048. msgstr ""
  1049. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37
  1050. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:33
  1051. msgid "Client ID to send when requesting DHCP"
  1052. msgstr ""
  1053. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4066
  1054. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:167
  1055. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:173
  1056. msgid "Close"
  1057. msgstr "Sluiten"
  1058. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:144
  1059. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:128
  1060. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:114
  1061. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:92
  1062. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:101
  1063. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:124
  1064. msgid ""
  1065. "Close inactive connection after the given amount of seconds, use 0 to "
  1066. "persist connection"
  1067. msgstr ""
  1068. #: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:49
  1069. msgid "Close list..."
  1070. msgstr ""
  1071. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:42
  1072. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:61
  1073. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2123
  1074. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:389
  1075. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:352
  1076. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:355
  1077. #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:204
  1078. msgid "Collecting data..."
  1079. msgstr ""
  1080. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:71
  1081. msgid "Command"
  1082. msgstr ""
  1083. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:401
  1084. msgid "Command OK"
  1085. msgstr ""
  1086. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:33
  1087. msgid "Command failed"
  1088. msgstr ""
  1089. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:73
  1090. msgid "Comment"
  1091. msgstr ""
  1092. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1671
  1093. msgid ""
  1094. "Complicates key reinstallation attacks on the client side by disabling "
  1095. "retransmission of EAPOL-Key frames that are used to install keys. This "
  1096. "workaround might cause interoperability issues and reduced robustness of key "
  1097. "negotiation especially in environments with heavy traffic load."
  1098. msgstr ""
  1099. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:101
  1100. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:106
  1101. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:103
  1102. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:108
  1103. msgid "Compute outgoing checksum (optional)."
  1104. msgstr ""
  1105. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4049
  1106. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:424
  1107. msgid "Configuration"
  1108. msgstr "Configuratie"
  1109. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4211
  1110. msgid "Configuration changes applied."
  1111. msgstr "Configuratiewijzigingen toegepast."
  1112. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4149
  1113. msgid "Configuration changes have been rolled back!"
  1114. msgstr "Configuratiewijzigingen zijn teruggedraaid!"
  1115. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:63
  1116. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:21
  1117. msgid "Configuration failed"
  1118. msgstr "Configuratie mislukt"
  1119. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:919
  1120. msgid ""
  1121. "Configures data rates based on the coverage cell density. Normal configures "
  1122. "basic rates to 6, 12, 24 Mbps if legacy 802.11b rates are not used else to "
  1123. "5.5, 11 Mbps. High configures basic rates to 12, 24 Mbps if legacy 802.11b "
  1124. "rates are not used else to the 11 Mbps rate. Very High configures 24 Mbps as "
  1125. "the basic rate. Supported rates lower than the minimum basic rate are not "
  1126. "offered."
  1127. msgstr ""
  1128. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:763
  1129. msgid ""
  1130. "Configures the default router advertisement in <abbr title=\"Router "
  1131. "Advertisement\">RA</abbr> messages."
  1132. msgstr ""
  1133. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:752
  1134. msgid ""
  1135. "Configures the operation mode of the <abbr title=\"Router Advertisement"
  1136. "\">RA</abbr> service on this interface."
  1137. msgstr ""
  1138. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:856
  1139. msgid "Configures the operation mode of the DHCPv6 service on this interface."
  1140. msgstr ""
  1141. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:886
  1142. msgid ""
  1143. "Configures the operation mode of the NDP proxy service on this interface."
  1144. msgstr ""
  1145. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1273
  1146. msgid "Configure…"
  1147. msgstr ""
  1148. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:176
  1149. msgid "Confirm disconnect"
  1150. msgstr ""
  1151. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:55
  1152. msgid "Confirmation"
  1153. msgstr ""
  1154. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:47
  1155. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:51
  1156. msgid "Connected"
  1157. msgstr "Verbonden"
  1158. #: modules/luci-base/htdocs/luci-static/resources/network.js:9
  1159. #: modules/luci-compat/luasrc/model/network.lua:27
  1160. msgid "Connection attempt failed"
  1161. msgstr ""
  1162. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:40
  1163. msgid "Connection attempt failed."
  1164. msgstr ""
  1165. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:411
  1166. msgid "Connection lost"
  1167. msgstr ""
  1168. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:130
  1169. msgid "Connections"
  1170. msgstr ""
  1171. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:377
  1172. msgid "Consider the slave up when all ARP IP targets are reachable (all, 1)"
  1173. msgstr ""
  1174. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:376
  1175. msgid "Consider the slave up when any ARP IP target is reachable (any, 0)"
  1176. msgstr ""
  1177. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/crontab.js:18
  1178. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:338
  1179. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:55
  1180. msgid "Contents have been saved."
  1181. msgstr ""
  1182. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:387
  1183. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:421
  1184. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:766
  1185. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:132
  1186. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:262
  1187. msgid "Continue"
  1188. msgstr "Doorgaan"
  1189. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4185
  1190. msgid ""
  1191. "Could not regain access to the device after applying the configuration "
  1192. "changes. You might need to reconnect if you modified network related "
  1193. "settings such as the IP address or wireless security credentials."
  1194. msgstr ""
  1195. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:189
  1196. msgid "Country"
  1197. msgstr "Land"
  1198. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:916
  1199. msgid "Country Code"
  1200. msgstr ""
  1201. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:919
  1202. msgid "Coverage cell density"
  1203. msgstr ""
  1204. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:568
  1205. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1989
  1206. msgid "Create / Assign firewall-zone"
  1207. msgstr ""
  1208. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1137
  1209. msgid "Create interface"
  1210. msgstr ""
  1211. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:177
  1212. msgid "Critical"
  1213. msgstr ""
  1214. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:181
  1215. msgid "Cron Log Level"
  1216. msgstr ""
  1217. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:557
  1218. msgid "Current power"
  1219. msgstr ""
  1220. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:569
  1221. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:571
  1222. #: modules/luci-compat/luasrc/view/cbi/network_ifacelist.htm:51
  1223. #: modules/luci-compat/luasrc/view/cbi/network_ifacelist.htm:53
  1224. #: modules/luci-compat/luasrc/view/cbi/network_ifacelist.htm:82
  1225. #: modules/luci-compat/luasrc/view/cbi/network_ifacelist.htm:83
  1226. msgid "Custom Interface"
  1227. msgstr ""
  1228. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:380
  1229. msgid ""
  1230. "Custom files (certificates, scripts) may remain on the system. To prevent "
  1231. "this, perform a factory-reset first."
  1232. msgstr ""
  1233. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/timer.js:6
  1234. msgid "Custom flash interval (kernel: timer)"
  1235. msgstr ""
  1236. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:59
  1237. msgid ""
  1238. "Customizes the behaviour of the device <abbr title=\"Light Emitting Diode"
  1239. "\">LED</abbr>s if possible."
  1240. msgstr ""
  1241. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:719
  1242. msgid "DAD transmits"
  1243. msgstr ""
  1244. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1392
  1245. msgid "DAE-Client"
  1246. msgstr ""
  1247. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1397
  1248. msgid "DAE-Port"
  1249. msgstr "DAE-Poort"
  1250. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1402
  1251. msgid "DAE-Secret"
  1252. msgstr ""
  1253. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:471
  1254. msgid "DHCP Server"
  1255. msgstr ""
  1256. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:155
  1257. #: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:50
  1258. msgid "DHCP and DNS"
  1259. msgstr ""
  1260. #: modules/luci-base/htdocs/luci-static/resources/network.js:2099
  1261. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:16
  1262. #: modules/luci-compat/luasrc/model/network.lua:969
  1263. msgid "DHCP client"
  1264. msgstr ""
  1265. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:695
  1266. msgid "DHCP-Options"
  1267. msgstr ""
  1268. #: modules/luci-compat/luasrc/model/network/proto_dhcpv6.lua:7
  1269. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:7
  1270. msgid "DHCPv6 client"
  1271. msgstr ""
  1272. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:855
  1273. msgid "DHCPv6-Service"
  1274. msgstr ""
  1275. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:45
  1276. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:46
  1277. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:47
  1278. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:48
  1279. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:49
  1280. msgid "DNS"
  1281. msgstr ""
  1282. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:277
  1283. msgid "DNS forwardings"
  1284. msgstr ""
  1285. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:920
  1286. msgid "DNS search domains"
  1287. msgstr ""
  1288. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:925
  1289. msgid "DNS weight"
  1290. msgstr ""
  1291. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:33
  1292. msgid "DNS-Label / FQDN"
  1293. msgstr ""
  1294. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:228
  1295. msgid "DNSSEC"
  1296. msgstr ""
  1297. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:232
  1298. msgid "DNSSEC check unsigned"
  1299. msgstr ""
  1300. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:99
  1301. msgid "DPD Idle Timeout"
  1302. msgstr ""
  1303. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:41
  1304. msgid "DS-Lite AFTR address"
  1305. msgstr ""
  1306. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1438
  1307. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:44
  1308. msgid "DSL"
  1309. msgstr ""
  1310. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:14
  1311. msgid "DSL Status"
  1312. msgstr ""
  1313. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1471
  1314. msgid "DSL line mode"
  1315. msgstr ""
  1316. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1127
  1317. msgid "DTIM Interval"
  1318. msgstr ""
  1319. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:57
  1320. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:127
  1321. msgid "DUID"
  1322. msgstr ""
  1323. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:21
  1324. msgid "Data Rate"
  1325. msgstr ""
  1326. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:172
  1327. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:183
  1328. msgid "Debug"
  1329. msgstr ""
  1330. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1367
  1331. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1382
  1332. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1397
  1333. msgid "Default %d"
  1334. msgstr ""
  1335. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:762
  1336. msgid "Default router"
  1337. msgstr ""
  1338. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/default-on.js:11
  1339. msgid "Default state"
  1340. msgstr ""
  1341. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:695
  1342. msgid ""
  1343. "Define additional DHCP options, for example "
  1344. "\"<code>6,192.168.2.1,192.168.2.2</code>\" which advertises different DNS "
  1345. "servers to clients."
  1346. msgstr ""
  1347. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:497
  1348. msgid ""
  1349. "Defines a mapping of Linux internal packet priority to VLAN header priority "
  1350. "but for outgoing frames"
  1351. msgstr ""
  1352. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:491
  1353. msgid ""
  1354. "Defines a mapping of VLAN header priority to the Linux internal packet "
  1355. "priority on incoming frames"
  1356. msgstr ""
  1357. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:943
  1358. msgid "Delegate IPv6 prefixes"
  1359. msgstr ""
  1360. #: modules/luci-base/htdocs/luci-static/resources/form.js:2262
  1361. #: modules/luci-base/htdocs/luci-static/resources/form.js:2687
  1362. #: modules/luci-base/htdocs/luci-static/resources/form.js:2691
  1363. #: modules/luci-base/htdocs/luci-static/resources/form.js:3179
  1364. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2891
  1365. #: modules/luci-compat/luasrc/view/cbi/nsection.htm:11
  1366. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:162
  1367. #: modules/luci-compat/luasrc/view/cbi/tsection.htm:16
  1368. msgid "Delete"
  1369. msgstr "Verwijderen"
  1370. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:199
  1371. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:205
  1372. msgid "Delete key"
  1373. msgstr "Verwijder toets"
  1374. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2788
  1375. msgid "Delete request failed: %s"
  1376. msgstr ""
  1377. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:871
  1378. msgid "Delete this network"
  1379. msgstr ""
  1380. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1127
  1381. msgid "Delivery Traffic Indication Message Interval"
  1382. msgstr ""
  1383. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:340
  1384. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:125
  1385. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:129
  1386. msgid "Description"
  1387. msgstr "Beschrijving"
  1388. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2887
  1389. msgid "Deselect"
  1390. msgstr ""
  1391. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:222
  1392. msgid "Design"
  1393. msgstr ""
  1394. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:703
  1395. msgid "Designated master"
  1396. msgstr ""
  1397. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:384
  1398. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:71
  1399. msgid "Destination"
  1400. msgstr ""
  1401. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:48
  1402. msgid "Destination port"
  1403. msgstr ""
  1404. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:59
  1405. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:165
  1406. msgid "Destination zone"
  1407. msgstr ""
  1408. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:67
  1409. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:191
  1410. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:43
  1411. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:46
  1412. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:81
  1413. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:557
  1414. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1090
  1415. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1380
  1416. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:55
  1417. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:12
  1418. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:247
  1419. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:280
  1420. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:356
  1421. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:392
  1422. msgid "Device"
  1423. msgstr ""
  1424. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:885
  1425. msgid "Device Configuration"
  1426. msgstr ""
  1427. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:132
  1428. msgid "Device is not active"
  1429. msgstr ""
  1430. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:233
  1431. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:623
  1432. msgid "Device is restarting…"
  1433. msgstr ""
  1434. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:480
  1435. msgid "Device name"
  1436. msgstr ""
  1437. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:45
  1438. msgid "Device not managed by ModemManager."
  1439. msgstr ""
  1440. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1355
  1441. msgid "Device not present"
  1442. msgstr ""
  1443. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:399
  1444. msgid "Device type"
  1445. msgstr ""
  1446. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4184
  1447. msgid "Device unreachable!"
  1448. msgstr ""
  1449. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:53
  1450. msgid "Device unreachable! Still waiting for device..."
  1451. msgstr ""
  1452. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1212
  1453. msgid "Devices"
  1454. msgstr ""
  1455. #: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:88
  1456. msgid "Diagnostics"
  1457. msgstr ""
  1458. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:102
  1459. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:94
  1460. msgid "Dial number"
  1461. msgstr ""
  1462. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2684
  1463. msgid "Directory"
  1464. msgstr ""
  1465. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:863
  1466. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:903
  1467. msgid "Disable"
  1468. msgstr ""
  1469. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:654
  1470. msgid ""
  1471. "Disable <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</abbr> for "
  1472. "this interface."
  1473. msgstr ""
  1474. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:174
  1475. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:373
  1476. msgid "Disable DNS lookups"
  1477. msgstr ""
  1478. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:93
  1479. msgid "Disable Encryption"
  1480. msgstr ""
  1481. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1137
  1482. msgid "Disable Inactivity Polling"
  1483. msgstr ""
  1484. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:861
  1485. msgid "Disable this network"
  1486. msgstr ""
  1487. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:920
  1488. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1646
  1489. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:13
  1490. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:66
  1491. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:109
  1492. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:101
  1493. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:52
  1494. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:97
  1495. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:83
  1496. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:57
  1497. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:70
  1498. msgid "Disabled"
  1499. msgstr ""
  1500. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1151
  1501. msgid "Disassociate On Low Acknowledgement"
  1502. msgstr ""
  1503. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:294
  1504. msgid "Discard upstream RFC1918 responses"
  1505. msgstr ""
  1506. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:198
  1507. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:689
  1508. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:332
  1509. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:347
  1510. msgid "Disconnect"
  1511. msgstr ""
  1512. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:64
  1513. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:22
  1514. msgid "Disconnection attempt failed"
  1515. msgstr ""
  1516. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:48
  1517. msgid "Disconnection attempt failed."
  1518. msgstr ""
  1519. #: modules/luci-base/htdocs/luci-static/resources/form.js:606
  1520. #: modules/luci-base/htdocs/luci-static/resources/form.js:2886
  1521. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3328
  1522. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4155
  1523. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1725
  1524. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:328
  1525. msgid "Dismiss"
  1526. msgstr ""
  1527. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:925
  1528. msgid "Distance Optimization"
  1529. msgstr ""
  1530. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:925
  1531. msgid "Distance to farthest network member in meters."
  1532. msgstr ""
  1533. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:155
  1534. msgid ""
  1535. "Dnsmasq is a combined <abbr title=\"Dynamic Host Configuration Protocol"
  1536. "\">DHCP</abbr>-Server and <abbr title=\"Domain Name System\">DNS</abbr>-"
  1537. "Forwarder for <abbr title=\"Network Address Translation\">NAT</abbr> "
  1538. "firewalls"
  1539. msgstr ""
  1540. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:252
  1541. msgid "Do not cache negative replies, e.g. for not existing domains"
  1542. msgstr ""
  1543. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:86
  1544. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:91
  1545. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:88
  1546. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:93
  1547. msgid "Do not create host route to peer (optional)."
  1548. msgstr ""
  1549. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:219
  1550. msgid "Do not forward requests that cannot be answered by public name servers"
  1551. msgstr ""
  1552. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:214
  1553. msgid "Do not forward reverse lookups for local networks"
  1554. msgstr ""
  1555. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:858
  1556. msgid "Do not offer DHCPv6 service on this interface."
  1557. msgstr ""
  1558. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:208
  1559. msgctxt "VLAN port state"
  1560. msgid "Do not participate"
  1561. msgstr ""
  1562. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:888
  1563. msgid ""
  1564. "Do not proxy any <abbr title=\"Neighbour Discovery Protocol\">NDP</abbr> "
  1565. "packets."
  1566. msgstr ""
  1567. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:25
  1568. msgid "Do not send a hostname"
  1569. msgstr ""
  1570. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:754
  1571. msgid ""
  1572. "Do not send any <abbr title=\"Router Advertisement, ICMPv6 Type 134\">RA</"
  1573. "abbr> messages on this interface."
  1574. msgstr ""
  1575. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2774
  1576. msgid "Do you really want to delete \"%s\" ?"
  1577. msgstr ""
  1578. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:200
  1579. msgid "Do you really want to delete the following SSH key?"
  1580. msgstr ""
  1581. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:94
  1582. msgid "Do you really want to erase all settings?"
  1583. msgstr ""
  1584. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2772
  1585. msgid "Do you really want to recursively delete the directory \"%s\" ?"
  1586. msgstr ""
  1587. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:168
  1588. msgid "Domain required"
  1589. msgstr ""
  1590. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:307
  1591. msgid "Domain whitelist"
  1592. msgstr ""
  1593. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:83
  1594. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:88
  1595. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:67
  1596. msgid "Don't Fragment"
  1597. msgstr ""
  1598. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:169
  1599. msgid ""
  1600. "Don't forward <abbr title=\"Domain Name System\">DNS</abbr>-Requests without "
  1601. "<abbr title=\"Domain Name System\">DNS</abbr>-Name"
  1602. msgstr ""
  1603. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:152
  1604. msgid "Down"
  1605. msgstr ""
  1606. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:402
  1607. msgid "Down Delay"
  1608. msgstr ""
  1609. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:364
  1610. msgid "Download backup"
  1611. msgstr ""
  1612. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:402
  1613. msgid "Download mtdblock"
  1614. msgstr ""
  1615. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1476
  1616. msgid "Downstream SNR offset"
  1617. msgstr ""
  1618. #: modules/luci-base/htdocs/luci-static/resources/form.js:2645
  1619. msgid "Drag to reorder"
  1620. msgstr ""
  1621. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:341
  1622. msgid "Drop Duplicate Frames"
  1623. msgstr ""
  1624. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:12
  1625. msgid "Dropbear Instance"
  1626. msgstr ""
  1627. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:10
  1628. msgid ""
  1629. "Dropbear offers <abbr title=\"Secure Shell\">SSH</abbr> network shell access "
  1630. "and an integrated <abbr title=\"Secure Copy\">SCP</abbr> server"
  1631. msgstr ""
  1632. #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:14
  1633. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:11
  1634. msgid "Dual-Stack Lite (RFC6333)"
  1635. msgstr ""
  1636. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:671
  1637. msgid "Dynamic <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</abbr>"
  1638. msgstr ""
  1639. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:60
  1640. msgid "Dynamic tunnel"
  1641. msgstr ""
  1642. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:671
  1643. msgid ""
  1644. "Dynamically allocate DHCP addresses for clients. If disabled, only clients "
  1645. "having static leases will be served."
  1646. msgstr ""
  1647. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:67
  1648. msgid "EA-bits length"
  1649. msgstr ""
  1650. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1530
  1651. msgid "EAP-Method"
  1652. msgstr ""
  1653. #: modules/luci-base/htdocs/luci-static/resources/form.js:2665
  1654. #: modules/luci-base/htdocs/luci-static/resources/form.js:2668
  1655. #: modules/luci-base/htdocs/luci-static/resources/form.js:3042
  1656. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:154
  1657. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:160
  1658. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:483
  1659. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:868
  1660. msgid "Edit"
  1661. msgstr ""
  1662. #: modules/luci-compat/luasrc/view/cbi/error.htm:13
  1663. msgid ""
  1664. "Edit the raw configuration data above to fix any error and hit \"Save\" to "
  1665. "reload the page."
  1666. msgstr ""
  1667. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:866
  1668. msgid "Edit this network"
  1669. msgstr ""
  1670. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:817
  1671. msgid "Edit wireless network"
  1672. msgstr ""
  1673. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:497
  1674. msgid "Egress QoS mapping"
  1675. msgstr ""
  1676. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:216
  1677. msgctxt "VLAN port state"
  1678. msgid "Egress tagged"
  1679. msgstr ""
  1680. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:212
  1681. msgctxt "VLAN port state"
  1682. msgid "Egress untagged"
  1683. msgstr ""
  1684. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:179
  1685. msgid "Emergency"
  1686. msgstr ""
  1687. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:863
  1688. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:903
  1689. msgid "Enable"
  1690. msgstr ""
  1691. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:574
  1692. msgid ""
  1693. "Enable <abbr title=\"Internet Group Management Protocol\">IGMP</abbr> "
  1694. "snooping"
  1695. msgstr ""
  1696. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:554
  1697. msgid "Enable <abbr title=\"Spanning Tree Protocol\">STP</abbr>"
  1698. msgstr ""
  1699. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:773
  1700. msgid "Enable <abbr title=\"Stateless Address Auto Config\">SLAAC</abbr>"
  1701. msgstr ""
  1702. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:174
  1703. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:367
  1704. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:373
  1705. msgid "Enable DNS lookups"
  1706. msgstr ""
  1707. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:292
  1708. msgid "Enable Dynamic Shuffling Of Flows"
  1709. msgstr ""
  1710. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:60
  1711. msgid "Enable HE.net dynamic endpoint update"
  1712. msgstr ""
  1713. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:709
  1714. msgid "Enable IPv6"
  1715. msgstr ""
  1716. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:90
  1717. msgid "Enable IPv6 negotiation"
  1718. msgstr ""
  1719. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:49
  1720. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:94
  1721. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:80
  1722. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:54
  1723. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:67
  1724. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:93
  1725. msgid "Enable IPv6 negotiation on the PPP link"
  1726. msgstr ""
  1727. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:192
  1728. msgid "Enable Jumbo Frame passthrough"
  1729. msgstr ""
  1730. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:743
  1731. msgid "Enable MAC address learning"
  1732. msgstr ""
  1733. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:242
  1734. msgid "Enable NTP client"
  1735. msgstr ""
  1736. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:96
  1737. msgid "Enable Single DES"
  1738. msgstr ""
  1739. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:368
  1740. msgid "Enable TFTP server"
  1741. msgstr ""
  1742. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:770
  1743. msgid "Enable VLAN filterering"
  1744. msgstr ""
  1745. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:184
  1746. msgid "Enable VLAN functionality"
  1747. msgstr ""
  1748. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1675
  1749. msgid "Enable WPS pushbutton, requires WPA(2)-PSK/WPA3-SAE"
  1750. msgstr ""
  1751. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:943
  1752. msgid ""
  1753. "Enable downstream delegation of IPv6 prefixes available on this interface"
  1754. msgstr ""
  1755. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1671
  1756. msgid "Enable key reinstallation (KRACK) countermeasures"
  1757. msgstr ""
  1758. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:187
  1759. msgid "Enable learning and aging"
  1760. msgstr ""
  1761. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:198
  1762. msgid "Enable mirroring of incoming packets"
  1763. msgstr ""
  1764. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:199
  1765. msgid "Enable mirroring of outgoing packets"
  1766. msgstr ""
  1767. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:765
  1768. msgid "Enable multicast fast leave"
  1769. msgstr ""
  1770. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:583
  1771. msgid "Enable multicast querier"
  1772. msgstr ""
  1773. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:725
  1774. msgid "Enable multicast support"
  1775. msgstr ""
  1776. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1433
  1777. msgid ""
  1778. "Enable packet steering across all CPUs. May help or hinder network speed."
  1779. msgstr ""
  1780. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:659
  1781. msgid "Enable promiscuous mode"
  1782. msgstr ""
  1783. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:71
  1784. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:66
  1785. msgid "Enable rx checksum"
  1786. msgstr ""
  1787. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:89
  1788. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:94
  1789. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:91
  1790. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:96
  1791. msgid "Enable support for multicast traffic (optional)."
  1792. msgstr ""
  1793. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:83
  1794. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:88
  1795. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:67
  1796. msgid "Enable the DF (Don't Fragment) flag of the encapsulating packets."
  1797. msgstr ""
  1798. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:861
  1799. msgid "Enable this network"
  1800. msgstr ""
  1801. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:75
  1802. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:70
  1803. msgid "Enable tx checksum"
  1804. msgstr ""
  1805. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:747
  1806. msgid "Enable unicast flooding"
  1807. msgstr ""
  1808. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:243
  1809. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:352
  1810. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:66
  1811. msgid "Enabled"
  1812. msgstr ""
  1813. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:574
  1814. msgid "Enables IGMP snooping on this bridge"
  1815. msgstr ""
  1816. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1470
  1817. msgid ""
  1818. "Enables fast roaming among access points that belong to the same Mobility "
  1819. "Domain"
  1820. msgstr ""
  1821. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:554
  1822. msgid "Enables the Spanning Tree Protocol on this bridge"
  1823. msgstr ""
  1824. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:59
  1825. msgid "Encapsulation limit"
  1826. msgstr ""
  1827. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1466
  1828. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1524
  1829. msgid "Encapsulation mode"
  1830. msgstr ""
  1831. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:159
  1832. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:183
  1833. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1156
  1834. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1703
  1835. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:144
  1836. msgid "Encryption"
  1837. msgstr ""
  1838. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:156
  1839. msgid "Endpoint Host"
  1840. msgstr ""
  1841. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:160
  1842. msgid "Endpoint Port"
  1843. msgstr ""
  1844. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:731
  1845. msgid "Enforce IGMPv1"
  1846. msgstr ""
  1847. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:732
  1848. msgid "Enforce IGMPv2"
  1849. msgstr ""
  1850. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:733
  1851. msgid "Enforce IGMPv3"
  1852. msgstr ""
  1853. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:738
  1854. msgid "Enforce MLD version 1"
  1855. msgstr ""
  1856. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:739
  1857. msgid "Enforce MLD version 2"
  1858. msgstr ""
  1859. #: modules/luci-compat/luasrc/view/cbi/dropdown.htm:16
  1860. msgid "Enter custom value"
  1861. msgstr ""
  1862. #: modules/luci-compat/luasrc/view/cbi/dropdown.htm:16
  1863. msgid "Enter custom values"
  1864. msgstr ""
  1865. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:97
  1866. msgid "Erasing..."
  1867. msgstr ""
  1868. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:103
  1869. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:104
  1870. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:105
  1871. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:106
  1872. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:107
  1873. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:176
  1874. msgid "Error"
  1875. msgstr ""
  1876. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:29
  1877. msgid "Errored seconds (ES)"
  1878. msgstr ""
  1879. #: modules/luci-base/htdocs/luci-static/resources/network.js:3003
  1880. #: modules/luci-compat/luasrc/model/network.lua:1433
  1881. msgid "Ethernet Adapter"
  1882. msgstr ""
  1883. #: modules/luci-base/htdocs/luci-static/resources/network.js:2994
  1884. #: modules/luci-compat/luasrc/model/network.lua:1423
  1885. msgid "Ethernet Switch"
  1886. msgstr ""
  1887. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:270
  1888. msgid "Every 30 seconds (slow, 0)"
  1889. msgstr ""
  1890. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:271
  1891. msgid "Every second (fast, 1)"
  1892. msgstr ""
  1893. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:406
  1894. msgid "Exclude interfaces"
  1895. msgstr ""
  1896. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:408
  1897. msgid "Existing device"
  1898. msgstr ""
  1899. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:247
  1900. msgid "Expand hosts"
  1901. msgstr ""
  1902. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:960
  1903. msgid "Expecting a hexadecimal assignment hint"
  1904. msgstr ""
  1905. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:17
  1906. msgid "Expecting a valid IPv4 address"
  1907. msgstr ""
  1908. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:17
  1909. msgid "Expecting a valid IPv6 address"
  1910. msgstr ""
  1911. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:44
  1912. msgid "Expecting two priority values separated by a colon"
  1913. msgstr ""
  1914. #: modules/luci-base/htdocs/luci-static/resources/validation.js:64
  1915. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:73
  1916. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:79
  1917. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:107
  1918. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:121
  1919. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:125
  1920. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:129
  1921. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:132
  1922. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:136
  1923. msgid "Expecting: %s"
  1924. msgstr ""
  1925. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:48
  1926. msgid "Expecting: non-empty value"
  1927. msgstr ""
  1928. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:50
  1929. msgid "Expires"
  1930. msgstr ""
  1931. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:667
  1932. msgid ""
  1933. "Expiry time of leased addresses, minimum is 2 minutes (<code>2m</code>)."
  1934. msgstr ""
  1935. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:19
  1936. msgid "External"
  1937. msgstr ""
  1938. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1521
  1939. msgid "External R0 Key Holder List"
  1940. msgstr ""
  1941. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1525
  1942. msgid "External R1 Key Holder List"
  1943. msgstr ""
  1944. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:153
  1945. msgid "External system log server"
  1946. msgstr ""
  1947. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:158
  1948. msgid "External system log server port"
  1949. msgstr ""
  1950. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:163
  1951. msgid "External system log server protocol"
  1952. msgstr ""
  1953. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:79
  1954. msgid "Extra SSH command options"
  1955. msgstr ""
  1956. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:68
  1957. msgid "Extra pppd options"
  1958. msgstr ""
  1959. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:66
  1960. msgid "Extra sstpc options"
  1961. msgstr ""
  1962. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1495
  1963. msgid "FT over DS"
  1964. msgstr ""
  1965. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1496
  1966. msgid "FT over the Air"
  1967. msgstr ""
  1968. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1493
  1969. msgid "FT protocol"
  1970. msgstr ""
  1971. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:87
  1972. msgid "Failed to change the system password."
  1973. msgstr ""
  1974. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4143
  1975. msgid "Failed to confirm apply within %ds, waiting for rollback…"
  1976. msgstr ""
  1977. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:37
  1978. msgid "Failed to execute \"/etc/init.d/%s %s\" action: %s"
  1979. msgstr ""
  1980. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2692
  1981. msgid "File"
  1982. msgstr ""
  1983. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2639
  1984. msgid "File not accessible"
  1985. msgstr ""
  1986. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2830
  1987. msgid "Filename"
  1988. msgstr ""
  1989. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:381
  1990. msgid "Filename of the boot image advertised to clients"
  1991. msgstr ""
  1992. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:191
  1993. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:314
  1994. msgid "Filesystem"
  1995. msgstr ""
  1996. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:213
  1997. msgid "Filter private"
  1998. msgstr ""
  1999. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:218
  2000. msgid "Filter useless"
  2001. msgstr ""
  2002. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:388
  2003. msgid "Filtering for all slaves, no validation"
  2004. msgstr ""
  2005. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:389
  2006. msgid "Filtering for all slaves, validation only for active slave"
  2007. msgstr ""
  2008. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:390
  2009. msgid "Filtering for all slaves, validation only for backup slaves"
  2010. msgstr ""
  2011. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:65
  2012. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:23
  2013. msgid "Finalizing failed"
  2014. msgstr ""
  2015. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:150
  2016. msgid ""
  2017. "Find all currently attached filesystems and swap and replace configuration "
  2018. "with defaults based on what was detected"
  2019. msgstr ""
  2020. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:844
  2021. msgid "Find and join network"
  2022. msgstr ""
  2023. #: modules/luci-compat/luasrc/view/cbi/delegator.htm:9
  2024. msgid "Finish"
  2025. msgstr ""
  2026. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:15
  2027. msgid "Firewall"
  2028. msgstr ""
  2029. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:97
  2030. msgid "Firewall Mark"
  2031. msgstr ""
  2032. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:470
  2033. msgid "Firewall Settings"
  2034. msgstr ""
  2035. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:326
  2036. msgid "Firewall Status"
  2037. msgstr ""
  2038. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1483
  2039. msgid "Firmware File"
  2040. msgstr ""
  2041. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:57
  2042. msgid "Firmware Version"
  2043. msgstr ""
  2044. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:327
  2045. msgid "Fixed source port for outbound DNS queries"
  2046. msgstr ""
  2047. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:281
  2048. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:419
  2049. msgid "Flash image..."
  2050. msgstr ""
  2051. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:277
  2052. msgid "Flash image?"
  2053. msgstr ""
  2054. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:409
  2055. msgid "Flash new firmware image"
  2056. msgstr ""
  2057. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:354
  2058. msgid "Flash operations"
  2059. msgstr ""
  2060. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:286
  2061. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:288
  2062. msgid "Flashing…"
  2063. msgstr ""
  2064. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:674
  2065. msgid "Force"
  2066. msgstr ""
  2067. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:937
  2068. msgid "Force 40MHz mode"
  2069. msgstr ""
  2070. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1197
  2071. msgid "Force CCMP (AES)"
  2072. msgstr ""
  2073. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:674
  2074. msgid "Force DHCP on this network even if another server is detected."
  2075. msgstr ""
  2076. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:729
  2077. msgid "Force IGMP version"
  2078. msgstr ""
  2079. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:736
  2080. msgid "Force MLD version"
  2081. msgstr ""
  2082. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1198
  2083. msgid "Force TKIP"
  2084. msgstr ""
  2085. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1199
  2086. msgid "Force TKIP and CCMP (AES)"
  2087. msgstr ""
  2088. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1203
  2089. msgid "Force link"
  2090. msgstr ""
  2091. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:255
  2092. msgid ""
  2093. "Force upgrade: Select 'Force upgrade' to flash the image even if the image "
  2094. "format check fails. Use only if you are sure that the firmware is correct "
  2095. "and meant for your device!"
  2096. msgstr ""
  2097. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:90
  2098. msgid "Force use of NAT-T"
  2099. msgstr ""
  2100. #: modules/luci-base/luasrc/view/csrftoken.htm:8
  2101. msgid "Form token mismatch"
  2102. msgstr ""
  2103. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:890
  2104. msgid ""
  2105. "Forward <abbr title=\"Neighbour Discovery Protocol\">NDP</abbr> <abbr title="
  2106. "\"Neighbour Solicitation, Type 135\">NS</abbr> and <abbr title=\"Neighbour "
  2107. "Advertisement, Type 136\">NA</abbr> messages between the designated master "
  2108. "interface and downstream interfaces."
  2109. msgstr ""
  2110. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:758
  2111. msgid ""
  2112. "Forward <abbr title=\"Router Advertisement, ICMPv6 Type 134\">RA</abbr> "
  2113. "messages received on the designated master interface to downstream "
  2114. "interfaces."
  2115. msgstr ""
  2116. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:164
  2117. msgid "Forward DHCP traffic"
  2118. msgstr ""
  2119. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:862
  2120. msgid ""
  2121. "Forward DHCPv6 messages between the designated master interface and "
  2122. "downstream interfaces."
  2123. msgstr ""
  2124. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:28
  2125. msgid "Forward Error Correction Seconds (FECS)"
  2126. msgstr ""
  2127. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:161
  2128. msgid "Forward broadcast traffic"
  2129. msgstr ""
  2130. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:563
  2131. msgid "Forward delay"
  2132. msgstr ""
  2133. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:964
  2134. msgid "Forward mesh peer traffic"
  2135. msgstr ""
  2136. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:761
  2137. msgid "Forward multicast packets as unicast packets on this device."
  2138. msgstr ""
  2139. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1531
  2140. msgid "Forwarding mode"
  2141. msgstr ""
  2142. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:929
  2143. msgid "Fragmentation Threshold"
  2144. msgstr ""
  2145. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:110
  2146. msgid ""
  2147. "Further information about WireGuard interfaces and peers at <a href='http://"
  2148. "wireguard.com'>wireguard.com</a>."
  2149. msgstr ""
  2150. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:128
  2151. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:184
  2152. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:164
  2153. msgid "GHz"
  2154. msgstr ""
  2155. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:92
  2156. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:78
  2157. msgid "GPRS only"
  2158. msgstr ""
  2159. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:10
  2160. msgid "GRE tunnel over IPv4"
  2161. msgstr ""
  2162. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:10
  2163. msgid "GRE tunnel over IPv6"
  2164. msgstr ""
  2165. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:10
  2166. msgid "GRETAP tunnel over IPv4"
  2167. msgstr ""
  2168. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:10
  2169. msgid "GRETAP tunnel over IPv6"
  2170. msgstr ""
  2171. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:44
  2172. msgid "Gateway"
  2173. msgstr ""
  2174. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:36
  2175. msgid "Gateway Ports"
  2176. msgstr ""
  2177. #: modules/luci-base/htdocs/luci-static/resources/network.js:11
  2178. #: modules/luci-compat/luasrc/model/network.lua:29
  2179. msgid "Gateway address is invalid"
  2180. msgstr ""
  2181. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:161
  2182. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:465
  2183. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:24
  2184. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:240
  2185. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:108
  2186. msgid "General Settings"
  2187. msgstr ""
  2188. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:620
  2189. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1518
  2190. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:889
  2191. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:951
  2192. msgid "General Setup"
  2193. msgstr ""
  2194. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:394
  2195. msgid "General device options"
  2196. msgstr ""
  2197. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:150
  2198. msgid "Generate Config"
  2199. msgstr ""
  2200. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:66
  2201. msgid "Generate Key"
  2202. msgstr ""
  2203. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1499
  2204. msgid "Generate PMK locally"
  2205. msgstr ""
  2206. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:366
  2207. msgid "Generate archive"
  2208. msgstr ""
  2209. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:79
  2210. msgid "Given password confirmation did not match, password not changed!"
  2211. msgstr ""
  2212. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:146
  2213. msgid "Global Settings"
  2214. msgstr ""
  2215. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1426
  2216. msgid "Global network options"
  2217. msgstr ""
  2218. #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:57
  2219. #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215
  2220. #: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:62
  2221. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:82
  2222. msgid "Go to password configuration..."
  2223. msgstr ""
  2224. #: modules/luci-base/htdocs/luci-static/resources/form.js:2587
  2225. #: modules/luci-base/htdocs/luci-static/resources/form.js:3361
  2226. #: modules/luci-compat/luasrc/view/cbi/full_valueheader.htm:4
  2227. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:58
  2228. msgid "Go to relevant configuration page"
  2229. msgstr ""
  2230. #: modules/luci-mod-network/root/usr/share/rpcd/acl.d/luci-mod-network.json:37
  2231. msgid "Grant access to DHCP configuration"
  2232. msgstr ""
  2233. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:111
  2234. msgid "Grant access to DHCP status display"
  2235. msgstr ""
  2236. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:120
  2237. msgid "Grant access to DSL status display"
  2238. msgstr ""
  2239. #: protocols/luci-proto-openconnect/root/usr/share/rpcd/acl.d/luci-openconnect.json:3
  2240. msgid "Grant access to LuCI OpenConnect procedures"
  2241. msgstr ""
  2242. #: protocols/luci-proto-wireguard/root/usr/share/rpcd/acl.d/luci-wireguard.json:3
  2243. msgid "Grant access to LuCI Wireguard procedures"
  2244. msgstr ""
  2245. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:19
  2246. msgid "Grant access to SSH configuration"
  2247. msgstr ""
  2248. #: modules/luci-base/root/usr/share/rpcd/acl.d/luci-base.json:12
  2249. msgid "Grant access to basic LuCI procedures"
  2250. msgstr ""
  2251. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:64
  2252. msgid "Grant access to crontab configuration"
  2253. msgstr ""
  2254. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:69
  2255. msgid "Grant access to firewall status"
  2256. msgstr ""
  2257. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:116
  2258. msgid "Grant access to flash operations"
  2259. msgstr ""
  2260. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:95
  2261. msgid "Grant access to main status display"
  2262. msgstr ""
  2263. #: protocols/luci-proto-modemmanager/root/usr/share/rpcd/acl.d/luci-proto-modemmanager.json:3
  2264. msgid "Grant access to mmcli"
  2265. msgstr ""
  2266. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:84
  2267. msgid "Grant access to mount configuration"
  2268. msgstr ""
  2269. #: modules/luci-mod-network/root/usr/share/rpcd/acl.d/luci-mod-network.json:3
  2270. msgid "Grant access to network configuration"
  2271. msgstr ""
  2272. #: modules/luci-mod-network/root/usr/share/rpcd/acl.d/luci-mod-network.json:50
  2273. msgid "Grant access to network diagnostic tools"
  2274. msgstr ""
  2275. #: modules/luci-base/root/usr/share/rpcd/acl.d/luci-base.json:36
  2276. msgid "Grant access to network status information"
  2277. msgstr ""
  2278. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:13
  2279. msgid "Grant access to process status"
  2280. msgstr ""
  2281. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:3
  2282. msgid "Grant access to realtime statistics"
  2283. msgstr ""
  2284. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:42
  2285. msgid "Grant access to startup configuration"
  2286. msgstr ""
  2287. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:3
  2288. msgid "Grant access to system configuration"
  2289. msgstr ""
  2290. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:30
  2291. msgid "Grant access to system logs"
  2292. msgstr ""
  2293. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:47
  2294. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:60
  2295. msgid "Grant access to the system route status"
  2296. msgstr ""
  2297. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:129
  2298. msgid "Grant access to wireless status display"
  2299. msgstr ""
  2300. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:66
  2301. msgid "Group Password"
  2302. msgstr ""
  2303. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:22
  2304. msgid "Guest"
  2305. msgstr ""
  2306. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:81
  2307. msgid "HE.net password"
  2308. msgstr ""
  2309. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:73
  2310. msgid "HE.net username"
  2311. msgstr ""
  2312. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:46
  2313. msgid "Hang Up"
  2314. msgstr ""
  2315. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:33
  2316. msgid "Header Error Code Errors (HEC)"
  2317. msgstr ""
  2318. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/heartbeat.js:5
  2319. msgid "Heartbeat interval (kernel: heartbeat)"
  2320. msgstr ""
  2321. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:558
  2322. msgid "Hello interval"
  2323. msgstr ""
  2324. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:100
  2325. msgid ""
  2326. "Here you can configure the basic aspects of your device like its hostname or "
  2327. "the timezone."
  2328. msgstr ""
  2329. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1105
  2330. msgid "Hide <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>"
  2331. msgstr ""
  2332. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:293
  2333. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:332
  2334. msgid "Hide empty chains"
  2335. msgstr ""
  2336. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:922
  2337. msgid "High"
  2338. msgstr ""
  2339. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:55
  2340. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2117
  2341. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:125
  2342. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:230
  2343. msgid "Host"
  2344. msgstr ""
  2345. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/hosts.js:22
  2346. msgid "Host entries"
  2347. msgstr ""
  2348. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:171
  2349. msgid "Host expiry timeout"
  2350. msgstr ""
  2351. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:31
  2352. msgid "Host-<abbr title=\"Internet Protocol Address\">IP</abbr> or Network"
  2353. msgstr ""
  2354. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:88
  2355. msgid "Host-Uniq tag content"
  2356. msgstr ""
  2357. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:36
  2358. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:419
  2359. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/hosts.js:27
  2360. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:54
  2361. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:86
  2362. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:121
  2363. msgid "Hostname"
  2364. msgstr ""
  2365. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:22
  2366. msgid "Hostname to send when requesting DHCP"
  2367. msgstr ""
  2368. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/hosts.js:20
  2369. #: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:63
  2370. msgid "Hostnames"
  2371. msgstr ""
  2372. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:276
  2373. msgid "Human-readable counters"
  2374. msgstr ""
  2375. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:24
  2376. msgid "Hybrid"
  2377. msgstr ""
  2378. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:53
  2379. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:48
  2380. msgid "ID used to uniquely identify the VXLAN"
  2381. msgstr ""
  2382. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:206
  2383. msgid "IEEE 802.3ad Dynamic link aggregation (802.3ad, 4)"
  2384. msgstr ""
  2385. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:75
  2386. msgid "IKE DH Group"
  2387. msgstr ""
  2388. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:83
  2389. msgid "IP Addresses"
  2390. msgstr ""
  2391. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:81
  2392. msgid "IP Protocol"
  2393. msgstr ""
  2394. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:115
  2395. msgid "IP Type"
  2396. msgstr ""
  2397. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/hosts.js:31
  2398. msgid "IP address"
  2399. msgstr ""
  2400. #: modules/luci-base/htdocs/luci-static/resources/network.js:10
  2401. #: modules/luci-compat/luasrc/model/network.lua:28
  2402. msgid "IP address is invalid"
  2403. msgstr ""
  2404. #: modules/luci-base/htdocs/luci-static/resources/network.js:13
  2405. #: modules/luci-compat/luasrc/model/network.lua:31
  2406. msgid "IP address is missing"
  2407. msgstr ""
  2408. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:79
  2409. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:102
  2410. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:86
  2411. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:87
  2412. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:88
  2413. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:89
  2414. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:90
  2415. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:83
  2416. msgid "IPv4"
  2417. msgstr ""
  2418. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:351
  2419. msgid "IPv4 Firewall"
  2420. msgstr ""
  2421. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:29
  2422. msgid "IPv4 Upstream"
  2423. msgstr ""
  2424. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:178
  2425. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:37
  2426. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:87
  2427. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:155
  2428. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:162
  2429. msgid "IPv4 address"
  2430. msgstr ""
  2431. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:29
  2432. msgid "IPv4 assignment length"
  2433. msgstr ""
  2434. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:181
  2435. msgid "IPv4 broadcast"
  2436. msgstr ""
  2437. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:180
  2438. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:165
  2439. msgid "IPv4 gateway"
  2440. msgstr ""
  2441. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:179
  2442. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:168
  2443. msgid "IPv4 netmask"
  2444. msgstr ""
  2445. #: modules/luci-base/htdocs/luci-static/resources/validation.js:294
  2446. msgid "IPv4 network in address/netmask notation"
  2447. msgstr ""
  2448. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:117
  2449. msgid "IPv4 only"
  2450. msgstr ""
  2451. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:52
  2452. msgid "IPv4 prefix"
  2453. msgstr ""
  2454. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:61
  2455. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:55
  2456. msgid "IPv4 prefix length"
  2457. msgstr ""
  2458. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:84
  2459. msgid "IPv4+IPv6"
  2460. msgstr ""
  2461. #: modules/luci-compat/luasrc/model/network/proto_ipip.lua:9
  2462. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:10
  2463. msgid "IPv4-in-IPv4 (RFC2003)"
  2464. msgstr ""
  2465. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:116
  2466. msgid "IPv4/IPv6 (both - defaults to IPv4)"
  2467. msgstr ""
  2468. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:80
  2469. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:103
  2470. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:91
  2471. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:92
  2472. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:93
  2473. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:94
  2474. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:95
  2475. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:96
  2476. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:97
  2477. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:98
  2478. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:99
  2479. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:100
  2480. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:85
  2481. msgid "IPv6"
  2482. msgstr ""
  2483. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:354
  2484. msgid "IPv6 Firewall"
  2485. msgstr ""
  2486. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:714
  2487. msgid "IPv6 MTU"
  2488. msgstr ""
  2489. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:206
  2490. msgid "IPv6 Neighbours"
  2491. msgstr ""
  2492. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:623
  2493. msgid "IPv6 RA Settings"
  2494. msgstr ""
  2495. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:622
  2496. msgid "IPv6 Settings"
  2497. msgstr ""
  2498. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1430
  2499. msgid "IPv6 ULA-Prefix"
  2500. msgstr ""
  2501. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:29
  2502. msgid "IPv6 Upstream"
  2503. msgstr ""
  2504. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:183
  2505. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:56
  2506. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:126
  2507. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:174
  2508. msgid "IPv6 address"
  2509. msgstr ""
  2510. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:951
  2511. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:27
  2512. msgid "IPv6 assignment hint"
  2513. msgstr ""
  2514. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:946
  2515. msgid "IPv6 assignment length"
  2516. msgstr ""
  2517. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:188
  2518. msgid "IPv6 gateway"
  2519. msgstr ""
  2520. #: modules/luci-base/htdocs/luci-static/resources/validation.js:299
  2521. msgid "IPv6 network in address/netmask notation"
  2522. msgstr ""
  2523. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:118
  2524. msgid "IPv6 only"
  2525. msgstr ""
  2526. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:995
  2527. msgid "IPv6 preference"
  2528. msgstr ""
  2529. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:53
  2530. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:59
  2531. msgid "IPv6 prefix"
  2532. msgstr ""
  2533. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:968
  2534. msgid "IPv6 prefix filter"
  2535. msgstr ""
  2536. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:57
  2537. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:63
  2538. msgid "IPv6 prefix length"
  2539. msgstr ""
  2540. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:192
  2541. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:57
  2542. msgid "IPv6 routed prefix"
  2543. msgstr ""
  2544. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:991
  2545. msgid "IPv6 suffix"
  2546. msgstr ""
  2547. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:51
  2548. msgid "IPv6 support"
  2549. msgstr ""
  2550. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:101
  2551. msgid "IPv6-PD"
  2552. msgstr ""
  2553. #: modules/luci-compat/luasrc/model/network/proto_6x4.lua:13
  2554. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:10
  2555. msgid "IPv6-in-IPv4 (RFC4213)"
  2556. msgstr ""
  2557. #: modules/luci-compat/luasrc/model/network/proto_6x4.lua:17
  2558. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:9
  2559. msgid "IPv6-over-IPv4 (6rd)"
  2560. msgstr ""
  2561. #: modules/luci-compat/luasrc/model/network/proto_6x4.lua:15
  2562. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6to4.js:9
  2563. msgid "IPv6-over-IPv4 (6to4)"
  2564. msgstr ""
  2565. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1632
  2566. msgid "Identity"
  2567. msgstr ""
  2568. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:96
  2569. msgid "If checked, 1DES is enabled"
  2570. msgstr ""
  2571. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:51
  2572. msgid "If checked, adds \"+ipv6\" to the pppd options"
  2573. msgstr ""
  2574. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:93
  2575. msgid "If checked, encryption is disabled"
  2576. msgstr ""
  2577. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:968
  2578. msgid ""
  2579. "If set, downstream subnets are only allocated from the given IPv6 prefix "
  2580. "classes."
  2581. msgstr ""
  2582. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:254
  2583. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:360
  2584. msgid ""
  2585. "If specified, mount the device by its UUID instead of a fixed device node"
  2586. msgstr ""
  2587. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:267
  2588. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:376
  2589. msgid ""
  2590. "If specified, mount the device by the partition label instead of a fixed "
  2591. "device node"
  2592. msgstr ""
  2593. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:907
  2594. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:64
  2595. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:111
  2596. msgid "If unchecked, no default route is configured"
  2597. msgstr ""
  2598. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:911
  2599. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:68
  2600. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:122
  2601. msgid "If unchecked, the advertised DNS server addresses are ignored"
  2602. msgstr ""
  2603. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:339
  2604. msgid ""
  2605. "If your physical memory is insufficient unused data can be temporarily "
  2606. "swapped to a swap-device resulting in a higher amount of usable <abbr title="
  2607. "\"Random Access Memory\">RAM</abbr>. Be aware that swapping data is a very "
  2608. "slow process as the swap-device cannot be accessed with the high datarates "
  2609. "of the <abbr title=\"Random Access Memory\">RAM</abbr>."
  2610. msgstr ""
  2611. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:197
  2612. msgid "Ignore <code>/etc/hosts</code>"
  2613. msgstr ""
  2614. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:654
  2615. msgid "Ignore interface"
  2616. msgstr ""
  2617. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:185
  2618. msgid "Ignore resolve file"
  2619. msgstr ""
  2620. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:417
  2621. msgid "Image"
  2622. msgstr ""
  2623. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:68
  2624. msgid "In"
  2625. msgstr ""
  2626. #: modules/luci-base/luasrc/view/csrftoken.htm:13
  2627. msgid ""
  2628. "In order to prevent unauthorized access to the system, your request has been "
  2629. "blocked. Click \"Continue »\" below to return to the previous page."
  2630. msgstr ""
  2631. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:125
  2632. msgid "In seconds"
  2633. msgstr ""
  2634. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:144
  2635. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:128
  2636. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:114
  2637. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:92
  2638. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:101
  2639. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:124
  2640. msgid "Inactivity timeout"
  2641. msgstr ""
  2642. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:265
  2643. msgid "Inbound:"
  2644. msgstr ""
  2645. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:100
  2646. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:105
  2647. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:102
  2648. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:107
  2649. msgid "Incoming checksum"
  2650. msgstr ""
  2651. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:92
  2652. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:97
  2653. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:94
  2654. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:99
  2655. msgid "Incoming key"
  2656. msgstr ""
  2657. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:102
  2658. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:107
  2659. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:104
  2660. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:109
  2661. msgid "Incoming serialization"
  2662. msgstr ""
  2663. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:173
  2664. msgid "Info"
  2665. msgstr ""
  2666. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:102
  2667. msgid "Information"
  2668. msgstr ""
  2669. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:491
  2670. msgid "Ingress QoS mapping"
  2671. msgstr ""
  2672. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:67
  2673. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:25
  2674. msgid "Initialization failure"
  2675. msgstr ""
  2676. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:77
  2677. msgid "Initscript"
  2678. msgstr ""
  2679. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:111
  2680. msgid "Initscripts"
  2681. msgstr ""
  2682. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1616
  2683. msgid "Inner certificate constraint (Domain)"
  2684. msgstr ""
  2685. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1613
  2686. msgid "Inner certificate constraint (SAN)"
  2687. msgstr ""
  2688. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1610
  2689. msgid "Inner certificate constraint (Subject)"
  2690. msgstr ""
  2691. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1619
  2692. msgid "Inner certificate constraint (Wildcard)"
  2693. msgstr ""
  2694. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:300
  2695. msgid "Install protocol extensions..."
  2696. msgstr ""
  2697. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1985
  2698. msgid ""
  2699. "Instead of joining any network with a matching SSID, only connect to the "
  2700. "BSSID <code>%h</code>."
  2701. msgstr ""
  2702. #: modules/luci-compat/luasrc/view/cbi/map.htm:43
  2703. msgid "Insufficient permissions to read UCI configuration."
  2704. msgstr ""
  2705. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:27
  2706. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:157
  2707. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:176
  2708. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:17
  2709. msgid "Interface"
  2710. msgstr ""
  2711. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:706
  2712. msgid "Interface \"%h\" is already marked as designated master."
  2713. msgstr ""
  2714. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:62
  2715. msgid "Interface %q device auto-migrated from %q to %q."
  2716. msgstr ""
  2717. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:947
  2718. msgid "Interface Configuration"
  2719. msgstr ""
  2720. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:111
  2721. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:151
  2722. msgid "Interface has %d pending changes"
  2723. msgstr ""
  2724. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:92
  2725. msgid "Interface is disabled"
  2726. msgstr ""
  2727. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:65
  2728. msgid "Interface is marked for deletion"
  2729. msgstr ""
  2730. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:210
  2731. msgid "Interface is reconnecting..."
  2732. msgstr ""
  2733. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:194
  2734. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:204
  2735. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:210
  2736. msgid "Interface is shutting down..."
  2737. msgstr ""
  2738. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:285
  2739. msgid "Interface is starting..."
  2740. msgstr ""
  2741. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:288
  2742. msgid "Interface is stopping..."
  2743. msgstr ""
  2744. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1118
  2745. msgid "Interface name"
  2746. msgstr ""
  2747. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:123
  2748. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:304
  2749. msgid "Interface not present or not connected yet."
  2750. msgstr ""
  2751. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:450
  2752. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:479
  2753. #: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:38
  2754. msgid "Interfaces"
  2755. msgstr ""
  2756. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:20
  2757. msgid "Internal"
  2758. msgstr ""
  2759. #: modules/luci-base/luasrc/view/error500.htm:8
  2760. msgid "Internal Server Error"
  2761. msgstr ""
  2762. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:283
  2763. msgid "Interval For Sending Learning Packets"
  2764. msgstr ""
  2765. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:592
  2766. msgid ""
  2767. "Interval in centiseconds between multicast general queries. By varying the "
  2768. "value, an administrator may tune the number of IGMP messages on the subnet; "
  2769. "larger values cause IGMP Queries to be sent less often"
  2770. msgstr ""
  2771. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:558
  2772. msgid "Interval in seconds for STP hello packets"
  2773. msgstr ""
  2774. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:192
  2775. #: modules/luci-compat/luasrc/view/cbi/tsection.htm:42
  2776. msgid "Invalid"
  2777. msgstr ""
  2778. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:19
  2779. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:22
  2780. msgid "Invalid Base64 key string"
  2781. msgstr ""
  2782. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:78
  2783. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:83
  2784. msgid "Invalid TOS value, expected 00..FF or inherit"
  2785. msgstr ""
  2786. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:83
  2787. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:88
  2788. msgid "Invalid Traffic Class value, expected 00..FF or inherit"
  2789. msgstr ""
  2790. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:285
  2791. msgid "Invalid VLAN ID given! Only IDs between %d and %d are allowed."
  2792. msgstr ""
  2793. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:294
  2794. msgid "Invalid VLAN ID given! Only unique IDs are allowed"
  2795. msgstr ""
  2796. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:403
  2797. msgid "Invalid argument"
  2798. msgstr ""
  2799. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:46
  2800. msgid ""
  2801. "Invalid bearer list. Possibly too many bearers created. This protocol "
  2802. "supports one and only one bearer."
  2803. msgstr ""
  2804. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:402
  2805. msgid "Invalid command"
  2806. msgstr ""
  2807. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:101
  2808. msgid "Invalid hexadecimal value"
  2809. msgstr ""
  2810. #: modules/luci-base/luasrc/view/sysauth.htm:12
  2811. msgid "Invalid username and/or password! Please try again."
  2812. msgstr ""
  2813. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1114
  2814. msgid "Isolate Clients"
  2815. msgstr ""
  2816. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:231
  2817. msgid ""
  2818. "It appears that you are trying to flash an image that does not fit into the "
  2819. "flash memory, please verify the image file!"
  2820. msgstr ""
  2821. #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:64
  2822. #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:222
  2823. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:72
  2824. msgid "JavaScript required!"
  2825. msgstr ""
  2826. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1783
  2827. msgid "Join Network"
  2828. msgstr ""
  2829. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1717
  2830. msgid "Join Network: Wireless Scan"
  2831. msgstr ""
  2832. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1993
  2833. msgid "Joining Network: %q"
  2834. msgstr ""
  2835. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:223
  2836. msgid "Keep settings and retain the current configuration"
  2837. msgstr ""
  2838. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/dmesg.js:20
  2839. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:51
  2840. msgid "Kernel Log"
  2841. msgstr ""
  2842. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:58
  2843. msgid "Kernel Version"
  2844. msgstr ""
  2845. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1408
  2846. msgid "Key"
  2847. msgstr ""
  2848. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1436
  2849. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1437
  2850. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1438
  2851. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1439
  2852. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1451
  2853. msgid "Key #%d"
  2854. msgstr ""
  2855. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:92
  2856. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:97
  2857. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:94
  2858. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:99
  2859. msgid "Key for incoming packets (optional)."
  2860. msgstr ""
  2861. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:96
  2862. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:101
  2863. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:98
  2864. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:103
  2865. msgid "Key for outgoing packets (optional)."
  2866. msgstr ""
  2867. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:54
  2868. msgid "Kill"
  2869. msgstr ""
  2870. #: modules/luci-compat/luasrc/model/network/proto_ppp.lua:21
  2871. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:10
  2872. msgid "L2TP"
  2873. msgstr ""
  2874. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:40
  2875. msgid "L2TP Server"
  2876. msgstr ""
  2877. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:267
  2878. msgid "LACPDU Packets"
  2879. msgstr ""
  2880. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:118
  2881. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:102
  2882. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:88
  2883. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:62
  2884. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:75
  2885. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:98
  2886. msgid "LCP echo failure threshold"
  2887. msgstr ""
  2888. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:131
  2889. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:115
  2890. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:101
  2891. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:75
  2892. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:88
  2893. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:111
  2894. msgid "LCP echo interval"
  2895. msgstr ""
  2896. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:101
  2897. msgid "LED Configuration"
  2898. msgstr ""
  2899. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1525
  2900. msgid "LLC"
  2901. msgstr ""
  2902. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:267
  2903. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:376
  2904. msgid "Label"
  2905. msgstr ""
  2906. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:211
  2907. msgid "Language"
  2908. msgstr ""
  2909. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:111
  2910. msgid "Language and Style"
  2911. msgstr ""
  2912. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:611
  2913. msgid "Last member interval"
  2914. msgstr ""
  2915. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:23
  2916. msgid "Latency"
  2917. msgstr ""
  2918. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:21
  2919. msgid "Leaf"
  2920. msgstr ""
  2921. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:757
  2922. msgid "Learn"
  2923. msgstr ""
  2924. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:894
  2925. msgid "Learn routes"
  2926. msgstr ""
  2927. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:522
  2928. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:667
  2929. msgid "Lease time"
  2930. msgstr ""
  2931. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:39
  2932. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:58
  2933. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:89
  2934. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:128
  2935. msgid "Lease time remaining"
  2936. msgstr ""
  2937. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:181
  2938. msgid "Leasefile"
  2939. msgstr ""
  2940. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:41
  2941. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:47
  2942. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:50
  2943. msgid "Leave empty to autodetect"
  2944. msgstr ""
  2945. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:40
  2946. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:39
  2947. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6to4.js:39
  2948. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:45
  2949. msgid "Leave empty to use the current WAN address"
  2950. msgstr ""
  2951. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:910
  2952. msgid ""
  2953. "Legacy or badly behaving devices may require legacy 802.11b rates to "
  2954. "interoperate. Airtime efficiency may be significantly reduced where these "
  2955. "are used. It is recommended to not allow 802.11b rates where possible."
  2956. msgstr ""
  2957. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4051
  2958. msgid "Legend:"
  2959. msgstr ""
  2960. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:662
  2961. msgid "Limit"
  2962. msgstr ""
  2963. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:389
  2964. msgid "Limit DNS service to subnets interfaces on which we are serving DNS."
  2965. msgstr ""
  2966. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:402
  2967. msgid "Limit listening to these interfaces, and loopback."
  2968. msgstr ""
  2969. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:24
  2970. msgid "Line Attenuation (LATN)"
  2971. msgstr ""
  2972. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:18
  2973. msgid "Line Mode"
  2974. msgstr ""
  2975. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:17
  2976. msgid "Line State"
  2977. msgstr ""
  2978. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:19
  2979. msgid "Line Uptime"
  2980. msgstr ""
  2981. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:123
  2982. msgid "Link Aggregation (Channel Bonding)"
  2983. msgstr ""
  2984. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:348
  2985. msgid "Link Monitoring"
  2986. msgstr ""
  2987. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:23
  2988. msgid "Link On"
  2989. msgstr ""
  2990. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:278
  2991. msgid ""
  2992. "List of <abbr title=\"Domain Name System\">DNS</abbr> servers to forward "
  2993. "requests to"
  2994. msgstr ""
  2995. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1521
  2996. msgid ""
  2997. "List of R0KHs in the same Mobility Domain. <br />Format: MAC-address,NAS-"
  2998. "Identifier,128-bit key as hex string. <br />This list is used to map R0KH-ID "
  2999. "(NAS Identifier) to a destination MAC address when requesting PMK-R1 key "
  3000. "from the R0KH that the STA used during the Initial Mobility Domain "
  3001. "Association."
  3002. msgstr ""
  3003. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1525
  3004. msgid ""
  3005. "List of R1KHs in the same Mobility Domain. <br />Format: MAC-address,R1KH-ID "
  3006. "as 6 octets with colons,128-bit key as hex string. <br />This list is used "
  3007. "to map R1KH-ID to a destination MAC address when sending PMK-R1 key from the "
  3008. "R0KH. This is also the list of authorized R1KHs in the MD that can request "
  3009. "PMK-R1 keys."
  3010. msgstr ""
  3011. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:82
  3012. msgid "List of SSH key files for auth"
  3013. msgstr ""
  3014. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:308
  3015. msgid "List of domains to allow RFC1918 responses for"
  3016. msgstr ""
  3017. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:286
  3018. msgid "List of domains to force to an IP address."
  3019. msgstr ""
  3020. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:267
  3021. msgid "List of hosts that supply bogus NX domain results"
  3022. msgstr ""
  3023. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:401
  3024. msgid "Listen Interfaces"
  3025. msgstr ""
  3026. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:78
  3027. msgid "Listen Port"
  3028. msgstr ""
  3029. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:17
  3030. msgid "Listen only on the given interface or, if unspecified, on all"
  3031. msgstr ""
  3032. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:318
  3033. msgid "Listening port for inbound DNS queries"
  3034. msgstr ""
  3035. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:100
  3036. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:54
  3037. msgid "Load"
  3038. msgstr ""
  3039. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:61
  3040. msgid "Load Average"
  3041. msgstr ""
  3042. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2957
  3043. msgid "Loading directory contents…"
  3044. msgstr ""
  3045. #: modules/luci-base/htdocs/luci-static/resources/luci.js:1949
  3046. #: modules/luci-base/luasrc/view/view.htm:4
  3047. #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:12
  3048. msgid "Loading view…"
  3049. msgstr ""
  3050. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:923
  3051. msgid "Local"
  3052. msgstr ""
  3053. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:77
  3054. msgid "Local IP address"
  3055. msgstr ""
  3056. #: modules/luci-base/htdocs/luci-static/resources/network.js:12
  3057. #: modules/luci-compat/luasrc/model/network.lua:30
  3058. msgid "Local IP address is invalid"
  3059. msgstr ""
  3060. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:86
  3061. msgid "Local IP address to assign"
  3062. msgstr ""
  3063. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:46
  3064. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:46
  3065. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:44
  3066. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:40
  3067. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:39
  3068. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6to4.js:39
  3069. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:151
  3070. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:44
  3071. msgid "Local IPv4 address"
  3072. msgstr ""
  3073. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:872
  3074. msgid "Local IPv6 DNS server"
  3075. msgstr ""
  3076. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:46
  3077. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:53
  3078. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:54
  3079. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:45
  3080. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:44
  3081. msgid "Local IPv6 address"
  3082. msgstr ""
  3083. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388
  3084. msgid "Local Service Only"
  3085. msgstr ""
  3086. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:115
  3087. msgid "Local Startup"
  3088. msgstr ""
  3089. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:59
  3090. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:117
  3091. msgid "Local Time"
  3092. msgstr ""
  3093. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:969
  3094. msgid "Local ULA"
  3095. msgstr ""
  3096. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:243
  3097. msgid "Local domain"
  3098. msgstr ""
  3099. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:240
  3100. msgid ""
  3101. "Local domain specification. Names matching this domain are never forwarded "
  3102. "and are resolved from DHCP or hosts files only"
  3103. msgstr ""
  3104. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:244
  3105. msgid "Local domain suffix appended to DHCP names and hosts file entries"
  3106. msgstr ""
  3107. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:239
  3108. msgid "Local server"
  3109. msgstr ""
  3110. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:224
  3111. msgid ""
  3112. "Localise hostname depending on the requesting subnet if multiple IPs are "
  3113. "available"
  3114. msgstr ""
  3115. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:223
  3116. msgid "Localise queries"
  3117. msgstr ""
  3118. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1985
  3119. msgid "Lock to BSSID"
  3120. msgstr ""
  3121. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:171
  3122. msgid "Log output level"
  3123. msgstr ""
  3124. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:274
  3125. msgid "Log queries"
  3126. msgstr ""
  3127. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:109
  3128. msgid "Logging"
  3129. msgstr ""
  3130. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57
  3131. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:57
  3132. msgid ""
  3133. "Logical network from which to select the local endpoint if local IPv6 "
  3134. "address is empty and no WAN IPv6 is available (optional)."
  3135. msgstr ""
  3136. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:57
  3137. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62
  3138. msgid "Logical network to which the tunnel will be added (bridged) (optional)."
  3139. msgstr ""
  3140. #: modules/luci-base/luasrc/view/sysauth.htm:38
  3141. msgid "Login"
  3142. msgstr ""
  3143. #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:81
  3144. msgid "Logout"
  3145. msgstr ""
  3146. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:666
  3147. msgid "Loose filtering"
  3148. msgstr ""
  3149. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:31
  3150. msgid "Loss of Signal Seconds (LOSS)"
  3151. msgstr ""
  3152. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:657
  3153. msgid "Lowest leased address as offset from the network address."
  3154. msgstr ""
  3155. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:48
  3156. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:83
  3157. msgid "MAC"
  3158. msgstr ""
  3159. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1402
  3160. msgid "MAC Address"
  3161. msgstr ""
  3162. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1050
  3163. msgid "MAC Address Filter"
  3164. msgstr ""
  3165. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:251
  3166. msgid "MAC Address For The Actor"
  3167. msgstr ""
  3168. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:405
  3169. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1370
  3170. msgid "MAC VLAN"
  3171. msgstr ""
  3172. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:622
  3173. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:38
  3174. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2116
  3175. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:56
  3176. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:88
  3177. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:229
  3178. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:156
  3179. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:175
  3180. msgid "MAC address"
  3181. msgstr ""
  3182. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:953
  3183. msgid "MAC-Filter"
  3184. msgstr ""
  3185. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1057
  3186. msgid "MAC-List"
  3187. msgstr ""
  3188. #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:16
  3189. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:13
  3190. msgid "MAP / LW4over6"
  3191. msgstr ""
  3192. #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:62
  3193. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:7
  3194. msgid "MAP rule is invalid"
  3195. msgstr ""
  3196. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:218
  3197. msgid "MD5"
  3198. msgstr ""
  3199. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:199
  3200. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:28
  3201. msgid "MHz"
  3202. msgstr ""
  3203. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:353
  3204. msgid "MII"
  3205. msgstr ""
  3206. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:421
  3207. msgid "MII / ETHTOOL ioctls"
  3208. msgstr ""
  3209. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:394
  3210. msgid "MII Interval"
  3211. msgstr ""
  3212. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:616
  3213. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1414
  3214. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:54
  3215. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:53
  3216. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:92
  3217. msgid "MTU"
  3218. msgstr ""
  3219. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:302
  3220. msgid ""
  3221. "Make sure to clone the root filesystem using something like the commands "
  3222. "below:"
  3223. msgstr ""
  3224. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:110
  3225. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:102
  3226. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:53
  3227. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:98
  3228. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:84
  3229. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:58
  3230. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:71
  3231. msgid "Manual"
  3232. msgstr ""
  3233. #: modules/luci-base/htdocs/luci-static/resources/network.js:3820
  3234. msgid "Master"
  3235. msgstr ""
  3236. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:799
  3237. msgid "Max <abbr title=\"Router Advertisement\">RA</abbr> interval"
  3238. msgstr ""
  3239. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:22
  3240. msgid "Max. Attainable Data Rate (ATTNDR)"
  3241. msgstr ""
  3242. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:568
  3243. msgid "Maximum age"
  3244. msgstr ""
  3245. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1146
  3246. msgid "Maximum allowed Listen Interval"
  3247. msgstr ""
  3248. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:336
  3249. msgid "Maximum allowed number of active DHCP leases"
  3250. msgstr ""
  3251. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:354
  3252. msgid "Maximum allowed number of concurrent DNS queries"
  3253. msgstr ""
  3254. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:345
  3255. msgid "Maximum allowed size of EDNS.0 UDP packets"
  3256. msgstr ""
  3257. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:114
  3258. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:106
  3259. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:95
  3260. msgid "Maximum amount of seconds to wait for the modem to become ready"
  3261. msgstr ""
  3262. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:662
  3263. msgid "Maximum number of leased addresses."
  3264. msgstr ""
  3265. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:578
  3266. msgid "Maximum snooping table size"
  3267. msgstr ""
  3268. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:799
  3269. msgid ""
  3270. "Maximum time allowed between sending unsolicited <abbr title=\"Router "
  3271. "Advertisement, ICMPv6 Type 134\">RA</abbr>. Default is 600 seconds."
  3272. msgstr ""
  3273. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:913
  3274. msgid "Maximum transmit power"
  3275. msgstr ""
  3276. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:129
  3277. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:188
  3278. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:199
  3279. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:28
  3280. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:165
  3281. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:321
  3282. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:322
  3283. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:323
  3284. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:327
  3285. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:328
  3286. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:329
  3287. msgid "Mbit/s"
  3288. msgstr ""
  3289. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:35
  3290. msgid "Medium"
  3291. msgstr ""
  3292. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:24
  3293. msgid "Memory"
  3294. msgstr ""
  3295. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:73
  3296. msgid "Memory usage (%)"
  3297. msgstr ""
  3298. #: modules/luci-base/htdocs/luci-static/resources/network.js:3823
  3299. msgid "Mesh"
  3300. msgstr ""
  3301. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:156
  3302. msgid "Mesh ID"
  3303. msgstr ""
  3304. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:961
  3305. msgid "Mesh Id"
  3306. msgstr ""
  3307. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:404
  3308. msgid "Method not found"
  3309. msgstr ""
  3310. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:349
  3311. msgid "Method of link monitoring"
  3312. msgstr ""
  3313. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:418
  3314. msgid "Method to determine link status"
  3315. msgstr ""
  3316. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:46
  3317. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:166
  3318. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:185
  3319. msgid "Metric"
  3320. msgstr ""
  3321. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:806
  3322. msgid "Min <abbr title=\"Router Advertisement\">RA</abbr> interval"
  3323. msgstr ""
  3324. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:704
  3325. msgid "Minimum ARP validity time"
  3326. msgstr ""
  3327. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:235
  3328. msgid "Minimum Number of Links"
  3329. msgstr ""
  3330. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:704
  3331. msgid ""
  3332. "Minimum required time in seconds before an ARP entry may be replaced. "
  3333. "Prevents ARP cache thrashing."
  3334. msgstr ""
  3335. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:806
  3336. msgid ""
  3337. "Minimum time allowed between sending unsolicited <abbr title=\"Router "
  3338. "Advertisement, ICMPv6 Type 134\">RA</abbr>. Default is 200 seconds."
  3339. msgstr ""
  3340. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:202
  3341. msgid "Mirror monitor port"
  3342. msgstr ""
  3343. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:201
  3344. msgid "Mirror source port"
  3345. msgstr ""
  3346. #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:9
  3347. msgid "Mobile Data"
  3348. msgstr ""
  3349. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1481
  3350. msgid "Mobility Domain"
  3351. msgstr ""
  3352. #: modules/luci-compat/luasrc/view/cbi/wireless_modefreq.htm:154
  3353. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:473
  3354. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:157
  3355. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:180
  3356. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:464
  3357. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:956
  3358. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1701
  3359. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:378
  3360. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:142
  3361. msgid "Mode"
  3362. msgstr ""
  3363. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:55
  3364. msgid "Model"
  3365. msgstr ""
  3366. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:43
  3367. msgid "Modem bearer teardown in progress."
  3368. msgstr ""
  3369. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:42
  3370. msgid ""
  3371. "Modem connection in progress. Please wait. This process will timeout after 2 "
  3372. "minutes."
  3373. msgstr ""
  3374. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:73
  3375. msgid "Modem default"
  3376. msgstr ""
  3377. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:73
  3378. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:82
  3379. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:61
  3380. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:73
  3381. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:57
  3382. msgid "Modem device"
  3383. msgstr ""
  3384. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:41
  3385. msgid "Modem disconnection in progress. Please wait."
  3386. msgstr ""
  3387. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:66
  3388. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:24
  3389. msgid "Modem information query failed"
  3390. msgstr ""
  3391. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:114
  3392. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:106
  3393. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:95
  3394. msgid "Modem init timeout"
  3395. msgstr ""
  3396. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:44
  3397. msgid "Modem is disabled."
  3398. msgstr ""
  3399. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:52
  3400. msgid "ModemManager"
  3401. msgstr ""
  3402. #: modules/luci-base/htdocs/luci-static/resources/network.js:3824
  3403. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1044
  3404. msgid "Monitor"
  3405. msgstr ""
  3406. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:31
  3407. msgid "More Characters"
  3408. msgstr ""
  3409. #: modules/luci-base/htdocs/luci-static/resources/form.js:2529
  3410. msgid "More…"
  3411. msgstr ""
  3412. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:192
  3413. msgid "Mount Point"
  3414. msgstr ""
  3415. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:144
  3416. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:228
  3417. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:88
  3418. msgid "Mount Points"
  3419. msgstr ""
  3420. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:229
  3421. msgid "Mount Points - Mount Entry"
  3422. msgstr ""
  3423. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:340
  3424. msgid "Mount Points - Swap Entry"
  3425. msgstr ""
  3426. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:228
  3427. msgid ""
  3428. "Mount Points define at which point a memory device will be attached to the "
  3429. "filesystem"
  3430. msgstr ""
  3431. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:154
  3432. msgid "Mount attached devices"
  3433. msgstr ""
  3434. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:162
  3435. msgid "Mount filesystems not specifically configured"
  3436. msgstr ""
  3437. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:331
  3438. msgid "Mount options"
  3439. msgstr ""
  3440. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:292
  3441. msgid "Mount point"
  3442. msgstr ""
  3443. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:158
  3444. msgid "Mount swap not specifically configured"
  3445. msgstr ""
  3446. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:223
  3447. msgid "Mounted file systems"
  3448. msgstr ""
  3449. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:152
  3450. msgid "Move down"
  3451. msgstr ""
  3452. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:151
  3453. msgid "Move up"
  3454. msgstr ""
  3455. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:89
  3456. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:94
  3457. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:91
  3458. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:96
  3459. msgid "Multicast"
  3460. msgstr ""
  3461. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:755
  3462. msgid "Multicast routing"
  3463. msgstr ""
  3464. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:761
  3465. msgid "Multicast to unicast"
  3466. msgstr ""
  3467. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1476
  3468. msgid "NAS ID"
  3469. msgstr ""
  3470. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:87
  3471. msgid "NAT-T Mode"
  3472. msgstr ""
  3473. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:41
  3474. msgid "NAT64 Prefix"
  3475. msgstr ""
  3476. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:26
  3477. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:31
  3478. msgid "NCM"
  3479. msgstr ""
  3480. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:899
  3481. msgid "NDP-Proxy slave"
  3482. msgstr ""
  3483. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:72
  3484. msgid "NT Domain"
  3485. msgstr ""
  3486. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:276
  3487. msgid "NTP server candidates"
  3488. msgstr ""
  3489. #: modules/luci-base/htdocs/luci-static/resources/form.js:2567
  3490. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3806
  3491. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:27
  3492. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1070
  3493. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:67
  3494. msgid "Name"
  3495. msgstr ""
  3496. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1963
  3497. msgid "Name of the new network"
  3498. msgstr ""
  3499. #: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:44
  3500. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:50
  3501. msgid "Navigation"
  3502. msgstr ""
  3503. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:694
  3504. msgid "Neighbour cache validity"
  3505. msgstr ""
  3506. #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:45
  3507. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:989
  3508. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2115
  3509. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:381
  3510. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:63
  3511. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:228
  3512. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:163
  3513. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:182
  3514. msgid "Network"
  3515. msgstr ""
  3516. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1957
  3517. msgid "Network SSID"
  3518. msgstr ""
  3519. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:68
  3520. msgid "Network Utilities"
  3521. msgstr ""
  3522. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:380
  3523. msgid "Network boot image"
  3524. msgstr ""
  3525. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:380
  3526. msgid "Network bridge configuration migration"
  3527. msgstr ""
  3528. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:401
  3529. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1376
  3530. msgid "Network device"
  3531. msgstr ""
  3532. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:7
  3533. msgid "Network device activity (kernel: netdev)"
  3534. msgstr ""
  3535. #: modules/luci-base/htdocs/luci-static/resources/network.js:15
  3536. #: modules/luci-compat/luasrc/model/network.lua:33
  3537. msgid "Network device is not present"
  3538. msgstr ""
  3539. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:414
  3540. msgid "Network ifname configuration migration"
  3541. msgstr ""
  3542. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:57
  3543. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62
  3544. msgid "Network interface"
  3545. msgstr ""
  3546. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:756
  3547. msgid "Never"
  3548. msgstr ""
  3549. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1122
  3550. msgid "New interface for \"%s\" can not be created: %s"
  3551. msgstr ""
  3552. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1073
  3553. msgid "New interface name…"
  3554. msgstr ""
  3555. #: modules/luci-compat/luasrc/view/cbi/delegator.htm:11
  3556. msgid "Next »"
  3557. msgstr ""
  3558. #: modules/luci-base/htdocs/luci-static/resources/form.js:3702
  3559. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:296
  3560. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:345
  3561. msgid "No"
  3562. msgstr ""
  3563. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:631
  3564. msgid "No DHCP Server configured for this interface"
  3565. msgstr ""
  3566. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:196
  3567. msgid "No Data"
  3568. msgstr ""
  3569. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1349
  3570. msgid "No Encryption"
  3571. msgstr ""
  3572. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:87
  3573. msgid "No Host Routes"
  3574. msgstr ""
  3575. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:89
  3576. msgid "No NAT-T"
  3577. msgstr ""
  3578. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:79
  3579. msgid "No RX signal"
  3580. msgstr ""
  3581. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69
  3582. msgid "No client associated"
  3583. msgstr ""
  3584. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:406
  3585. msgid "No data received"
  3586. msgstr ""
  3587. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:730
  3588. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:737
  3589. msgid "No enforcement"
  3590. msgstr ""
  3591. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2897
  3592. msgid "No entries in this directory"
  3593. msgstr ""
  3594. #: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:82
  3595. msgid "No files found"
  3596. msgstr ""
  3597. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:86
  3598. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:91
  3599. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:88
  3600. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:93
  3601. msgid "No host route"
  3602. msgstr ""
  3603. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:698
  3604. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:142
  3605. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:358
  3606. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:59
  3607. msgid "No information available"
  3608. msgstr ""
  3609. #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:63
  3610. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:8
  3611. msgid "No matching prefix delegation"
  3612. msgstr ""
  3613. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:140
  3614. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:143
  3615. msgid "No more slaves available"
  3616. msgstr ""
  3617. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:187
  3618. msgid "No more slaves available, can not save interface"
  3619. msgstr ""
  3620. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:251
  3621. msgid "No negative cache"
  3622. msgstr ""
  3623. #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:54
  3624. #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:212
  3625. #: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:59
  3626. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:79
  3627. msgid "No password set!"
  3628. msgstr ""
  3629. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:125
  3630. msgid "No peers defined yet"
  3631. msgstr ""
  3632. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:140
  3633. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:277
  3634. msgid "No public keys present yet."
  3635. msgstr ""
  3636. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:91
  3637. msgid "No rules in this chain."
  3638. msgstr ""
  3639. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:384
  3640. msgid "No validation or filtering"
  3641. msgstr ""
  3642. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:153
  3643. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1164
  3644. msgid "No zone assigned"
  3645. msgstr ""
  3646. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:58
  3647. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:84
  3648. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:187
  3649. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:231
  3650. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:275
  3651. msgid "Noise"
  3652. msgstr ""
  3653. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:26
  3654. msgid "Noise Margin (SNR)"
  3655. msgstr ""
  3656. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:270
  3657. msgid "Noise:"
  3658. msgstr ""
  3659. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:34
  3660. msgid "Non Pre-emptive CRC errors (CRC_P)"
  3661. msgstr ""
  3662. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:394
  3663. msgid "Non-wildcard"
  3664. msgstr ""
  3665. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:159
  3666. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:183
  3667. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:101
  3668. msgid "None"
  3669. msgstr ""
  3670. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:921
  3671. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:184
  3672. msgid "Normal"
  3673. msgstr ""
  3674. #: modules/luci-base/luasrc/view/error404.htm:8
  3675. msgid "Not Found"
  3676. msgstr ""
  3677. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:75
  3678. msgid "Not associated"
  3679. msgstr ""
  3680. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:32
  3681. msgid "Not connected"
  3682. msgstr ""
  3683. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:46
  3684. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:81
  3685. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:121
  3686. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:147
  3687. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:312
  3688. msgid "Not present"
  3689. msgstr ""
  3690. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:102
  3691. msgid "Not started on boot"
  3692. msgstr ""
  3693. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:409
  3694. msgid "Not supported"
  3695. msgstr ""
  3696. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1645
  3697. msgid ""
  3698. "Note: Some wireless drivers do not fully support 802.11w. E.g. mwlwifi may "
  3699. "have problems"
  3700. msgstr ""
  3701. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:128
  3702. msgid "Notes"
  3703. msgstr ""
  3704. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:174
  3705. msgid "Notice"
  3706. msgstr ""
  3707. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:127
  3708. msgid "Nslookup"
  3709. msgstr ""
  3710. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:332
  3711. msgid "Number of IGMP membership reports"
  3712. msgstr ""
  3713. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:362
  3714. msgid "Number of cached DNS entries (max is 10000, 0 is no caching)"
  3715. msgstr ""
  3716. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:309
  3717. msgid "Number of peer notifications after failover event"
  3718. msgstr ""
  3719. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:69
  3720. msgid "Obfuscated Group Password"
  3721. msgstr ""
  3722. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:61
  3723. msgid "Obfuscated Password"
  3724. msgstr ""
  3725. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:106
  3726. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:98
  3727. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:49
  3728. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:94
  3729. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:80
  3730. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:54
  3731. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:67
  3732. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:93
  3733. msgid "Obtain IPv6 address"
  3734. msgstr ""
  3735. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/default-on.js:18
  3736. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:351
  3737. msgid "Off"
  3738. msgstr ""
  3739. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/timer.js:15
  3740. msgid "Off-State Delay"
  3741. msgstr ""
  3742. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/default-on.js:18
  3743. msgid "On"
  3744. msgstr ""
  3745. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:96
  3746. msgid "On-Link route"
  3747. msgstr ""
  3748. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/timer.js:11
  3749. msgid "On-State Delay"
  3750. msgstr ""
  3751. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:504
  3752. msgid "One of hostname or mac address must be specified!"
  3753. msgstr ""
  3754. #: modules/luci-base/htdocs/luci-static/resources/validation.js:469
  3755. msgid "One of the following: %s"
  3756. msgstr ""
  3757. #: modules/luci-compat/luasrc/view/cbi/nullsection.htm:17
  3758. #: modules/luci-compat/luasrc/view/cbi/ucisection.htm:22
  3759. msgid "One or more fields contain invalid values!"
  3760. msgstr ""
  3761. #: modules/luci-compat/luasrc/view/cbi/map.htm:32
  3762. msgid "One or more invalid/required values on tab"
  3763. msgstr ""
  3764. #: modules/luci-compat/luasrc/view/cbi/nullsection.htm:19
  3765. #: modules/luci-compat/luasrc/view/cbi/ucisection.htm:24
  3766. msgid "One or more required fields have no value!"
  3767. msgstr ""
  3768. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:751
  3769. msgid "Only allow communication with non-isolated bridge ports when enabled"
  3770. msgstr ""
  3771. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:229
  3772. msgid ""
  3773. "Only if current active slave fails and the primary slave is up (failure, 2)"
  3774. msgstr ""
  3775. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:442
  3776. #: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:19
  3777. msgid "Open list..."
  3778. msgstr ""
  3779. #: modules/luci-compat/luasrc/model/network/proto_openconnect.lua:9
  3780. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:64
  3781. msgid "OpenConnect (CISCO AnyConnect)"
  3782. msgstr ""
  3783. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:12
  3784. msgid "OpenFortivpn"
  3785. msgstr ""
  3786. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:712
  3787. msgid ""
  3788. "Operate in <em>relay mode</em> if a designated master interface is "
  3789. "configured and active, otherwise disable <abbr title=\"Neighbour Discovery "
  3790. "Protocol\">NDP</abbr> proxying."
  3791. msgstr ""
  3792. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:711
  3793. msgid ""
  3794. "Operate in <em>relay mode</em> if a designated master interface is "
  3795. "configured and active, otherwise fall back to <em>server mode</em>."
  3796. msgstr ""
  3797. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:713
  3798. msgid ""
  3799. "Operate in <em>relay mode</em> if an upstream IPv6 prefix is present, "
  3800. "otherwise disable service."
  3801. msgstr ""
  3802. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:906
  3803. msgid "Operating frequency"
  3804. msgstr ""
  3805. #: modules/luci-base/htdocs/luci-static/resources/form.js:1974
  3806. #: modules/luci-base/htdocs/luci-static/resources/form.js:3712
  3807. msgid "Option \"%s\" contains an invalid input value."
  3808. msgstr ""
  3809. #: modules/luci-base/htdocs/luci-static/resources/form.js:1987
  3810. msgid "Option \"%s\" must not be empty."
  3811. msgstr ""
  3812. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4058
  3813. msgid "Option changed"
  3814. msgstr ""
  3815. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4060
  3816. msgid "Option removed"
  3817. msgstr ""
  3818. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1647
  3819. msgid "Optional"
  3820. msgstr ""
  3821. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:128
  3822. msgid "Optional, free-form notes about this device"
  3823. msgstr ""
  3824. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:97
  3825. msgid ""
  3826. "Optional. 32-bit mark for outgoing encrypted packets. Enter value in hex, "
  3827. "starting with <code>0x</code>."
  3828. msgstr ""
  3829. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:991
  3830. msgid ""
  3831. "Optional. Allowed values: 'eui64', 'random', fixed value like '::1' or "
  3832. "'::1:2'. When IPv6 prefix (like 'a:b:c:d::') is received from a delegating "
  3833. "server, use the suffix (like '::1') to form the IPv6 address ('a:b:c:d::1') "
  3834. "for the interface."
  3835. msgstr ""
  3836. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:138
  3837. msgid ""
  3838. "Optional. Base64-encoded preshared key. Adds in an additional layer of "
  3839. "symmetric-key cryptography for post-quantum resistance."
  3840. msgstr ""
  3841. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
  3842. msgid "Optional. Create routes for Allowed IPs for this peer."
  3843. msgstr ""
  3844. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:129
  3845. msgid "Optional. Description of peer."
  3846. msgstr ""
  3847. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:87
  3848. msgid "Optional. Do not create host routes to peers."
  3849. msgstr ""
  3850. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:156
  3851. msgid ""
  3852. "Optional. Host of peer. Names are resolved prior to bringing up the "
  3853. "interface."
  3854. msgstr ""
  3855. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:92
  3856. msgid "Optional. Maximum Transmission Unit of tunnel interface."
  3857. msgstr ""
  3858. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:160
  3859. msgid "Optional. Port of peer."
  3860. msgstr ""
  3861. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:164
  3862. msgid ""
  3863. "Optional. Seconds between keep alive messages. Default is 0 (disabled). "
  3864. "Recommended value if this device is behind a NAT is 25."
  3865. msgstr ""
  3866. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:78
  3867. msgid "Optional. UDP port used for outgoing and incoming packets."
  3868. msgstr ""
  3869. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:72
  3870. msgid "Options"
  3871. msgstr ""
  3872. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:119
  3873. msgid "Options:"
  3874. msgstr ""
  3875. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:346
  3876. msgid "Other:"
  3877. msgstr ""
  3878. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:69
  3879. msgid "Out"
  3880. msgstr ""
  3881. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:275
  3882. msgid "Outbound:"
  3883. msgstr ""
  3884. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:101
  3885. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:106
  3886. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:103
  3887. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:108
  3888. msgid "Outgoing checksum"
  3889. msgstr ""
  3890. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:96
  3891. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:101
  3892. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:98
  3893. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:103
  3894. msgid "Outgoing key"
  3895. msgstr ""
  3896. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:103
  3897. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:108
  3898. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:105
  3899. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:110
  3900. msgid "Outgoing serialization"
  3901. msgstr ""
  3902. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:50
  3903. msgid "Output Interface"
  3904. msgstr ""
  3905. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:59
  3906. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:165
  3907. msgid "Output zone"
  3908. msgstr ""
  3909. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:16
  3910. msgid "Overlap"
  3911. msgstr ""
  3912. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:933
  3913. msgid "Override IPv4 routing table"
  3914. msgstr ""
  3915. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:938
  3916. msgid "Override IPv6 routing table"
  3917. msgstr ""
  3918. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:64
  3919. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:69
  3920. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:69
  3921. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:74
  3922. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:53
  3923. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:121
  3924. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:156
  3925. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:57
  3926. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:132
  3927. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:118
  3928. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:96
  3929. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:105
  3930. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:99
  3931. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:62
  3932. msgid "Override MTU"
  3933. msgstr ""
  3934. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:74
  3935. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:79
  3936. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:63
  3937. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:67
  3938. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:62
  3939. msgid "Override TOS"
  3940. msgstr ""
  3941. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:69
  3942. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:74
  3943. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:74
  3944. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:79
  3945. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:58
  3946. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:62
  3947. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:57
  3948. msgid "Override TTL"
  3949. msgstr ""
  3950. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1118
  3951. msgid "Override default interface name"
  3952. msgstr ""
  3953. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:167
  3954. msgid "Override the gateway in DHCP responses"
  3955. msgstr ""
  3956. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:679
  3957. msgid ""
  3958. "Override the netmask sent to clients. Normally it is calculated from the "
  3959. "subnet that is served."
  3960. msgstr ""
  3961. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:179
  3962. msgid "Override the table used for internal routes"
  3963. msgstr ""
  3964. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:3
  3965. msgid "Overview"
  3966. msgstr ""
  3967. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2740
  3968. msgid "Overwrite existing file \"%s\" ?"
  3969. msgstr ""
  3970. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:70
  3971. msgid "Owner"
  3972. msgstr ""
  3973. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:98
  3974. msgid "PAP/CHAP (both)"
  3975. msgstr ""
  3976. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:99
  3977. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:109
  3978. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:91
  3979. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:45
  3980. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:90
  3981. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:76
  3982. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:44
  3983. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:63
  3984. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:83
  3985. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:46
  3986. msgid "PAP/CHAP password"
  3987. msgstr ""
  3988. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:97
  3989. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:104
  3990. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:89
  3991. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:43
  3992. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:88
  3993. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:74
  3994. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:42
  3995. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:61
  3996. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:78
  3997. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:44
  3998. msgid "PAP/CHAP username"
  3999. msgstr ""
  4000. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:103
  4001. msgid "PDP Type"
  4002. msgstr ""
  4003. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:69
  4004. msgid "PID"
  4005. msgstr ""
  4006. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:96
  4007. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:95
  4008. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:88
  4009. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:69
  4010. msgid "PIN"
  4011. msgstr ""
  4012. #: modules/luci-base/htdocs/luci-static/resources/network.js:21
  4013. #: modules/luci-compat/luasrc/model/network.lua:39
  4014. msgid "PIN code rejected"
  4015. msgstr ""
  4016. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1516
  4017. msgid "PMK R1 Push"
  4018. msgstr ""
  4019. #: modules/luci-compat/luasrc/model/network/proto_ppp.lua:13
  4020. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:43
  4021. msgid "PPP"
  4022. msgstr ""
  4023. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:58
  4024. msgid "PPPoA Encapsulation"
  4025. msgstr ""
  4026. #: modules/luci-compat/luasrc/model/network/proto_ppp.lua:19
  4027. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:28
  4028. msgid "PPPoATM"
  4029. msgstr ""
  4030. #: modules/luci-compat/luasrc/model/network/proto_ppp.lua:17
  4031. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:28
  4032. msgid "PPPoE"
  4033. msgstr ""
  4034. #: modules/luci-compat/luasrc/model/network/proto_pppossh.lua:9
  4035. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:28
  4036. msgid "PPPoSSH"
  4037. msgstr ""
  4038. #: modules/luci-compat/luasrc/model/network/proto_ppp.lua:15
  4039. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:28
  4040. msgid "PPtP"
  4041. msgstr ""
  4042. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:73
  4043. msgid "PSID offset"
  4044. msgstr ""
  4045. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:70
  4046. msgid "PSID-bits length"
  4047. msgstr ""
  4048. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1469
  4049. msgid "PTM/EFM (Packet Transfer Mode)"
  4050. msgstr ""
  4051. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1433
  4052. msgid "Packet Steering"
  4053. msgstr ""
  4054. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:54
  4055. msgid "Packets"
  4056. msgstr ""
  4057. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:275
  4058. msgid "Packets To Transmit Before Moving To Next Slave"
  4059. msgstr ""
  4060. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:153
  4061. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1164
  4062. msgid "Part of zone %q"
  4063. msgstr ""
  4064. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:477
  4065. msgctxt "MACVLAN mode"
  4066. msgid "Pass-through (Mirror physical device to single MAC VLAN)"
  4067. msgstr ""
  4068. #: modules/luci-base/luasrc/view/sysauth.htm:29
  4069. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1638
  4070. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:51
  4071. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:114
  4072. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:52
  4073. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:58
  4074. msgid "Password"
  4075. msgstr ""
  4076. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:25
  4077. msgid "Password authentication"
  4078. msgstr ""
  4079. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1570
  4080. msgid "Password of Private Key"
  4081. msgstr ""
  4082. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1628
  4083. msgid "Password of inner Private Key"
  4084. msgstr ""
  4085. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:31
  4086. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:33
  4087. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:35
  4088. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:37
  4089. msgid "Password strength"
  4090. msgstr ""
  4091. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:117
  4092. msgid "Password2"
  4093. msgstr ""
  4094. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:260
  4095. msgid "Paste or drag SSH key file…"
  4096. msgstr ""
  4097. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1549
  4098. msgid "Path to CA-Certificate"
  4099. msgstr ""
  4100. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1564
  4101. msgid "Path to Client-Certificate"
  4102. msgstr ""
  4103. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1567
  4104. msgid "Path to Private Key"
  4105. msgstr ""
  4106. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1607
  4107. msgid "Path to inner CA-Certificate"
  4108. msgstr ""
  4109. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1622
  4110. msgid "Path to inner Client-Certificate"
  4111. msgstr ""
  4112. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1625
  4113. msgid "Path to inner Private Key"
  4114. msgstr ""
  4115. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2732
  4116. msgid "Paused"
  4117. msgstr ""
  4118. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:271
  4119. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:281
  4120. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:332
  4121. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:342
  4122. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:352
  4123. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:237
  4124. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:247
  4125. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:257
  4126. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:266
  4127. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:276
  4128. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:294
  4129. msgid "Peak:"
  4130. msgstr ""
  4131. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:89
  4132. msgid "Peer IP address to assign"
  4133. msgstr ""
  4134. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:649
  4135. msgid "Peer MAC address"
  4136. msgstr ""
  4137. #: modules/luci-base/htdocs/luci-static/resources/network.js:14
  4138. #: modules/luci-compat/luasrc/model/network.lua:32
  4139. msgid "Peer address is missing"
  4140. msgstr ""
  4141. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:630
  4142. msgid "Peer device name"
  4143. msgstr ""
  4144. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:110
  4145. msgid "Peers"
  4146. msgstr ""
  4147. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:80
  4148. msgid "Perfect Forward Secrecy"
  4149. msgstr ""
  4150. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:103
  4151. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:108
  4152. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:105
  4153. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:110
  4154. msgid "Perform outgoing packets serialization (optional)."
  4155. msgstr ""
  4156. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:34
  4157. msgid "Perform reboot"
  4158. msgstr ""
  4159. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:376
  4160. msgid "Perform reset"
  4161. msgstr ""
  4162. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:407
  4163. msgid "Permission denied"
  4164. msgstr ""
  4165. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:164
  4166. msgid "Persistent Keep Alive"
  4167. msgstr ""
  4168. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:288
  4169. msgid "Phy Rate:"
  4170. msgstr ""
  4171. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:467
  4172. msgid "Physical Settings"
  4173. msgstr ""
  4174. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:79
  4175. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:80
  4176. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:90
  4177. msgid "Ping"
  4178. msgstr ""
  4179. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:49
  4180. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:50
  4181. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:84
  4182. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:85
  4183. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:138
  4184. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:64
  4185. msgid "Pkts."
  4186. msgstr ""
  4187. #: modules/luci-base/luasrc/view/sysauth.htm:19
  4188. msgid "Please enter your username and password."
  4189. msgstr ""
  4190. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3789
  4191. msgid "Please select the file to upload."
  4192. msgstr ""
  4193. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:54
  4194. msgid "Policy"
  4195. msgstr ""
  4196. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:21
  4197. msgid "Port"
  4198. msgstr ""
  4199. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:751
  4200. msgid "Port isolation"
  4201. msgstr ""
  4202. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:278
  4203. msgid "Port status:"
  4204. msgstr ""
  4205. #: modules/luci-base/htdocs/luci-static/resources/validation.js:495
  4206. msgid "Potential negation of: %s"
  4207. msgstr ""
  4208. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:37
  4209. msgid "Power Management Mode"
  4210. msgstr ""
  4211. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:35
  4212. msgid "Pre-emptive CRC errors (CRCP_P)"
  4213. msgstr ""
  4214. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:74
  4215. msgid "Prefer LTE"
  4216. msgstr ""
  4217. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:75
  4218. msgid "Prefer UMTS"
  4219. msgstr ""
  4220. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:33
  4221. msgid "Prefix Delegated"
  4222. msgstr ""
  4223. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:138
  4224. msgid "Preshared Key"
  4225. msgstr ""
  4226. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:118
  4227. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:102
  4228. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:88
  4229. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:62
  4230. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:75
  4231. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:98
  4232. msgid ""
  4233. "Presume peer to be dead after given amount of LCP echo failures, use 0 to "
  4234. "ignore failures"
  4235. msgstr ""
  4236. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:407
  4237. msgid "Prevent listening on these interfaces."
  4238. msgstr ""
  4239. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1114
  4240. msgid "Prevents client-to-client communication"
  4241. msgstr ""
  4242. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:211
  4243. msgid "Primary Slave"
  4244. msgstr ""
  4245. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:220
  4246. msgctxt "VLAN port state"
  4247. msgid "Primary VLAN ID"
  4248. msgstr ""
  4249. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:228
  4250. msgid ""
  4251. "Primary becomes active slave when it comes back up if speed and duplex "
  4252. "better than current slave (better, 1)"
  4253. msgstr ""
  4254. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:227
  4255. msgid "Primary becomes active slave whenever it comes back up (always, 0)"
  4256. msgstr ""
  4257. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:544
  4258. msgid "Priority"
  4259. msgstr ""
  4260. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:475
  4261. msgctxt "MACVLAN mode"
  4262. msgid "Private (Prevent communication between MAC VLANs)"
  4263. msgstr ""
  4264. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:61
  4265. msgid "Private Key"
  4266. msgstr ""
  4267. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:64
  4268. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:63
  4269. msgid "Processes"
  4270. msgstr ""
  4271. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:67
  4272. msgid "Prot."
  4273. msgstr ""
  4274. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:80
  4275. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:542
  4276. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1087
  4277. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:382
  4278. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:32
  4279. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:168
  4280. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:187
  4281. msgid "Protocol"
  4282. msgstr ""
  4283. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:267
  4284. msgid "Provide NTP server"
  4285. msgstr ""
  4286. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:860
  4287. msgid ""
  4288. "Provide a DHCPv6 server on this interface and reply to DHCPv6 solicitations "
  4289. "and requests."
  4290. msgstr ""
  4291. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:849
  4292. msgid "Provide new network"
  4293. msgstr ""
  4294. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1043
  4295. msgid "Pseudo Ad-Hoc (ahdemo)"
  4296. msgstr ""
  4297. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:134
  4298. msgid "Public Key"
  4299. msgstr ""
  4300. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:284
  4301. msgid ""
  4302. "Public keys allow for the passwordless SSH logins with a higher security "
  4303. "compared to the use of plain passwords. In order to upload a new key to the "
  4304. "device, paste an OpenSSH compatible public key line or drag a <code>.pub</"
  4305. "code> file into the input field."
  4306. msgstr ""
  4307. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:192
  4308. msgid "Public prefix routed to this device for distribution to clients."
  4309. msgstr ""
  4310. #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:9
  4311. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:27
  4312. msgid "QMI Cellular"
  4313. msgstr ""
  4314. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:140
  4315. msgid "Quality"
  4316. msgstr ""
  4317. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:264
  4318. msgid ""
  4319. "Query all available upstream <abbr title=\"Domain Name System\">DNS</abbr> "
  4320. "servers"
  4321. msgstr ""
  4322. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:592
  4323. msgid "Query interval"
  4324. msgstr ""
  4325. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:597
  4326. msgid "Query response interval"
  4327. msgstr ""
  4328. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1504
  4329. msgid "R0 Key Lifetime"
  4330. msgstr ""
  4331. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1510
  4332. msgid "R1 Key Holder"
  4333. msgstr ""
  4334. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:88
  4335. msgid "RFC3947 NAT-T mode"
  4336. msgstr ""
  4337. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:969
  4338. msgid "RSSI threshold for joining"
  4339. msgstr ""
  4340. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:933
  4341. msgid "RTS/CTS Threshold"
  4342. msgstr ""
  4343. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:49
  4344. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:84
  4345. msgid "RX"
  4346. msgstr ""
  4347. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:232
  4348. msgid "RX Rate"
  4349. msgstr ""
  4350. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2119
  4351. msgid "RX Rate / TX Rate"
  4352. msgstr ""
  4353. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1382
  4354. msgid "Radius-Accounting-Port"
  4355. msgstr ""
  4356. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1387
  4357. msgid "Radius-Accounting-Secret"
  4358. msgstr ""
  4359. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1377
  4360. msgid "Radius-Accounting-Server"
  4361. msgstr ""
  4362. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1367
  4363. msgid "Radius-Authentication-Port"
  4364. msgstr ""
  4365. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1372
  4366. msgid "Radius-Authentication-Secret"
  4367. msgstr ""
  4368. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1362
  4369. msgid "Radius-Authentication-Server"
  4370. msgstr ""
  4371. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:88
  4372. msgid "Raw hex-encoded bytes. Leave empty unless your ISP require this"
  4373. msgstr ""
  4374. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:178
  4375. msgid ""
  4376. "Read <code>/etc/ethers</code> to configure the <abbr title=\"Dynamic Host "
  4377. "Configuration Protocol\">DHCP</abbr>-Server"
  4378. msgstr ""
  4379. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:547
  4380. msgid "Really switch protocol?"
  4381. msgstr ""
  4382. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:88
  4383. msgid "Realtime Graphs"
  4384. msgstr ""
  4385. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1487
  4386. msgid "Reassociation Deadline"
  4387. msgstr ""
  4388. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:293
  4389. msgid "Rebind protection"
  4390. msgstr ""
  4391. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:20
  4392. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:126
  4393. msgid "Reboot"
  4394. msgstr ""
  4395. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:153
  4396. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:162
  4397. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:46
  4398. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:51
  4399. msgid "Rebooting…"
  4400. msgstr ""
  4401. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:21
  4402. msgid "Reboots the operating system of your device"
  4403. msgstr ""
  4404. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:25
  4405. msgid "Receive"
  4406. msgstr ""
  4407. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:83
  4408. msgid "Recommended. IP addresses of the WireGuard interface."
  4409. msgstr ""
  4410. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:492
  4411. msgid "Reconnect this interface"
  4412. msgstr ""
  4413. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:57
  4414. msgid "References"
  4415. msgstr ""
  4416. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2726
  4417. msgid "Refreshing"
  4418. msgstr ""
  4419. #: modules/luci-compat/luasrc/model/network/proto_relay.lua:153
  4420. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:39
  4421. msgid "Relay"
  4422. msgstr ""
  4423. #: modules/luci-compat/luasrc/model/network/proto_relay.lua:157
  4424. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:36
  4425. msgid "Relay Bridge"
  4426. msgstr ""
  4427. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:154
  4428. msgid "Relay between networks"
  4429. msgstr ""
  4430. #: modules/luci-compat/luasrc/model/network/proto_relay.lua:12
  4431. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:64
  4432. msgid "Relay bridge"
  4433. msgstr ""
  4434. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:50
  4435. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:49
  4436. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:40
  4437. msgid "Remote IPv4 address"
  4438. msgstr ""
  4439. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:42
  4440. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:42
  4441. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:40
  4442. msgid "Remote IPv4 address or FQDN"
  4443. msgstr ""
  4444. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:40
  4445. msgid "Remote IPv6 address"
  4446. msgstr ""
  4447. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:42
  4448. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:42
  4449. msgid "Remote IPv6 address or FQDN"
  4450. msgstr ""
  4451. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:873
  4452. msgid "Remove"
  4453. msgstr ""
  4454. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1277
  4455. msgid "Remove related device settings from the configuration"
  4456. msgstr ""
  4457. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1961
  4458. msgid "Replace wireless configuration"
  4459. msgstr ""
  4460. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:17
  4461. msgid "Request IPv6-address"
  4462. msgstr ""
  4463. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:23
  4464. msgid "Request IPv6-prefix of length"
  4465. msgstr ""
  4466. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:408
  4467. msgid "Request timeout"
  4468. msgstr ""
  4469. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:100
  4470. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:105
  4471. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:102
  4472. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:107
  4473. msgid "Require incoming checksum (optional)."
  4474. msgstr ""
  4475. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:102
  4476. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:107
  4477. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:104
  4478. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:109
  4479. msgid "Require incoming packets serialization (optional)."
  4480. msgstr ""
  4481. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1648
  4482. msgid "Required"
  4483. msgstr ""
  4484. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34
  4485. msgid "Required for certain ISPs, e.g. Charter with DOCSIS 3"
  4486. msgstr ""
  4487. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:61
  4488. msgid "Required. Base64-encoded private key for this interface."
  4489. msgstr ""
  4490. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:134
  4491. msgid "Required. Base64-encoded public key of peer."
  4492. msgstr ""
  4493. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:143
  4494. msgid ""
  4495. "Required. IP addresses and prefixes that this peer is allowed to use inside "
  4496. "the tunnel. Usually the peer's tunnel IP addresses and the networks the peer "
  4497. "routes through the tunnel."
  4498. msgstr ""
  4499. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1278
  4500. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1279
  4501. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1280
  4502. msgid "Requires hostapd"
  4503. msgstr ""
  4504. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1285
  4505. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1286
  4506. msgid "Requires hostapd with EAP Suite-B support"
  4507. msgstr ""
  4508. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1283
  4509. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1284
  4510. msgid "Requires hostapd with EAP support"
  4511. msgstr ""
  4512. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1287
  4513. msgid "Requires hostapd with OWE support"
  4514. msgstr ""
  4515. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1281
  4516. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1282
  4517. msgid "Requires hostapd with SAE support"
  4518. msgstr ""
  4519. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1276
  4520. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1277
  4521. msgid "Requires hostapd with WEP support"
  4522. msgstr ""
  4523. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:233
  4524. msgid ""
  4525. "Requires upstream supports DNSSEC; verify unsigned domain responses really "
  4526. "come from unsigned domains"
  4527. msgstr ""
  4528. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1292
  4529. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1293
  4530. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1294
  4531. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1306
  4532. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1307
  4533. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1308
  4534. msgid "Requires wpa-supplicant"
  4535. msgstr ""
  4536. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1299
  4537. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1300
  4538. msgid "Requires wpa-supplicant with EAP Suite-B support"
  4539. msgstr ""
  4540. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1297
  4541. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1298
  4542. msgid "Requires wpa-supplicant with EAP support"
  4543. msgstr ""
  4544. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1301
  4545. msgid "Requires wpa-supplicant with OWE support"
  4546. msgstr ""
  4547. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1295
  4548. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1296
  4549. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1311
  4550. msgid "Requires wpa-supplicant with SAE support"
  4551. msgstr ""
  4552. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1290
  4553. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1291
  4554. msgid "Requires wpa-supplicant with WEP support"
  4555. msgstr ""
  4556. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:224
  4557. msgid "Reselection policy for primary slave"
  4558. msgstr ""
  4559. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2204
  4560. #: modules/luci-base/luasrc/view/sysauth.htm:39
  4561. #: modules/luci-compat/luasrc/view/cbi/delegator.htm:17
  4562. #: modules/luci-compat/luasrc/view/cbi/footer.htm:30
  4563. #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:66
  4564. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1276
  4565. msgid "Reset"
  4566. msgstr ""
  4567. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:343
  4568. msgid "Reset Counters"
  4569. msgstr ""
  4570. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:374
  4571. msgid "Reset to defaults"
  4572. msgstr ""
  4573. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:162
  4574. msgid "Resolv and Hosts Files"
  4575. msgstr ""
  4576. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:188
  4577. msgid "Resolve file"
  4578. msgstr ""
  4579. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:405
  4580. msgid "Resource not found"
  4581. msgstr ""
  4582. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:494
  4583. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:841
  4584. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:100
  4585. msgid "Restart"
  4586. msgstr ""
  4587. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:348
  4588. msgid "Restart Firewall"
  4589. msgstr ""
  4590. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:839
  4591. msgid "Restart radio interface"
  4592. msgstr ""
  4593. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:370
  4594. msgid "Restore"
  4595. msgstr ""
  4596. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:380
  4597. msgid "Restore backup"
  4598. msgstr ""
  4599. #: modules/luci-base/htdocs/luci-static/resources/ui.js:371
  4600. #: modules/luci-base/htdocs/luci-static/resources/ui.js:372
  4601. msgid "Reveal/hide password"
  4602. msgstr ""
  4603. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:663
  4604. msgid "Reverse path filter"
  4605. msgstr ""
  4606. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4074
  4607. msgid "Revert"
  4608. msgstr ""
  4609. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4159
  4610. msgid "Revert changes"
  4611. msgstr ""
  4612. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4341
  4613. msgid "Revert request failed with status <code>%h</code>"
  4614. msgstr ""
  4615. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4321
  4616. msgid "Reverting configuration…"
  4617. msgstr ""
  4618. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:587
  4619. msgid "Robustness"
  4620. msgstr ""
  4621. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:372
  4622. msgid "Root directory for files served via TFTP"
  4623. msgstr ""
  4624. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:297
  4625. msgid "Root preparation"
  4626. msgstr ""
  4627. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:202
  4628. msgid "Round-Robin policy (balance-rr, 0)"
  4629. msgstr ""
  4630. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
  4631. msgid "Route Allowed IPs"
  4632. msgstr ""
  4633. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:73
  4634. msgid "Route table"
  4635. msgstr ""
  4636. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:60
  4637. msgid "Route type"
  4638. msgstr ""
  4639. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:813
  4640. msgid ""
  4641. "Router Lifetime published in <abbr title=\"Router Advertisement, ICMPv6 Type "
  4642. "134\">RA</abbr> messages. Maximum is 9000 seconds."
  4643. msgstr ""
  4644. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:46
  4645. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:26
  4646. msgid "Router Password"
  4647. msgstr ""
  4648. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:15
  4649. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:197
  4650. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:27
  4651. msgid "Routes"
  4652. msgstr ""
  4653. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:15
  4654. msgid ""
  4655. "Routes specify over which interface and gateway a certain host or network "
  4656. "can be reached."
  4657. msgstr ""
  4658. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:218
  4659. msgid "Rule"
  4660. msgstr ""
  4661. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:335
  4662. msgid "Run a filesystem check before mounting the device"
  4663. msgstr ""
  4664. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:335
  4665. msgid "Run filesystem check"
  4666. msgstr ""
  4667. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2365
  4668. msgid "Runtime error"
  4669. msgstr ""
  4670. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:219
  4671. msgid "SHA256"
  4672. msgstr ""
  4673. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:59
  4674. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:276
  4675. msgid "SNR"
  4676. msgstr ""
  4677. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:10
  4678. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:38
  4679. msgid "SSH Access"
  4680. msgstr ""
  4681. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:70
  4682. msgid "SSH server address"
  4683. msgstr ""
  4684. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:74
  4685. msgid "SSH server port"
  4686. msgstr ""
  4687. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:58
  4688. msgid "SSH username"
  4689. msgstr ""
  4690. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:283
  4691. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:51
  4692. msgid "SSH-Keys"
  4693. msgstr ""
  4694. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:156
  4695. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:181
  4696. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1699
  4697. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:375
  4698. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:141
  4699. msgid "SSID"
  4700. msgstr ""
  4701. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:9
  4702. msgid "SSTP"
  4703. msgstr ""
  4704. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:41
  4705. msgid "SSTP Server"
  4706. msgstr ""
  4707. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:339
  4708. msgid "SWAP"
  4709. msgstr ""
  4710. #: modules/luci-base/htdocs/luci-static/resources/form.js:2891
  4711. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2199
  4712. #: modules/luci-compat/luasrc/view/cbi/error.htm:17
  4713. #: modules/luci-compat/luasrc/view/cbi/footer.htm:26
  4714. #: modules/luci-compat/luasrc/view/cbi/header.htm:20
  4715. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:433
  4716. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:123
  4717. msgid "Save"
  4718. msgstr ""
  4719. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2181
  4720. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4070
  4721. #: modules/luci-compat/luasrc/view/cbi/footer.htm:22
  4722. msgid "Save & Apply"
  4723. msgstr ""
  4724. #: modules/luci-base/htdocs/luci-static/resources/form.js:602
  4725. msgid "Save error"
  4726. msgstr ""
  4727. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:404
  4728. msgid "Save mtdblock"
  4729. msgstr ""
  4730. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:394
  4731. msgid "Save mtdblock contents"
  4732. msgstr ""
  4733. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:846
  4734. msgid "Scan"
  4735. msgstr ""
  4736. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/crontab.js:26
  4737. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:76
  4738. msgid "Scheduled Tasks"
  4739. msgstr ""
  4740. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4054
  4741. msgid "Section added"
  4742. msgstr ""
  4743. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4056
  4744. msgid "Section removed"
  4745. msgstr ""
  4746. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:331
  4747. msgid "See \"mount\" manpage for details"
  4748. msgstr ""
  4749. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2641
  4750. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2781
  4751. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2946
  4752. msgid "Select file…"
  4753. msgstr ""
  4754. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:318
  4755. msgid "Selects the transmit hash policy to use for slave selection"
  4756. msgstr ""
  4757. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:756
  4758. msgid ""
  4759. "Send <abbr title=\"Router Advertisement, ICMPv6 Type 134\">RA</abbr> "
  4760. "messages advertising this device as IPv6 router."
  4761. msgstr ""
  4762. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:690
  4763. msgid "Send ICMP redirects"
  4764. msgstr ""
  4765. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:131
  4766. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:115
  4767. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:101
  4768. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:75
  4769. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:88
  4770. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:111
  4771. msgid ""
  4772. "Send LCP echo requests at the given interval in seconds, only effective in "
  4773. "conjunction with failure threshold"
  4774. msgstr ""
  4775. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:24
  4776. msgid "Send the hostname of this device"
  4777. msgstr ""
  4778. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:157
  4779. msgid "Server Settings"
  4780. msgstr ""
  4781. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:50
  4782. msgid "Service Name"
  4783. msgstr ""
  4784. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:88
  4785. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:72
  4786. msgid "Service Type"
  4787. msgstr ""
  4788. #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:36
  4789. msgid "Services"
  4790. msgstr ""
  4791. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2669
  4792. msgid "Session expired"
  4793. msgstr ""
  4794. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:117
  4795. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:166
  4796. msgid "Set Static"
  4797. msgstr ""
  4798. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:899
  4799. msgid "Set interface as NDP-Proxy external slave. Default is off."
  4800. msgstr ""
  4801. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1203
  4802. msgid ""
  4803. "Set interface properties regardless of the link carrier (If set, carrier "
  4804. "sense events do not invoke hotplug handlers)."
  4805. msgstr ""
  4806. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:300
  4807. msgid "Set same MAC Address to all slaves"
  4808. msgstr ""
  4809. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:774
  4810. msgid ""
  4811. "Set the autonomous address-configuration flag in the prefix information "
  4812. "options of sent <abbr title=\"Router Advertisement\">RA</abbr> messages. "
  4813. "When enabled, clients will perform stateless IPv6 address autoconfiguration."
  4814. msgstr ""
  4815. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:707
  4816. msgid ""
  4817. "Set this interface as master for RA and DHCPv6 relaying as well as NDP "
  4818. "proxying."
  4819. msgstr ""
  4820. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:304
  4821. msgid "Set to currently active slave (active, 1)"
  4822. msgstr ""
  4823. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:305
  4824. msgid "Set to first slave added to the bond (follow, 2)"
  4825. msgstr ""
  4826. #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:55
  4827. #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:55
  4828. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:23
  4829. msgid "Setting PLMN failed"
  4830. msgstr ""
  4831. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:68
  4832. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:26
  4833. msgid "Setting operation mode failed"
  4834. msgstr ""
  4835. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:634
  4836. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:650
  4837. msgid "Setup DHCP Server"
  4838. msgstr ""
  4839. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:894
  4840. msgid "Setup routes for proxied IPv6 neighbours."
  4841. msgstr ""
  4842. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:30
  4843. msgid "Severely Errored Seconds (SES)"
  4844. msgstr ""
  4845. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:210
  4846. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:37
  4847. msgid "Short GI"
  4848. msgstr ""
  4849. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1124
  4850. msgid "Short Preamble"
  4851. msgstr ""
  4852. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:440
  4853. #: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:18
  4854. msgid "Show current backup file list"
  4855. msgstr ""
  4856. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:293
  4857. msgid "Show empty chains"
  4858. msgstr ""
  4859. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:276
  4860. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:338
  4861. msgid "Show raw counters"
  4862. msgstr ""
  4863. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:498
  4864. msgid "Shutdown this interface"
  4865. msgstr ""
  4866. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:57
  4867. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:63
  4868. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:186
  4869. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1698
  4870. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:42
  4871. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:374
  4872. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:140
  4873. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:231
  4874. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:274
  4875. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:280
  4876. msgid "Signal"
  4877. msgstr ""
  4878. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2118
  4879. msgid "Signal / Noise"
  4880. msgstr ""
  4881. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:25
  4882. msgid "Signal Attenuation (SATN)"
  4883. msgstr ""
  4884. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:125
  4885. msgid "Signal Refresh Rate"
  4886. msgstr ""
  4887. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:260
  4888. msgid "Signal:"
  4889. msgstr ""
  4890. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3807
  4891. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:217
  4892. msgid "Size"
  4893. msgstr ""
  4894. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:361
  4895. msgid "Size of DNS query cache"
  4896. msgstr ""
  4897. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:194
  4898. msgid "Size of the ZRam device in megabytes"
  4899. msgstr ""
  4900. #: modules/luci-compat/luasrc/view/cbi/footer.htm:18
  4901. #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:57
  4902. msgid "Skip"
  4903. msgstr ""
  4904. #: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:40
  4905. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:46
  4906. msgid "Skip to content"
  4907. msgstr ""
  4908. #: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:39
  4909. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:45
  4910. msgid "Skip to navigation"
  4911. msgstr ""
  4912. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:178
  4913. msgid "Slave Interfaces"
  4914. msgstr ""
  4915. #: modules/luci-base/htdocs/luci-static/resources/network.js:2997
  4916. #: modules/luci-compat/luasrc/model/network.lua:1428
  4917. msgid "Software VLAN"
  4918. msgstr ""
  4919. #: modules/luci-compat/luasrc/view/cbi/header.htm:5
  4920. msgid "Some fields are invalid, cannot save values!"
  4921. msgstr ""
  4922. #: modules/luci-base/luasrc/view/error404.htm:9
  4923. msgid "Sorry, the object you requested was not found."
  4924. msgstr ""
  4925. #: modules/luci-base/luasrc/view/error500.htm:9
  4926. msgid "Sorry, the server encountered an unexpected error."
  4927. msgstr ""
  4928. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:412
  4929. msgid ""
  4930. "Sorry, there is no sysupgrade support present; a new firmware image must be "
  4931. "flashed manually. Please refer to the wiki for device specific install "
  4932. "instructions."
  4933. msgstr ""
  4934. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:383
  4935. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:70
  4936. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:184
  4937. msgid "Source"
  4938. msgstr ""
  4939. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:84
  4940. msgid "Source Address"
  4941. msgstr ""
  4942. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57
  4943. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:57
  4944. msgid "Source interface"
  4945. msgstr ""
  4946. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:879
  4947. msgid ""
  4948. "Specifies a fixed list of DNS search domains to announce via DHCPv6. If left "
  4949. "unspecified, the local device DNS search domain will be announced."
  4950. msgstr ""
  4951. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:867
  4952. msgid ""
  4953. "Specifies a fixed list of IPv6 DNS server addresses to announce via DHCPv6. "
  4954. "If left unspecified, the device will announce itself as IPv6 DNS server "
  4955. "unless the <em>Local IPv6 DNS server</em> option is disabled."
  4956. msgstr ""
  4957. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:342
  4958. msgid ""
  4959. "Specifies that duplicate frames (received on inactive ports) should be "
  4960. "dropped or delivered"
  4961. msgstr ""
  4962. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:358
  4963. msgid "Specifies the ARP link monitoring frequency in milliseconds"
  4964. msgstr ""
  4965. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:366
  4966. msgid "Specifies the IP addresses to use for ARP monitoring"
  4967. msgstr ""
  4968. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:395
  4969. msgid "Specifies the MII link monitoring frequency in milliseconds"
  4970. msgstr ""
  4971. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:259
  4972. msgid "Specifies the aggregation selection logic to use"
  4973. msgstr ""
  4974. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:292
  4975. msgid "Specifies the directory the device is attached to"
  4976. msgstr ""
  4977. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:780
  4978. msgid ""
  4979. "Specifies the flags sent in <abbr title=\"Router Advertisement\">RA</abbr> "
  4980. "messages, for example to instruct clients to request further information via "
  4981. "stateful DHCPv6."
  4982. msgstr ""
  4983. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:252
  4984. msgid ""
  4985. "Specifies the mac-address for the actor in protocol packet exchanges "
  4986. "(LACPDUs). If empty, masters' mac address defaults to system default"
  4987. msgstr ""
  4988. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:175
  4989. msgid ""
  4990. "Specifies the maximum amount of failed ARP requests until hosts are presumed "
  4991. "to be dead"
  4992. msgstr ""
  4993. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:171
  4994. msgid ""
  4995. "Specifies the maximum amount of seconds after which hosts are presumed to be "
  4996. "dead"
  4997. msgstr ""
  4998. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:913
  4999. msgid ""
  5000. "Specifies the maximum transmit power the wireless radio may use. Depending "
  5001. "on regulatory requirements and wireless usage, the actual transmit power may "
  5002. "be reduced by the driver."
  5003. msgstr ""
  5004. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:236
  5005. msgid ""
  5006. "Specifies the minimum number of links that must be active before asserting "
  5007. "carrier"
  5008. msgstr ""
  5009. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:200
  5010. msgid "Specifies the mode to be used for this bonding interface"
  5011. msgstr ""
  5012. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:333
  5013. msgid ""
  5014. "Specifies the number of IGMP membership reports to be issued after a "
  5015. "failover event in 200ms intervals"
  5016. msgstr ""
  5017. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:276
  5018. msgid ""
  5019. "Specifies the number of packets to transmit through a slave before moving to "
  5020. "the next one"
  5021. msgstr ""
  5022. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:310
  5023. msgid ""
  5024. "Specifies the number of peer notifications (gratuitous ARPs and unsolicited "
  5025. "IPv6 Neighbor Advertisements) to be issued after a failover event"
  5026. msgstr ""
  5027. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:284
  5028. msgid ""
  5029. "Specifies the number of seconds between instances where the bonding driver "
  5030. "sends learning packets to each slaves peer switch"
  5031. msgstr ""
  5032. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:374
  5033. msgid "Specifies the quantity of ARP IP targets that must be reachable"
  5034. msgstr ""
  5035. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:268
  5036. msgid ""
  5037. "Specifies the rate in which the link partner will be asked to transmit "
  5038. "LACPDU packets"
  5039. msgstr ""
  5040. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:225
  5041. msgid ""
  5042. "Specifies the reselection policy for the primary slave when failure of the "
  5043. "active slave or recovery of the primary slave occurs"
  5044. msgstr ""
  5045. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:244
  5046. msgid "Specifies the system priority"
  5047. msgstr ""
  5048. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:403
  5049. msgid ""
  5050. "Specifies the time in milliseconds to wait before disabling a slave after a "
  5051. "link failure detection"
  5052. msgstr ""
  5053. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:411
  5054. msgid ""
  5055. "Specifies the time in milliseconds to wait before enabling a slave after a "
  5056. "link recovery detection"
  5057. msgstr ""
  5058. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:530
  5059. msgid ""
  5060. "Specifies the wired ports to attach to this bridge. In order to attach "
  5061. "wireless networks, choose the associated interface as network in the "
  5062. "wireless settings."
  5063. msgstr ""
  5064. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:382
  5065. msgid ""
  5066. "Specifies whether ARP probes and replies should be validated or non-ARP "
  5067. "traffic should be filtered for link monitoring"
  5068. msgstr ""
  5069. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:301
  5070. msgid ""
  5071. "Specifies whether active-backup mode should set all slaves to the same MAC "
  5072. "address at enslavement"
  5073. msgstr ""
  5074. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:419
  5075. msgid ""
  5076. "Specifies whether or not miimon should use MII or ETHTOOL ioctls vs. "
  5077. "netif_carrier_ok()"
  5078. msgstr ""
  5079. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:293
  5080. msgid ""
  5081. "Specifies whether to shuffle active flows across slaves based on the load"
  5082. msgstr ""
  5083. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:179
  5084. msgid ""
  5085. "Specifies which slave interfaces should be attached to this bonding interface"
  5086. msgstr ""
  5087. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:212
  5088. msgid ""
  5089. "Specifies which slave is the primary device. It will always be the active "
  5090. "slave while it is available"
  5091. msgstr ""
  5092. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:63
  5093. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:67
  5094. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:62
  5095. msgid "Specify a TOS (Type of Service)."
  5096. msgstr ""
  5097. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:79
  5098. msgid ""
  5099. "Specify a TOS (Type of Service). Can be <code>inherit</code> (the outer "
  5100. "header inherits the value of the inner header) or an hexadecimal value "
  5101. "<code>00..FF</code> (optional)."
  5102. msgstr ""
  5103. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:74
  5104. msgid ""
  5105. "Specify a TOS (Type of Service). Can be <code>inherit</code> (the outer "
  5106. "header inherits the value of the inner header), or an hexadecimal value "
  5107. "<code>00..FF</code> (optional)."
  5108. msgstr ""
  5109. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:69
  5110. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:74
  5111. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:74
  5112. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:79
  5113. msgid ""
  5114. "Specify a TTL (Time to Live) for the encapsulating packet other than the "
  5115. "default (64) (optional)."
  5116. msgstr ""
  5117. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:58
  5118. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:62
  5119. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:57
  5120. msgid ""
  5121. "Specify a TTL (Time to Live) for the encapsulating packet other than the "
  5122. "default (64)."
  5123. msgstr ""
  5124. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:79
  5125. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:84
  5126. msgid ""
  5127. "Specify a Traffic Class. Can be <code>inherit</code> (the outer header "
  5128. "inherits the value of the inner header) or an hexadecimal value <code>00.."
  5129. "FF</code> (optional)."
  5130. msgstr ""
  5131. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:64
  5132. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:69
  5133. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:69
  5134. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:74
  5135. msgid ""
  5136. "Specify an MTU (Maximum Transmission Unit) other than the default (1280 "
  5137. "bytes) (optional)."
  5138. msgstr ""
  5139. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:53
  5140. msgid ""
  5141. "Specify an MTU (Maximum Transmission Unit) other than the default (1280 "
  5142. "bytes)."
  5143. msgstr ""
  5144. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1978
  5145. msgid "Specify the secret encryption key here."
  5146. msgstr ""
  5147. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:699
  5148. msgid "Stale neighbour cache timeout"
  5149. msgstr ""
  5150. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:657
  5151. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:99
  5152. msgid "Start"
  5153. msgstr ""
  5154. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:134
  5155. msgid "Start WPS"
  5156. msgstr ""
  5157. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:76
  5158. msgid "Start priority"
  5159. msgstr ""
  5160. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1802
  5161. msgid "Start refresh"
  5162. msgstr ""
  5163. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4274
  5164. msgid "Starting configuration apply…"
  5165. msgstr ""
  5166. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1715
  5167. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:398
  5168. msgid "Starting wireless scan..."
  5169. msgstr ""
  5170. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:109
  5171. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:64
  5172. msgid "Startup"
  5173. msgstr ""
  5174. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:19
  5175. msgid "Static IPv4 Routes"
  5176. msgstr ""
  5177. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:19
  5178. msgid "Static IPv6 Routes"
  5179. msgstr ""
  5180. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:90
  5181. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:129
  5182. msgid "Static Lease"
  5183. msgstr ""
  5184. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:165
  5185. msgid "Static Leases"
  5186. msgstr ""
  5187. #: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:76
  5188. msgid "Static Routes"
  5189. msgstr ""
  5190. #: modules/luci-base/htdocs/luci-static/resources/network.js:2098
  5191. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:172
  5192. #: modules/luci-compat/luasrc/model/network.lua:967
  5193. msgid "Static address"
  5194. msgstr ""
  5195. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:411
  5196. msgid ""
  5197. "Static leases are used to assign fixed IP addresses and symbolic hostnames "
  5198. "to DHCP clients. They are also required for non-dynamic interface "
  5199. "configurations where only hosts with a corresponding lease are served."
  5200. msgstr ""
  5201. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1141
  5202. msgid "Station inactivity limit"
  5203. msgstr ""
  5204. #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:16
  5205. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:529
  5206. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:895
  5207. #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:9
  5208. msgid "Status"
  5209. msgstr ""
  5210. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:500
  5211. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:101
  5212. msgid "Stop"
  5213. msgstr ""
  5214. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:129
  5215. msgid "Stop WPS"
  5216. msgstr ""
  5217. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1713
  5218. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1807
  5219. msgid "Stop refresh"
  5220. msgstr ""
  5221. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:667
  5222. msgid "Strict filtering"
  5223. msgstr ""
  5224. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:259
  5225. msgid "Strict order"
  5226. msgstr ""
  5227. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:33
  5228. msgid "Strong"
  5229. msgstr ""
  5230. #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:61
  5231. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2003
  5232. msgid "Submit"
  5233. msgstr ""
  5234. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:203
  5235. msgid "Suppress logging"
  5236. msgstr ""
  5237. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:204
  5238. msgid "Suppress logging of the routine operation of these protocols"
  5239. msgstr ""
  5240. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:44
  5241. msgid "Swap free"
  5242. msgstr ""
  5243. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:139
  5244. #: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:3
  5245. msgid "Switch"
  5246. msgstr ""
  5247. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:172
  5248. msgid "Switch %q"
  5249. msgstr ""
  5250. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:150
  5251. msgid ""
  5252. "Switch %q has an unknown topology - the VLAN settings might not be accurate."
  5253. msgstr ""
  5254. #: modules/luci-base/htdocs/luci-static/resources/network.js:2997
  5255. #: modules/luci-compat/luasrc/model/network.lua:1426
  5256. msgid "Switch VLAN"
  5257. msgstr ""
  5258. #: modules/luci-base/htdocs/luci-static/resources/network.js:2994
  5259. msgid "Switch port"
  5260. msgstr ""
  5261. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:548
  5262. msgid "Switch protocol"
  5263. msgstr ""
  5264. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:103
  5265. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:104
  5266. #: modules/luci-compat/luasrc/view/cbi/ipaddr.htm:26
  5267. msgid "Switch to CIDR list notation"
  5268. msgstr ""
  5269. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2676
  5270. msgid "Symbolic link"
  5271. msgstr ""
  5272. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:75
  5273. msgid "Sync with NTP-Server"
  5274. msgstr ""
  5275. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:67
  5276. msgid "Sync with browser"
  5277. msgstr ""
  5278. #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:26
  5279. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:17
  5280. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:99
  5281. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:3
  5282. msgid "System"
  5283. msgstr ""
  5284. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/syslog.js:25
  5285. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:39
  5286. msgid "System Log"
  5287. msgstr ""
  5288. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:243
  5289. msgid "System Priority"
  5290. msgstr ""
  5291. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:104
  5292. msgid "System Properties"
  5293. msgstr ""
  5294. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:148
  5295. msgid "System log buffer size"
  5296. msgstr ""
  5297. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:336
  5298. msgid "TCP:"
  5299. msgstr ""
  5300. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:163
  5301. msgid "TFTP Settings"
  5302. msgstr ""
  5303. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:371
  5304. msgid "TFTP server root"
  5305. msgstr ""
  5306. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:50
  5307. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:85
  5308. msgid "TX"
  5309. msgstr ""
  5310. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:232
  5311. msgid "TX Rate"
  5312. msgstr ""
  5313. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:654
  5314. msgid "TX queue length"
  5315. msgstr ""
  5316. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:18
  5317. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:167
  5318. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:186
  5319. msgid "Table"
  5320. msgstr ""
  5321. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:31
  5322. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:66
  5323. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:164
  5324. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:183
  5325. msgid "Target"
  5326. msgstr ""
  5327. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:103
  5328. msgid "Target network"
  5329. msgstr ""
  5330. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:50
  5331. msgid "Terminate"
  5332. msgstr ""
  5333. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:820
  5334. msgid ""
  5335. "The <abbr title=\"Maximum Transmission Unit\">MTU</abbr> to be published in "
  5336. "<abbr title=\"Router Advertisement, ICMPv6 Type 134\">RA</abbr> messages. "
  5337. "Minimum is 1280 bytes."
  5338. msgstr ""
  5339. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:782
  5340. msgid ""
  5341. "The <em>Managed address configuration</em> (M) flag indicates that IPv6 "
  5342. "addresses are available via DHCPv6."
  5343. msgstr ""
  5344. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:786
  5345. msgid ""
  5346. "The <em>Mobile IPv6 Home Agent</em> (H) flag indicates that the device is "
  5347. "also acting as Mobile IPv6 home agent on this link."
  5348. msgstr ""
  5349. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:784
  5350. msgid ""
  5351. "The <em>Other configuration</em> (O) flag indicates that other information, "
  5352. "such as DNS servers, is available via DHCPv6."
  5353. msgstr ""
  5354. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:84
  5355. msgid "The <em>block mount</em> command failed with code %d"
  5356. msgstr ""
  5357. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:925
  5358. msgid ""
  5359. "The DNS server entries in the local resolv.conf are primarily sorted by the "
  5360. "weight specified here"
  5361. msgstr ""
  5362. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:77
  5363. msgid ""
  5364. "The HE.net endpoint update configuration changed, you must now use the plain "
  5365. "username instead of the user ID!"
  5366. msgstr ""
  5367. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:40
  5368. msgid "The IPv4 address or the fully-qualified domain name of the remote end."
  5369. msgstr ""
  5370. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:42
  5371. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:42
  5372. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:40
  5373. msgid ""
  5374. "The IPv4 address or the fully-qualified domain name of the remote tunnel end."
  5375. msgstr ""
  5376. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:40
  5377. msgid "The IPv6 address or the fully-qualified domain name of the remote end."
  5378. msgstr ""
  5379. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:42
  5380. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:42
  5381. msgid ""
  5382. "The IPv6 address or the fully-qualified domain name of the remote tunnel end."
  5383. msgstr ""
  5384. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:53
  5385. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:59
  5386. msgid ""
  5387. "The IPv6 prefix assigned to the provider, usually ends with <code>::</code>"
  5388. msgstr ""
  5389. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:917
  5390. msgid "The VLAN ID must be unique"
  5391. msgstr ""
  5392. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1963
  5393. msgid ""
  5394. "The allowed characters are: <code>A-Z</code>, <code>a-z</code>, <code>0-9</"
  5395. "code> and <code>_</code>"
  5396. msgstr ""
  5397. #: modules/luci-compat/luasrc/view/cbi/error.htm:6
  5398. msgid "The configuration file could not be loaded due to the following error:"
  5399. msgstr ""
  5400. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1957
  5401. msgid ""
  5402. "The correct SSID must be manually specified when joining a hidden wireless "
  5403. "network"
  5404. msgstr ""
  5405. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4150
  5406. msgid ""
  5407. "The device could not be reached within %d seconds after applying the pending "
  5408. "changes, which caused the configuration to be rolled back for safety "
  5409. "reasons. If you believe that the configuration changes are correct "
  5410. "nonetheless, perform an unchecked configuration apply. Alternatively, you "
  5411. "can dismiss this warning and edit changes before attempting to apply again, "
  5412. "or revert all pending changes to keep the currently working configuration "
  5413. "state."
  5414. msgstr ""
  5415. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:280
  5416. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:392
  5417. msgid ""
  5418. "The device file of the memory or partition (<abbr title=\"for example\">e.g."
  5419. "</abbr> <code>/dev/sda1</code>)"
  5420. msgstr ""
  5421. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:487
  5422. msgid "The device name \"%s\" is already taken"
  5423. msgstr ""
  5424. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:381
  5425. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:415
  5426. msgid ""
  5427. "The existing network configuration needs to be changed for LuCI to function "
  5428. "properly."
  5429. msgstr ""
  5430. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:760
  5431. msgid ""
  5432. "The existing wireless configuration needs to be changed for LuCI to function "
  5433. "properly."
  5434. msgstr ""
  5435. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:215
  5436. msgid ""
  5437. "The flash image was uploaded. Below is the checksum and file size listed, "
  5438. "compare them with the original file to ensure data integrity. <br /> Click "
  5439. "'Continue' below to start the flash procedure."
  5440. msgstr ""
  5441. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:198
  5442. msgid "The following rules are currently active on this system."
  5443. msgstr ""
  5444. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:154
  5445. msgid "The gateway address must not be a local IP address"
  5446. msgstr ""
  5447. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:166
  5448. msgid "The given SSH public key has already been added."
  5449. msgstr ""
  5450. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:172
  5451. msgid ""
  5452. "The given SSH public key is invalid. Please supply proper public RSA or "
  5453. "ECDSA keys."
  5454. msgstr ""
  5455. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1076
  5456. msgid "The interface name is already used"
  5457. msgstr ""
  5458. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1082
  5459. msgid "The interface name is too long"
  5460. msgstr ""
  5461. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:61
  5462. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:55
  5463. msgid ""
  5464. "The length of the IPv4 prefix in bits, the remainder is used in the IPv6 "
  5465. "addresses."
  5466. msgstr ""
  5467. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:57
  5468. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:63
  5469. msgid "The length of the IPv6 prefix in bits"
  5470. msgstr ""
  5471. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:163
  5472. msgid "The local IPv4 address"
  5473. msgstr ""
  5474. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:46
  5475. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:46
  5476. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:44
  5477. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:44
  5478. msgid "The local IPv4 address over which the tunnel is created (optional)."
  5479. msgstr ""
  5480. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:169
  5481. msgid "The local IPv4 netmask"
  5482. msgstr ""
  5483. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:46
  5484. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:53
  5485. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:44
  5486. msgid "The local IPv6 address over which the tunnel is created (optional)."
  5487. msgstr ""
  5488. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:611
  5489. msgid ""
  5490. "The max response time in centiseconds inserted into group-specific queries "
  5491. "sent in response to leave group messages. It is also the amount of time "
  5492. "between group-specific query messages. This value may be tuned to modify the "
  5493. "\"leave latency\" of the network. A reduced value results in reduced time to "
  5494. "detect the loss of the last member of a group"
  5495. msgstr ""
  5496. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:597
  5497. msgid ""
  5498. "The max response time in centiseconds inserted into the periodic general "
  5499. "queries. By varying the value, an administrator may tune the burstiness of "
  5500. "IGMP messages on the subnet; larger values make the traffic less bursty, as "
  5501. "host responses are spread out over a larger interval"
  5502. msgstr ""
  5503. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:837
  5504. msgid ""
  5505. "The maximum hops to be published in <abbr title=\"Router Advertisement\">RA</"
  5506. "abbr> messages. Maximum is 255 hops."
  5507. msgstr ""
  5508. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1969
  5509. msgid "The network name is already used"
  5510. msgstr ""
  5511. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:139
  5512. msgid ""
  5513. "The network ports on this device can be combined to several <abbr title="
  5514. "\"Virtual Local Area Network\">VLAN</abbr>s in which computers can "
  5515. "communicate directly with each other. <abbr title=\"Virtual Local Area "
  5516. "Network\">VLAN</abbr>s are often used to separate different network "
  5517. "segments. Often there is by default one Uplink port for a connection to the "
  5518. "next greater network like the internet and other ports for a local network."
  5519. msgstr ""
  5520. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:605
  5521. msgid "The query response interval must be lower than the query interval value"
  5522. msgstr ""
  5523. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:158
  5524. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:42
  5525. msgid "The reboot command failed with code %d"
  5526. msgstr ""
  5527. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:147
  5528. msgid "The restore command failed with code %d"
  5529. msgstr ""
  5530. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:587
  5531. msgid ""
  5532. "The robustness value allows tuning for the expected packet loss on the "
  5533. "network. If a network is expected to be lossy, the robustness value may be "
  5534. "increased. IGMP is robust to (Robustness-1) packet losses"
  5535. msgstr ""
  5536. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1336
  5537. msgid "The selected %s mode is incompatible with %s encryption"
  5538. msgstr ""
  5539. #: modules/luci-base/luasrc/view/csrftoken.htm:11
  5540. msgid "The submitted security token is invalid or already expired!"
  5541. msgstr ""
  5542. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:98
  5543. msgid ""
  5544. "The system is erasing the configuration partition now and will reboot itself "
  5545. "when finished."
  5546. msgstr ""
  5547. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:289
  5548. msgid ""
  5549. "The system is flashing now.<br /> DO NOT POWER OFF THE DEVICE!<br /> Wait a "
  5550. "few minutes before you try to reconnect. It might be necessary to renew the "
  5551. "address of your computer to reach the device again, depending on your "
  5552. "settings."
  5553. msgstr ""
  5554. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:163
  5555. msgid ""
  5556. "The system is rebooting now. If the restored configuration changed the "
  5557. "current LAN IP address, you might need to reconnect manually."
  5558. msgstr ""
  5559. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:85
  5560. msgid "The system password has been successfully changed."
  5561. msgstr ""
  5562. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:315
  5563. msgid "The sysupgrade command failed with code %d"
  5564. msgstr ""
  5565. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:120
  5566. msgid ""
  5567. "The uploaded backup archive appears to be valid and contains the files "
  5568. "listed below. Press \"Continue\" to restore the backup and reboot, or "
  5569. "\"Cancel\" to abort the operation."
  5570. msgstr ""
  5571. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:115
  5572. msgid "The uploaded backup archive is not readable"
  5573. msgstr ""
  5574. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:244
  5575. msgid "The uploaded firmware does not allow keeping current configuration."
  5576. msgstr ""
  5577. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:239
  5578. msgid ""
  5579. "The uploaded image file does not contain a supported format. Make sure that "
  5580. "you choose the generic image format for your platform."
  5581. msgstr ""
  5582. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1410
  5583. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1422
  5584. msgid "The value is overridden by configuration. Original: %s"
  5585. msgstr ""
  5586. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:562
  5587. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:594
  5588. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:121
  5589. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:170
  5590. msgid "There are no active leases"
  5591. msgstr ""
  5592. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4289
  5593. msgid "There are no changes to apply"
  5594. msgstr ""
  5595. #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:55
  5596. #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:213
  5597. #: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:60
  5598. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:80
  5599. msgid ""
  5600. "There is no password set on this router. Please configure a root password to "
  5601. "protect the web interface."
  5602. msgstr ""
  5603. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:49
  5604. msgid "This IPv4 address of the relay"
  5605. msgstr ""
  5606. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1590
  5607. msgid "This authentication type is not applicable to the selected EAP method."
  5608. msgstr ""
  5609. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:57
  5610. msgid "This does not look like a valid PEM file"
  5611. msgstr ""
  5612. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:256
  5613. msgid ""
  5614. "This file may contain lines like 'server=/domain/1.2.3.4' or "
  5615. "'server=1.2.3.4' for domain-specific or full upstream <abbr title=\"Domain "
  5616. "Name System\">DNS</abbr> servers."
  5617. msgstr ""
  5618. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:424
  5619. #: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:16
  5620. msgid ""
  5621. "This is a list of shell glob patterns for matching files and directories to "
  5622. "include during sysupgrade. Modified files in /etc/config/ and certain other "
  5623. "configurations are automatically preserved."
  5624. msgstr ""
  5625. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:81
  5626. msgid ""
  5627. "This is either the \"Update Key\" configured for the tunnel or the account "
  5628. "password if no update key has been configured"
  5629. msgstr ""
  5630. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:116
  5631. msgid ""
  5632. "This is the content of /etc/rc.local. Insert your own commands here (in "
  5633. "front of 'exit 0') to execute them at the end of the boot process."
  5634. msgstr ""
  5635. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:54
  5636. msgid ""
  5637. "This is the local endpoint address assigned by the tunnel broker, it usually "
  5638. "ends with <code>...:2/64</code>"
  5639. msgstr ""
  5640. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:173
  5641. msgid ""
  5642. "This is the only <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</"
  5643. "abbr> in the local network"
  5644. msgstr ""
  5645. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:73
  5646. msgid "This is the plain username for logging into the account"
  5647. msgstr ""
  5648. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:57
  5649. msgid ""
  5650. "This is the prefix routed to you by the tunnel broker for use by clients"
  5651. msgstr ""
  5652. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/crontab.js:28
  5653. msgid "This is the system crontab in which scheduled tasks can be defined."
  5654. msgstr ""
  5655. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:50
  5656. msgid ""
  5657. "This is usually the address of the nearest PoP operated by the tunnel broker"
  5658. msgstr ""
  5659. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:65
  5660. msgid ""
  5661. "This list gives an overview over currently running system processes and "
  5662. "their status."
  5663. msgstr ""
  5664. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1544
  5665. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1602
  5666. msgid ""
  5667. "This option cannot be used because the ca-bundle package is not installed."
  5668. msgstr ""
  5669. #: modules/luci-base/htdocs/luci-static/resources/form.js:2230
  5670. #: modules/luci-base/htdocs/luci-static/resources/form.js:2536
  5671. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:172
  5672. #: modules/luci-compat/luasrc/view/cbi/tsection.htm:32
  5673. msgid "This section contains no values yet"
  5674. msgstr ""
  5675. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:110
  5676. msgid "Time Synchronization"
  5677. msgstr ""
  5678. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:694
  5679. msgid "Time in milliseconds"
  5680. msgstr ""
  5681. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:563
  5682. msgid "Time in seconds to spend in listening and learning states"
  5683. msgstr ""
  5684. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1132
  5685. msgid "Time interval for rekeying GTK"
  5686. msgstr ""
  5687. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:15
  5688. msgid "Timed-out"
  5689. msgstr ""
  5690. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:699
  5691. msgid "Timeout in seconds"
  5692. msgstr ""
  5693. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:549
  5694. msgid "Timeout in seconds for learned MAC addresses in the forwarding database"
  5695. msgstr ""
  5696. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:568
  5697. msgid "Timeout in seconds until topology updates on link loss"
  5698. msgstr ""
  5699. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:131
  5700. msgid "Timezone"
  5701. msgstr ""
  5702. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2679
  5703. msgid "To login…"
  5704. msgstr ""
  5705. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:370
  5706. msgid ""
  5707. "To restore configuration files, you can upload a previously generated backup "
  5708. "archive here. To reset the firmware to its initial state, click \"Perform "
  5709. "reset\" (only possible with squashfs images)."
  5710. msgstr ""
  5711. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1458
  5712. msgid "Tone"
  5713. msgstr ""
  5714. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:35
  5715. msgid "Total Available"
  5716. msgstr ""
  5717. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:102
  5718. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:103
  5719. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:113
  5720. msgid "Traceroute"
  5721. msgstr ""
  5722. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:54
  5723. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:65
  5724. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:109
  5725. msgid "Traffic"
  5726. msgstr ""
  5727. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:79
  5728. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:84
  5729. msgid "Traffic Class"
  5730. msgstr ""
  5731. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:385
  5732. msgid "Transfer"
  5733. msgstr ""
  5734. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:24
  5735. msgid "Transmit"
  5736. msgstr ""
  5737. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:317
  5738. msgid "Transmit Hash Policy"
  5739. msgstr ""
  5740. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:74
  5741. msgid "Trigger"
  5742. msgstr ""
  5743. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:19
  5744. msgid "Trigger Mode"
  5745. msgstr ""
  5746. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:69
  5747. msgid "Tunnel ID"
  5748. msgstr ""
  5749. #: modules/luci-base/htdocs/luci-static/resources/network.js:3000
  5750. #: modules/luci-compat/luasrc/model/network.lua:1431
  5751. msgid "Tunnel Interface"
  5752. msgstr ""
  5753. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:44
  5754. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:55
  5755. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:76
  5756. msgid "Tunnel Link"
  5757. msgstr ""
  5758. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1367
  5759. msgid "Tunnel device"
  5760. msgstr ""
  5761. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:185
  5762. msgid "Tx-Power"
  5763. msgstr ""
  5764. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:45
  5765. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1398
  5766. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:163
  5767. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:43
  5768. msgid "Type"
  5769. msgstr ""
  5770. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:326
  5771. msgid "UDP:"
  5772. msgstr ""
  5773. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:91
  5774. msgid "UMTS only"
  5775. msgstr ""
  5776. #: modules/luci-compat/luasrc/model/network/proto_3g.lua:10
  5777. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:43
  5778. msgid "UMTS/GPRS/EV-DO"
  5779. msgstr ""
  5780. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:254
  5781. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:360
  5782. msgid "UUID"
  5783. msgstr ""
  5784. #: modules/luci-base/htdocs/luci-static/resources/network.js:16
  5785. #: modules/luci-base/htdocs/luci-static/resources/network.js:17
  5786. #: modules/luci-compat/luasrc/model/network.lua:34
  5787. #: modules/luci-compat/luasrc/model/network.lua:35
  5788. msgid "Unable to determine device name"
  5789. msgstr ""
  5790. #: modules/luci-base/htdocs/luci-static/resources/network.js:18
  5791. #: modules/luci-compat/luasrc/model/network.lua:36
  5792. msgid "Unable to determine external IP address"
  5793. msgstr ""
  5794. #: modules/luci-base/htdocs/luci-static/resources/network.js:19
  5795. #: modules/luci-compat/luasrc/model/network.lua:37
  5796. msgid "Unable to determine upstream interface"
  5797. msgstr ""
  5798. #: modules/luci-base/luasrc/view/error404.htm:11
  5799. msgid "Unable to dispatch"
  5800. msgstr ""
  5801. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/dmesg.js:9
  5802. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/syslog.js:15
  5803. msgid "Unable to load log data:"
  5804. msgstr ""
  5805. #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:54
  5806. #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:54
  5807. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:22
  5808. msgid "Unable to obtain client ID"
  5809. msgstr ""
  5810. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:221
  5811. msgid "Unable to obtain mount information"
  5812. msgstr ""
  5813. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:307
  5814. msgid "Unable to reset ip6tables counters: %s"
  5815. msgstr ""
  5816. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:305
  5817. msgid "Unable to reset iptables counters: %s"
  5818. msgstr ""
  5819. #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:61
  5820. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:7
  5821. msgid "Unable to resolve AFTR host name"
  5822. msgstr ""
  5823. #: modules/luci-base/htdocs/luci-static/resources/network.js:20
  5824. #: modules/luci-compat/luasrc/model/network.lua:38
  5825. msgid "Unable to resolve peer host name"
  5826. msgstr ""
  5827. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:313
  5828. msgid "Unable to restart firewall: %s"
  5829. msgstr ""
  5830. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/crontab.js:20
  5831. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:340
  5832. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:57
  5833. msgid "Unable to save contents: %s"
  5834. msgstr ""
  5835. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:32
  5836. msgid "Unavailable Seconds (UAS)"
  5837. msgstr ""
  5838. #: modules/luci-base/htdocs/luci-static/resources/fs.js:102
  5839. msgid "Unexpected reply data format"
  5840. msgstr ""
  5841. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1430
  5842. msgid ""
  5843. "Unique Local Address - in the range <code>fc00::/7</code>. Typically only "
  5844. "within the &#8216;local&#8217; half <code>fd00::/8</code>. ULA for IPv6 is "
  5845. "analogous to IPv4 private network addressing. This prefix is randomly "
  5846. "generated at first install."
  5847. msgstr ""
  5848. #: modules/luci-base/htdocs/luci-static/resources/network.js:2100
  5849. #: modules/luci-compat/luasrc/model/network.lua:971
  5850. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:17
  5851. msgid "Unknown"
  5852. msgstr ""
  5853. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:47
  5854. msgid "Unknown and unsupported connection method."
  5855. msgstr ""
  5856. #: modules/luci-base/htdocs/luci-static/resources/network.js:2409
  5857. #: modules/luci-compat/luasrc/model/network.lua:1138
  5858. msgid "Unknown error (%s)"
  5859. msgstr ""
  5860. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:412
  5861. msgid "Unknown error code"
  5862. msgstr ""
  5863. #: modules/luci-base/htdocs/luci-static/resources/network.js:2097
  5864. #: modules/luci-base/htdocs/luci-static/resources/protocol/none.js:6
  5865. #: modules/luci-compat/luasrc/model/network.lua:965
  5866. msgid "Unmanaged"
  5867. msgstr ""
  5868. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:195
  5869. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:217
  5870. msgid "Unmount"
  5871. msgstr ""
  5872. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:115
  5873. msgid "Unnamed key"
  5874. msgstr ""
  5875. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3994
  5876. msgid "Unsaved Changes"
  5877. msgstr ""
  5878. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:410
  5879. msgid "Unspecified error"
  5880. msgstr ""
  5881. #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:64
  5882. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:9
  5883. msgid "Unsupported MAP type"
  5884. msgstr ""
  5885. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:69
  5886. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:27
  5887. msgid "Unsupported modem"
  5888. msgstr ""
  5889. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:299
  5890. msgid "Unsupported protocol type."
  5891. msgstr ""
  5892. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:151
  5893. msgid "Up"
  5894. msgstr ""
  5895. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:410
  5896. msgid "Up Delay"
  5897. msgstr ""
  5898. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3881
  5899. msgid "Upload"
  5900. msgstr ""
  5901. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:411
  5902. msgid ""
  5903. "Upload a sysupgrade-compatible image here to replace the running firmware."
  5904. msgstr ""
  5905. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:138
  5906. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:169
  5907. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:382
  5908. msgid "Upload archive..."
  5909. msgstr ""
  5910. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2835
  5911. msgid "Upload file"
  5912. msgstr ""
  5913. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2810
  5914. msgid "Upload file…"
  5915. msgstr ""
  5916. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2757
  5917. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3869
  5918. msgid "Upload request failed: %s"
  5919. msgstr ""
  5920. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3788
  5921. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3842
  5922. msgid "Uploading file…"
  5923. msgstr ""
  5924. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:761
  5925. msgid ""
  5926. "Upon pressing \"Continue\", anonymous \"wifi-iface\" sections will be "
  5927. "assigned with a name in the form <em>wifinet#</em> and the network will be "
  5928. "restarted to apply the updated configuration."
  5929. msgstr ""
  5930. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:382
  5931. msgid ""
  5932. "Upon pressing \"Continue\", bridges configuration will be updated and the "
  5933. "network will be restarted to apply the updated configuration."
  5934. msgstr ""
  5935. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:416
  5936. msgid ""
  5937. "Upon pressing \"Continue\", ifname options will get renamed and the network "
  5938. "will be restarted to apply the updated configuration."
  5939. msgstr ""
  5940. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:82
  5941. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:60
  5942. msgid "Uptime"
  5943. msgstr ""
  5944. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:177
  5945. msgid "Use <code>/etc/ethers</code>"
  5946. msgstr ""
  5947. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:271
  5948. msgid "Use DHCP advertised servers"
  5949. msgstr ""
  5950. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:167
  5951. msgid "Use DHCP gateway"
  5952. msgstr ""
  5953. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:911
  5954. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:68
  5955. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:121
  5956. msgid "Use DNS servers advertised by peer"
  5957. msgstr ""
  5958. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:589
  5959. msgid "Use ISO/IEC 3166 alpha2 country codes."
  5960. msgstr ""
  5961. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:48
  5962. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:89
  5963. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:69
  5964. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6to4.js:53
  5965. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:67
  5966. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:84
  5967. msgid "Use MTU on tunnel interface"
  5968. msgstr ""
  5969. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:85
  5970. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:65
  5971. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6to4.js:49
  5972. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:80
  5973. msgid "Use TTL on tunnel interface"
  5974. msgstr ""
  5975. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:320
  5976. msgid "Use XOR of hardware MAC addresses (layer2)"
  5977. msgstr ""
  5978. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:321
  5979. msgid "Use XOR of hardware MAC addresses and IP addresses (layer2+3)"
  5980. msgstr ""
  5981. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:323
  5982. msgid ""
  5983. "Use XOR of hardware MAC addresses and IP addresses, rely on skb_flow_dissect "
  5984. "(encap2+3)"
  5985. msgstr ""
  5986. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:294
  5987. msgid "Use as external overlay (/overlay)"
  5988. msgstr ""
  5989. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:293
  5990. msgid "Use as root filesystem (/)"
  5991. msgstr ""
  5992. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34
  5993. msgid "Use broadcast flag"
  5994. msgstr ""
  5995. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1199
  5996. msgid "Use builtin IPv6-management"
  5997. msgstr ""
  5998. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:915
  5999. msgid "Use custom DNS servers"
  6000. msgstr ""
  6001. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:907
  6002. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:64
  6003. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:110
  6004. msgid "Use default gateway"
  6005. msgstr ""
  6006. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:929
  6007. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:72
  6008. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:115
  6009. msgid "Use gateway metric"
  6010. msgstr ""
  6011. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:88
  6012. msgid "Use legacy MAP"
  6013. msgstr ""
  6014. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:88
  6015. msgid ""
  6016. "Use legacy MAP interface identifier format (draft-ietf-softwire-map-00) "
  6017. "instead of RFC7597"
  6018. msgstr ""
  6019. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:179
  6020. msgid "Use routing table"
  6021. msgstr ""
  6022. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1537
  6023. msgid "Use system certificates"
  6024. msgstr ""
  6025. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1595
  6026. msgid "Use system certificates for inner-tunnel"
  6027. msgstr ""
  6028. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:412
  6029. msgid ""
  6030. "Use the <em>Add</em> Button to add a new lease entry. The <em>MAC address</"
  6031. "em> identifies the host, the <em>IPv4 address</em> specifies the fixed "
  6032. "address to use, and the <em>Hostname</em> is assigned as a symbolic name to "
  6033. "the requesting host. The optional <em>Lease time</em> can be used to set non-"
  6034. "standard host-specific lease time, e.g. 12h, 3d or infinite."
  6035. msgstr ""
  6036. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:322
  6037. msgid "Use upper layer protocol information (layer3+4)"
  6038. msgstr ""
  6039. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:324
  6040. msgid ""
  6041. "Use upper layer protocol information, rely on skb_flow_dissect (encap3+4)"
  6042. msgstr ""
  6043. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:36
  6044. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:194
  6045. msgid "Used"
  6046. msgstr ""
  6047. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1433
  6048. msgid "Used Key Slot"
  6049. msgstr ""
  6050. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1476
  6051. msgid ""
  6052. "Used for two different purposes: RADIUS NAS ID and 802.11r R0KH-ID. Not "
  6053. "needed with normal WPA(2)-PSK."
  6054. msgstr ""
  6055. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:111
  6056. msgid "User Group"
  6057. msgstr ""
  6058. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:120
  6059. msgid "User certificate (PEM encoded)"
  6060. msgstr ""
  6061. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:132
  6062. msgid "User key (PEM encoded)"
  6063. msgstr ""
  6064. #: modules/luci-base/luasrc/view/sysauth.htm:23
  6065. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:112
  6066. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:50
  6067. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:56
  6068. msgid "Username"
  6069. msgstr ""
  6070. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1526
  6071. msgid "VC-Mux"
  6072. msgstr ""
  6073. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1474
  6074. msgid "VDSL"
  6075. msgstr ""
  6076. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:474
  6077. msgctxt "MACVLAN mode"
  6078. msgid "VEPA (Virtual Ethernet Port Aggregator)"
  6079. msgstr ""
  6080. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:404
  6081. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1361
  6082. msgid "VLAN (802.1ad)"
  6083. msgstr ""
  6084. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:403
  6085. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1358
  6086. msgid "VLAN (802.1q)"
  6087. msgstr ""
  6088. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:453
  6089. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:898
  6090. msgid "VLAN ID"
  6091. msgstr ""
  6092. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:173
  6093. msgid "VLANs on %q"
  6094. msgstr ""
  6095. #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:54
  6096. msgid "VPN"
  6097. msgstr ""
  6098. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:42
  6099. msgid "VPN Local address"
  6100. msgstr ""
  6101. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:46
  6102. msgid "VPN Local port"
  6103. msgstr ""
  6104. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:96
  6105. msgid "VPN Protocol"
  6106. msgstr ""
  6107. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:102
  6108. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:42
  6109. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:58
  6110. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:39
  6111. msgid "VPN Server"
  6112. msgstr ""
  6113. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:105
  6114. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:45
  6115. msgid "VPN Server port"
  6116. msgstr ""
  6117. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:109
  6118. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:60
  6119. msgid "VPN Server's certificate SHA1 hash"
  6120. msgstr ""
  6121. #: modules/luci-compat/luasrc/model/network/proto_vpnc.lua:9
  6122. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:9
  6123. msgid "VPNC (CISCO 3000 (and others) VPN)"
  6124. msgstr ""
  6125. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:10
  6126. msgid "VXLAN (RFC7348)"
  6127. msgstr ""
  6128. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:53
  6129. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:48
  6130. msgid "VXLAN network identifier"
  6131. msgstr ""
  6132. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:10
  6133. msgid "VXLANv6 (RFC7348)"
  6134. msgstr ""
  6135. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1537
  6136. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1595
  6137. msgid ""
  6138. "Validate server certificate using built-in system CA bundle,<br />requires "
  6139. "the \"ca-bundle\" package"
  6140. msgstr ""
  6141. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:387
  6142. msgid "Validation for all slaves"
  6143. msgstr ""
  6144. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:385
  6145. msgid "Validation only for active slave"
  6146. msgstr ""
  6147. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:386
  6148. msgid "Validation only for backup slaves"
  6149. msgstr ""
  6150. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:149
  6151. msgid "Value must not be empty"
  6152. msgstr ""
  6153. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:73
  6154. msgid "Vendor"
  6155. msgstr ""
  6156. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:40
  6157. msgid "Vendor Class to send when requesting DHCP"
  6158. msgstr ""
  6159. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:196
  6160. msgid "Verifying the uploaded image file."
  6161. msgstr ""
  6162. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:923
  6163. msgid "Very High"
  6164. msgstr ""
  6165. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:406
  6166. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1373
  6167. msgid "Virtual Ethernet"
  6168. msgstr ""
  6169. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:60
  6170. msgid "Virtual dynamic interface"
  6171. msgstr ""
  6172. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1071
  6173. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1072
  6174. msgid "WDS"
  6175. msgstr ""
  6176. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1256
  6177. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1345
  6178. msgid "WEP Open System"
  6179. msgstr ""
  6180. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1257
  6181. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1346
  6182. msgid "WEP Shared Key"
  6183. msgstr ""
  6184. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1978
  6185. msgid "WEP passphrase"
  6186. msgstr ""
  6187. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1109
  6188. msgid "WMM Mode"
  6189. msgstr ""
  6190. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1978
  6191. msgid "WPA passphrase"
  6192. msgstr ""
  6193. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1247
  6194. msgid ""
  6195. "WPA-Encryption requires wpa_supplicant (for client mode) or hostapd (for AP "
  6196. "and ad-hoc mode) to be installed."
  6197. msgstr ""
  6198. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:147
  6199. msgid "WPS status"
  6200. msgstr ""
  6201. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:47
  6202. msgid "Waiting for device..."
  6203. msgstr ""
  6204. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:175
  6205. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:185
  6206. msgid "Warning"
  6207. msgstr ""
  6208. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:26
  6209. msgid "Warning: There are unsaved changes that will get lost on reboot!"
  6210. msgstr ""
  6211. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:37
  6212. msgid "Weak"
  6213. msgstr ""
  6214. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:995
  6215. msgid ""
  6216. "When delegating prefixes to multiple downstreams, interfaces with a higher "
  6217. "preference value are considered first when allocating subnets."
  6218. msgstr ""
  6219. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1499
  6220. msgid ""
  6221. "When using a PSK, the PMK can be automatically generated. When enabled, the "
  6222. "R0/R1 key options below are not applied. Disable this to use the R0 and R1 "
  6223. "key options."
  6224. msgstr ""
  6225. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1109
  6226. msgid ""
  6227. "Where Wi-Fi Multimedia (WMM) Mode QoS is disabled, clients may be limited to "
  6228. "802.11a/802.11g rates."
  6229. msgstr ""
  6230. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1105
  6231. msgid ""
  6232. "Where the ESSID is hidden, clients may fail to roam and airtime efficiency "
  6233. "may be significantly reduced."
  6234. msgstr ""
  6235. #: modules/luci-compat/luasrc/view/cbi/wireless_modefreq.htm:166
  6236. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:491
  6237. msgid "Width"
  6238. msgstr ""
  6239. #: modules/luci-compat/luasrc/model/network/proto_wireguard.lua:9
  6240. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:29
  6241. msgid "WireGuard VPN"
  6242. msgstr ""
  6243. #: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:17
  6244. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:10
  6245. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:118
  6246. msgid "Wireless"
  6247. msgstr ""
  6248. #: modules/luci-base/htdocs/luci-static/resources/network.js:2987
  6249. #: modules/luci-compat/luasrc/model/network.lua:1419
  6250. msgid "Wireless Adapter"
  6251. msgstr ""
  6252. #: modules/luci-base/htdocs/luci-static/resources/network.js:2966
  6253. #: modules/luci-base/htdocs/luci-static/resources/network.js:4232
  6254. #: modules/luci-compat/luasrc/model/network.lua:1405
  6255. #: modules/luci-compat/luasrc/model/network.lua:1868
  6256. msgid "Wireless Network"
  6257. msgstr ""
  6258. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:777
  6259. msgid "Wireless Overview"
  6260. msgstr ""
  6261. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:952
  6262. msgid "Wireless Security"
  6263. msgstr ""
  6264. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:759
  6265. msgid "Wireless configuration migration"
  6266. msgstr ""
  6267. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:153
  6268. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:193
  6269. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:146
  6270. msgid "Wireless is disabled"
  6271. msgstr ""
  6272. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:153
  6273. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:193
  6274. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:146
  6275. msgid "Wireless is not associated"
  6276. msgstr ""
  6277. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:901
  6278. msgid "Wireless network is disabled"
  6279. msgstr ""
  6280. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:901
  6281. msgid "Wireless network is enabled"
  6282. msgstr ""
  6283. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:275
  6284. msgid "Write received DNS requests to syslog"
  6285. msgstr ""
  6286. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:167
  6287. msgid "Write system log to file"
  6288. msgstr ""
  6289. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:204
  6290. msgid "XOR policy (balance-xor, 2)"
  6291. msgstr ""
  6292. #: modules/luci-base/htdocs/luci-static/resources/form.js:3702
  6293. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:295
  6294. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:344
  6295. msgid "Yes"
  6296. msgstr ""
  6297. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:303
  6298. msgid "Yes (none, 0)"
  6299. msgstr ""
  6300. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:177
  6301. msgid ""
  6302. "You appear to be currently connected to the device via the \"%h\" interface. "
  6303. "Do you really want to shut down the interface?"
  6304. msgstr ""
  6305. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:112
  6306. msgid ""
  6307. "You can enable or disable installed init scripts here. Changes will applied "
  6308. "after a device reboot.<br /><strong>Warning: If you disable essential init "
  6309. "scripts like \"network\", your device might become inaccessible!</strong>"
  6310. msgstr ""
  6311. #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:65
  6312. #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:223
  6313. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:73
  6314. msgid ""
  6315. "You must enable JavaScript in your browser or LuCI will not work properly."
  6316. msgstr ""
  6317. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:115
  6318. msgid ""
  6319. "You must select a primary interface which is included in selected slave "
  6320. "interfaces!"
  6321. msgstr ""
  6322. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:96
  6323. msgid ""
  6324. "You must select at least one ARP IP target if ARP monitoring is selected!"
  6325. msgstr ""
  6326. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:199
  6327. msgid "ZRam Compression Algorithm"
  6328. msgstr ""
  6329. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:192
  6330. msgid "ZRam Settings"
  6331. msgstr ""
  6332. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:194
  6333. msgid "ZRam Size"
  6334. msgstr ""
  6335. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:331
  6336. msgid "any"
  6337. msgstr ""
  6338. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1459
  6339. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1467
  6340. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1472
  6341. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1196
  6342. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:79
  6343. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:48
  6344. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:51
  6345. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:89
  6346. msgid "auto"
  6347. msgstr ""
  6348. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:764
  6349. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:85
  6350. msgid "automatic"
  6351. msgstr ""
  6352. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:82
  6353. msgid "baseT"
  6354. msgstr ""
  6355. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1532
  6356. msgid "bridged"
  6357. msgstr ""
  6358. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:146
  6359. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:402
  6360. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:35
  6361. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:99
  6362. #: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:31
  6363. msgid "create"
  6364. msgstr ""
  6365. #: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:69
  6366. msgid "create:"
  6367. msgstr ""
  6368. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:55
  6369. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:57
  6370. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:58
  6371. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:62
  6372. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:63
  6373. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:83
  6374. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:84
  6375. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:87
  6376. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:185
  6377. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:186
  6378. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:187
  6379. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:41
  6380. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:42
  6381. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:272
  6382. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:274
  6383. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:275
  6384. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:279
  6385. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:280
  6386. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:261
  6387. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:264
  6388. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:267
  6389. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:271
  6390. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:274
  6391. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:277
  6392. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:303
  6393. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:304
  6394. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:305
  6395. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:309
  6396. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:310
  6397. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:311
  6398. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:313
  6399. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:314
  6400. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:315
  6401. msgid "dBm"
  6402. msgstr ""
  6403. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1053
  6404. msgid "disable"
  6405. msgstr ""
  6406. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:665
  6407. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:753
  6408. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:857
  6409. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:887
  6410. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:947
  6411. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:91
  6412. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:25
  6413. msgid "disabled"
  6414. msgstr ""
  6415. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:543
  6416. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:577
  6417. msgid "driver default"
  6418. msgstr ""
  6419. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:66
  6420. msgid "e.g: --proxy 10.10.10.10"
  6421. msgstr ""
  6422. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:68
  6423. msgid "e.g: dump"
  6424. msgstr ""
  6425. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:551
  6426. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:572
  6427. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:100
  6428. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:139
  6429. msgid "expired"
  6430. msgstr ""
  6431. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:182
  6432. msgid ""
  6433. "file where given <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</"
  6434. "abbr>-leases will be stored"
  6435. msgstr ""
  6436. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:768
  6437. msgid "forced"
  6438. msgstr ""
  6439. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:85
  6440. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:195
  6441. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:61
  6442. msgid "forward"
  6443. msgstr ""
  6444. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:84
  6445. msgid "full-duplex"
  6446. msgstr ""
  6447. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:84
  6448. msgid "half-duplex"
  6449. msgstr ""
  6450. #: modules/luci-base/htdocs/luci-static/resources/validation.js:572
  6451. msgid "hexadecimal encoded value"
  6452. msgstr ""
  6453. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1775
  6454. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:297
  6455. msgid "hidden"
  6456. msgstr ""
  6457. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:759
  6458. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:863
  6459. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:891
  6460. msgid "hybrid mode"
  6461. msgstr ""
  6462. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:36
  6463. msgid "if target is a network"
  6464. msgstr ""
  6465. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:63
  6466. msgid "ignore"
  6467. msgstr ""
  6468. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:69
  6469. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:191
  6470. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:46
  6471. msgid "input"
  6472. msgstr ""
  6473. #: modules/luci-base/htdocs/luci-static/resources/validation.js:398
  6474. msgid "key between 8 and 63 characters"
  6475. msgstr ""
  6476. #: modules/luci-base/htdocs/luci-static/resources/validation.js:410
  6477. msgid "key with either 5 or 13 characters"
  6478. msgstr ""
  6479. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:189
  6480. msgid "local <abbr title=\"Domain Name System\">DNS</abbr> file"
  6481. msgstr ""
  6482. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:781
  6483. msgid "managed config (M)"
  6484. msgstr ""
  6485. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1355
  6486. msgid "medium security"
  6487. msgstr ""
  6488. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1504
  6489. msgid "minutes"
  6490. msgstr ""
  6491. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:785
  6492. msgid "mobile home agent (H)"
  6493. msgstr ""
  6494. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:422
  6495. msgid "netif_carrier_ok()"
  6496. msgstr ""
  6497. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:47
  6498. msgid "no"
  6499. msgstr ""
  6500. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:76
  6501. msgid "no link"
  6502. msgstr ""
  6503. #: modules/luci-base/htdocs/luci-static/resources/validation.js:59
  6504. msgid "non-empty value"
  6505. msgstr ""
  6506. #: modules/luci-base/htdocs/luci-static/resources/form.js:3032
  6507. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:788
  6508. msgid "none"
  6509. msgstr ""
  6510. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:41
  6511. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:55
  6512. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:69
  6513. msgid "not present"
  6514. msgstr ""
  6515. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:347
  6516. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:931
  6517. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:935
  6518. #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:197
  6519. msgid "off"
  6520. msgstr ""
  6521. #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:196
  6522. msgid "on"
  6523. msgstr ""
  6524. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:766
  6525. msgid "on available prefix"
  6526. msgstr ""
  6527. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1356
  6528. msgid "open network"
  6529. msgstr ""
  6530. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:783
  6531. msgid "other config (O)"
  6532. msgstr ""
  6533. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:69
  6534. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:46
  6535. msgid "output"
  6536. msgstr ""
  6537. #: modules/luci-base/htdocs/luci-static/resources/validation.js:241
  6538. msgid "positive decimal value"
  6539. msgstr ""
  6540. #: modules/luci-base/htdocs/luci-static/resources/validation.js:233
  6541. msgid "positive integer value"
  6542. msgstr ""
  6543. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:80
  6544. msgid "random"
  6545. msgstr ""
  6546. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:757
  6547. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:861
  6548. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:889
  6549. msgid "relay mode"
  6550. msgstr ""
  6551. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1533
  6552. msgid "routed"
  6553. msgstr ""
  6554. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1132
  6555. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1141
  6556. msgid "sec"
  6557. msgstr ""
  6558. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:755
  6559. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:859
  6560. msgid "server mode"
  6561. msgstr ""
  6562. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:54
  6563. msgid "sstpc Log-level"
  6564. msgstr ""
  6565. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1354
  6566. msgid "strong security"
  6567. msgstr ""
  6568. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:352
  6569. msgid "tagged"
  6570. msgstr ""
  6571. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1487
  6572. msgid "time units (TUs / 1.024 ms) [1000-65535]"
  6573. msgstr ""
  6574. #: modules/luci-base/htdocs/luci-static/resources/validation.js:562
  6575. msgid "unique value"
  6576. msgstr ""
  6577. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1410
  6578. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1422
  6579. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:558
  6580. msgid "unknown"
  6581. msgstr ""
  6582. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:340
  6583. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:549
  6584. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:570
  6585. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:98
  6586. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:137
  6587. msgid "unlimited"
  6588. msgstr ""
  6589. #: modules/luci-base/htdocs/luci-static/resources/form.js:3397
  6590. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:76
  6591. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:138
  6592. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:369
  6593. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:393
  6594. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:429
  6595. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:466
  6596. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:562
  6597. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:53
  6598. #: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:38
  6599. msgid "unspecified"
  6600. msgstr ""
  6601. #: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:71
  6602. msgid "unspecified -or- create:"
  6603. msgstr ""
  6604. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:350
  6605. msgid "untagged"
  6606. msgstr ""
  6607. #: modules/luci-base/htdocs/luci-static/resources/validation.js:246
  6608. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:121
  6609. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:132
  6610. msgid "valid IP address"
  6611. msgstr ""
  6612. #: modules/luci-base/htdocs/luci-static/resources/validation.js:246
  6613. msgid "valid IP address or prefix"
  6614. msgstr ""
  6615. #: modules/luci-base/htdocs/luci-static/resources/validation.js:283
  6616. msgid "valid IPv4 CIDR"
  6617. msgstr ""
  6618. #: modules/luci-base/htdocs/luci-static/resources/validation.js:254
  6619. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:125
  6620. msgid "valid IPv4 address"
  6621. msgstr ""
  6622. #: modules/luci-base/htdocs/luci-static/resources/validation.js:254
  6623. msgid "valid IPv4 address or network"
  6624. msgstr ""
  6625. #: modules/luci-base/htdocs/luci-static/resources/validation.js:377
  6626. msgid "valid IPv4 address:port"
  6627. msgstr ""
  6628. #: modules/luci-base/htdocs/luci-static/resources/validation.js:317
  6629. msgid "valid IPv4 network"
  6630. msgstr ""
  6631. #: modules/luci-base/htdocs/luci-static/resources/validation.js:277
  6632. msgid "valid IPv4 or IPv6 CIDR"
  6633. msgstr ""
  6634. #: modules/luci-base/htdocs/luci-static/resources/validation.js:267
  6635. msgid "valid IPv4 prefix value (0-32)"
  6636. msgstr ""
  6637. #: modules/luci-base/htdocs/luci-static/resources/validation.js:289
  6638. msgid "valid IPv6 CIDR"
  6639. msgstr ""
  6640. #: modules/luci-base/htdocs/luci-static/resources/validation.js:262
  6641. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:129
  6642. msgid "valid IPv6 address"
  6643. msgstr ""
  6644. #: modules/luci-base/htdocs/luci-static/resources/validation.js:262
  6645. msgid "valid IPv6 address or prefix"
  6646. msgstr ""
  6647. #: modules/luci-base/htdocs/luci-static/resources/validation.js:307
  6648. msgid "valid IPv6 host id"
  6649. msgstr ""
  6650. #: modules/luci-base/htdocs/luci-static/resources/validation.js:322
  6651. msgid "valid IPv6 network"
  6652. msgstr ""
  6653. #: modules/luci-base/htdocs/luci-static/resources/validation.js:272
  6654. msgid "valid IPv6 prefix value (0-128)"
  6655. msgstr ""
  6656. #: modules/luci-base/htdocs/luci-static/resources/validation.js:343
  6657. msgid "valid MAC address"
  6658. msgstr ""
  6659. #: modules/luci-base/htdocs/luci-static/resources/validation.js:414
  6660. msgid "valid UCI identifier"
  6661. msgstr ""
  6662. #: modules/luci-base/htdocs/luci-static/resources/validation.js:365
  6663. msgid "valid UCI identifier, hostname or IP address range"
  6664. msgstr ""
  6665. #: modules/luci-base/htdocs/luci-static/resources/validation.js:386
  6666. #: modules/luci-base/htdocs/luci-static/resources/validation.js:389
  6667. msgid "valid address:port"
  6668. msgstr ""
  6669. #: modules/luci-base/htdocs/luci-static/resources/validation.js:536
  6670. #: modules/luci-base/htdocs/luci-static/resources/validation.js:540
  6671. msgid "valid date (YYYY-MM-DD)"
  6672. msgstr ""
  6673. #: modules/luci-base/htdocs/luci-static/resources/validation.js:237
  6674. msgid "valid decimal value"
  6675. msgstr ""
  6676. #: modules/luci-base/htdocs/luci-static/resources/validation.js:408
  6677. msgid "valid hexadecimal WEP key"
  6678. msgstr ""
  6679. #: modules/luci-base/htdocs/luci-static/resources/validation.js:396
  6680. msgid "valid hexadecimal WPA key"
  6681. msgstr ""
  6682. #: modules/luci-base/htdocs/luci-static/resources/validation.js:371
  6683. msgid "valid host:port"
  6684. msgstr ""
  6685. #: modules/luci-base/htdocs/luci-static/resources/validation.js:358
  6686. #: modules/luci-base/htdocs/luci-static/resources/validation.js:360
  6687. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:73
  6688. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:79
  6689. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:107
  6690. msgid "valid hostname"
  6691. msgstr ""
  6692. #: modules/luci-base/htdocs/luci-static/resources/validation.js:348
  6693. msgid "valid hostname or IP address"
  6694. msgstr ""
  6695. #: modules/luci-base/htdocs/luci-static/resources/validation.js:229
  6696. msgid "valid integer value"
  6697. msgstr ""
  6698. #: modules/luci-base/htdocs/luci-static/resources/validation.js:312
  6699. msgid "valid network in address/netmask notation"
  6700. msgstr ""
  6701. #: modules/luci-base/htdocs/luci-static/resources/validation.js:511
  6702. msgid "valid phone digit (0-9, \"*\", \"#\", \"!\" or \".\")"
  6703. msgstr ""
  6704. #: modules/luci-base/htdocs/luci-static/resources/validation.js:335
  6705. #: modules/luci-base/htdocs/luci-static/resources/validation.js:338
  6706. msgid "valid port or port range (port1-port2)"
  6707. msgstr ""
  6708. #: modules/luci-base/htdocs/luci-static/resources/validation.js:327
  6709. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:136
  6710. msgid "valid port value"
  6711. msgstr ""
  6712. #: modules/luci-base/htdocs/luci-static/resources/validation.js:516
  6713. msgid "valid time (HH:MM:SS)"
  6714. msgstr ""
  6715. #: modules/luci-base/htdocs/luci-static/resources/validation.js:438
  6716. msgid "value between %d and %d characters"
  6717. msgstr ""
  6718. #: modules/luci-base/htdocs/luci-static/resources/validation.js:419
  6719. msgid "value between %f and %f"
  6720. msgstr ""
  6721. #: modules/luci-base/htdocs/luci-static/resources/validation.js:423
  6722. msgid "value greater or equal to %f"
  6723. msgstr ""
  6724. #: modules/luci-base/htdocs/luci-static/resources/validation.js:427
  6725. msgid "value smaller or equal to %f"
  6726. msgstr ""
  6727. #: modules/luci-base/htdocs/luci-static/resources/validation.js:432
  6728. msgid "value with %d characters"
  6729. msgstr ""
  6730. #: modules/luci-base/htdocs/luci-static/resources/validation.js:443
  6731. msgid "value with at least %d characters"
  6732. msgstr ""
  6733. #: modules/luci-base/htdocs/luci-static/resources/validation.js:448
  6734. msgid "value with at most %d characters"
  6735. msgstr ""
  6736. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1356
  6737. msgid "weak security"
  6738. msgstr ""
  6739. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:47
  6740. msgid "yes"
  6741. msgstr ""
  6742. #: modules/luci-compat/luasrc/view/cbi/delegator.htm:20
  6743. msgid "« Back"
  6744. msgstr "« Terug"
  6745. #~ msgid "Announced DNS servers"
  6746. #~ msgstr "Aangekondigde DNS servers"
  6747. #~ msgid "Always announce default router"
  6748. #~ msgstr "Kondig altijd de standaardrouter aan"