base.po 454 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820118211182211823118241182511826118271182811829118301183111832118331183411835118361183711838118391184011841118421184311844118451184611847118481184911850118511185211853118541185511856118571185811859118601186111862118631186411865118661186711868118691187011871118721187311874118751187611877118781187911880118811188211883118841188511886118871188811889118901189111892118931189411895118961189711898118991190011901119021190311904119051190611907119081190911910119111191211913119141191511916119171191811919119201192111922119231192411925119261192711928119291193011931119321193311934119351193611937119381193911940119411194211943119441194511946119471194811949119501195111952119531195411955119561195711958119591196011961119621196311964119651196611967119681196911970119711197211973119741197511976119771197811979119801198111982119831198411985119861198711988119891199011991119921199311994119951199611997119981199912000120011200212003120041200512006120071200812009120101201112012120131201412015120161201712018120191202012021120221202312024120251202612027120281202912030120311203212033120341203512036120371203812039120401204112042120431204412045120461204712048120491205012051120521205312054120551205612057120581205912060120611206212063120641206512066120671206812069120701207112072120731207412075120761207712078120791208012081120821208312084120851208612087120881208912090120911209212093120941209512096120971209812099121001210112102121031210412105121061210712108121091211012111121121211312114121151211612117121181211912120121211212212123121241212512126121271212812129121301213112132121331213412135121361213712138121391214012141121421214312144121451214612147121481214912150121511215212153121541215512156121571215812159121601216112162121631216412165121661216712168121691217012171121721217312174121751217612177121781217912180121811218212183121841218512186121871218812189121901219112192121931219412195121961219712198121991220012201122021220312204122051220612207122081220912210122111221212213122141221512216122171221812219122201222112222122231222412225122261222712228122291223012231122321223312234122351223612237122381223912240122411224212243122441224512246122471224812249122501225112252122531225412255122561225712258122591226012261122621226312264122651226612267122681226912270122711227212273122741227512276122771227812279122801228112282122831228412285122861228712288122891229012291122921229312294122951229612297122981229912300123011230212303123041230512306123071230812309123101231112312123131231412315123161231712318123191232012321123221232312324123251232612327123281232912330123311233212333123341233512336123371233812339123401234112342123431234412345123461234712348123491235012351123521235312354123551235612357123581235912360123611236212363123641236512366123671236812369123701237112372123731237412375123761237712378123791238012381123821238312384123851238612387123881238912390123911239212393123941239512396123971239812399124001240112402124031240412405124061240712408124091241012411124121241312414124151241612417124181241912420124211242212423124241242512426124271242812429124301243112432124331243412435124361243712438124391244012441124421244312444124451244612447124481244912450124511245212453124541245512456124571245812459124601246112462124631246412465124661246712468124691247012471124721247312474124751247612477124781247912480124811248212483124841248512486124871248812489124901249112492124931249412495124961249712498124991250012501125021250312504125051250612507125081250912510125111251212513125141251512516125171251812519125201252112522
  1. msgid ""
  2. msgstr ""
  3. "Project-Id-Version: \n"
  4. "Report-Msgid-Bugs-To: \n"
  5. "POT-Creation-Date: 2009-06-10 03:40+0200\n"
  6. "PO-Revision-Date: 2024-10-24 13:05+0000\n"
  7. "Last-Translator: Allan Nordhøy <epost@anotheragency.no>\n"
  8. "Language-Team: English <https://hosted.weblate.org/projects/openwrt/luci/en/>"
  9. "\n"
  10. "Language: en\n"
  11. "MIME-Version: 1.0\n"
  12. "Content-Type: text/plain; charset=UTF-8\n"
  13. "Content-Transfer-Encoding: 8bit\n"
  14. "Plural-Forms: nplurals=2; plural=n != 1;\n"
  15. "X-Generator: Weblate 5.8.2-dev\n"
  16. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1277
  17. msgid "!known (not known)"
  18. msgstr ""
  19. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:649
  20. msgctxt "Yet unknown nftables table family (\"family\" table \"name\")"
  21. msgid "\"%h\" table \"%h\""
  22. msgstr ""
  23. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1629
  24. msgid "%.1f dB"
  25. msgstr ""
  26. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:123
  27. msgid "%d Bit"
  28. msgstr ""
  29. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4132
  30. msgid "%d invalid field(s)"
  31. msgstr ""
  32. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:26
  33. msgid "%dh ago"
  34. msgstr ""
  35. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:24
  36. msgid "%dm ago"
  37. msgstr ""
  38. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:22
  39. msgid "%ds ago"
  40. msgstr ""
  41. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:762
  42. msgid "%s adds 1.2.3.0/24 for IPv4 requestors and ::/0 for IPv6 requestors."
  43. msgstr ""
  44. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:763
  45. msgid "%s adds 1.2.3.0/24 for both IPv4 and IPv6 requestors."
  46. msgstr ""
  47. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:761
  48. msgid ""
  49. "%s adds the /24 and /96 subnets of the requestor for IPv4 and IPv6 "
  50. "requestors, respectively."
  51. msgstr ""
  52. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:311
  53. msgid ""
  54. "%s is an independent project that aims to transparently reduce latency of a "
  55. "connection over Yggdrasil network, utilizing NAT traversal to bypass "
  56. "intermediary nodes."
  57. msgstr ""
  58. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:35
  59. msgid "%s is untagged in multiple VLANs!"
  60. msgstr ""
  61. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:902
  62. msgid "%s means \"the address of the system running dnsmasq\"."
  63. msgstr ""
  64. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:744
  65. msgid "%s uses a human-readable encoding of hex-and-colons"
  66. msgstr ""
  67. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:743
  68. msgid "%s uses an alternative encoding of the MAC as base64"
  69. msgstr ""
  70. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:742
  71. msgid "%s uses the default MAC address format encoding"
  72. msgstr ""
  73. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:297
  74. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:409
  75. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:276
  76. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:310
  77. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:328
  78. msgid "(%d minute window, %d second interval)"
  79. msgstr ""
  80. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:843
  81. msgid "(Max 1h == 3600)"
  82. msgstr ""
  83. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:127
  84. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:133
  85. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:268
  86. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:292
  87. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:88
  88. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:91
  89. msgid "(empty)"
  90. msgstr ""
  91. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:364
  92. #: modules/luci-compat/luasrc/view/cbi/network_netinfo.htm:23
  93. #: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:58
  94. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:271
  95. msgid "(no interfaces attached)"
  96. msgstr ""
  97. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:620
  98. msgctxt "Label indicating further amount of allowed ips"
  99. msgid "+ %d more"
  100. msgstr ""
  101. #: modules/luci-compat/luasrc/view/cbi/ucisection.htm:48
  102. msgid "-- Additional Field --"
  103. msgstr ""
  104. #: modules/luci-base/htdocs/luci-static/resources/cbi.js:275
  105. #: modules/luci-base/htdocs/luci-static/resources/form.js:3747
  106. #: modules/luci-base/htdocs/luci-static/resources/form.js:4244
  107. #: modules/luci-base/htdocs/luci-static/resources/ui.js:799
  108. #: modules/luci-base/htdocs/luci-static/resources/ui.js:1037
  109. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2030
  110. #: modules/luci-compat/luasrc/view/cbi/header.htm:8
  111. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:89
  112. msgid "-- Please choose --"
  113. msgstr ""
  114. #: modules/luci-base/htdocs/luci-static/resources/cbi.js:276
  115. #: modules/luci-base/htdocs/luci-static/resources/ui.js:1038
  116. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2031
  117. #: modules/luci-compat/luasrc/view/cbi/header.htm:9
  118. msgid "-- custom --"
  119. msgstr ""
  120. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:271
  121. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:378
  122. msgid "-- match by label --"
  123. msgstr ""
  124. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:257
  125. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:361
  126. msgid "-- match by uuid --"
  127. msgstr ""
  128. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:27
  129. #: modules/luci-compat/luasrc/view/cbi/network_ifacelist.htm:44
  130. #: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:23
  131. msgid "-- please select --"
  132. msgstr ""
  133. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:59
  134. msgctxt "sstp log level value"
  135. msgid "0"
  136. msgstr ""
  137. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1065
  138. msgid "0 = not using RSSI threshold, 1 = do not change driver default"
  139. msgstr ""
  140. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:60
  141. msgctxt "sstp log level value"
  142. msgid "1"
  143. msgstr ""
  144. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:236
  145. msgid "1 Minute Load:"
  146. msgstr ""
  147. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:323
  148. msgctxt "nft amount of flags"
  149. msgid "1 flag"
  150. msgid_plural "%d flags"
  151. msgstr[0] ""
  152. msgstr[1] ""
  153. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1250
  154. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1000
  155. msgid "12h (12 hours - default)"
  156. msgstr ""
  157. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:256
  158. msgid "15 Minute Load:"
  159. msgstr ""
  160. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:61
  161. msgctxt "sstp log level value"
  162. msgid "2"
  163. msgstr ""
  164. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1574
  165. msgid "256"
  166. msgstr ""
  167. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:62
  168. msgctxt "sstp log level value"
  169. msgid "3"
  170. msgstr ""
  171. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1249
  172. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:999
  173. msgid "3h (3 hours)"
  174. msgstr ""
  175. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:63
  176. msgctxt "sstp log level value"
  177. msgid "4"
  178. msgstr ""
  179. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1673
  180. msgid "4-character hexadecimal ID"
  181. msgstr ""
  182. #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:20
  183. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:11
  184. msgid "464XLAT (CLAT)"
  185. msgstr ""
  186. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:246
  187. msgid "5 Minute Load:"
  188. msgstr ""
  189. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1248
  190. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:998
  191. msgid "5m (5 minutes)"
  192. msgstr ""
  193. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1702
  194. msgid "6-octet identifier as a hex string - no colons"
  195. msgstr ""
  196. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1251
  197. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1001
  198. msgid "7d (7 days)"
  199. msgstr ""
  200. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1725
  201. msgid "802.11k RRM"
  202. msgstr ""
  203. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1734
  204. msgid "802.11k: Enable beacon report via radio measurements."
  205. msgstr ""
  206. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1730
  207. msgid "802.11k: Enable neighbor report via radio measurements."
  208. msgstr ""
  209. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1662
  210. msgid "802.11r Fast Transition"
  211. msgstr ""
  212. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1250
  213. msgid "802.11v: BSS Max Idle. Units: seconds."
  214. msgstr ""
  215. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1760
  216. msgid "802.11v: Basic Service Set (BSS) transition management."
  217. msgstr ""
  218. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1749
  219. msgid "802.11v: Local Time Zone Advertisement in management frames."
  220. msgstr ""
  221. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1764
  222. msgid ""
  223. "802.11v: Proxy ARP enables non-AP STA to remain in power-save for longer."
  224. msgstr ""
  225. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1740
  226. msgid "802.11v: Time Advertisement in management frames."
  227. msgstr ""
  228. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1753
  229. msgid ""
  230. "802.11v: Wireless Network Management (WNM) Sleep Mode (extended sleep mode "
  231. "for stations)."
  232. msgstr ""
  233. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1757
  234. msgid ""
  235. "802.11v: Wireless Network Management (WNM) Sleep Mode Fixes: Prevents "
  236. "reinstallation attacks."
  237. msgstr ""
  238. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1907
  239. msgid "802.11w Association SA Query maximum timeout"
  240. msgstr ""
  241. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1914
  242. msgid "802.11w Association SA Query retry timeout"
  243. msgstr ""
  244. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1888
  245. msgid "802.11w Management Frame Protection"
  246. msgstr ""
  247. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1907
  248. msgid "802.11w maximum timeout"
  249. msgstr ""
  250. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1914
  251. msgid "802.11w retry timeout"
  252. msgstr ""
  253. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:235
  254. msgid "; invalid MAC:"
  255. msgstr ""
  256. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1082
  257. msgid "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>"
  258. msgstr ""
  259. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1071
  260. msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>"
  261. msgstr ""
  262. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:690
  263. msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Netmask"
  264. msgstr ""
  265. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:58
  266. msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Configuration"
  267. msgstr ""
  268. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:70
  269. msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Name"
  270. msgstr ""
  271. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:976
  272. msgid "<abbr title=\"Neighbour Discovery Protocol\">NDP</abbr>-Proxy"
  273. msgstr ""
  274. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:921
  275. msgid "<abbr title=\"Prefix Delegation\">PD</abbr> minimum length"
  276. msgstr ""
  277. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:815
  278. msgid "<abbr title=\"Router Advertisement\">RA</abbr> Flags"
  279. msgstr ""
  280. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:890
  281. msgid "<abbr title=\"Router Advertisement\">RA</abbr> Hop Limit"
  282. msgstr ""
  283. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:864
  284. msgid "<abbr title=\"Router Advertisement\">RA</abbr> Lifetime"
  285. msgstr ""
  286. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:871
  287. msgid "<abbr title=\"Router Advertisement\">RA</abbr> MTU"
  288. msgstr ""
  289. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:785
  290. msgid "<abbr title=\"Router Advertisement\">RA</abbr>-Service"
  291. msgstr ""
  292. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:87
  293. msgctxt "nft relational \">\" operator expression"
  294. msgid "<var>%s</var> greater than <strong>%s</strong>"
  295. msgstr ""
  296. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:85
  297. msgctxt "nft relational \">=\" operator expression"
  298. msgid "<var>%s</var> greater than or equal to <strong>%s</strong>"
  299. msgstr ""
  300. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:90
  301. msgctxt "nft set match expression"
  302. msgid "<var>%s</var> in set <strong>%s</strong>"
  303. msgstr ""
  304. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:83
  305. msgctxt "nft relational \"==\" operator expression"
  306. msgid "<var>%s</var> is <strong>%s</strong>"
  307. msgstr ""
  308. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:89
  309. msgctxt "nft relational \"in\" operator expression"
  310. msgid "<var>%s</var> is one of <strong>%s</strong>"
  311. msgstr ""
  312. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:88
  313. msgctxt "nft relational \"<\" operator expression"
  314. msgid "<var>%s</var> lower than <strong>%s</strong>"
  315. msgstr ""
  316. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:86
  317. msgctxt "nft relational \"<=\" operator expression"
  318. msgid "<var>%s</var> lower than or equal to <strong>%s</strong>"
  319. msgstr ""
  320. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:84
  321. msgctxt "nft relational \"!=\" operator expression"
  322. msgid "<var>%s</var> not <strong>%s</strong>"
  323. msgstr ""
  324. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:91
  325. msgctxt "nft not in set match expression"
  326. msgid "<var>%s</var> not in set <strong>%s</strong>"
  327. msgstr ""
  328. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:86
  329. msgid ""
  330. "A batman-adv node can either run in server mode (sharing its internet "
  331. "connection with the mesh) or in client mode (searching for the most suitable "
  332. "internet connection in the mesh) or having the gateway support turned off "
  333. "entirely (which is the default setting)."
  334. msgstr ""
  335. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:424
  336. msgid "A configuration for the device \"%s\" already exists"
  337. msgstr ""
  338. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:241
  339. msgid ""
  340. "A default MTU of 65535 is set by Yggdrasil. It is recomended to utilize the "
  341. "default."
  342. msgstr ""
  343. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2794
  344. msgid "A directory with the same name already exists."
  345. msgstr ""
  346. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2666
  347. msgid "A new login is required since the authentication session expired."
  348. msgstr ""
  349. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:96
  350. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:173
  351. msgid ""
  352. "A numeric table index, or symbol alias declared in %s. Special aliases local "
  353. "(255), main (254) and default (253) are also valid"
  354. msgstr ""
  355. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1609
  356. msgid "A43C + J43 + A43"
  357. msgstr ""
  358. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1610
  359. msgid "A43C + J43 + A43 + V43"
  360. msgstr ""
  361. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1622
  362. msgid "ADSL"
  363. msgstr ""
  364. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1596
  365. msgid "ADSL (G.992.1) Annex A"
  366. msgstr ""
  367. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1597
  368. msgid "ADSL (G.992.1) Annex B"
  369. msgstr ""
  370. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1590
  371. msgid "ADSL (all variants) Annex A/L/M"
  372. msgstr ""
  373. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1586
  374. msgid "ADSL (all variants) Annex A/L/M + VDSL2 Annex A/B/C"
  375. msgstr ""
  376. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1591
  377. msgid "ADSL (all variants) Annex B"
  378. msgstr ""
  379. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1587
  380. msgid "ADSL (all variants) Annex B + VDSL2 Annex A/B/C"
  381. msgstr ""
  382. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1592
  383. msgid "ADSL (all variants) Annex B/J"
  384. msgstr ""
  385. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1588
  386. msgid "ADSL (all variants) Annex B/J + VDSL2 Annex A/B/C"
  387. msgstr ""
  388. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1594
  389. msgid "ADSL (all variants) Annex M"
  390. msgstr ""
  391. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1599
  392. msgid "ADSL2 (G.992.3) Annex A"
  393. msgstr ""
  394. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1600
  395. msgid "ADSL2 (G.992.3) Annex B"
  396. msgstr ""
  397. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1601
  398. msgid "ADSL2 (G.992.3) Annex L"
  399. msgstr ""
  400. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1602
  401. msgid "ADSL2 (G.992.3) Annex M"
  402. msgstr ""
  403. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1603
  404. msgid "ADSL2+ (G.992.5) Annex A"
  405. msgstr ""
  406. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1604
  407. msgid "ADSL2+ (G.992.5) Annex B"
  408. msgstr ""
  409. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1605
  410. msgid "ADSL2+ (G.992.5) Annex M"
  411. msgstr ""
  412. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1595
  413. msgid "ANSI T1.413"
  414. msgstr ""
  415. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:95
  416. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:65
  417. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:65
  418. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:91
  419. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:77
  420. msgid "APN"
  421. msgstr ""
  422. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:144
  423. msgid "APN profile index"
  424. msgstr ""
  425. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:358
  426. msgid "ARP"
  427. msgstr ""
  428. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:371
  429. msgid "ARP IP Targets"
  430. msgstr ""
  431. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:363
  432. msgid "ARP Interval"
  433. msgstr ""
  434. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:387
  435. msgid "ARP Validation"
  436. msgstr ""
  437. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:379
  438. msgid "ARP mode to consider a slave as being up"
  439. msgstr ""
  440. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:82
  441. msgid "ARP monitoring is not supported for the selected policy!"
  442. msgstr ""
  443. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:107
  444. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:107
  445. msgid "ARP proxy"
  446. msgstr ""
  447. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:175
  448. msgid "ARP retry threshold"
  449. msgstr ""
  450. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:637
  451. msgid "ARP traffic table \"%h\""
  452. msgstr ""
  453. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1213
  454. msgid ""
  455. "ARP, IPv4 and IPv6 (even 802.1Q) with multicast destination MACs are unicast "
  456. "to the STA MAC address. Note: This is not Directed Multicast Service (DMS) "
  457. "in 802.11v. Note: might break receiver STA multicast expectations."
  458. msgstr ""
  459. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1617
  460. msgid "ATM (Asynchronous Transfer Mode)"
  461. msgstr ""
  462. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1638
  463. msgid "ATM Bridges"
  464. msgstr ""
  465. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1670
  466. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:66
  467. msgid "ATM Virtual Channel Identifier (VCI)"
  468. msgstr ""
  469. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1671
  470. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:70
  471. msgid "ATM Virtual Path Identifier (VPI)"
  472. msgstr ""
  473. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1638
  474. msgid ""
  475. "ATM bridges expose encapsulated ethernet in AAL5 connections as virtual "
  476. "Linux network interfaces which can be used in conjunction with DHCP or PPP "
  477. "to dial into the provider network."
  478. msgstr ""
  479. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1677
  480. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:62
  481. msgid "ATM device number"
  482. msgstr ""
  483. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:275
  484. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:560
  485. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:564
  486. msgid "Absent Interface"
  487. msgstr ""
  488. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:532
  489. msgid "Accept DNS queries only from hosts whose address is on a local subnet."
  490. msgstr ""
  491. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:267
  492. msgid "Accept from public keys"
  493. msgstr ""
  494. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:701
  495. msgid "Accept local"
  496. msgstr ""
  497. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:95
  498. msgctxt "nft accept action"
  499. msgid "Accept packet"
  500. msgstr ""
  501. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:701
  502. msgid "Accept packets with local source addresses"
  503. msgstr ""
  504. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:47
  505. msgid "Access Concentrator"
  506. msgstr ""
  507. #: modules/luci-base/htdocs/luci-static/resources/network.js:3904
  508. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1053
  509. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1168
  510. msgid "Access Point"
  511. msgstr ""
  512. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:60
  513. msgid "Access Point Isolation"
  514. msgstr ""
  515. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:99
  516. msgid "Access Technologies"
  517. msgstr ""
  518. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:390
  519. msgid "Actions"
  520. msgstr ""
  521. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:14
  522. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:134
  523. msgid "Active"
  524. msgstr ""
  525. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:72
  526. msgid "Active Connections"
  527. msgstr ""
  528. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:35
  529. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:182
  530. msgid "Active DHCP Leases"
  531. msgstr ""
  532. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:54
  533. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:184
  534. msgid "Active DHCPv6 Leases"
  535. msgstr ""
  536. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:265
  537. msgid "Active IPv4 Routes"
  538. msgstr ""
  539. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:268
  540. msgid "Active IPv4 Rules"
  541. msgstr ""
  542. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:275
  543. msgid "Active IPv6 Routes"
  544. msgstr ""
  545. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:278
  546. msgid "Active IPv6 Rules"
  547. msgstr ""
  548. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:256
  549. msgid "Active peers"
  550. msgstr ""
  551. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:210
  552. msgid "Active-Backup policy (active-backup, 1)"
  553. msgstr ""
  554. #: modules/luci-base/htdocs/luci-static/resources/network.js:3905
  555. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1055
  556. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:23
  557. msgid "Ad-Hoc"
  558. msgstr ""
  559. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:215
  560. msgid "Adaptive load balancing (balance-alb, 6)"
  561. msgstr ""
  562. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:214
  563. msgid "Adaptive transmit load balancing (balance-tlb, 5)"
  564. msgstr ""
  565. #: modules/luci-base/htdocs/luci-static/resources/form.js:2235
  566. #: modules/luci-base/htdocs/luci-static/resources/form.js:2238
  567. #: modules/luci-base/htdocs/luci-static/resources/form.js:2251
  568. #: modules/luci-base/htdocs/luci-static/resources/form.js:2259
  569. #: modules/luci-base/htdocs/luci-static/resources/form.js:3545
  570. #: modules/luci-compat/luasrc/view/cbi/nsection.htm:25
  571. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:189
  572. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:197
  573. #: modules/luci-compat/luasrc/view/cbi/tsection.htm:39
  574. #: modules/luci-compat/luasrc/view/cbi/tsection.htm:47
  575. #: modules/luci-compat/luasrc/view/cbi/ucisection.htm:54
  576. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:946
  577. msgid "Add"
  578. msgstr ""
  579. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1642
  580. msgid "Add ATM Bridge"
  581. msgstr ""
  582. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:92
  583. msgid "Add IPv4 address…"
  584. msgstr ""
  585. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:186
  586. msgid "Add IPv6 address…"
  587. msgstr ""
  588. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:65
  589. msgid "Add LED action"
  590. msgstr ""
  591. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:221
  592. msgid "Add VLAN"
  593. msgstr ""
  594. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:757
  595. msgid ""
  596. "Add a subnet address to the DNS queries which are forwarded upstream, "
  597. "leaving this value empty disables the feature."
  598. msgstr ""
  599. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1391
  600. msgid "Add device configuration"
  601. msgstr ""
  602. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1331
  603. msgid "Add device configuration…"
  604. msgstr ""
  605. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:15
  606. msgid "Add instance"
  607. msgstr ""
  608. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:171
  609. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:177
  610. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:274
  611. msgid "Add key"
  612. msgstr ""
  613. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:263
  614. msgid ""
  615. "Add listeners in order to accept incoming peerings from non-local nodes. "
  616. "Multicast peer discovery works regardless of listeners set here. URI Format: "
  617. "<code>tls://0.0.0.0:0</code> or <code>tls://[::]:0</code> to listen on all "
  618. "interfaces. Choose an acceptable URI <code>tls://</code>, <code>tcp://</"
  619. "code>, <code>unix://</code> or <code>quic://</code>"
  620. msgstr ""
  621. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:433
  622. msgid "Add local domain suffix to names served from hosts files."
  623. msgstr ""
  624. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:283
  625. msgid "Add multicast rule"
  626. msgstr ""
  627. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:454
  628. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1215
  629. msgid "Add new interface..."
  630. msgstr ""
  631. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:188
  632. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:188
  633. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:210
  634. msgid "Add peer"
  635. msgstr ""
  636. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:274
  637. msgid "Add peer address"
  638. msgstr ""
  639. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:740
  640. msgid "Add requestor MAC"
  641. msgstr ""
  642. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:352
  643. msgctxt "Dnsmasq instance"
  644. msgid "Add server instance"
  645. msgstr ""
  646. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1298
  647. msgid "Add static forward and reverse DNS entries for this host."
  648. msgstr ""
  649. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:756
  650. msgid "Add subnet address to forwards"
  651. msgstr ""
  652. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:741
  653. msgid ""
  654. "Add the MAC address of the requestor to DNS queries which are forwarded "
  655. "upstream."
  656. msgstr ""
  657. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:335
  658. msgid "Add to Blacklist"
  659. msgstr ""
  660. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:335
  661. msgid "Add to Whitelist"
  662. msgstr ""
  663. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1154
  664. msgid "Adding an IPv6 to an IPv4 set and vice-versa silently fails."
  665. msgstr ""
  666. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:178
  667. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:178
  668. msgid "Additional Peers"
  669. msgstr ""
  670. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:376
  671. msgid "Additional configuration settings (in TOML format)."
  672. msgstr ""
  673. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:662
  674. msgid "Additional hosts files"
  675. msgstr ""
  676. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:901
  677. msgid "Additional options to send to the below match tags."
  678. msgstr ""
  679. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:734
  680. msgid "Additional servers file"
  681. msgstr ""
  682. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:38
  683. msgid "Address"
  684. msgstr "Address"
  685. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:613
  686. msgid "Address families of \"Relay from\" and \"Relay to address\" must match."
  687. msgstr ""
  688. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:21
  689. msgctxt "nft meta nfproto"
  690. msgid "Address family"
  691. msgstr ""
  692. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:271
  693. msgid "Address setting is invalid"
  694. msgstr ""
  695. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:151
  696. msgid "Address to access local relay bridge"
  697. msgstr ""
  698. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:476
  699. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:793
  700. msgid "Addresses"
  701. msgstr ""
  702. #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:3
  703. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:15
  704. msgid "Administration"
  705. msgstr ""
  706. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:468
  707. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:632
  708. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1668
  709. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:41
  710. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:133
  711. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:985
  712. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1049
  713. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:241
  714. msgid "Advanced Settings"
  715. msgstr ""
  716. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:391
  717. msgid "Advanced device options"
  718. msgstr ""
  719. #: protocols/luci-proto-external/htdocs/luci-static/resources/protocol/external.js:34
  720. msgid ""
  721. "Afer making changes to network using external protocol, network must be "
  722. "manually restarted."
  723. msgstr ""
  724. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:76
  725. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:76
  726. msgid "Ageing"
  727. msgstr ""
  728. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:567
  729. msgid "Ageing time"
  730. msgstr ""
  731. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:50
  732. msgid "Aggregate Originator Messages"
  733. msgstr ""
  734. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:265
  735. msgid "Aggregation Selection Logic"
  736. msgstr ""
  737. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:268
  738. msgid "Aggregator: All slaves down or has no slaves (stable, 0)"
  739. msgstr ""
  740. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:270
  741. msgid ""
  742. "Aggregator: Chosen by the largest number of ports + slave added/removed or "
  743. "state changes (count, 2)"
  744. msgstr ""
  745. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:269
  746. msgid "Aggregator: Slave added/removed or state changes (bandwidth, 1)"
  747. msgstr ""
  748. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:192
  749. msgid "Alert"
  750. msgstr ""
  751. #: modules/luci-base/htdocs/luci-static/resources/network.js:3023
  752. #: modules/luci-compat/luasrc/model/network.lua:1417
  753. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:62
  754. msgid "Alias Interface"
  755. msgstr ""
  756. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:132
  757. msgid "Alias of \"%s\""
  758. msgstr ""
  759. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:771
  760. msgid "All servers"
  761. msgstr ""
  762. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:674
  763. msgid ""
  764. "Allocate IP addresses sequentially, starting from the lowest available "
  765. "address."
  766. msgstr ""
  767. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:673
  768. msgid "Allocate IPs sequentially"
  769. msgstr ""
  770. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:355
  771. msgid "Allocate listen addresses"
  772. msgstr ""
  773. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:27
  774. msgid "Allow <abbr title=\"Secure Shell\">SSH</abbr> password authentication"
  775. msgstr ""
  776. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1260
  777. msgid "Allow AP mode to disconnect STAs based on low ACK condition"
  778. msgstr ""
  779. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:356
  780. msgid ""
  781. "Allow Yggdrasil Jumper to automatically configure Yggdrasil with proper "
  782. "listen address and random port."
  783. msgstr ""
  784. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1151
  785. msgid "Allow all except listed"
  786. msgstr ""
  787. #: modules/luci-compat/root/usr/share/rpcd/acl.d/luci-compat.json:3
  788. msgid "Allow full UCI access for legacy applications"
  789. msgstr ""
  790. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1005
  791. msgid "Allow legacy 802.11b rates"
  792. msgstr ""
  793. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1150
  794. msgid "Allow listed only"
  795. msgstr ""
  796. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:514
  797. msgid "Allow localhost"
  798. msgstr ""
  799. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:178
  800. msgid "Allow rebooting the device"
  801. msgstr ""
  802. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:38
  803. msgid "Allow remote hosts to connect to local SSH forwarded ports"
  804. msgstr ""
  805. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:33
  806. msgid "Allow root logins with password"
  807. msgstr ""
  808. #: modules/luci-base/root/usr/share/rpcd/acl.d/luci-base.json:3
  809. msgid "Allow system feature probing"
  810. msgstr ""
  811. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:33
  812. msgid "Allow the <em>root</em> user to log in with password"
  813. msgstr ""
  814. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:609
  815. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:782
  816. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:56
  817. msgid "Allowed IPs"
  818. msgstr ""
  819. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:88
  820. msgid "Allowed network technology"
  821. msgstr ""
  822. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:302
  823. msgid "AllowedIPs setting is invalid"
  824. msgstr ""
  825. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:42
  826. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:42
  827. msgid "Alternatively, a multicast address to reach a group of peers."
  828. msgstr ""
  829. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:775
  830. msgid "Always"
  831. msgstr ""
  832. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/none.js:6
  833. msgid "Always off (kernel: none)"
  834. msgstr ""
  835. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/default-on.js:5
  836. msgid "Always on (kernel: default-on)"
  837. msgstr ""
  838. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:914
  839. msgid ""
  840. "Always send the chosen DHCP options. Sometimes needed, with e.g. PXELinux."
  841. msgstr ""
  842. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1032
  843. msgid ""
  844. "Always use 40MHz channels even if the secondary channel overlaps. Using this "
  845. "option does not comply with IEEE 802.11n-2009!"
  846. msgstr ""
  847. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:740
  848. msgid "Amount of Duplicate Address Detection probes to send"
  849. msgstr ""
  850. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:119
  851. msgid "Amount of seconds to wait for the modem to become ready"
  852. msgstr ""
  853. #: modules/luci-base/htdocs/luci-static/resources/form.js:610
  854. msgid "An error occurred while saving the form:"
  855. msgstr ""
  856. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:139
  857. msgid "An optional, short description for this device"
  858. msgstr ""
  859. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1584
  860. msgid "Annex"
  861. msgstr ""
  862. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:843
  863. msgid ""
  864. "Announce NAT64 prefix in <abbr title=\"Router Advertisement\">RA</abbr> "
  865. "messages."
  866. msgstr ""
  867. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:935
  868. msgid "Announce this device as IPv6 DNS server."
  869. msgstr ""
  870. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:801
  871. msgid ""
  872. "Announce this device as default router if a local IPv6 default route is "
  873. "present."
  874. msgstr ""
  875. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:803
  876. msgid ""
  877. "Announce this device as default router if a public IPv6 prefix is available, "
  878. "regardless of local default route availability."
  879. msgstr ""
  880. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:805
  881. msgid ""
  882. "Announce this device as default router regardless of whether a prefix or "
  883. "default route is present."
  884. msgstr ""
  885. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:942
  886. msgid "Announced DNS domains"
  887. msgstr ""
  888. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:926
  889. msgid "Announced IPv6 DNS servers"
  890. msgstr ""
  891. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1878
  892. msgid "Anonymous Identity"
  893. msgstr ""
  894. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:162
  895. msgid "Anonymous Mount"
  896. msgstr ""
  897. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:158
  898. msgid "Anonymous Swap"
  899. msgstr ""
  900. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:518
  901. msgctxt "nft match any traffic"
  902. msgid "Any packet"
  903. msgstr ""
  904. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:93
  905. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:183
  906. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:205
  907. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:60
  908. msgid "Any zone"
  909. msgstr ""
  910. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:119
  911. msgid "Apply backup?"
  912. msgstr ""
  913. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4772
  914. msgid "Apply request failed with status <code>%h</code>"
  915. msgstr ""
  916. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2175
  917. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4488
  918. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4610
  919. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4746
  920. msgid "Apply unchecked"
  921. msgstr ""
  922. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4742
  923. msgid "Apply, reverting in case of connectivity loss"
  924. msgstr ""
  925. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4683
  926. msgid "Applying configuration changes… %ds"
  927. msgstr ""
  928. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:57
  929. msgid "Architecture"
  930. msgstr ""
  931. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:152
  932. msgid "Arp-scan"
  933. msgstr ""
  934. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1056
  935. msgid ""
  936. "Assign a part of given length of every public IPv6-prefix to this interface"
  937. msgstr ""
  938. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1269
  939. msgid "Assign new, freeform tags to this entry."
  940. msgstr ""
  941. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1061
  942. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:27
  943. msgid ""
  944. "Assign prefix parts using this hexadecimal subprefix ID for this interface."
  945. msgstr ""
  946. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2420
  947. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:366
  948. msgid "Associated Stations"
  949. msgstr ""
  950. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:151
  951. msgid "Associations"
  952. msgstr ""
  953. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:126
  954. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:127
  955. msgid ""
  956. "At least <strong>%h</strong> per <strong>%h</strong>, burst of <strong>%h</"
  957. "strong>"
  958. msgstr ""
  959. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:124
  960. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:125
  961. msgid ""
  962. "At most <strong>%h</strong> per <strong>%h</strong>, burst of <strong>%h</"
  963. "strong>"
  964. msgstr ""
  965. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:154
  966. msgid "Attempt to enable configured mount points for attached devices"
  967. msgstr ""
  968. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1532
  969. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1539
  970. msgid "Attributes to add/replace in each request."
  971. msgstr ""
  972. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:145
  973. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:64
  974. msgid "Auth Group"
  975. msgstr ""
  976. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1817
  977. msgid "Authentication"
  978. msgstr ""
  979. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:76
  980. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:79
  981. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:89
  982. msgid "Authentication Type"
  983. msgstr ""
  984. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:419
  985. msgid "Authoritative"
  986. msgstr ""
  987. #: modules/luci-base/ucode/template/sysauth.ut:17
  988. #: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:11
  989. msgid "Authorization Required"
  990. msgstr ""
  991. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:365
  992. msgid "Autofill listen addresses"
  993. msgstr ""
  994. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:120
  995. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:18
  996. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:24
  997. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:107
  998. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:116
  999. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:113
  1000. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:51
  1001. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:96
  1002. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:82
  1003. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:56
  1004. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:69
  1005. msgid "Automatic"
  1006. msgstr ""
  1007. #: modules/luci-compat/luasrc/model/network/proto_hnet.lua:7
  1008. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:7
  1009. msgid "Automatic Homenet (HNCP)"
  1010. msgstr ""
  1011. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:97
  1012. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:97
  1013. msgid ""
  1014. "Automatic mac learning using multicast; inserts unknown source link layer "
  1015. "addresses and IP addresses into the VXLAN device %s"
  1016. msgstr ""
  1017. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:174
  1018. msgid "Automatically check filesystem for errors before mounting"
  1019. msgstr ""
  1020. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1049
  1021. msgid ""
  1022. "Automatically handle multiple uplink interfaces using source-based policy "
  1023. "routing."
  1024. msgstr ""
  1025. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:170
  1026. msgid "Automatically mount filesystems on hotplug"
  1027. msgstr ""
  1028. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:166
  1029. msgid "Automatically mount swap on hotplug"
  1030. msgstr ""
  1031. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:170
  1032. msgid "Automount Filesystem"
  1033. msgstr ""
  1034. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:166
  1035. msgid "Automount Swap"
  1036. msgstr ""
  1037. #: protocols/luci-proto-autoip/htdocs/luci-static/resources/protocol/autoip.js:6
  1038. msgid "Avahi IPv4LL"
  1039. msgstr ""
  1040. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:193
  1041. msgid "Available"
  1042. msgstr ""
  1043. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:270
  1044. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:280
  1045. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:334
  1046. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:344
  1047. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:354
  1048. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:239
  1049. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:249
  1050. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:259
  1051. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:265
  1052. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:275
  1053. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:293
  1054. msgid "Average:"
  1055. msgstr ""
  1056. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:70
  1057. msgid "Avoid Bridge Loops"
  1058. msgstr ""
  1059. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1611
  1060. msgid "B43 + B43C"
  1061. msgstr ""
  1062. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1612
  1063. msgid "B43 + B43C + V43"
  1064. msgstr ""
  1065. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:48
  1066. msgid "BR / DMR / AFTR"
  1067. msgstr ""
  1068. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1760
  1069. msgid "BSS Transition"
  1070. msgstr ""
  1071. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:158
  1072. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:182
  1073. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1973
  1074. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:447
  1075. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:149
  1076. msgid "BSSID"
  1077. msgstr ""
  1078. #: modules/luci-compat/luasrc/view/cbi/footer.htm:14
  1079. #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:48
  1080. msgid "Back to Overview"
  1081. msgstr ""
  1082. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:851
  1083. msgid "Back to peer configuration"
  1084. msgstr ""
  1085. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:393
  1086. msgid "Backup"
  1087. msgstr ""
  1088. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:128
  1089. msgid "Backup / Flash Firmware"
  1090. msgstr ""
  1091. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:353
  1092. msgid "Backup file list"
  1093. msgstr ""
  1094. #: modules/luci-compat/luasrc/view/cbi/wireless_modefreq.htm:186
  1095. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:562
  1096. msgid "Band"
  1097. msgstr ""
  1098. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:314
  1099. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:139
  1100. msgid "Bandwidth"
  1101. msgstr ""
  1102. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:431
  1103. msgid "Base device"
  1104. msgstr ""
  1105. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:144
  1106. msgid "Base64-encoded public key of this interface for sharing."
  1107. msgstr ""
  1108. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:10
  1109. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv_hardif.js:41
  1110. msgid "Batman Device"
  1111. msgstr ""
  1112. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv_hardif.js:10
  1113. msgid "Batman Interface"
  1114. msgstr ""
  1115. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:81
  1116. msgid ""
  1117. "Batman-adv has a built-in layer 2 fragmentation for unicast data flowing "
  1118. "through the mesh which will allow to run batman-adv over interfaces / "
  1119. "connections that don't allow to increase the MTU beyond the standard "
  1120. "Ethernet packet size of 1500 bytes. When the fragmentation is enabled batman-"
  1121. "adv will automatically fragment over-sized packets and defragment them on "
  1122. "the other end. Per default fragmentation is enabled and inactive if the "
  1123. "packet fits but it is possible to deactivate the fragmentation entirely."
  1124. msgstr ""
  1125. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1035
  1126. msgid "Beacon Interval"
  1127. msgstr ""
  1128. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1734
  1129. msgid "Beacon Report"
  1130. msgstr ""
  1131. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:354
  1132. msgid ""
  1133. "Below is the determined list of files to backup. It consists of changed "
  1134. "configuration files marked by opkg, essential base files and the user "
  1135. "defined backup patterns."
  1136. msgstr ""
  1137. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:287
  1138. msgid "Bind NTP server"
  1139. msgstr ""
  1140. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:59
  1141. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64
  1142. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64
  1143. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:69
  1144. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:48
  1145. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:142
  1146. #: protocols/luci-proto-vti/htdocs/luci-static/resources/protocol/vti.js:59
  1147. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:132
  1148. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:132
  1149. msgid "Bind interface"
  1150. msgstr ""
  1151. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:538
  1152. msgid ""
  1153. "Bind only to configured interface addresses, instead of the wildcard address."
  1154. msgstr ""
  1155. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:980
  1156. msgid ""
  1157. "Bind service records to a domain name: specify the location of services."
  1158. msgstr ""
  1159. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:941
  1160. msgid ""
  1161. "Bind service records to a domain name: specify the location of services. See "
  1162. "<a href=\"%s\">RFC2782</a>."
  1163. msgstr ""
  1164. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:59
  1165. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64
  1166. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64
  1167. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:69
  1168. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:48
  1169. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:142
  1170. #: protocols/luci-proto-vti/htdocs/luci-static/resources/protocol/vti.js:59
  1171. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:132
  1172. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:132
  1173. msgid "Bind the tunnel to this interface (optional)."
  1174. msgstr ""
  1175. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:129
  1176. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:188
  1177. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:171
  1178. msgid "Bitrate"
  1179. msgstr ""
  1180. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:65
  1181. msgid "Bonding Mode"
  1182. msgstr ""
  1183. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:206
  1184. msgid "Bonding Policy"
  1185. msgstr ""
  1186. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:600
  1187. msgid "Both \"Relay from\" and \"Relay to address\" must be specified."
  1188. msgstr ""
  1189. #: modules/luci-base/htdocs/luci-static/resources/network.js:3029
  1190. #: modules/luci-compat/luasrc/model/network.lua:1421
  1191. msgid "Bridge"
  1192. msgstr ""
  1193. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:491
  1194. msgctxt "MACVLAN mode"
  1195. msgid "Bridge (Support direct communication between MAC VLANs)"
  1196. msgstr ""
  1197. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:393
  1198. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:471
  1199. msgid "Bridge VLAN filtering"
  1200. msgstr ""
  1201. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:398
  1202. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1489
  1203. msgid "Bridge device"
  1204. msgstr ""
  1205. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:392
  1206. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:470
  1207. msgid "Bridge port specific options"
  1208. msgstr ""
  1209. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:522
  1210. msgid "Bridge ports"
  1211. msgstr ""
  1212. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:641
  1213. msgid "Bridge traffic table \"%h\""
  1214. msgstr ""
  1215. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1678
  1216. msgid "Bridge unit number"
  1217. msgstr ""
  1218. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:558
  1219. msgid "Bring up empty bridge"
  1220. msgstr ""
  1221. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:574
  1222. msgid "Bring up on boot"
  1223. msgstr ""
  1224. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:558
  1225. msgid "Bring up the bridge interface even if no ports are attached"
  1226. msgstr ""
  1227. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1293
  1228. msgid "Broadcast"
  1229. msgstr ""
  1230. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:212
  1231. msgid "Broadcast policy (broadcast, 3)"
  1232. msgstr ""
  1233. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2884
  1234. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4248
  1235. msgid "Browse…"
  1236. msgstr ""
  1237. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:40
  1238. msgid "Buffered"
  1239. msgstr ""
  1240. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:403
  1241. msgid "By default, dnsmasq caches A, AAAA, CNAME and SRV DNS record types."
  1242. msgstr ""
  1243. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:130
  1244. msgid ""
  1245. "CA certificate (PEM encoded; Use instead of system-wide store to verify the "
  1246. "gateway certificate."
  1247. msgstr ""
  1248. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:181
  1249. msgid "CA certificate; if empty it will be saved after the first connection."
  1250. msgstr ""
  1251. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:79
  1252. msgid "CHAP"
  1253. msgstr ""
  1254. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:7
  1255. msgid "CLAT configuration failed"
  1256. msgstr ""
  1257. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:937
  1258. msgid "CNAME"
  1259. msgstr ""
  1260. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:959
  1261. msgid "CNAME or fqdn"
  1262. msgstr ""
  1263. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:72
  1264. msgid "CPU usage (%)"
  1265. msgstr ""
  1266. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388
  1267. msgid "Cache"
  1268. msgstr ""
  1269. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:403
  1270. msgid "Cache arbitrary RR"
  1271. msgstr ""
  1272. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:43
  1273. msgid "Cached"
  1274. msgstr ""
  1275. #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:53
  1276. #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:53
  1277. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:21
  1278. msgid "Call failed"
  1279. msgstr ""
  1280. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1153
  1281. msgid "Can be hinted by adding 4 or 6 to the name."
  1282. msgstr ""
  1283. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:692
  1284. msgid ""
  1285. "Can be useful if ISP has IPv6 nameservers but does not provide IPv6 routing."
  1286. msgstr ""
  1287. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2976
  1288. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4219
  1289. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4738
  1290. #: modules/luci-compat/luasrc/view/cbi/delegator.htm:14
  1291. #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:52
  1292. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:174
  1293. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1221
  1294. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2294
  1295. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:128
  1296. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:297
  1297. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:209
  1298. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:472
  1299. msgid "Cancel"
  1300. msgstr "Cancel"
  1301. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:334
  1302. msgid "Cannot parse configuration: %s"
  1303. msgstr ""
  1304. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:568
  1305. msgctxt "Chain hook: forward"
  1306. msgid "Capture incoming packets addressed to other hosts"
  1307. msgstr ""
  1308. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:560
  1309. msgctxt "Chain hook: prerouting"
  1310. msgid "Capture incoming packets before any routing decision"
  1311. msgstr ""
  1312. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:564
  1313. msgctxt "Chain hook: input"
  1314. msgid "Capture incoming packets routed to the local system"
  1315. msgstr ""
  1316. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:576
  1317. msgctxt "Chain hook: postrouting"
  1318. msgid "Capture outgoing packets after any routing decision"
  1319. msgstr ""
  1320. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:572
  1321. msgctxt "Chain hook: output"
  1322. msgid "Capture outgoing packets originating from the local system"
  1323. msgstr ""
  1324. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:556
  1325. msgctxt "Chain hook: ingress"
  1326. msgid "Capture packets directly after the NIC received them"
  1327. msgstr ""
  1328. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:17
  1329. msgid "Category"
  1330. msgstr ""
  1331. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:114
  1332. msgid "Cell ID"
  1333. msgstr ""
  1334. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:113
  1335. msgid "Cell Location"
  1336. msgstr ""
  1337. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:167
  1338. #: protocols/luci-proto-modemmanager/root/usr/share/luci/menu.d/luci-proto-modemmanager.json:3
  1339. msgid "Cellular Network"
  1340. msgstr ""
  1341. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1801
  1342. msgid "Certificate constraint (Domain)"
  1343. msgstr ""
  1344. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1798
  1345. msgid "Certificate constraint (SAN)"
  1346. msgstr ""
  1347. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1795
  1348. msgid "Certificate constraint (Subject)"
  1349. msgstr ""
  1350. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1804
  1351. msgid "Certificate constraint (Wildcard)"
  1352. msgstr ""
  1353. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1795
  1354. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1853
  1355. msgid ""
  1356. "Certificate constraint substring - e.g. /CN=wifi.mycompany.com<br />See "
  1357. "`logread -f` during handshake for actual values"
  1358. msgstr ""
  1359. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1801
  1360. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1859
  1361. msgid ""
  1362. "Certificate constraint(s) against DNS SAN values (if available)<br />or "
  1363. "Subject CN (exact match)"
  1364. msgstr ""
  1365. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1804
  1366. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1862
  1367. msgid ""
  1368. "Certificate constraint(s) against DNS SAN values (if available)<br />or "
  1369. "Subject CN (suffix match)"
  1370. msgstr ""
  1371. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1798
  1372. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1856
  1373. msgid ""
  1374. "Certificate constraint(s) via Subject Alternate Name values<br />(supported "
  1375. "attributes: EMAIL, DNS, URI) - e.g. DNS:wifi.mycompany.com"
  1376. msgstr ""
  1377. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:54
  1378. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:57
  1379. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:212
  1380. msgid "Chain"
  1381. msgstr ""
  1382. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:580
  1383. msgctxt "Yet unknown nftables chain hook"
  1384. msgid "Chain hook \"%h\""
  1385. msgstr ""
  1386. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4466
  1387. msgid "Changes"
  1388. msgstr ""
  1389. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4733
  1390. msgid ""
  1391. "Changes have been made to the existing connection via \"%h\". This could "
  1392. "inhibit access to this device. Any IP change requires <strong>connecting to "
  1393. "the new IP</strong> within %d seconds to retain the changes."
  1394. msgstr ""
  1395. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4808
  1396. msgid "Changes have been reverted."
  1397. msgstr ""
  1398. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:46
  1399. msgid "Changes the administrator password for accessing the device"
  1400. msgstr ""
  1401. #: modules/luci-compat/luasrc/view/cbi/wireless_modefreq.htm:190
  1402. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:128
  1403. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:184
  1404. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:571
  1405. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1971
  1406. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:444
  1407. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:170
  1408. msgid "Channel"
  1409. msgstr ""
  1410. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:412
  1411. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:105
  1412. msgid "Channel Analysis"
  1413. msgstr ""
  1414. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:445
  1415. msgid "Channel Width"
  1416. msgstr ""
  1417. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:174
  1418. msgid "Check filesystems before mount"
  1419. msgstr ""
  1420. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2254
  1421. msgid "Check this option to delete the existing networks from this radio."
  1422. msgstr ""
  1423. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:110
  1424. msgid "Checking archive…"
  1425. msgstr ""
  1426. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:195
  1427. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:197
  1428. msgid "Checking image…"
  1429. msgstr ""
  1430. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:429
  1431. msgid "Choose mtdblock"
  1432. msgstr ""
  1433. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:579
  1434. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2284
  1435. msgid ""
  1436. "Choose the firewall zone you want to assign to this interface. Select "
  1437. "<em>unspecified</em> to remove the interface from the associated zone or "
  1438. "fill out the <em>custom</em> field to define a new zone and attach the "
  1439. "interface to it."
  1440. msgstr ""
  1441. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1085
  1442. msgid ""
  1443. "Choose the network(s) you want to attach to this wireless interface or fill "
  1444. "out the <em>custom</em> field to define a new network."
  1445. msgstr ""
  1446. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1296
  1447. msgid "Cipher"
  1448. msgstr ""
  1449. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:91
  1450. msgid "Cisco UDP encapsulation"
  1451. msgstr ""
  1452. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:393
  1453. msgid ""
  1454. "Click \"Generate archive\" to download a tar archive of the current "
  1455. "configuration files."
  1456. msgstr ""
  1457. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:426
  1458. msgid ""
  1459. "Click \"Save mtdblock\" to download specified mtdblock file. (NOTE: THIS "
  1460. "FEATURE IS FOR PROFESSIONALS! )"
  1461. msgstr ""
  1462. #: modules/luci-base/htdocs/luci-static/resources/network.js:3906
  1463. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1054
  1464. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1169
  1465. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:88
  1466. msgid "Client"
  1467. msgstr "Client"
  1468. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37
  1469. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:35
  1470. msgid "Client ID to send when requesting DHCP"
  1471. msgstr ""
  1472. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4485
  1473. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:173
  1474. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:179
  1475. msgid "Close"
  1476. msgstr "Close"
  1477. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:156
  1478. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:128
  1479. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:114
  1480. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:92
  1481. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:101
  1482. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:124
  1483. msgid ""
  1484. "Close inactive connection after the given amount of seconds, use 0 to "
  1485. "persist connection"
  1486. msgstr ""
  1487. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:44
  1488. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:63
  1489. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2418
  1490. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:394
  1491. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:356
  1492. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:359
  1493. #: themes/luci-theme-material/ucode/template/themes/material/header.ut:67
  1494. msgid "Collecting data..."
  1495. msgstr ""
  1496. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:250
  1497. msgid "Collisions seen"
  1498. msgstr ""
  1499. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:71
  1500. msgid "Command"
  1501. msgstr ""
  1502. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:401
  1503. msgid "Command OK"
  1504. msgstr ""
  1505. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:32
  1506. msgid "Command failed"
  1507. msgstr ""
  1508. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:73
  1509. msgid "Comment"
  1510. msgstr ""
  1511. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:182
  1512. msgid "Common name or numeric ID of the %s in which this route is found"
  1513. msgstr ""
  1514. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1942
  1515. msgid ""
  1516. "Complicates key reinstallation attacks on the client side by disabling "
  1517. "retransmission of EAPOL-Key frames that are used to install keys. This "
  1518. "workaround might cause interoperability issues and reduced robustness of key "
  1519. "negotiation especially in environments with heavy traffic load."
  1520. msgstr ""
  1521. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:101
  1522. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:106
  1523. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:103
  1524. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:108
  1525. msgid "Compute outgoing checksum (optional)."
  1526. msgstr ""
  1527. #: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:40
  1528. msgid "Config File"
  1529. msgstr ""
  1530. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4466
  1531. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:456
  1532. msgid "Configuration"
  1533. msgstr "Configuration"
  1534. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:675
  1535. msgid "Configuration Export"
  1536. msgstr ""
  1537. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4658
  1538. msgid "Configuration changes applied."
  1539. msgstr ""
  1540. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4596
  1541. msgid "Configuration changes have been rolled back!"
  1542. msgstr ""
  1543. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:63
  1544. msgid "Configuration failed"
  1545. msgstr ""
  1546. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1014
  1547. msgid ""
  1548. "Configures data rates based on the coverage cell density. Normal configures "
  1549. "basic rates to 6, 12, 24 Mbps if legacy 802.11b rates are not used else to "
  1550. "5.5, 11 Mbps. High configures basic rates to 12, 24 Mbps if legacy 802.11b "
  1551. "rates are not used else to the 11 Mbps rate. Very High configures 24 Mbps as "
  1552. "the basic rate. Supported rates lower than the minimum basic rate are not "
  1553. "offered."
  1554. msgstr ""
  1555. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:798
  1556. msgid ""
  1557. "Configures the default router advertisement in <abbr title=\"Router "
  1558. "Advertisement\">RA</abbr> messages."
  1559. msgstr ""
  1560. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:922
  1561. msgid ""
  1562. "Configures the minimum delegated prefix length assigned to a requesting "
  1563. "downstream router, potentially overriding a requested prefix length. If left "
  1564. "unspecified, the device will assign the smallest available prefix greater "
  1565. "than or equal to the requested prefix."
  1566. msgstr ""
  1567. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:786
  1568. msgid ""
  1569. "Configures the operation mode of the <abbr title=\"Router "
  1570. "Advertisement\">RA</abbr> service on this interface."
  1571. msgstr ""
  1572. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:911
  1573. msgid "Configures the operation mode of the DHCPv6 service on this interface."
  1574. msgstr ""
  1575. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:977
  1576. msgid ""
  1577. "Configures the operation mode of the NDP proxy service on this interface."
  1578. msgstr ""
  1579. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1377
  1580. msgid "Configure…"
  1581. msgstr ""
  1582. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:162
  1583. msgid "Confirm disconnect"
  1584. msgstr ""
  1585. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:55
  1586. msgid "Confirmation"
  1587. msgstr ""
  1588. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:98
  1589. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:101
  1590. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:47
  1591. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:232
  1592. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:42
  1593. msgid "Connected"
  1594. msgstr ""
  1595. #: modules/luci-base/htdocs/luci-static/resources/network.js:9
  1596. #: modules/luci-compat/luasrc/model/network.lua:27
  1597. msgid "Connection attempt failed"
  1598. msgstr ""
  1599. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:8
  1600. msgid "Connection attempt failed."
  1601. msgstr ""
  1602. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:777
  1603. msgid "Connection endpoint"
  1604. msgstr ""
  1605. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:411
  1606. msgid "Connection lost"
  1607. msgstr ""
  1608. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:322
  1609. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:160
  1610. msgid "Connections"
  1611. msgstr ""
  1612. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4732
  1613. msgid "Connectivity change"
  1614. msgstr ""
  1615. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:31
  1616. msgctxt "nft ct state"
  1617. msgid "Conntrack state"
  1618. msgstr ""
  1619. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:33
  1620. msgctxt "nft ct status"
  1621. msgid "Conntrack status"
  1622. msgstr ""
  1623. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:383
  1624. msgid "Consider the slave up when all ARP IP targets are reachable (all, 1)"
  1625. msgstr ""
  1626. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:382
  1627. msgid "Consider the slave up when any ARP IP target is reachable (any, 0)"
  1628. msgstr ""
  1629. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/crontab.js:18
  1630. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:370
  1631. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:54
  1632. msgid "Contents have been saved."
  1633. msgstr ""
  1634. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:388
  1635. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:422
  1636. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:861
  1637. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:132
  1638. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:271
  1639. msgid "Continue"
  1640. msgstr ""
  1641. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:97
  1642. msgctxt "nft jump action"
  1643. msgid "Continue in <strong><a href=\"#%q.%q\">%h</a></strong>"
  1644. msgstr ""
  1645. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:129
  1646. msgid "Continue in calling chain"
  1647. msgstr ""
  1648. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:550
  1649. msgctxt "Chain policy: accept"
  1650. msgid "Continue processing unmatched packets"
  1651. msgstr ""
  1652. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4632
  1653. msgid ""
  1654. "Could not regain access to the device after applying the configuration "
  1655. "changes. You might need to reconnect if you modified network related "
  1656. "settings such as the IP address or wireless security credentials."
  1657. msgstr ""
  1658. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:189
  1659. msgid "Country"
  1660. msgstr ""
  1661. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1011
  1662. msgid "Country Code"
  1663. msgstr ""
  1664. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1014
  1665. msgid "Coverage cell density"
  1666. msgstr ""
  1667. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:579
  1668. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2284
  1669. msgid "Create / Assign firewall-zone"
  1670. msgstr ""
  1671. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1253
  1672. msgid "Create interface"
  1673. msgstr ""
  1674. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:191
  1675. msgid "Critical"
  1676. msgstr ""
  1677. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:195
  1678. msgid "Cron Log Level"
  1679. msgstr ""
  1680. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:45
  1681. msgid "Cross Pass (Japan only)"
  1682. msgstr ""
  1683. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:651
  1684. msgid "Current power"
  1685. msgstr ""
  1686. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:28
  1687. msgctxt "nft meta hour"
  1688. msgid "Current time"
  1689. msgstr ""
  1690. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:29
  1691. msgctxt "nft meta day"
  1692. msgid "Current weekday"
  1693. msgstr ""
  1694. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:585
  1695. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:587
  1696. #: modules/luci-compat/luasrc/view/cbi/network_ifacelist.htm:51
  1697. #: modules/luci-compat/luasrc/view/cbi/network_ifacelist.htm:53
  1698. #: modules/luci-compat/luasrc/view/cbi/network_ifacelist.htm:82
  1699. #: modules/luci-compat/luasrc/view/cbi/network_ifacelist.htm:83
  1700. msgid "Custom Interface"
  1701. msgstr ""
  1702. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:412
  1703. msgid ""
  1704. "Custom files (certificates, scripts) may remain on the system. To prevent "
  1705. "this, perform a factory-reset first."
  1706. msgstr ""
  1707. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/timer.js:6
  1708. msgid "Custom flash interval (kernel: timer)"
  1709. msgstr ""
  1710. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:59
  1711. msgid ""
  1712. "Customizes the behaviour of the device <abbr title=\"Light Emitting "
  1713. "Diode\">LED</abbr>s if possible."
  1714. msgstr ""
  1715. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:740
  1716. msgid "DAD transmits"
  1717. msgstr ""
  1718. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1581
  1719. msgid "DAE-Client"
  1720. msgstr ""
  1721. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1586
  1722. msgid "DAE-Port"
  1723. msgstr ""
  1724. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1592
  1725. msgid "DAE-Secret"
  1726. msgstr ""
  1727. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:900
  1728. msgid "DHCP Options"
  1729. msgstr ""
  1730. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:473
  1731. msgid "DHCP Server"
  1732. msgstr ""
  1733. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:346
  1734. #: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:62
  1735. msgid "DHCP and DNS"
  1736. msgstr ""
  1737. #: modules/luci-base/htdocs/luci-static/resources/network.js:2091
  1738. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:16
  1739. #: modules/luci-compat/luasrc/model/network.lua:969
  1740. msgid "DHCP client"
  1741. msgstr ""
  1742. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:706
  1743. msgid "DHCP-Options"
  1744. msgstr ""
  1745. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1004
  1746. msgid ""
  1747. "DHCPv4 <code>leasetime</code> is used as limit and preferred lifetime of the "
  1748. "IPv6 prefix."
  1749. msgstr ""
  1750. #: modules/luci-compat/luasrc/model/network/proto_dhcpv6.lua:7
  1751. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:7
  1752. msgid "DHCPv6 client"
  1753. msgstr ""
  1754. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:952
  1755. msgctxt "DHCPv6 option 56. RFC5908 link"
  1756. msgid "DHCPv6 option 56. %s."
  1757. msgstr ""
  1758. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:910
  1759. msgid "DHCPv6-Service"
  1760. msgstr ""
  1761. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:40
  1762. msgid "DNS"
  1763. msgstr "DNS (Domain Name System)"
  1764. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:469
  1765. msgid "DNS Forwards"
  1766. msgstr ""
  1767. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:390
  1768. msgid "DNS Records"
  1769. msgstr ""
  1770. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:788
  1771. msgid "DNS Servers"
  1772. msgstr ""
  1773. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:790
  1774. msgid "DNS query port"
  1775. msgstr ""
  1776. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1024
  1777. msgid "DNS search domains"
  1778. msgstr ""
  1779. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:783
  1780. msgid "DNS server port"
  1781. msgstr ""
  1782. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:788
  1783. msgid ""
  1784. "DNS servers for the remote clients using this tunnel to your openwrt device. "
  1785. "Some wireguard clients require this to be set."
  1786. msgstr ""
  1787. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:279
  1788. msgid "DNS setting is invalid"
  1789. msgstr ""
  1790. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1029
  1791. msgid "DNS weight"
  1792. msgstr ""
  1793. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:33
  1794. msgid "DNS-Label / FQDN"
  1795. msgstr ""
  1796. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:938
  1797. msgid "DNS-RR"
  1798. msgstr ""
  1799. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:391
  1800. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:718
  1801. msgid "DNSSEC"
  1802. msgstr ""
  1803. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:723
  1804. msgid "DNSSEC check unsigned"
  1805. msgstr ""
  1806. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:99
  1807. msgid "DPD Idle Timeout"
  1808. msgstr ""
  1809. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:41
  1810. msgid "DS-Lite AFTR address"
  1811. msgstr ""
  1812. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1581
  1813. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:37
  1814. msgid "DSL"
  1815. msgstr ""
  1816. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:21
  1817. msgid "DSL Status"
  1818. msgstr ""
  1819. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1620
  1820. msgid "DSL line mode"
  1821. msgstr ""
  1822. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1236
  1823. msgid "DTIM Interval"
  1824. msgstr ""
  1825. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:59
  1826. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1255
  1827. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:136
  1828. msgid "DUID"
  1829. msgstr ""
  1830. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:29
  1831. msgid "Data Rate"
  1832. msgstr ""
  1833. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:76
  1834. msgid "Data Received"
  1835. msgstr ""
  1836. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:77
  1837. #, fuzzy
  1838. msgid "Data Transmitted"
  1839. msgstr "Transmit Power"
  1840. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:186
  1841. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:197
  1842. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:159
  1843. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:346
  1844. msgid "Debug"
  1845. msgstr ""
  1846. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/ipip6.js:70
  1847. msgid "Default gateway"
  1848. msgstr "Default gateway"
  1849. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:370
  1850. msgctxt "Dnsmasq instance"
  1851. msgid "Default instance"
  1852. msgstr ""
  1853. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:797
  1854. msgid "Default router"
  1855. msgstr ""
  1856. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/none.js:12
  1857. msgid "Default state"
  1858. msgstr ""
  1859. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1153
  1860. msgid "Defaults to IPv4+6."
  1861. msgstr ""
  1862. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1148
  1863. msgid "Defaults to fw4."
  1864. msgstr ""
  1865. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:706
  1866. msgid ""
  1867. "Define additional DHCP options, for example "
  1868. "\"<code>6,192.168.2.1,192.168.2.2</code>\" which advertises different DNS "
  1869. "servers to clients."
  1870. msgstr ""
  1871. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:516
  1872. msgid ""
  1873. "Defines a mapping of Linux internal packet priority to VLAN header priority "
  1874. "but for outgoing frames"
  1875. msgstr ""
  1876. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:510
  1877. msgid ""
  1878. "Defines a mapping of VLAN header priority to the Linux internal packet "
  1879. "priority on incoming frames"
  1880. msgstr ""
  1881. #: protocols/luci-proto-external/htdocs/luci-static/resources/protocol/external.js:34
  1882. msgid "Delay"
  1883. msgstr ""
  1884. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1053
  1885. msgid "Delegate IPv6 prefixes"
  1886. msgstr ""
  1887. #: modules/luci-base/htdocs/luci-static/resources/form.js:2312
  1888. #: modules/luci-base/htdocs/luci-static/resources/form.js:2698
  1889. #: modules/luci-base/htdocs/luci-static/resources/form.js:2702
  1890. #: modules/luci-base/htdocs/luci-static/resources/form.js:3529
  1891. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2945
  1892. #: modules/luci-compat/luasrc/view/cbi/nsection.htm:11
  1893. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:162
  1894. #: modules/luci-compat/luasrc/view/cbi/tsection.htm:16
  1895. msgid "Delete"
  1896. msgstr ""
  1897. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:205
  1898. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:211
  1899. msgid "Delete key"
  1900. msgstr ""
  1901. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2843
  1902. msgid "Delete request failed: %s"
  1903. msgstr ""
  1904. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:966
  1905. msgid "Delete this network"
  1906. msgstr ""
  1907. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1236
  1908. msgid "Delivery Traffic Indication Message Interval"
  1909. msgstr ""
  1910. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:342
  1911. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:139
  1912. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:196
  1913. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:196
  1914. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:505
  1915. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:53
  1916. msgid "Description"
  1917. msgstr ""
  1918. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2937
  1919. msgid "Deselect"
  1920. msgstr ""
  1921. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:237
  1922. msgid "Design"
  1923. msgstr ""
  1924. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:714
  1925. msgid "Designated master"
  1926. msgstr ""
  1927. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:165
  1928. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:389
  1929. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:71
  1930. msgid "Destination"
  1931. msgstr ""
  1932. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:44
  1933. msgctxt "nft ip daddr"
  1934. msgid "Destination IP"
  1935. msgstr ""
  1936. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:48
  1937. msgctxt "nft ip6 daddr"
  1938. msgid "Destination IPv6"
  1939. msgstr ""
  1940. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:52
  1941. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:52
  1942. msgid "Destination port"
  1943. msgstr ""
  1944. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:46
  1945. msgctxt "nft ip dport"
  1946. msgid "Destination port"
  1947. msgstr ""
  1948. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:68
  1949. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:174
  1950. msgid "Destination zone"
  1951. msgstr ""
  1952. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:76
  1953. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:201
  1954. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:43
  1955. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:46
  1956. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:83
  1957. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:564
  1958. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1203
  1959. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1505
  1960. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:46
  1961. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:196
  1962. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:222
  1963. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:13
  1964. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:248
  1965. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:281
  1966. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:355
  1967. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:391
  1968. #: protocols/luci-proto-external/htdocs/luci-static/resources/protocol/external.js:29
  1969. msgid "Device"
  1970. msgstr "Device"
  1971. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:980
  1972. msgid "Device Configuration"
  1973. msgstr ""
  1974. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:88
  1975. msgid "Device Identifier"
  1976. msgstr ""
  1977. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:132
  1978. msgid "Device is not active"
  1979. msgstr ""
  1980. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:242
  1981. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:717
  1982. msgid "Device is restarting…"
  1983. msgstr ""
  1984. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:495
  1985. msgid "Device name"
  1986. msgstr ""
  1987. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:10
  1988. msgid "Device not managed by ModemManager."
  1989. msgstr ""
  1990. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1480
  1991. msgid "Device not present"
  1992. msgstr ""
  1993. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:395
  1994. msgid "Device type"
  1995. msgstr ""
  1996. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4631
  1997. msgid "Device unreachable!"
  1998. msgstr ""
  1999. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:53
  2000. msgid "Device unreachable! Still waiting for device..."
  2001. msgstr ""
  2002. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1328
  2003. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:287
  2004. msgid "Devices"
  2005. msgstr ""
  2006. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:389
  2007. msgid "Devices &amp; Ports"
  2008. msgstr ""
  2009. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:159
  2010. #: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:76
  2011. msgid "Diagnostics"
  2012. msgstr ""
  2013. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:114
  2014. msgid "Dial number"
  2015. msgstr ""
  2016. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:140
  2017. msgid "Dir"
  2018. msgstr ""
  2019. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2739
  2020. msgid "Directory"
  2021. msgstr ""
  2022. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1570
  2023. msgid ""
  2024. "Directs packet flows to specific CPUs where the local socket owner listens "
  2025. "(the local service)."
  2026. msgstr ""
  2027. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:119
  2028. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:209
  2029. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:958
  2030. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:998
  2031. msgid "Disable"
  2032. msgstr ""
  2033. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:665
  2034. msgid ""
  2035. "Disable <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</abbr> for "
  2036. "this interface."
  2037. msgstr ""
  2038. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:174
  2039. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:378
  2040. msgid "Disable DNS lookups"
  2041. msgstr ""
  2042. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:93
  2043. msgid "Disable Encryption"
  2044. msgstr ""
  2045. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1246
  2046. msgid "Disable Inactivity Polling"
  2047. msgstr ""
  2048. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:571
  2049. msgid "Disable this interface"
  2050. msgstr ""
  2051. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:956
  2052. msgid "Disable this network"
  2053. msgstr ""
  2054. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1562
  2055. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1015
  2056. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1548
  2057. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1741
  2058. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1889
  2059. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1923
  2060. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:13
  2061. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:65
  2062. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:121
  2063. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:108
  2064. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:117
  2065. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:114
  2066. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:52
  2067. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:97
  2068. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:83
  2069. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:57
  2070. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:70
  2071. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:500
  2072. msgid "Disabled"
  2073. msgstr ""
  2074. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:529
  2075. msgctxt "Label indicating that WireGuard peer is disabled"
  2076. msgid "Disabled"
  2077. msgstr ""
  2078. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1260
  2079. msgid "Disassociate On Low Acknowledgement"
  2080. msgstr ""
  2081. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:509
  2082. msgid ""
  2083. "Discard also upstream responses containing {rfc_4193_link}, Link-Local and "
  2084. "private IPv4-Mapped {rfc_4291_link} IPv6 Addresses."
  2085. msgstr ""
  2086. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:508
  2087. msgid "Discard upstream responses containing {rfc_1918_link} addresses."
  2088. msgstr ""
  2089. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:184
  2090. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:783
  2091. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:336
  2092. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:351
  2093. msgid "Disconnect"
  2094. msgstr ""
  2095. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:64
  2096. msgid "Disconnection attempt failed"
  2097. msgstr ""
  2098. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:13
  2099. msgid "Disconnection attempt failed."
  2100. msgstr ""
  2101. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:59
  2102. msgid "Disk space"
  2103. msgstr ""
  2104. #: modules/luci-base/htdocs/luci-static/resources/form.js:613
  2105. #: modules/luci-base/htdocs/luci-static/resources/form.js:2980
  2106. #: modules/luci-base/htdocs/luci-static/resources/form.js:3213
  2107. #: modules/luci-base/htdocs/luci-static/resources/form.js:3227
  2108. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3750
  2109. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4602
  2110. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1996
  2111. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:360
  2112. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:45
  2113. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:66
  2114. msgid "Dismiss"
  2115. msgstr ""
  2116. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1020
  2117. msgid "Distance Optimization"
  2118. msgstr ""
  2119. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1020
  2120. msgid ""
  2121. "Distance to farthest network member in meters. Set only for distances above "
  2122. "one kilometer; otherwise it is harmful."
  2123. msgstr ""
  2124. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:75
  2125. msgid "Distributed ARP Table"
  2126. msgstr ""
  2127. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1283
  2128. msgid ""
  2129. "Dnsmasq instance to which this DHCP host section is bound. If unspecified, "
  2130. "the section is valid for all dnsmasq instances."
  2131. msgstr ""
  2132. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:919
  2133. msgid ""
  2134. "Dnsmasq instance to which this boot section is bound. If unspecified, the "
  2135. "section is valid for all dnsmasq instances."
  2136. msgstr ""
  2137. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:347
  2138. msgid ""
  2139. "Dnsmasq is a lightweight <abbr title=\"Dynamic Host Configuration "
  2140. "Protocol\">DHCP</abbr> server and <abbr title=\"Domain Name System\">DNS</"
  2141. "abbr> forwarder."
  2142. msgstr ""
  2143. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:731
  2144. msgid "Do not cache negative replies, e.g. for non-existent domains."
  2145. msgstr ""
  2146. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:86
  2147. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:91
  2148. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:88
  2149. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:93
  2150. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:70
  2151. msgid "Do not create host route to peer (optional)."
  2152. msgstr ""
  2153. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:551
  2154. msgid "Do not listen on the specified interfaces."
  2155. msgstr ""
  2156. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:914
  2157. msgid "Do not offer DHCPv6 service on this interface."
  2158. msgstr ""
  2159. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:980
  2160. msgid ""
  2161. "Do not proxy any <abbr title=\"Neighbour Discovery Protocol\">NDP</abbr> "
  2162. "packets."
  2163. msgstr ""
  2164. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:32
  2165. msgid "Do not send a Release when restarting"
  2166. msgstr ""
  2167. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:25
  2168. msgid "Do not send a hostname"
  2169. msgstr ""
  2170. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:789
  2171. msgid ""
  2172. "Do not send any <abbr title=\"Router Advertisement, ICMPv6 Type 134\">RA</"
  2173. "abbr> messages on this interface."
  2174. msgstr ""
  2175. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2829
  2176. msgid "Do you really want to delete \"%s\" ?"
  2177. msgstr ""
  2178. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:206
  2179. msgid "Do you really want to delete the following SSH key?"
  2180. msgstr ""
  2181. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:94
  2182. msgid "Do you really want to erase all settings?"
  2183. msgstr ""
  2184. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2827
  2185. msgid "Do you really want to recursively delete the directory \"%s\" ?"
  2186. msgstr ""
  2187. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:97
  2188. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:991
  2189. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1017
  2190. msgid "Domain"
  2191. msgstr ""
  2192. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:414
  2193. msgid "Domain required"
  2194. msgstr ""
  2195. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:522
  2196. msgid "Domain whitelist"
  2197. msgstr ""
  2198. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:83
  2199. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:88
  2200. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:67
  2201. msgid "Don't Fragment"
  2202. msgstr ""
  2203. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:152
  2204. msgid "Down"
  2205. msgstr ""
  2206. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:408
  2207. msgid "Down Delay"
  2208. msgstr ""
  2209. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2941
  2210. msgid "Download"
  2211. msgstr ""
  2212. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:396
  2213. msgid "Download backup"
  2214. msgstr ""
  2215. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3017
  2216. msgid "Download failed: %s"
  2217. msgstr ""
  2218. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:434
  2219. msgid "Download mtdblock"
  2220. msgstr ""
  2221. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1625
  2222. msgid "Downstream SNR offset"
  2223. msgstr ""
  2224. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:422
  2225. msgid ""
  2226. "Drag or paste a valid <em>*.conf</em> file below to configure the local "
  2227. "WireGuard interface."
  2228. msgstr ""
  2229. #: modules/luci-base/htdocs/luci-static/resources/form.js:2656
  2230. msgid "Drag to reorder"
  2231. msgstr ""
  2232. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:347
  2233. msgid "Drop Duplicate Frames"
  2234. msgstr ""
  2235. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:710
  2236. msgid ""
  2237. "Drop all gratuitous ARP frames, for example if there’s a known good ARP "
  2238. "proxy on the network and such frames need not be used or in the case of "
  2239. "802.11, must not be used to prevent attacks."
  2240. msgstr ""
  2241. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:732
  2242. msgid ""
  2243. "Drop all unsolicited neighbor advertisements, for example if there’s a known "
  2244. "good NA proxy on the network and such frames need not be used or in the case "
  2245. "of 802.11, must not be used to prevent attacks."
  2246. msgstr ""
  2247. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:710
  2248. msgid "Drop gratuitous ARP"
  2249. msgstr ""
  2250. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:786
  2251. msgid "Drop layer 2 multicast frames containing IPv4 unicast packets."
  2252. msgstr ""
  2253. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:790
  2254. msgid "Drop layer 2 multicast frames containing IPv6 unicast packets."
  2255. msgstr ""
  2256. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:786
  2257. msgid "Drop nested IPv4 unicast"
  2258. msgstr ""
  2259. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:790
  2260. msgid "Drop nested IPv6 unicast"
  2261. msgstr ""
  2262. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:96
  2263. msgctxt "nft drop action"
  2264. msgid "Drop packet"
  2265. msgstr ""
  2266. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:546
  2267. msgctxt "Chain policy: drop"
  2268. msgid "Drop unmatched packets"
  2269. msgstr ""
  2270. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:732
  2271. msgid "Drop unsolicited NA"
  2272. msgstr ""
  2273. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:12
  2274. msgid "Dropbear Instance"
  2275. msgstr ""
  2276. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:10
  2277. msgid ""
  2278. "Dropbear offers <abbr title=\"Secure Shell\">SSH</abbr> network shell access "
  2279. "and an integrated <abbr title=\"Secure Copy\">SCP</abbr> server"
  2280. msgstr ""
  2281. #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:14
  2282. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:11
  2283. msgid "Dual-Stack Lite (RFC6333)"
  2284. msgstr ""
  2285. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:437
  2286. msgid "Dump cache on SIGUSR1, include requesting IP."
  2287. msgstr ""
  2288. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:682
  2289. msgid "Dynamic <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</abbr>"
  2290. msgstr ""
  2291. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1581
  2292. msgid "Dynamic Authorization Extension client."
  2293. msgstr ""
  2294. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1586
  2295. msgid "Dynamic Authorization Extension port."
  2296. msgstr ""
  2297. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1592
  2298. msgid "Dynamic Authorization Extension secret."
  2299. msgstr ""
  2300. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:60
  2301. msgid "Dynamic tunnel"
  2302. msgstr ""
  2303. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:682
  2304. msgid ""
  2305. "Dynamically allocate DHCP addresses for clients. If disabled, only clients "
  2306. "having static leases will be served."
  2307. msgstr ""
  2308. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1574
  2309. msgid "E.g. <code>br-vlan</code> or <code>brvlan</code>."
  2310. msgstr ""
  2311. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1564
  2312. msgid "E.g. eth0, eth1"
  2313. msgstr ""
  2314. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:67
  2315. msgid "EA-bits length"
  2316. msgstr ""
  2317. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1773
  2318. msgid "EAP-Method"
  2319. msgstr ""
  2320. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1555
  2321. msgid "Each STA is assigned its own AP_VLAN interface."
  2322. msgstr ""
  2323. #: modules/luci-base/htdocs/luci-static/resources/form.js:2676
  2324. #: modules/luci-base/htdocs/luci-static/resources/form.js:2679
  2325. #: modules/luci-base/htdocs/luci-static/resources/form.js:3392
  2326. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:154
  2327. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:160
  2328. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:485
  2329. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:963
  2330. msgid "Edit"
  2331. msgstr ""
  2332. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1132
  2333. msgid "Edit IP set"
  2334. msgstr ""
  2335. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:878
  2336. msgid "Edit PXE/TFTP/BOOTP Host"
  2337. msgstr ""
  2338. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:190
  2339. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:190
  2340. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:212
  2341. msgid "Edit peer"
  2342. msgstr ""
  2343. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1173
  2344. msgid "Edit static lease"
  2345. msgstr ""
  2346. #: modules/luci-compat/luasrc/view/cbi/error.htm:13
  2347. msgid ""
  2348. "Edit the raw configuration data above to fix any error and hit \"Save\" to "
  2349. "reload the page."
  2350. msgstr ""
  2351. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:961
  2352. msgid "Edit this network"
  2353. msgstr ""
  2354. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:912
  2355. msgid "Edit wireless network"
  2356. msgstr ""
  2357. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:65
  2358. msgctxt "nft rt mtu"
  2359. msgid "Effective route MTU"
  2360. msgstr ""
  2361. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:516
  2362. msgid "Egress QoS mapping"
  2363. msgstr ""
  2364. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:12
  2365. msgctxt "nft meta oif"
  2366. msgid "Egress device id"
  2367. msgstr ""
  2368. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:10
  2369. msgctxt "nft meta oifname"
  2370. msgid "Egress device name"
  2371. msgstr ""
  2372. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:193
  2373. msgid "Emergency"
  2374. msgstr ""
  2375. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:119
  2376. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:119
  2377. msgid "Emits netlink IP ADDR miss notifications"
  2378. msgstr ""
  2379. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:113
  2380. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:113
  2381. msgid "Emits netlink LLADDR miss notifications"
  2382. msgstr ""
  2383. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:958
  2384. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:998
  2385. msgid "Enable"
  2386. msgstr "Aktivera"
  2387. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:500
  2388. msgid "Enable / Disable peer. Restart wireguard interface to apply changes."
  2389. msgstr ""
  2390. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:592
  2391. msgid ""
  2392. "Enable <abbr title=\"Internet Group Management Protocol\">IGMP</abbr> "
  2393. "snooping"
  2394. msgstr ""
  2395. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:17
  2396. msgid "Enable <abbr title=\"Secure Shell\">SSH</abbr> service instance"
  2397. msgstr ""
  2398. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:572
  2399. msgid "Enable <abbr title=\"Spanning Tree Protocol\">STP</abbr>"
  2400. msgstr ""
  2401. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:809
  2402. msgid "Enable <abbr title=\"Stateless Address Auto Config\">SLAAC</abbr>"
  2403. msgstr ""
  2404. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:174
  2405. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:372
  2406. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:378
  2407. msgid "Enable DNS lookups"
  2408. msgstr ""
  2409. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:153
  2410. msgid "Enable Debugmode"
  2411. msgstr ""
  2412. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:299
  2413. msgid "Enable Dynamic Shuffling Of Flows"
  2414. msgstr ""
  2415. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:60
  2416. msgid "Enable HE.net dynamic endpoint update"
  2417. msgstr ""
  2418. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:725
  2419. msgid "Enable IPv6"
  2420. msgstr ""
  2421. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:101
  2422. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:108
  2423. msgid "Enable IPv6 negotiation"
  2424. msgstr ""
  2425. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:49
  2426. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:94
  2427. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:80
  2428. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:54
  2429. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:67
  2430. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:93
  2431. msgid "Enable IPv6 negotiation on the PPP link"
  2432. msgstr ""
  2433. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:728
  2434. msgid "Enable IPv6 segment routing"
  2435. msgstr ""
  2436. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:17
  2437. msgid "Enable Instance"
  2438. msgstr ""
  2439. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:194
  2440. msgid "Enable Jumbo Frame passthrough"
  2441. msgstr ""
  2442. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:763
  2443. msgid "Enable MAC address learning"
  2444. msgstr ""
  2445. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:257
  2446. msgid "Enable NTP client"
  2447. msgstr ""
  2448. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1478
  2449. msgid "Enable Private PSK (PPSK)"
  2450. msgstr ""
  2451. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:96
  2452. msgid "Enable Single DES"
  2453. msgstr ""
  2454. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:854
  2455. msgid "Enable TFTP server"
  2456. msgstr ""
  2457. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:795
  2458. msgid "Enable VLAN filtering"
  2459. msgstr ""
  2460. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:184
  2461. msgid "Enable VLAN functionality"
  2462. msgstr ""
  2463. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1946
  2464. msgid "Enable WPS pushbutton, requires WPA(2)-PSK/WPA3-SAE"
  2465. msgstr ""
  2466. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:319
  2467. msgid "Enable Yggdrasil Jumper"
  2468. msgstr ""
  2469. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/uhttpd.js:14
  2470. msgid ""
  2471. "Enable automatic redirection of <abbr title=\"Hypertext Transfer "
  2472. "Protocol\">HTTP</abbr> requests to <abbr title=\"Hypertext Transfer Protocol "
  2473. "Secure\">HTTPS</abbr> port."
  2474. msgstr ""
  2475. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1053
  2476. msgid ""
  2477. "Enable downstream delegation of IPv6 prefixes available on this interface"
  2478. msgstr ""
  2479. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1942
  2480. msgid "Enable key reinstallation (KRACK) countermeasures"
  2481. msgstr ""
  2482. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:189
  2483. msgid "Enable learning and aging"
  2484. msgstr ""
  2485. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:200
  2486. msgid "Enable mirroring of incoming packets"
  2487. msgstr ""
  2488. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:201
  2489. msgid "Enable mirroring of outgoing packets"
  2490. msgstr ""
  2491. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:782
  2492. msgid "Enable multicast fast leave"
  2493. msgstr ""
  2494. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:601
  2495. msgid "Enable multicast querier"
  2496. msgstr ""
  2497. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:746
  2498. msgid "Enable multicast support"
  2499. msgstr ""
  2500. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:250
  2501. msgid ""
  2502. "Enable node info privacy so that only items specified in \"Node info\" are "
  2503. "sent back. Otherwise defaults including the platform, architecture and "
  2504. "Yggdrasil version are included."
  2505. msgstr ""
  2506. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1561
  2507. msgid "Enable packet steering across CPUs. May help or hinder network speed."
  2508. msgstr ""
  2509. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:676
  2510. msgid "Enable promiscuous mode"
  2511. msgstr ""
  2512. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:169
  2513. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:169
  2514. msgid "Enable rx checksum"
  2515. msgstr ""
  2516. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:89
  2517. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:94
  2518. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:91
  2519. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:96
  2520. msgid "Enable support for multicast traffic (optional)."
  2521. msgstr ""
  2522. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:83
  2523. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:88
  2524. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:67
  2525. msgid "Enable the DF (Don't Fragment) flag of the encapsulating packets."
  2526. msgstr ""
  2527. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:855
  2528. msgid "Enable the built-in single-instance TFTP server."
  2529. msgstr ""
  2530. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:956
  2531. msgid "Enable this network"
  2532. msgstr ""
  2533. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:33
  2534. msgid "Enable to minimise the chance of prefix change after a restart"
  2535. msgstr ""
  2536. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:173
  2537. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:173
  2538. msgid "Enable tx checksum"
  2539. msgstr ""
  2540. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:766
  2541. msgid "Enable unicast flooding"
  2542. msgstr ""
  2543. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1563
  2544. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1742
  2545. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1924
  2546. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:243
  2547. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:351
  2548. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:65
  2549. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:109
  2550. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:118
  2551. msgid "Enabled"
  2552. msgstr ""
  2553. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1564
  2554. msgid "Enabled (all CPUs)"
  2555. msgstr ""
  2556. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1925
  2557. msgid "Enabled (workaround mode)"
  2558. msgstr ""
  2559. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:592
  2560. msgid "Enables IGMP snooping on this bridge"
  2561. msgstr ""
  2562. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1662
  2563. msgid ""
  2564. "Enables fast roaming among access points that belong to the same Mobility "
  2565. "Domain"
  2566. msgstr ""
  2567. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:100
  2568. msgid ""
  2569. "Enables more efficient, group aware multicast forwarding infrastructure in "
  2570. "batman-adv."
  2571. msgstr ""
  2572. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:572
  2573. msgid "Enables the Spanning Tree Protocol on this bridge"
  2574. msgstr ""
  2575. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:61
  2576. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/ipip6.js:62
  2577. msgid "Encapsulation limit"
  2578. msgstr ""
  2579. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1615
  2580. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1673
  2581. msgid "Encapsulation mode"
  2582. msgstr ""
  2583. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:159
  2584. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:183
  2585. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1265
  2586. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1974
  2587. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:150
  2588. msgid "Encryption"
  2589. msgstr ""
  2590. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:55
  2591. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:75
  2592. msgid "Endpoint"
  2593. msgstr ""
  2594. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:647
  2595. msgid "Endpoint Host"
  2596. msgstr ""
  2597. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:663
  2598. msgid "Endpoint Port"
  2599. msgstr ""
  2600. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:312
  2601. msgid "Endpoint setting is invalid"
  2602. msgstr ""
  2603. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:751
  2604. msgid "Enforce IGMPv1"
  2605. msgstr ""
  2606. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:752
  2607. msgid "Enforce IGMPv2"
  2608. msgstr ""
  2609. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:753
  2610. msgid "Enforce IGMPv3"
  2611. msgstr ""
  2612. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:758
  2613. msgid "Enforce MLD version 1"
  2614. msgstr ""
  2615. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:759
  2616. msgid "Enforce MLD version 2"
  2617. msgstr ""
  2618. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:84
  2619. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:84
  2620. msgid "Ensure MTU does not exceed that of parent interface"
  2621. msgstr ""
  2622. #: modules/luci-compat/luasrc/view/cbi/dropdown.htm:16
  2623. msgid "Enter custom value"
  2624. msgstr ""
  2625. #: modules/luci-compat/luasrc/view/cbi/dropdown.htm:16
  2626. msgid "Enter custom values"
  2627. msgstr ""
  2628. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:97
  2629. msgid "Erasing..."
  2630. msgstr ""
  2631. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:93
  2632. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:190
  2633. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:156
  2634. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:343
  2635. msgid "Error"
  2636. msgstr ""
  2637. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:156
  2638. msgid "Error getting PublicKey"
  2639. msgstr ""
  2640. #: modules/luci-base/htdocs/luci-static/resources/network.js:3042
  2641. #: modules/luci-compat/luasrc/model/network.lua:1433
  2642. msgid "Ethernet Adapter"
  2643. msgstr ""
  2644. #: modules/luci-base/htdocs/luci-static/resources/network.js:3033
  2645. #: modules/luci-compat/luasrc/model/network.lua:1423
  2646. msgid "Ethernet Switch"
  2647. msgstr ""
  2648. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:277
  2649. msgid "Every 30 seconds (slow, 0)"
  2650. msgstr ""
  2651. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:278
  2652. msgid "Every second (fast, 1)"
  2653. msgstr ""
  2654. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:550
  2655. msgid "Exclude interfaces"
  2656. msgstr ""
  2657. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:160
  2658. msgid ""
  2659. "Execution of various network commands to check the connection and name "
  2660. "resolution to other systems."
  2661. msgstr ""
  2662. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:135
  2663. msgid "Execution order of this IP rule: lower numbers go first"
  2664. msgstr ""
  2665. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:516
  2666. msgid ""
  2667. "Exempt {loopback_slash_8_v4} and {localhost_v6} from rebinding checks, e.g. "
  2668. "for <abbr title=\"Real-time Block List\">RBL</abbr> services."
  2669. msgstr ""
  2670. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:410
  2671. msgid "Existing device"
  2672. msgstr ""
  2673. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:432
  2674. msgid "Expand hosts"
  2675. msgstr ""
  2676. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:114
  2677. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:114
  2678. msgid "Expect netlink reply to add MAC address into VXLAN FDB"
  2679. msgstr ""
  2680. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:120
  2681. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:120
  2682. msgid "Expect netlink reply to add destination IP address into Neighbour table"
  2683. msgstr ""
  2684. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:605
  2685. msgid "Expected port number."
  2686. msgstr ""
  2687. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1070
  2688. msgid "Expecting a hexadecimal assignment hint"
  2689. msgstr ""
  2690. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:19
  2691. msgid "Expecting a valid IPv4 address"
  2692. msgstr ""
  2693. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:19
  2694. msgid "Expecting a valid IPv6 address"
  2695. msgstr ""
  2696. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:235
  2697. msgid "Expecting a valid MAC address, optionally including wildcards"
  2698. msgstr ""
  2699. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:29
  2700. msgid "Expecting two priority values separated by a colon"
  2701. msgstr ""
  2702. #: modules/luci-base/htdocs/luci-static/resources/form.js:2271
  2703. #: modules/luci-base/htdocs/luci-static/resources/validation.js:77
  2704. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:142
  2705. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:148
  2706. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:176
  2707. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:192
  2708. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:196
  2709. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:200
  2710. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:203
  2711. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:207
  2712. msgid "Expecting: %s"
  2713. msgstr ""
  2714. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:53
  2715. msgid "Expecting: non-empty value"
  2716. msgstr ""
  2717. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:41
  2718. msgid "Expires"
  2719. msgstr ""
  2720. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:678
  2721. msgid ""
  2722. "Expiry time of leased addresses, minimum is 2 minutes (<code>2m</code>)."
  2723. msgstr ""
  2724. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:842
  2725. msgid ""
  2726. "Extend short TTL values to the seconds value given when caching them. Use "
  2727. "with caution."
  2728. msgstr ""
  2729. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:19
  2730. msgid "External"
  2731. msgstr ""
  2732. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1713
  2733. msgid "External R0 Key Holder List"
  2734. msgstr ""
  2735. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1717
  2736. msgid "External R1 Key Holder List"
  2737. msgstr ""
  2738. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:167
  2739. msgid "External system log server"
  2740. msgstr ""
  2741. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:172
  2742. msgid "External system log server port"
  2743. msgstr ""
  2744. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:177
  2745. msgid "External system log server protocol"
  2746. msgstr ""
  2747. #: protocols/luci-proto-external/htdocs/luci-static/resources/protocol/external.js:7
  2748. msgid "Externally managed interface"
  2749. msgstr ""
  2750. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:441
  2751. msgid "Extra DHCP logging"
  2752. msgstr ""
  2753. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:79
  2754. msgid "Extra SSH command options"
  2755. msgstr ""
  2756. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:375
  2757. msgid "Extra config"
  2758. msgstr ""
  2759. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:72
  2760. msgid "Extra pppd options"
  2761. msgstr ""
  2762. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:70
  2763. msgid "Extra sstpc options"
  2764. msgstr ""
  2765. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:98
  2766. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:98
  2767. msgid "FDB"
  2768. msgstr ""
  2769. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:77
  2770. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:77
  2771. msgid "FDB entry lifetime"
  2772. msgstr ""
  2773. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1143
  2774. msgid "FQDN"
  2775. msgstr ""
  2776. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1688
  2777. msgid "FT over DS"
  2778. msgstr ""
  2779. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1687
  2780. msgid "FT over the Air"
  2781. msgstr ""
  2782. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1685
  2783. msgid "FT protocol"
  2784. msgstr ""
  2785. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:91
  2786. msgid "Failed Reason"
  2787. msgstr ""
  2788. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:87
  2789. msgid "Failed to change the system password."
  2790. msgstr ""
  2791. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:21
  2792. msgid "Failed to configure modem"
  2793. msgstr ""
  2794. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4590
  2795. msgid "Failed to confirm apply within %ds, waiting for rollback…"
  2796. msgstr ""
  2797. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:22
  2798. msgid "Failed to connect"
  2799. msgstr ""
  2800. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:23
  2801. msgid "Failed to disconnect"
  2802. msgstr ""
  2803. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:36
  2804. msgid "Failed to execute \"/etc/init.d/%s %s\" action: %s"
  2805. msgstr ""
  2806. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:25
  2807. msgid "Failed to get modem information"
  2808. msgstr ""
  2809. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:26
  2810. msgid "Failed to initialize modem"
  2811. msgstr ""
  2812. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:30
  2813. msgid "Failed to set operating mode"
  2814. msgstr ""
  2815. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2747
  2816. msgid "File"
  2817. msgstr ""
  2818. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:735
  2819. msgid ""
  2820. "File listing upstream resolvers, optionally domain-specific, e.g. "
  2821. "{servers_file_entry01}, {servers_file_entry02}."
  2822. msgstr ""
  2823. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2684
  2824. msgid "File not accessible"
  2825. msgstr ""
  2826. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:631
  2827. msgid "File to store DHCP lease information."
  2828. msgstr ""
  2829. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:639
  2830. msgid "File with upstream resolvers."
  2831. msgstr ""
  2832. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2885
  2833. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:882
  2834. msgid "Filename"
  2835. msgstr "Filename"
  2836. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:867
  2837. msgid "Filename of the boot image advertised to clients."
  2838. msgstr ""
  2839. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:191
  2840. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:315
  2841. msgid "Filesystem"
  2842. msgstr "Filesystem"
  2843. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:392
  2844. msgid "Filter"
  2845. msgstr "Filter"
  2846. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:696
  2847. msgid "Filter IPv4 A records"
  2848. msgstr ""
  2849. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:690
  2850. msgid "Filter IPv6 AAAA records"
  2851. msgstr ""
  2852. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:685
  2853. msgid "Filter SRV/SOA service discovery"
  2854. msgstr ""
  2855. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:701
  2856. msgid "Filter arbitrary RR"
  2857. msgstr ""
  2858. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:678
  2859. msgid "Filter private"
  2860. msgstr ""
  2861. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:394
  2862. msgid "Filtering for all slaves, no validation"
  2863. msgstr ""
  2864. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:395
  2865. msgid "Filtering for all slaves, validation only for active slave"
  2866. msgstr ""
  2867. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:396
  2868. msgid "Filtering for all slaves, validation only for backup slaves"
  2869. msgstr ""
  2870. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:686
  2871. msgid ""
  2872. "Filters SRV/SOA service discovery, to avoid triggering dial-on-demand links."
  2873. msgstr ""
  2874. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:65
  2875. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:24
  2876. msgid "Finalizing failed"
  2877. msgstr ""
  2878. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:150
  2879. msgid ""
  2880. "Find all currently attached filesystems and swap and replace configuration "
  2881. "with defaults based on what was detected"
  2882. msgstr ""
  2883. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:939
  2884. msgid "Find and join network"
  2885. msgstr ""
  2886. #: modules/luci-compat/luasrc/view/cbi/delegator.htm:9
  2887. msgid "Finish"
  2888. msgstr ""
  2889. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:27
  2890. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:43
  2891. msgid "Firewall"
  2892. msgstr ""
  2893. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:187
  2894. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:39
  2895. msgid "Firewall Mark"
  2896. msgstr ""
  2897. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:472
  2898. msgid "Firewall Settings"
  2899. msgstr ""
  2900. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:330
  2901. msgid "Firewall Status"
  2902. msgstr ""
  2903. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:184
  2904. msgid "Firewall mark"
  2905. msgstr ""
  2906. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1632
  2907. msgid "Firmware File"
  2908. msgstr ""
  2909. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:59
  2910. msgid "Firmware Version"
  2911. msgstr ""
  2912. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:772
  2913. msgid "First answer wins."
  2914. msgstr ""
  2915. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:791
  2916. msgid "Fixed source port for outbound DNS queries."
  2917. msgstr ""
  2918. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:314
  2919. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:451
  2920. msgid "Flash image..."
  2921. msgstr ""
  2922. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:310
  2923. msgid "Flash image?"
  2924. msgstr ""
  2925. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:441
  2926. msgid "Flash new firmware image"
  2927. msgstr ""
  2928. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:386
  2929. msgid "Flash operations"
  2930. msgstr ""
  2931. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:319
  2932. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:321
  2933. msgid "Flashing…"
  2934. msgstr ""
  2935. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1004
  2936. msgid "Follow IPv4 Lifetime"
  2937. msgstr ""
  2938. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:211
  2939. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:211
  2940. msgid "For multicast, an outgoing interface (%s) needs to be specified"
  2941. msgstr ""
  2942. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:913
  2943. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:685
  2944. msgid "Force"
  2945. msgstr ""
  2946. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1032
  2947. msgid "Force 40MHz mode"
  2948. msgstr ""
  2949. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1307
  2950. msgid "Force CCMP (AES)"
  2951. msgstr ""
  2952. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1308
  2953. msgid "Force CCMP-256 (AES)"
  2954. msgstr ""
  2955. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:685
  2956. msgid "Force DHCP on this network even if another server is detected."
  2957. msgstr ""
  2958. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1309
  2959. msgid "Force GCMP (AES)"
  2960. msgstr ""
  2961. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1310
  2962. msgid "Force GCMP-256 (AES)"
  2963. msgstr ""
  2964. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:749
  2965. msgid "Force IGMP version"
  2966. msgstr ""
  2967. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:756
  2968. msgid "Force MLD version"
  2969. msgstr ""
  2970. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1311
  2971. msgid "Force TKIP"
  2972. msgstr ""
  2973. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1312
  2974. msgid "Force TKIP and CCMP (AES)"
  2975. msgstr ""
  2976. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1294
  2977. msgid "Force broadcast DHCP response."
  2978. msgstr ""
  2979. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1319
  2980. msgid "Force link"
  2981. msgstr ""
  2982. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:283
  2983. msgid "Force upgrade"
  2984. msgstr ""
  2985. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:90
  2986. msgid "Force use of NAT-T"
  2987. msgstr ""
  2988. #: modules/luci-base/ucode/template/csrftoken.ut:8
  2989. msgid "Form token mismatch"
  2990. msgstr ""
  2991. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1527
  2992. msgid "Format:"
  2993. msgstr ""
  2994. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:982
  2995. msgid ""
  2996. "Forward <abbr title=\"Neighbour Discovery Protocol\">NDP</abbr> <abbr "
  2997. "title=\"Neighbour Solicitation, Type 135\">NS</abbr> and <abbr "
  2998. "title=\"Neighbour Advertisement, Type 136\">NA</abbr> messages between the "
  2999. "designated master interface and downstream interfaces."
  3000. msgstr ""
  3001. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:793
  3002. msgid ""
  3003. "Forward <abbr title=\"Router Advertisement, ICMPv6 Type 134\">RA</abbr> "
  3004. "messages received on the designated master interface to downstream "
  3005. "interfaces."
  3006. msgstr ""
  3007. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:164
  3008. msgid "Forward DHCP traffic"
  3009. msgstr ""
  3010. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:918
  3011. msgid ""
  3012. "Forward DHCPv6 messages between the designated master interface and "
  3013. "downstream interfaces."
  3014. msgstr ""
  3015. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:161
  3016. msgid "Forward broadcast traffic"
  3017. msgstr ""
  3018. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:581
  3019. msgid "Forward delay"
  3020. msgstr ""
  3021. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1060
  3022. msgid "Forward mesh peer traffic"
  3023. msgstr ""
  3024. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:778
  3025. msgid "Forward multicast packets as unicast packets on this device."
  3026. msgstr ""
  3027. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:470
  3028. msgid "Forward specific domain queries to specific upstream servers."
  3029. msgstr ""
  3030. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1297
  3031. msgid "Forward/reverse DNS"
  3032. msgstr ""
  3033. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:98
  3034. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:98
  3035. msgid "Forwarding DataBase"
  3036. msgstr ""
  3037. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1680
  3038. msgid "Forwarding mode"
  3039. msgstr ""
  3040. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:393
  3041. msgid "Forwards"
  3042. msgstr ""
  3043. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:80
  3044. msgid "Fragmentation"
  3045. msgstr ""
  3046. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1024
  3047. msgid "Fragmentation Threshold"
  3048. msgstr ""
  3049. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:62
  3050. msgctxt "nft nat flag fully-random"
  3051. msgid "Full port randomization"
  3052. msgstr ""
  3053. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:178
  3054. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:178
  3055. msgid "Further information about VXLAN interfaces and peers %s."
  3056. msgstr ""
  3057. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:200
  3058. msgid ""
  3059. "Further information about WireGuard interfaces and peers at <a href='http://"
  3060. "wireguard.com'>wireguard.com</a>."
  3061. msgstr ""
  3062. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:123
  3063. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:123
  3064. msgid "GBP"
  3065. msgstr ""
  3066. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:128
  3067. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:184
  3068. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:170
  3069. msgid "GHz"
  3070. msgstr ""
  3071. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:92
  3072. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:82
  3073. msgid "GPRS only"
  3074. msgstr ""
  3075. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:10
  3076. msgid "GRE tunnel over IPv4"
  3077. msgstr ""
  3078. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:10
  3079. msgid "GRE tunnel over IPv6"
  3080. msgstr ""
  3081. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:10
  3082. msgid "GRETAP tunnel over IPv4"
  3083. msgstr ""
  3084. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:10
  3085. msgid "GRETAP tunnel over IPv6"
  3086. msgstr ""
  3087. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:79
  3088. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:39
  3089. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:198
  3090. msgid "Gateway"
  3091. msgstr ""
  3092. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:85
  3093. msgid "Gateway Mode"
  3094. msgstr ""
  3095. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:38
  3096. msgid "Gateway Ports"
  3097. msgstr ""
  3098. #: modules/luci-base/htdocs/luci-static/resources/network.js:11
  3099. #: modules/luci-compat/luasrc/model/network.lua:29
  3100. msgid "Gateway address is invalid"
  3101. msgstr ""
  3102. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:151
  3103. msgid "Gateway metric"
  3104. msgstr ""
  3105. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:387
  3106. msgid "General"
  3107. msgstr ""
  3108. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:467
  3109. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:40
  3110. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:132
  3111. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:240
  3112. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:122
  3113. msgid "General Settings"
  3114. msgstr "General Settings"
  3115. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:631
  3116. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1667
  3117. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:984
  3118. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1046
  3119. msgid "General Setup"
  3120. msgstr ""
  3121. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:390
  3122. msgid "General device options"
  3123. msgstr ""
  3124. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:150
  3125. msgid "Generate Config"
  3126. msgstr ""
  3127. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1691
  3128. msgid "Generate PMK locally"
  3129. msgstr ""
  3130. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:398
  3131. msgid "Generate archive"
  3132. msgstr ""
  3133. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:836
  3134. msgid "Generate configuration"
  3135. msgstr ""
  3136. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:876
  3137. msgid "Generate configuration…"
  3138. msgstr ""
  3139. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:95
  3140. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:62
  3141. msgid "Generate new key pair"
  3142. msgstr ""
  3143. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:606
  3144. msgid "Generate preshared key"
  3145. msgstr ""
  3146. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:676
  3147. msgid "Generates a configuration suitable for import on a WireGuard peer"
  3148. msgstr ""
  3149. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:810
  3150. msgid "Generating QR code…"
  3151. msgstr ""
  3152. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:79
  3153. msgid "Given password confirmation did not match, password not changed!"
  3154. msgstr ""
  3155. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:146
  3156. msgid "Global Settings"
  3157. msgstr ""
  3158. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1551
  3159. msgid "Global network options"
  3160. msgstr ""
  3161. #: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:71
  3162. #: themes/luci-theme-material/ucode/template/themes/material/header.ut:91
  3163. #: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:67
  3164. #: themes/luci-theme-openwrt/ucode/template/themes/openwrt.org/header.ut:84
  3165. msgid "Go to firmware upgrade..."
  3166. msgstr ""
  3167. #: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:61
  3168. #: themes/luci-theme-material/ucode/template/themes/material/header.ut:81
  3169. #: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:57
  3170. #: themes/luci-theme-openwrt/ucode/template/themes/openwrt.org/header.ut:74
  3171. msgid "Go to password configuration..."
  3172. msgstr ""
  3173. #: modules/luci-base/htdocs/luci-static/resources/form.js:2598
  3174. #: modules/luci-base/htdocs/luci-static/resources/form.js:3711
  3175. #: modules/luci-compat/luasrc/view/cbi/full_valueheader.htm:4
  3176. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:58
  3177. msgid "Go to relevant configuration page"
  3178. msgstr ""
  3179. #: modules/luci-mod-network/root/usr/share/rpcd/acl.d/luci-mod-network.json:39
  3180. msgid "Grant access to DHCP configuration"
  3181. msgstr ""
  3182. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status-index.json:33
  3183. msgid "Grant access to DHCP status display"
  3184. msgstr ""
  3185. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status-index.json:42
  3186. msgid "Grant access to DSL status display"
  3187. msgstr ""
  3188. #: protocols/luci-proto-openconnect/root/usr/share/rpcd/acl.d/luci-openconnect.json:3
  3189. msgid "Grant access to LuCI OpenConnect procedures"
  3190. msgstr ""
  3191. #: protocols/luci-proto-wireguard/root/usr/share/rpcd/acl.d/luci-wireguard.json:3
  3192. msgid "Grant access to LuCI Wireguard procedures"
  3193. msgstr ""
  3194. #: protocols/luci-proto-yggdrasil/root/usr/share/rpcd/acl.d/luci-proto-yggdrasil.json:3
  3195. msgid "Grant access to LuCI Yggdrasil procedures"
  3196. msgstr ""
  3197. #: protocols/luci-proto-openfortivpn/root/usr/share/rpcd/acl.d/luci-openfortivpn.json:3
  3198. msgid "Grant access to LuCI openfortivpn procedures"
  3199. msgstr ""
  3200. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:22
  3201. msgid "Grant access to SSH configuration"
  3202. msgstr ""
  3203. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status-index.json:23
  3204. msgid "Grant access to Storage and Mount status display"
  3205. msgstr ""
  3206. #: modules/luci-base/root/usr/share/rpcd/acl.d/luci-base.json:12
  3207. msgid "Grant access to basic LuCI procedures"
  3208. msgstr ""
  3209. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:78
  3210. msgid "Grant access to crontab configuration"
  3211. msgstr ""
  3212. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:67
  3213. msgid "Grant access to firewall status"
  3214. msgstr ""
  3215. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:131
  3216. msgid "Grant access to flash operations"
  3217. msgstr ""
  3218. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status-index.json:3
  3219. msgid "Grant access to main status display"
  3220. msgstr ""
  3221. #: protocols/luci-proto-modemmanager/root/usr/share/rpcd/acl.d/luci-proto-modemmanager.json:3
  3222. msgid "Grant access to mmcli"
  3223. msgstr ""
  3224. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:99
  3225. msgid "Grant access to mount configuration"
  3226. msgstr ""
  3227. #: modules/luci-mod-network/root/usr/share/rpcd/acl.d/luci-mod-network.json:3
  3228. msgid "Grant access to network configuration"
  3229. msgstr ""
  3230. #: modules/luci-mod-network/root/usr/share/rpcd/acl.d/luci-mod-network.json:52
  3231. msgid "Grant access to network diagnostic tools"
  3232. msgstr ""
  3233. #: modules/luci-base/root/usr/share/rpcd/acl.d/luci-base.json:36
  3234. msgid "Grant access to network status information"
  3235. msgstr ""
  3236. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status-index.json:51
  3237. msgid "Grant access to port status display"
  3238. msgstr ""
  3239. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:13
  3240. msgid "Grant access to process status"
  3241. msgstr ""
  3242. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:3
  3243. msgid "Grant access to realtime statistics"
  3244. msgstr ""
  3245. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:44
  3246. msgid "Grant access to routing status"
  3247. msgstr ""
  3248. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:56
  3249. msgid "Grant access to startup configuration"
  3250. msgstr ""
  3251. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:3
  3252. msgid "Grant access to system configuration"
  3253. msgstr ""
  3254. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:30
  3255. msgid "Grant access to system logs"
  3256. msgstr ""
  3257. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:45
  3258. msgid "Grant access to uHTTPd configuration"
  3259. msgstr ""
  3260. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:58
  3261. msgid "Grant access to wireless channel status"
  3262. msgstr ""
  3263. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status-index.json:60
  3264. msgid "Grant access to wireless status display"
  3265. msgstr ""
  3266. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:124
  3267. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:124
  3268. msgid "Group Based Policy (VXLAN-GBP) extension"
  3269. msgstr ""
  3270. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:66
  3271. msgid "Group Password"
  3272. msgstr ""
  3273. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:22
  3274. msgid "Guest"
  3275. msgstr ""
  3276. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:81
  3277. msgid "HE.net password"
  3278. msgstr ""
  3279. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:73
  3280. msgid "HE.net username"
  3281. msgstr ""
  3282. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/uhttpd.js:9
  3283. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:64
  3284. msgid "HTTP(S) Access"
  3285. msgstr ""
  3286. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:46
  3287. msgid "Hang Up"
  3288. msgstr ""
  3289. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/heartbeat.js:6
  3290. msgid "Heartbeat interval (kernel: heartbeat)"
  3291. msgstr ""
  3292. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:576
  3293. msgid "Hello interval"
  3294. msgstr ""
  3295. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:114
  3296. msgid ""
  3297. "Here you can configure the basic aspects of your device like its hostname or "
  3298. "the timezone."
  3299. msgstr ""
  3300. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1108
  3301. msgid "Hex Data"
  3302. msgstr ""
  3303. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1059
  3304. msgid "Hexdata is automatically en/decoded on save and load"
  3305. msgstr ""
  3306. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1202
  3307. msgid "Hide <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>"
  3308. msgstr ""
  3309. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:297
  3310. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:336
  3311. msgid "Hide empty chains"
  3312. msgstr ""
  3313. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1017
  3314. msgid "High"
  3315. msgstr ""
  3316. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:707
  3317. msgid "Honor gratuitous ARP"
  3318. msgstr ""
  3319. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:593
  3320. msgctxt "Chain hook description"
  3321. msgid "Hook: <strong>%h</strong> (%h), Priority: <strong>%d</strong>"
  3322. msgstr ""
  3323. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:92
  3324. msgid "Hop Penalty"
  3325. msgstr ""
  3326. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:57
  3327. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2412
  3328. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:134
  3329. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:234
  3330. msgid "Host"
  3331. msgstr ""
  3332. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:171
  3333. msgid "Host expiry timeout"
  3334. msgstr ""
  3335. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:883
  3336. msgid "Host requests this filename from the boot server."
  3337. msgstr ""
  3338. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:88
  3339. msgid "Host-Uniq tag content"
  3340. msgstr ""
  3341. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1246
  3342. msgid ""
  3343. "Host-specific lease time, e.g. <code>5m</code>, <code>3h</code>, <code>7d</"
  3344. "code>."
  3345. msgstr ""
  3346. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:38
  3347. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1036
  3348. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1176
  3349. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:55
  3350. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:87
  3351. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:135
  3352. msgid "Hostname"
  3353. msgstr ""
  3354. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:22
  3355. msgid "Hostname to send when requesting DHCP"
  3356. msgstr ""
  3357. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:934
  3358. msgid "Hostnames"
  3359. msgstr ""
  3360. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1028
  3361. msgid ""
  3362. "Hostnames are used to bind a domain name to an IP address. This setting is "
  3363. "redundant for hostnames already configured with static leases, but it can be "
  3364. "useful to rebind an FQDN."
  3365. msgstr ""
  3366. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/timer.js:19
  3367. msgid "How long (in milliseconds) the LED should be off"
  3368. msgstr ""
  3369. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/timer.js:13
  3370. msgid "How long (in milliseconds) the LED should be on"
  3371. msgstr ""
  3372. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:280
  3373. msgid "Human-readable counters"
  3374. msgstr ""
  3375. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:24
  3376. msgid "Hybrid"
  3377. msgstr ""
  3378. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:49
  3379. msgctxt "nft icmp code"
  3380. msgid "ICMP code"
  3381. msgstr ""
  3382. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:50
  3383. msgctxt "nft icmp type"
  3384. msgid "ICMP type"
  3385. msgstr ""
  3386. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:51
  3387. msgctxt "nft icmpv6 code"
  3388. msgid "ICMPv6 code"
  3389. msgstr ""
  3390. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:52
  3391. msgctxt "nft icmpv6 type"
  3392. msgid "ICMPv6 type"
  3393. msgstr ""
  3394. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:128
  3395. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:128
  3396. msgid "ID used to uniquely identify the VXLAN"
  3397. msgstr ""
  3398. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:213
  3399. msgid "IEEE 802.3ad Dynamic link aggregation (802.3ad, 4)"
  3400. msgstr ""
  3401. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:75
  3402. msgid "IKE DH Group"
  3403. msgstr ""
  3404. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:86
  3405. msgid "IMEI"
  3406. msgstr ""
  3407. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:141
  3408. msgid "IP Address"
  3409. msgstr ""
  3410. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:167
  3411. msgid "IP Addresses"
  3412. msgstr ""
  3413. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:85
  3414. msgid "IP Protocol"
  3415. msgstr ""
  3416. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:398
  3417. msgid "IP Sets"
  3418. msgstr ""
  3419. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:138
  3420. msgid "IP Type"
  3421. msgstr ""
  3422. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1040
  3423. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:188
  3424. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:214
  3425. msgid "IP address"
  3426. msgstr ""
  3427. #: modules/luci-base/htdocs/luci-static/resources/network.js:10
  3428. #: modules/luci-compat/luasrc/model/network.lua:28
  3429. msgid "IP address is invalid"
  3430. msgstr ""
  3431. #: modules/luci-base/htdocs/luci-static/resources/network.js:13
  3432. #: modules/luci-compat/luasrc/model/network.lua:31
  3433. msgid "IP address is missing"
  3434. msgstr ""
  3435. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:210
  3436. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:210
  3437. msgid ""
  3438. "IP address of the remote VXLAN tunnel endpoint where the MAC address (Layer "
  3439. "2 Address) resides or a multicast address for a group of peers."
  3440. msgstr ""
  3441. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:793
  3442. msgid ""
  3443. "IP addresses for the peer to use inside the tunnel. Some clients require "
  3444. "this setting."
  3445. msgstr ""
  3446. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:782
  3447. msgid ""
  3448. "IP addresses that are allowed inside the tunnel. The peer will accept "
  3449. "tunnelled packets with source IP addresses matching this list and route back "
  3450. "packets with matching destination IP."
  3451. msgstr ""
  3452. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:36
  3453. msgctxt "nft ip protocol"
  3454. msgid "IP protocol"
  3455. msgstr ""
  3456. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:14
  3457. msgctxt "nft meta l4proto"
  3458. msgid "IP protocol"
  3459. msgstr ""
  3460. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:501
  3461. msgid "IP sets"
  3462. msgstr ""
  3463. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:776
  3464. msgid "IPs to override with {nxdomain}"
  3465. msgstr ""
  3466. #: protocols/luci-proto-xfrm/htdocs/luci-static/resources/protocol/xfrm.js:9
  3467. msgid "IPsec XFRM"
  3468. msgstr ""
  3469. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1158
  3470. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:87
  3471. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:110
  3472. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:88
  3473. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:96
  3474. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:87
  3475. msgid "IPv4"
  3476. msgstr ""
  3477. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:355
  3478. msgid "IPv4 Firewall"
  3479. msgstr ""
  3480. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:262
  3481. msgid "IPv4 Neighbours"
  3482. msgstr ""
  3483. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:261
  3484. msgid "IPv4 Routing"
  3485. msgstr ""
  3486. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:126
  3487. msgid "IPv4 Rules"
  3488. msgstr ""
  3489. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:33
  3490. msgid "IPv4 Upstream"
  3491. msgstr ""
  3492. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:179
  3493. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:39
  3494. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1211
  3495. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:88
  3496. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:167
  3497. msgid "IPv4 address"
  3498. msgstr ""
  3499. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:29
  3500. msgid "IPv4 assignment length"
  3501. msgstr ""
  3502. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:182
  3503. msgid "IPv4 broadcast"
  3504. msgstr ""
  3505. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:181
  3506. msgid "IPv4 gateway"
  3507. msgstr ""
  3508. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:180
  3509. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:174
  3510. msgid "IPv4 netmask"
  3511. msgstr ""
  3512. #: modules/luci-base/htdocs/luci-static/resources/validation.js:318
  3513. msgid "IPv4 network in address/netmask notation"
  3514. msgstr ""
  3515. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:140
  3516. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:205
  3517. msgid "IPv4 only"
  3518. msgstr ""
  3519. #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:16
  3520. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/ipip6.js:10
  3521. msgid "IPv4 over IPv6 (RFC2473-IPIPv6)"
  3522. msgstr ""
  3523. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:52
  3524. msgid "IPv4 prefix"
  3525. msgstr ""
  3526. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:61
  3527. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:55
  3528. msgid "IPv4 prefix length"
  3529. msgstr ""
  3530. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:625
  3531. msgid "IPv4 traffic table \"%h\""
  3532. msgstr ""
  3533. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1157
  3534. msgid "IPv4+6"
  3535. msgstr ""
  3536. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:88
  3537. msgid "IPv4+IPv6"
  3538. msgstr ""
  3539. #: modules/luci-compat/luasrc/model/network/proto_ipip.lua:9
  3540. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:10
  3541. msgid "IPv4-in-IPv4 (RFC2003)"
  3542. msgstr ""
  3543. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:95
  3544. msgid "IPv4/IPv6"
  3545. msgstr ""
  3546. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:139
  3547. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:204
  3548. msgid "IPv4/IPv6 (both - defaults to IPv4)"
  3549. msgstr ""
  3550. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:633
  3551. msgid "IPv4/IPv6 traffic table \"%h\""
  3552. msgstr ""
  3553. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1159
  3554. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:88
  3555. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:111
  3556. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:89
  3557. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:97
  3558. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:89
  3559. msgid "IPv6"
  3560. msgstr ""
  3561. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:81
  3562. msgid "IPv6 APN"
  3563. msgstr ""
  3564. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:150
  3565. msgid "IPv6 APN profile index"
  3566. msgstr ""
  3567. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:358
  3568. msgid "IPv6 Firewall"
  3569. msgstr ""
  3570. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:736
  3571. msgid "IPv6 MTU"
  3572. msgstr ""
  3573. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:272
  3574. msgid "IPv6 Neighbours"
  3575. msgstr ""
  3576. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:995
  3577. msgid "IPv6 Prefix Lifetime"
  3578. msgstr ""
  3579. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:634
  3580. msgid "IPv6 RA Settings"
  3581. msgstr ""
  3582. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:271
  3583. msgid "IPv6 Routing"
  3584. msgstr ""
  3585. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:126
  3586. msgid "IPv6 Rules"
  3587. msgstr ""
  3588. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:633
  3589. msgid "IPv6 Settings"
  3590. msgstr ""
  3591. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1555
  3592. msgid "IPv6 ULA-Prefix"
  3593. msgstr ""
  3594. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:33
  3595. msgid "IPv6 Upstream"
  3596. msgstr ""
  3597. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:184
  3598. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:58
  3599. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:135
  3600. msgid "IPv6 address"
  3601. msgstr ""
  3602. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1061
  3603. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:27
  3604. msgid "IPv6 assignment hint"
  3605. msgstr ""
  3606. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1056
  3607. msgid "IPv6 assignment length"
  3608. msgstr ""
  3609. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:189
  3610. msgid "IPv6 gateway"
  3611. msgstr ""
  3612. #: modules/luci-base/htdocs/luci-static/resources/validation.js:323
  3613. msgid "IPv6 network in address/netmask notation"
  3614. msgstr ""
  3615. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:141
  3616. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:206
  3617. msgid "IPv6 only"
  3618. msgstr ""
  3619. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1105
  3620. msgid "IPv6 preference"
  3621. msgstr ""
  3622. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:53
  3623. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:59
  3624. msgid "IPv6 prefix"
  3625. msgstr ""
  3626. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1078
  3627. msgid "IPv6 prefix filter"
  3628. msgstr ""
  3629. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:57
  3630. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:63
  3631. msgid "IPv6 prefix length"
  3632. msgstr ""
  3633. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:193
  3634. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:57
  3635. msgid "IPv6 routed prefix"
  3636. msgstr ""
  3637. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1049
  3638. msgid "IPv6 source routing"
  3639. msgstr ""
  3640. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1101
  3641. msgid "IPv6 suffix"
  3642. msgstr ""
  3643. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:55
  3644. msgid "IPv6 support"
  3645. msgstr ""
  3646. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:629
  3647. msgid "IPv6 traffic table \"%h\""
  3648. msgstr ""
  3649. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:90
  3650. msgid "IPv6-PD"
  3651. msgstr ""
  3652. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1263
  3653. msgid "IPv6-Suffix (hex)"
  3654. msgstr ""
  3655. #: modules/luci-compat/luasrc/model/network/proto_6x4.lua:13
  3656. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:10
  3657. msgid "IPv6-in-IPv4 (RFC4213)"
  3658. msgstr ""
  3659. #: modules/luci-compat/luasrc/model/network/proto_6x4.lua:17
  3660. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:9
  3661. msgid "IPv6-over-IPv4 (6rd)"
  3662. msgstr ""
  3663. #: modules/luci-compat/luasrc/model/network/proto_6x4.lua:15
  3664. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6to4.js:9
  3665. msgid "IPv6-over-IPv4 (6to4)"
  3666. msgstr ""
  3667. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1875
  3668. msgid "Identity"
  3669. msgstr ""
  3670. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1275
  3671. msgid ""
  3672. "If a host matches an entry which cannot be used because it specifies an "
  3673. "address on a different subnet, the tag %s is set."
  3674. msgstr ""
  3675. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:758
  3676. msgid ""
  3677. "If an address is specified in the flag, it will be used, otherwise, the "
  3678. "address of the requestor will be used."
  3679. msgstr ""
  3680. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:96
  3681. msgid "If checked, 1DES is enabled"
  3682. msgstr ""
  3683. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:55
  3684. msgid "If checked, adds \"+ipv6\" to the pppd options"
  3685. msgstr ""
  3686. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:93
  3687. msgid "If checked, encryption is disabled"
  3688. msgstr ""
  3689. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:104
  3690. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:104
  3691. msgid ""
  3692. "If destination MAC refers to router, replace it with destination MAC address"
  3693. msgstr ""
  3694. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:267
  3695. msgid ""
  3696. "If empty, all incoming connections will be allowed (default). This does not "
  3697. "affect outgoing peerings, nor link-local peers discovered via multicast."
  3698. msgstr ""
  3699. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1078
  3700. msgid ""
  3701. "If set, downstream subnets are only allocated from the given IPv6 prefix "
  3702. "classes."
  3703. msgstr ""
  3704. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:205
  3705. msgid "If set, the meaning of the match options is inverted"
  3706. msgstr ""
  3707. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:255
  3708. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:359
  3709. msgid ""
  3710. "If specified, mount the device by its UUID instead of a fixed device node"
  3711. msgstr ""
  3712. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:268
  3713. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:375
  3714. msgid ""
  3715. "If specified, mount the device by the partition label instead of a fixed "
  3716. "device node"
  3717. msgstr ""
  3718. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1011
  3719. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/ipip6.js:70
  3720. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:134
  3721. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:156
  3722. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:129
  3723. msgid "If unchecked, no default route is configured"
  3724. msgstr ""
  3725. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1015
  3726. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:145
  3727. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:160
  3728. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:140
  3729. msgid "If unchecked, the advertised DNS server addresses are ignored"
  3730. msgstr ""
  3731. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:338
  3732. msgid ""
  3733. "If your physical memory is insufficient unused data can be temporarily "
  3734. "swapped to a swap-device resulting in a higher amount of usable <abbr "
  3735. "title=\"Random Access Memory\">RAM</abbr>. Be aware that swapping data is a "
  3736. "very slow process as the swap-device cannot be accessed with the high "
  3737. "datarates of the <abbr title=\"Random Access Memory\">RAM</abbr>."
  3738. msgstr ""
  3739. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1212
  3740. msgid "Ignore"
  3741. msgstr ""
  3742. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:650
  3743. msgid "Ignore hosts files directory"
  3744. msgstr ""
  3745. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:665
  3746. msgid "Ignore interface"
  3747. msgstr ""
  3748. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1274
  3749. msgid "Ignore requests from unknown machines using %s."
  3750. msgstr ""
  3751. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:634
  3752. msgid "Ignore resolv file"
  3753. msgstr ""
  3754. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:657
  3755. msgid "Ignore {etc_hosts} file"
  3756. msgstr ""
  3757. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:449
  3758. msgid "Image"
  3759. msgstr ""
  3760. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:275
  3761. msgid "Image check failed:"
  3762. msgstr ""
  3763. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:463
  3764. msgid "Import as peer"
  3765. msgstr ""
  3766. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:174
  3767. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:463
  3768. msgid "Import configuration"
  3769. msgstr ""
  3770. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:491
  3771. msgid "Import configuration as peer…"
  3772. msgstr ""
  3773. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:477
  3774. msgid "Import settings"
  3775. msgstr ""
  3776. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:363
  3777. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:390
  3778. msgid "Imported peer configuration"
  3779. msgstr ""
  3780. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:174
  3781. msgid "Imports settings from an existing WireGuard configuration file"
  3782. msgstr ""
  3783. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:68
  3784. msgid "In"
  3785. msgstr ""
  3786. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1193
  3787. msgid ""
  3788. "In DHCPv4, it is possible to include more than one mac address. This allows "
  3789. "an IP address to be associated with multiple macaddrs, and dnsmasq abandons "
  3790. "a DHCP lease to one of the macaddrs when another asks for a lease. It only "
  3791. "works reliably if only one of the macaddrs is active at any time."
  3792. msgstr ""
  3793. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:71
  3794. msgid ""
  3795. "In bridged LAN setups it is advisable to enable the bridge loop avoidance in "
  3796. "order to avoid broadcast loops that can bring the entire LAN to a standstill."
  3797. msgstr ""
  3798. #: modules/luci-base/ucode/template/csrftoken.ut:13
  3799. msgid ""
  3800. "In order to prevent unauthorized access to the system, your request has been "
  3801. "blocked. Click \"Continue »\" below to return to the previous page."
  3802. msgstr ""
  3803. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:148
  3804. msgid "In seconds"
  3805. msgstr ""
  3806. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:156
  3807. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:128
  3808. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:114
  3809. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:92
  3810. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:101
  3811. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:124
  3812. msgid "Inactivity timeout"
  3813. msgstr ""
  3814. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:267
  3815. msgid "Inbound:"
  3816. msgstr ""
  3817. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:264
  3818. msgid ""
  3819. "Include in backup a list of current installed packages at /etc/backup/"
  3820. "installed_packages.txt"
  3821. msgstr ""
  3822. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:100
  3823. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:105
  3824. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:102
  3825. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:107
  3826. msgid "Incoming checksum"
  3827. msgstr ""
  3828. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:150
  3829. msgid "Incoming interface"
  3830. msgstr ""
  3831. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:92
  3832. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:97
  3833. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:94
  3834. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:99
  3835. #: protocols/luci-proto-vti/htdocs/luci-static/resources/protocol/vti.js:64
  3836. msgid "Incoming key"
  3837. msgstr ""
  3838. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:102
  3839. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:107
  3840. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:104
  3841. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:109
  3842. msgid "Incoming serialization"
  3843. msgstr ""
  3844. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:550
  3845. msgid "Indoor Only Channel Selected"
  3846. msgstr ""
  3847. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:187
  3848. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:158
  3849. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:345
  3850. msgid "Info"
  3851. msgstr ""
  3852. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:91
  3853. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:92
  3854. msgid "Information"
  3855. msgstr ""
  3856. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:510
  3857. msgid "Ingress QoS mapping"
  3858. msgstr ""
  3859. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:11
  3860. msgctxt "nft meta iif"
  3861. msgid "Ingress device id"
  3862. msgstr ""
  3863. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:9
  3864. msgctxt "nft meta iifname"
  3865. msgid "Ingress device name"
  3866. msgstr ""
  3867. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:162
  3868. msgid "Initial EPS Bearer"
  3869. msgstr ""
  3870. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:171
  3871. msgid "Initial EPS Bearer APN"
  3872. msgstr ""
  3873. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:175
  3874. msgid "Initial EPS Bearer Authentication Type"
  3875. msgstr ""
  3876. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:202
  3877. msgid "Initial EPS Bearer IP Type"
  3878. msgstr ""
  3879. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:193
  3880. msgid "Initial EPS Bearer Password"
  3881. msgstr ""
  3882. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:185
  3883. msgid "Initial EPS Bearer Username"
  3884. msgstr ""
  3885. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:67
  3886. msgid "Initialization failure"
  3887. msgstr ""
  3888. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:76
  3889. msgid "Initscript"
  3890. msgstr ""
  3891. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:111
  3892. msgid "Initscripts"
  3893. msgstr ""
  3894. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1859
  3895. msgid "Inner certificate constraint (Domain)"
  3896. msgstr ""
  3897. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1856
  3898. msgid "Inner certificate constraint (SAN)"
  3899. msgstr ""
  3900. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1853
  3901. msgid "Inner certificate constraint (Subject)"
  3902. msgstr ""
  3903. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1862
  3904. msgid "Inner certificate constraint (Wildcard)"
  3905. msgstr ""
  3906. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:289
  3907. msgid "Install protocol extensions..."
  3908. msgstr ""
  3909. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:918
  3910. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1282
  3911. msgid "Instance"
  3912. msgstr ""
  3913. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:125
  3914. msgctxt "WireGuard instance heading"
  3915. msgid "Instance \"%h\""
  3916. msgstr ""
  3917. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:374
  3918. msgctxt "Dnsmasq instance"
  3919. msgid "Instance \"%q\""
  3920. msgstr ""
  3921. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:34
  3922. msgid "Instance Details"
  3923. msgstr ""
  3924. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2280
  3925. msgid ""
  3926. "Instead of joining any network with a matching SSID, only connect to the "
  3927. "BSSID <code>%h</code>."
  3928. msgstr ""
  3929. #: modules/luci-compat/luasrc/view/cbi/map.htm:43
  3930. msgid "Insufficient permissions to read UCI configuration."
  3931. msgstr ""
  3932. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:136
  3933. msgid "Integrated Circuit Card Identifier"
  3934. msgstr ""
  3935. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:43
  3936. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:190
  3937. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:216
  3938. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:20
  3939. msgid "Interface"
  3940. msgstr "Interface"
  3941. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:717
  3942. msgid "Interface \"%h\" is already marked as designated master."
  3943. msgstr ""
  3944. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:62
  3945. msgid "Interface %q device auto-migrated from %q to %q."
  3946. msgstr ""
  3947. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1042
  3948. msgid "Interface Configuration"
  3949. msgstr ""
  3950. #: protocols/luci-proto-xfrm/htdocs/luci-static/resources/protocol/xfrm.js:39
  3951. msgid "Interface ID"
  3952. msgstr ""
  3953. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:91
  3954. msgid "Interface disabled"
  3955. msgstr ""
  3956. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:97
  3957. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:151
  3958. msgid "Interface has %d pending changes"
  3959. msgstr ""
  3960. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:92
  3961. msgid "Interface is disabled"
  3962. msgstr ""
  3963. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:65
  3964. msgid "Interface is marked for deletion"
  3965. msgstr ""
  3966. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:196
  3967. msgid "Interface is reconnecting..."
  3968. msgstr ""
  3969. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:180
  3970. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:190
  3971. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:196
  3972. msgid "Interface is shutting down..."
  3973. msgstr ""
  3974. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:274
  3975. msgid "Interface is starting..."
  3976. msgstr ""
  3977. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:277
  3978. msgid "Interface is stopping..."
  3979. msgstr ""
  3980. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1220
  3981. msgid "Interface name"
  3982. msgstr "Namn på gränssnittet"
  3983. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:109
  3984. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:293
  3985. msgid "Interface not present or not connected yet."
  3986. msgstr ""
  3987. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:451
  3988. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:481
  3989. #: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:38
  3990. msgid "Interfaces"
  3991. msgstr ""
  3992. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:20
  3993. msgid "Internal"
  3994. msgstr ""
  3995. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:85
  3996. msgid "International Mobile Station Equipment Identity"
  3997. msgstr ""
  3998. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:139
  3999. msgid "International Mobile Subscriber Identity"
  4000. msgstr ""
  4001. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:290
  4002. msgid "Interval For Sending Learning Packets"
  4003. msgstr ""
  4004. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:610
  4005. msgid ""
  4006. "Interval in centiseconds between multicast general queries. By varying the "
  4007. "value, an administrator may tune the number of IGMP messages on the subnet; "
  4008. "larger values cause IGMP Queries to be sent less often"
  4009. msgstr ""
  4010. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:576
  4011. msgid "Interval in seconds for STP hello packets"
  4012. msgstr ""
  4013. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:192
  4014. #: modules/luci-compat/luasrc/view/cbi/tsection.htm:42
  4015. msgid "Invalid"
  4016. msgstr ""
  4017. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:101
  4018. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:68
  4019. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:71
  4020. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:97
  4021. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:73
  4022. msgid "Invalid APN provided"
  4023. msgstr ""
  4024. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:38
  4025. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:41
  4026. msgid "Invalid Base64 key string"
  4027. msgstr ""
  4028. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:121
  4029. msgid "Invalid IPv6 address"
  4030. msgstr ""
  4031. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:78
  4032. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:83
  4033. msgid "Invalid TOS value, expected 00..FF or inherit"
  4034. msgstr ""
  4035. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:83
  4036. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:88
  4037. msgid "Invalid Traffic Class value, expected 00..FF or inherit"
  4038. msgstr ""
  4039. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:285
  4040. msgid "Invalid VLAN ID given! Only IDs between %d and %d are allowed."
  4041. msgstr ""
  4042. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:294
  4043. msgid "Invalid VLAN ID given! Only unique IDs are allowed"
  4044. msgstr ""
  4045. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:403
  4046. msgid "Invalid argument"
  4047. msgstr ""
  4048. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:11
  4049. msgid ""
  4050. "Invalid bearer list. Possibly too many bearers created. This protocol "
  4051. "supports one and only one bearer."
  4052. msgstr ""
  4053. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:402
  4054. msgid "Invalid command"
  4055. msgstr ""
  4056. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:191
  4057. msgid "Invalid hexadecimal value"
  4058. msgstr ""
  4059. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:130
  4060. msgid "Invalid hostname or IPv4 address"
  4061. msgstr ""
  4062. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:138
  4063. msgid "Invalid port"
  4064. msgstr ""
  4065. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:16
  4066. msgid "Invalid private key string %s"
  4067. msgstr ""
  4068. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:28
  4069. msgid "Invalid public key string %s"
  4070. msgstr ""
  4071. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:112
  4072. msgid "Invalid server URL"
  4073. msgstr ""
  4074. #: modules/luci-base/ucode/template/sysauth.ut:12
  4075. #: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:32
  4076. msgid "Invalid username and/or password! Please try again."
  4077. msgstr ""
  4078. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/heartbeat.js:13
  4079. msgid "Invert blinking"
  4080. msgstr ""
  4081. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:205
  4082. msgid "Invert match"
  4083. msgstr ""
  4084. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:223
  4085. msgctxt "VLAN port state"
  4086. msgid "Is Primary VLAN"
  4087. msgstr ""
  4088. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1216
  4089. msgid "Isolate Clients"
  4090. msgstr ""
  4091. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:238
  4092. msgid ""
  4093. "It appears that you are trying to flash an image that does not fit into the "
  4094. "flash memory, please verify the image file!"
  4095. msgstr ""
  4096. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:312
  4097. msgid ""
  4098. "It periodically probes for active sessions and automatically establishes "
  4099. "direct peerings over internet with remote nodes running Yggdrasil Jumper "
  4100. "without requiring firewall or port configuration."
  4101. msgstr ""
  4102. #: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:78
  4103. #: themes/luci-theme-material/ucode/template/themes/material/header.ut:98
  4104. #: themes/luci-theme-openwrt/ucode/template/themes/openwrt.org/header.ut:64
  4105. msgid "JavaScript required!"
  4106. msgstr ""
  4107. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2054
  4108. msgid "Join Network"
  4109. msgstr ""
  4110. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1988
  4111. msgid "Join Network: Wireless Scan"
  4112. msgstr ""
  4113. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2288
  4114. msgid "Joining Network: %q"
  4115. msgstr ""
  4116. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:179
  4117. msgid "Jump to rule"
  4118. msgstr ""
  4119. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:303
  4120. msgid "Jumper"
  4121. msgstr ""
  4122. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:179
  4123. msgid "Jumps to another rule specified by its priority value"
  4124. msgstr ""
  4125. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:230
  4126. #, fuzzy
  4127. msgid "Keep settings and retain the current configuration"
  4128. msgstr "Keep settings and retain the current configuration"
  4129. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:60
  4130. msgid "Keep-Alive"
  4131. msgstr ""
  4132. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/dmesg.js:54
  4133. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:84
  4134. msgid "Kernel Log"
  4135. msgstr ""
  4136. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:60
  4137. msgid "Kernel Version"
  4138. msgstr ""
  4139. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1602
  4140. msgid "Key"
  4141. msgstr ""
  4142. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1628
  4143. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1629
  4144. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1630
  4145. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1631
  4146. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1643
  4147. msgid "Key #%d"
  4148. msgstr ""
  4149. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:92
  4150. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:97
  4151. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:94
  4152. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:99
  4153. #: protocols/luci-proto-vti/htdocs/luci-static/resources/protocol/vti.js:64
  4154. msgid "Key for incoming packets (optional)."
  4155. msgstr ""
  4156. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:96
  4157. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:101
  4158. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:98
  4159. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:103
  4160. #: protocols/luci-proto-vti/htdocs/luci-static/resources/protocol/vti.js:68
  4161. msgid "Key for outgoing packets (optional)."
  4162. msgstr ""
  4163. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:537
  4164. msgctxt "Label indicating that WireGuard peer lacks public key"
  4165. msgid "Key missing"
  4166. msgstr ""
  4167. #: protocols/luci-proto-unet/htdocs/luci-static/resources/protocol/unet.js:44
  4168. msgid "Key used to sign network config"
  4169. msgstr ""
  4170. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:71
  4171. msgctxt "nft unit"
  4172. msgid "KiB"
  4173. msgstr ""
  4174. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:54
  4175. msgid "Kill"
  4176. msgstr ""
  4177. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:202
  4178. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:202
  4179. msgid ""
  4180. "L2 (MAC) address of peer. Uses source-address learning when %s is specified"
  4181. msgstr ""
  4182. #: modules/luci-compat/luasrc/model/network/proto_ppp.lua:21
  4183. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:10
  4184. msgid "L2TP"
  4185. msgstr ""
  4186. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:40
  4187. msgid "L2TP Server"
  4188. msgstr ""
  4189. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:274
  4190. msgid "LACPDU Packets"
  4191. msgstr ""
  4192. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:130
  4193. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:102
  4194. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:88
  4195. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:62
  4196. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:75
  4197. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:98
  4198. msgid "LCP echo failure threshold"
  4199. msgstr ""
  4200. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:143
  4201. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:115
  4202. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:101
  4203. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:75
  4204. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:88
  4205. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:111
  4206. msgid "LCP echo interval"
  4207. msgstr ""
  4208. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:115
  4209. msgid "LED Configuration"
  4210. msgstr ""
  4211. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1674
  4212. msgid "LLC"
  4213. msgstr ""
  4214. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:268
  4215. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:375
  4216. msgid "Label"
  4217. msgstr ""
  4218. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:225
  4219. msgid "Language"
  4220. msgstr ""
  4221. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:125
  4222. msgid "Language and Style"
  4223. msgstr ""
  4224. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:945
  4225. msgid ""
  4226. "Larger weights (of the same prio) are given a proportionately higher "
  4227. "probability of being selected."
  4228. msgstr ""
  4229. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:147
  4230. msgid "Last Error"
  4231. msgstr ""
  4232. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:629
  4233. msgid "Last member interval"
  4234. msgstr ""
  4235. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:143
  4236. msgid "Latency"
  4237. msgstr ""
  4238. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:59
  4239. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:78
  4240. msgid "Latest Handshake"
  4241. msgstr ""
  4242. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:201
  4243. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:201
  4244. msgid "Layer 2 Address"
  4245. msgstr ""
  4246. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:21
  4247. msgid "Leaf"
  4248. msgstr ""
  4249. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:774
  4250. msgid "Learn"
  4251. msgstr ""
  4252. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:986
  4253. msgid "Learn routes"
  4254. msgstr ""
  4255. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:96
  4256. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:96
  4257. msgid "Learning"
  4258. msgstr ""
  4259. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:630
  4260. msgid "Lease file"
  4261. msgstr ""
  4262. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1245
  4263. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:678
  4264. msgid "Lease time"
  4265. msgstr ""
  4266. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:41
  4267. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:60
  4268. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:90
  4269. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:137
  4270. msgid "Lease time remaining"
  4271. msgstr ""
  4272. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:41
  4273. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:47
  4274. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:50
  4275. msgid "Leave empty to autodetect"
  4276. msgstr ""
  4277. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:40
  4278. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:39
  4279. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6to4.js:39
  4280. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:47
  4281. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/ipip6.js:48
  4282. msgid "Leave empty to use the current WAN address"
  4283. msgstr ""
  4284. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1005
  4285. msgid ""
  4286. "Legacy or badly behaving devices may require legacy 802.11b rates to "
  4287. "interoperate. Airtime efficiency may be significantly reduced where these "
  4288. "are used. It is recommended to not allow 802.11b rates where possible."
  4289. msgstr ""
  4290. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:677
  4291. msgid "Legacy rules detected"
  4292. msgstr ""
  4293. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4468
  4294. msgid "Legend:"
  4295. msgstr ""
  4296. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:673
  4297. msgid "Limit"
  4298. msgstr ""
  4299. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:712
  4300. msgid ""
  4301. "Limit response records (from {etc_hosts}) to those that fall within the "
  4302. "subnet of the querying interface."
  4303. msgstr ""
  4304. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:394
  4305. msgid "Limits"
  4306. msgstr ""
  4307. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:25
  4308. msgid "Line Mode"
  4309. msgstr ""
  4310. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:24
  4311. msgid "Line State"
  4312. msgstr ""
  4313. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:26
  4314. msgid "Line Uptime"
  4315. msgstr ""
  4316. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:128
  4317. msgid "Link Aggregation (Channel Bonding)"
  4318. msgstr ""
  4319. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:354
  4320. msgid "Link Monitoring"
  4321. msgstr ""
  4322. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:24
  4323. msgid "Link On"
  4324. msgstr ""
  4325. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:77
  4326. msgctxt "nft @ll,off,len"
  4327. msgid "Link layer header bits %d-%d"
  4328. msgstr ""
  4329. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:502
  4330. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1122
  4331. msgid ""
  4332. "List of IP sets to populate with the IPs of DNS lookup results of the FQDNs "
  4333. "also specified here."
  4334. msgstr ""
  4335. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1713
  4336. msgid ""
  4337. "List of R0KHs in the same Mobility Domain. <br />Format: MAC-address,NAS-"
  4338. "Identifier,256-bit key as hex string. <br />This list is used to map R0KH-ID "
  4339. "(NAS Identifier) to a destination MAC address when requesting PMK-R1 key "
  4340. "from the R0KH that the STA used during the Initial Mobility Domain "
  4341. "Association."
  4342. msgstr ""
  4343. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1717
  4344. msgid ""
  4345. "List of R1KHs in the same Mobility Domain. <br />Format: MAC-address,R1KH-ID "
  4346. "as 6 octets with colons,256-bit key as hex string. <br />This list is used "
  4347. "to map R1KH-ID to a destination MAC address when sending PMK-R1 key from the "
  4348. "R0KH. This is also the list of authorized R1KHs in the MD that can request "
  4349. "PMK-R1 keys."
  4350. msgstr ""
  4351. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:82
  4352. msgid "List of SSH key files for auth"
  4353. msgstr ""
  4354. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:523
  4355. msgid "List of domains to allow {rfc_1918_link} responses for."
  4356. msgstr ""
  4357. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:301
  4358. msgid "List of upstream NTP server candidates with which to synchronize."
  4359. msgstr ""
  4360. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:162
  4361. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:38
  4362. msgid "Listen Port"
  4363. msgstr ""
  4364. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:263
  4365. msgid "Listen addresses"
  4366. msgstr ""
  4367. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:260
  4368. msgid "Listen for peers"
  4369. msgstr ""
  4370. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:544
  4371. msgid "Listen interfaces"
  4372. msgstr ""
  4373. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:20
  4374. msgid "Listen only on the given interface or, if unspecified, on all"
  4375. msgstr ""
  4376. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:545
  4377. msgid ""
  4378. "Listen only on the specified interfaces, and loopback if not excluded "
  4379. "explicitly."
  4380. msgstr ""
  4381. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:292
  4382. msgid "Listen to multicast beacons"
  4383. msgstr ""
  4384. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:286
  4385. msgid "ListenPort setting is invalid"
  4386. msgstr ""
  4387. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:784
  4388. msgid "Listening port for inbound DNS queries."
  4389. msgstr ""
  4390. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:130
  4391. #: themes/luci-theme-openwrt/ucode/template/themes/openwrt.org/header.ut:46
  4392. msgid "Load"
  4393. msgstr ""
  4394. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:63
  4395. msgid "Load Average"
  4396. msgstr ""
  4397. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:228
  4398. msgid ""
  4399. "Load Average is a metric that is used by Linux to keep track of system "
  4400. "resources."
  4401. msgstr ""
  4402. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:175
  4403. msgid "Load configuration…"
  4404. msgstr ""
  4405. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1249
  4406. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2217
  4407. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:167
  4408. msgid "Loading data…"
  4409. msgstr ""
  4410. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3027
  4411. msgid "Loading directory contents…"
  4412. msgstr ""
  4413. #: modules/luci-base/htdocs/luci-static/resources/luci.js:1942
  4414. #: modules/luci-base/ucode/template/view.ut:4
  4415. #: modules/luci-mod-status/ucode/template/admin_status/index.ut:12
  4416. #: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:40
  4417. msgid "Loading view…"
  4418. msgstr ""
  4419. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:956
  4420. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:100
  4421. msgid "Local"
  4422. msgstr ""
  4423. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:169
  4424. msgid "Local IP address"
  4425. msgstr ""
  4426. #: modules/luci-base/htdocs/luci-static/resources/network.js:12
  4427. #: modules/luci-compat/luasrc/model/network.lua:30
  4428. msgid "Local IP address is invalid"
  4429. msgstr ""
  4430. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:86
  4431. msgid "Local IP address to assign"
  4432. msgstr ""
  4433. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:46
  4434. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:46
  4435. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:44
  4436. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:40
  4437. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:39
  4438. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6to4.js:39
  4439. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/ipip6.js:44
  4440. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:151
  4441. #: protocols/luci-proto-vti/htdocs/luci-static/resources/protocol/vti.js:44
  4442. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:47
  4443. msgid "Local IPv4 address"
  4444. msgstr ""
  4445. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:934
  4446. msgid "Local IPv6 DNS server"
  4447. msgstr ""
  4448. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:46
  4449. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:53
  4450. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:54
  4451. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:47
  4452. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/ipip6.js:48
  4453. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:47
  4454. msgid "Local IPv6 address"
  4455. msgstr ""
  4456. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:115
  4457. msgid "Local Startup"
  4458. msgstr ""
  4459. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:61
  4460. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:131
  4461. msgid "Local Time"
  4462. msgstr ""
  4463. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1079
  4464. msgid "Local ULA"
  4465. msgstr ""
  4466. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:48
  4467. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:48
  4468. msgid "Local VTEP"
  4469. msgstr ""
  4470. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:428
  4471. msgid "Local domain"
  4472. msgstr ""
  4473. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:429
  4474. msgid "Local domain suffix appended to DHCP names and hosts file entries."
  4475. msgstr ""
  4476. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:531
  4477. msgid "Local service only"
  4478. msgstr ""
  4479. #: protocols/luci-proto-unet/htdocs/luci-static/resources/protocol/unet.js:41
  4480. msgid "Local wireguard key"
  4481. msgstr ""
  4482. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:711
  4483. msgid "Localise queries"
  4484. msgstr ""
  4485. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:117
  4486. msgid "Location Area Code"
  4487. msgstr ""
  4488. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2280
  4489. msgid "Lock to BSSID"
  4490. msgstr ""
  4491. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:395
  4492. msgid "Log"
  4493. msgstr ""
  4494. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:442
  4495. msgid ""
  4496. "Log all options sent to DHCP clients and the tags used to determine them."
  4497. msgstr ""
  4498. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:98
  4499. msgctxt "nft log action"
  4500. msgid "Log event \"<strong>%h</strong>…\""
  4501. msgstr ""
  4502. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:446
  4503. msgid "Log facility"
  4504. msgstr ""
  4505. #: modules/luci-base/ucode/template/sysauth.ut:38
  4506. #: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:36
  4507. msgid "Log in"
  4508. msgstr ""
  4509. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2674
  4510. msgid "Log in…"
  4511. msgstr ""
  4512. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:340
  4513. msgid "Log level"
  4514. msgstr ""
  4515. #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:81
  4516. msgid "Log out"
  4517. msgstr ""
  4518. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:185
  4519. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:155
  4520. msgid "Log output level"
  4521. msgstr ""
  4522. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:436
  4523. msgid "Log queries"
  4524. msgstr ""
  4525. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:123
  4526. msgid "Logging"
  4527. msgstr ""
  4528. #: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:23
  4529. msgid "Logging in…"
  4530. msgstr ""
  4531. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57
  4532. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:57
  4533. msgid ""
  4534. "Logical network from which to select the local endpoint if local IPv6 "
  4535. "address is empty and no WAN IPv6 is available (optional)."
  4536. msgstr ""
  4537. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:57
  4538. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62
  4539. msgid "Logical network to which the tunnel will be added (bridged) (optional)."
  4540. msgstr ""
  4541. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:682
  4542. msgid "Loose filtering"
  4543. msgstr ""
  4544. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:668
  4545. msgid "Lowest leased address as offset from the network address."
  4546. msgstr ""
  4547. #: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/footer.ut:12
  4548. msgid "Lua compatibility mode active"
  4549. msgstr ""
  4550. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:48
  4551. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:85
  4552. msgid "MAC"
  4553. msgstr ""
  4554. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1527
  4555. msgid "MAC Address"
  4556. msgstr ""
  4557. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1146
  4558. msgid "MAC Address Filter"
  4559. msgstr ""
  4560. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:258
  4561. msgid "MAC Address For The Actor"
  4562. msgstr ""
  4563. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:401
  4564. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1495
  4565. msgid "MAC VLAN"
  4566. msgstr ""
  4567. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:645
  4568. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:40
  4569. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1228
  4570. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2411
  4571. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:47
  4572. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:89
  4573. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:233
  4574. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:189
  4575. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:215
  4576. msgid "MAC address"
  4577. msgstr ""
  4578. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1191
  4579. msgid "MAC address(es)"
  4580. msgstr ""
  4581. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1048
  4582. msgid "MAC-Filter"
  4583. msgstr ""
  4584. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1153
  4585. msgid "MAC-List"
  4586. msgstr ""
  4587. #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:18
  4588. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:13
  4589. msgid "MAP / LW4over6"
  4590. msgstr ""
  4591. #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:65
  4592. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:7
  4593. msgid "MAP rule is invalid"
  4594. msgstr ""
  4595. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:24
  4596. msgid "MBIM Cellular"
  4597. msgstr ""
  4598. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:225
  4599. msgid "MD5"
  4600. msgstr ""
  4601. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:199
  4602. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:28
  4603. msgid "MHz"
  4604. msgstr ""
  4605. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:359
  4606. msgid "MII"
  4607. msgstr ""
  4608. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:427
  4609. msgid "MII / ETHTOOL ioctls"
  4610. msgstr ""
  4611. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:400
  4612. msgid "MII Interval"
  4613. msgstr ""
  4614. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:634
  4615. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1539
  4616. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:90
  4617. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:53
  4618. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:83
  4619. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:83
  4620. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:182
  4621. #: protocols/luci-proto-xfrm/htdocs/luci-static/resources/protocol/xfrm.js:46
  4622. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:241
  4623. msgid "MTU"
  4624. msgstr ""
  4625. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:936
  4626. msgid "MX"
  4627. msgstr ""
  4628. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:303
  4629. msgid ""
  4630. "Make sure to clone the root filesystem using something like the commands "
  4631. "below:"
  4632. msgstr ""
  4633. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:122
  4634. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:115
  4635. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:53
  4636. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:98
  4637. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:84
  4638. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:58
  4639. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:71
  4640. msgid "Manual"
  4641. msgstr ""
  4642. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:82
  4643. msgid "Manufacturer"
  4644. msgstr ""
  4645. #: modules/luci-base/htdocs/luci-static/resources/network.js:3908
  4646. msgid "Master (VLAN)"
  4647. msgstr ""
  4648. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1272
  4649. msgid "Match Tag"
  4650. msgstr ""
  4651. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:907
  4652. msgid "Match this Tag"
  4653. msgstr ""
  4654. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:161
  4655. msgid "Match traffic destined to this interface"
  4656. msgstr ""
  4657. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:165
  4658. msgid "Match traffic destined to this subnet (CIDR notation)"
  4659. msgstr ""
  4660. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:150
  4661. msgid "Match traffic from this interface"
  4662. msgstr ""
  4663. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:154
  4664. msgid "Match traffic from this source subnet (CIDR notation)"
  4665. msgstr ""
  4666. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:174
  4667. msgid "Matched traffic re-targets to an interface using this table."
  4668. msgstr ""
  4669. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:850
  4670. msgid "Max <abbr title=\"Router Advertisement\">RA</abbr> interval"
  4671. msgstr ""
  4672. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:90
  4673. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:90
  4674. msgid "Max FDB size"
  4675. msgstr ""
  4676. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:848
  4677. msgid "Max cache TTL"
  4678. msgstr ""
  4679. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:806
  4680. msgid "Max valid value %s."
  4681. msgstr ""
  4682. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:813
  4683. msgid "Max. DHCP leases"
  4684. msgstr ""
  4685. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:820
  4686. msgid "Max. EDNS0 packet size"
  4687. msgstr ""
  4688. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:827
  4689. msgid "Max. concurrent queries"
  4690. msgstr ""
  4691. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:586
  4692. msgid "Maximum age"
  4693. msgstr ""
  4694. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1255
  4695. msgid "Maximum allowed Listen Interval"
  4696. msgstr ""
  4697. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:814
  4698. msgid "Maximum allowed number of active DHCP leases."
  4699. msgstr ""
  4700. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:828
  4701. msgid "Maximum allowed number of concurrent DNS queries."
  4702. msgstr ""
  4703. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:821
  4704. msgid "Maximum allowed size of EDNS0 UDP packets."
  4705. msgstr ""
  4706. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:126
  4707. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:124
  4708. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:113
  4709. msgid "Maximum amount of seconds to wait for the modem to become ready"
  4710. msgstr ""
  4711. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:91
  4712. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:91
  4713. msgid "Maximum number of FDB entries"
  4714. msgstr ""
  4715. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:673
  4716. msgid "Maximum number of leased addresses."
  4717. msgstr ""
  4718. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:596
  4719. msgid "Maximum snooping table size"
  4720. msgstr ""
  4721. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:805
  4722. msgid "Maximum source port #"
  4723. msgstr ""
  4724. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:850
  4725. msgid ""
  4726. "Maximum time allowed between sending unsolicited <abbr title=\"Router "
  4727. "Advertisement, ICMPv6 Type 134\">RA</abbr>. Default is 600 seconds."
  4728. msgstr ""
  4729. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1008
  4730. msgid "Maximum transmit power"
  4731. msgstr ""
  4732. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:687
  4733. msgid "May prevent VoIP or other services from working."
  4734. msgstr ""
  4735. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:129
  4736. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:188
  4737. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:199
  4738. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:28
  4739. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:171
  4740. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:324
  4741. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:325
  4742. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:326
  4743. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:330
  4744. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:331
  4745. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:332
  4746. msgid "Mbit/s"
  4747. msgstr ""
  4748. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:35
  4749. msgid "Medium"
  4750. msgstr ""
  4751. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:24
  4752. msgid "Memory"
  4753. msgstr ""
  4754. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:73
  4755. msgid "Memory usage (%)"
  4756. msgstr ""
  4757. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:156
  4758. msgid "Mesh ID"
  4759. msgstr ""
  4760. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1057
  4761. msgid "Mesh Id"
  4762. msgstr ""
  4763. #: modules/luci-base/htdocs/luci-static/resources/network.js:3910
  4764. msgid "Mesh Point"
  4765. msgstr ""
  4766. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:41
  4767. msgid "Mesh Routing"
  4768. msgstr ""
  4769. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:41
  4770. msgid "Mesh and routing related options"
  4771. msgstr ""
  4772. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:404
  4773. msgid "Method not found"
  4774. msgstr ""
  4775. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:355
  4776. msgid "Method of link monitoring"
  4777. msgstr ""
  4778. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:424
  4779. msgid "Method to determine link status"
  4780. msgstr ""
  4781. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:83
  4782. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:199
  4783. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:225
  4784. msgid "Metric"
  4785. msgstr ""
  4786. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1034
  4787. msgid ""
  4788. "Metric is an ordinal, where a gateway with 1 is chosen 1st, 2 is chosen 2nd, "
  4789. "3 is chosen 3rd, etc"
  4790. msgstr ""
  4791. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:70
  4792. msgctxt "nft unit"
  4793. msgid "MiB"
  4794. msgstr ""
  4795. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:857
  4796. msgid "Min <abbr title=\"Router Advertisement\">RA</abbr> interval"
  4797. msgstr ""
  4798. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:841
  4799. msgid "Min cache TTL"
  4800. msgstr ""
  4801. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:798
  4802. msgid "Min valid value %s."
  4803. msgstr ""
  4804. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:721
  4805. msgid "Minimum ARP validity time"
  4806. msgstr ""
  4807. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:242
  4808. msgid "Minimum Number of Links"
  4809. msgstr ""
  4810. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:721
  4811. msgid ""
  4812. "Minimum required time in seconds before an ARP entry may be replaced. "
  4813. "Prevents ARP cache thrashing."
  4814. msgstr ""
  4815. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:797
  4816. msgid "Minimum source port #"
  4817. msgstr ""
  4818. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:857
  4819. msgid ""
  4820. "Minimum time allowed between sending unsolicited <abbr title=\"Router "
  4821. "Advertisement, ICMPv6 Type 134\">RA</abbr>. Default is 200 seconds."
  4822. msgstr ""
  4823. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:204
  4824. msgid "Mirror monitor port"
  4825. msgstr ""
  4826. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:203
  4827. msgid "Mirror source port"
  4828. msgstr ""
  4829. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:120
  4830. msgid "Mobile Country Code"
  4831. msgstr ""
  4832. #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:9
  4833. msgid "Mobile Data"
  4834. msgstr ""
  4835. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:123
  4836. msgid "Mobile Network Code"
  4837. msgstr ""
  4838. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1673
  4839. msgid "Mobility Domain"
  4840. msgstr ""
  4841. #: modules/luci-compat/luasrc/view/cbi/wireless_modefreq.htm:182
  4842. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:488
  4843. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:157
  4844. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:180
  4845. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:553
  4846. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1052
  4847. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1972
  4848. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:446
  4849. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:148
  4850. msgid "Mode"
  4851. msgstr ""
  4852. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:56
  4853. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:83
  4854. msgid "Model"
  4855. msgstr ""
  4856. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:81
  4857. msgid "Modem Info"
  4858. msgstr ""
  4859. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:9
  4860. msgid ""
  4861. "Modem connection in progress. Please wait. This process will timeout after 2 "
  4862. "minutes."
  4863. msgstr ""
  4864. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:77
  4865. msgid "Modem default"
  4866. msgstr ""
  4867. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:73
  4868. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:54
  4869. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:51
  4870. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:65
  4871. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:73
  4872. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:57
  4873. msgid "Modem device"
  4874. msgstr ""
  4875. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:66
  4876. msgid "Modem information query failed"
  4877. msgstr ""
  4878. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:126
  4879. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:124
  4880. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:119
  4881. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:113
  4882. msgid "Modem init timeout"
  4883. msgstr ""
  4884. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:21
  4885. msgid "ModemManager"
  4886. msgstr ""
  4887. #: modules/luci-base/htdocs/luci-static/resources/network.js:3907
  4888. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1140
  4889. msgid "Monitor"
  4890. msgstr ""
  4891. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:31
  4892. msgid "More Characters"
  4893. msgstr ""
  4894. #: modules/luci-base/htdocs/luci-static/resources/form.js:2539
  4895. msgid "More…"
  4896. msgstr ""
  4897. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:192
  4898. msgid "Mount Point"
  4899. msgstr ""
  4900. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:144
  4901. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:228
  4902. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:102
  4903. msgid "Mount Points"
  4904. msgstr ""
  4905. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:229
  4906. msgid "Mount Points - Mount Entry"
  4907. msgstr ""
  4908. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:339
  4909. msgid "Mount Points - Swap Entry"
  4910. msgstr ""
  4911. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:228
  4912. msgid ""
  4913. "Mount Points define at which point a memory device will be attached to the "
  4914. "filesystem"
  4915. msgstr ""
  4916. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:154
  4917. msgid "Mount attached devices"
  4918. msgstr ""
  4919. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:162
  4920. msgid "Mount filesystems not specifically configured"
  4921. msgstr ""
  4922. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:332
  4923. msgid "Mount options"
  4924. msgstr ""
  4925. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:293
  4926. msgid "Mount point"
  4927. msgstr ""
  4928. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:158
  4929. msgid "Mount swap not specifically configured"
  4930. msgstr ""
  4931. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:223
  4932. msgid "Mounted file systems"
  4933. msgstr ""
  4934. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:152
  4935. msgid "Move down"
  4936. msgstr ""
  4937. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:151
  4938. msgid "Move up"
  4939. msgstr ""
  4940. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1213
  4941. msgid "Multi To Unicast"
  4942. msgstr ""
  4943. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:89
  4944. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:94
  4945. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:91
  4946. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:96
  4947. msgid "Multicast"
  4948. msgstr ""
  4949. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:99
  4950. msgid "Multicast Mode"
  4951. msgstr ""
  4952. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:772
  4953. msgid "Multicast routing"
  4954. msgstr ""
  4955. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:281
  4956. msgid "Multicast rules"
  4957. msgstr ""
  4958. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:778
  4959. msgid "Multicast to unicast"
  4960. msgstr ""
  4961. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1522
  4962. msgid "Must be in %s format."
  4963. msgstr ""
  4964. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:197
  4965. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:197
  4966. msgid "My Peer"
  4967. msgstr ""
  4968. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1668
  4969. msgid "NAS ID"
  4970. msgstr ""
  4971. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:536
  4972. msgid "NAT action chain \"%h\""
  4973. msgstr ""
  4974. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:87
  4975. msgid "NAT-T Mode"
  4976. msgstr ""
  4977. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:41
  4978. msgid "NAT64 Prefix"
  4979. msgstr ""
  4980. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:843
  4981. msgid "NAT64 prefix"
  4982. msgstr ""
  4983. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:26
  4984. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:35
  4985. msgid "NCM"
  4986. msgstr ""
  4987. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:991
  4988. msgid "NDP-Proxy slave"
  4989. msgstr ""
  4990. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:72
  4991. msgid "NT Domain"
  4992. msgstr ""
  4993. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:951
  4994. msgid "NTP Servers"
  4995. msgstr ""
  4996. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:300
  4997. msgid "NTP server candidates"
  4998. msgstr ""
  4999. #: modules/luci-base/htdocs/luci-static/resources/form.js:2576
  5000. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4234
  5001. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:27
  5002. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:94
  5003. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1180
  5004. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:68
  5005. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:36
  5006. msgid "Name"
  5007. msgstr ""
  5008. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2257
  5009. msgid ""
  5010. "Name for OpenWrt network configuration. (No relation to wireless network "
  5011. "name/SSID)"
  5012. msgstr ""
  5013. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2256
  5014. msgid "Name of the new network"
  5015. msgstr ""
  5016. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:229
  5017. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:229
  5018. msgid ""
  5019. "Name of the outgoing interface to reach the remote VXLAN tunnel endpoint"
  5020. msgstr ""
  5021. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1134
  5022. msgid "Name of the set"
  5023. msgstr ""
  5024. #: protocols/luci-proto-unet/htdocs/luci-static/resources/protocol/unet.js:38
  5025. msgid "Name of the tunnel device"
  5026. msgstr ""
  5027. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:416
  5028. msgid "Names not in {etc_hosts} are answered {not_found}."
  5029. msgstr ""
  5030. #: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:39
  5031. #: themes/luci-theme-openwrt/ucode/template/themes/openwrt.org/header.ut:42
  5032. msgid "Navigation"
  5033. msgstr ""
  5034. #: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:10
  5035. msgid "Nebula Network"
  5036. msgstr ""
  5037. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1730
  5038. msgid "Neighbour Report"
  5039. msgstr ""
  5040. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:713
  5041. msgid "Neighbour cache validity"
  5042. msgstr ""
  5043. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1148
  5044. msgid "Netfilter table name"
  5045. msgstr ""
  5046. #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:45
  5047. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1085
  5048. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2410
  5049. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:386
  5050. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:54
  5051. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:232
  5052. msgid "Network"
  5053. msgstr "Network"
  5054. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:104
  5055. msgid "Network Coding"
  5056. msgstr ""
  5057. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:76
  5058. msgid "Network Mode"
  5059. msgstr ""
  5060. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:97
  5061. msgid "Network Registration"
  5062. msgstr ""
  5063. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2250
  5064. msgid "Network SSID"
  5065. msgstr ""
  5066. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:60
  5067. msgid "Network address"
  5068. msgstr ""
  5069. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:179
  5070. msgid "Network and its mask that define the size of the destination"
  5071. msgstr ""
  5072. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:184
  5073. msgid "Network and its mask that define which source addresses use this route"
  5074. msgstr ""
  5075. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:866
  5076. msgid "Network boot image"
  5077. msgstr ""
  5078. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:381
  5079. msgid "Network bridge configuration migration"
  5080. msgstr ""
  5081. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:397
  5082. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1501
  5083. msgid "Network device"
  5084. msgstr ""
  5085. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:7
  5086. msgid "Network device activity (kernel: netdev)"
  5087. msgstr ""
  5088. #: modules/luci-base/htdocs/luci-static/resources/network.js:15
  5089. #: modules/luci-compat/luasrc/model/network.lua:33
  5090. msgid "Network device is not present"
  5091. msgstr ""
  5092. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:645
  5093. msgid "Network device table \"%h\""
  5094. msgstr ""
  5095. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:78
  5096. msgctxt "nft @nh,off,len"
  5097. msgid "Network header bits %d-%d"
  5098. msgstr ""
  5099. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:415
  5100. msgid "Network ifname configuration migration"
  5101. msgstr ""
  5102. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:57
  5103. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62
  5104. msgid "Network interface"
  5105. msgstr ""
  5106. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:773
  5107. msgid "Never"
  5108. msgstr ""
  5109. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:16
  5110. msgctxt "No WireGuard peer handshake yet"
  5111. msgid "Never"
  5112. msgstr ""
  5113. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:415
  5114. msgid "Never forward DNS queries which lack dots or domain parts."
  5115. msgstr ""
  5116. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:424
  5117. msgid ""
  5118. "Never forward these matching domains or subdomains; resolve from DHCP or "
  5119. "hosts files only."
  5120. msgstr ""
  5121. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:380
  5122. msgctxt "Dnsmasq instance"
  5123. msgid "New instance name…"
  5124. msgstr ""
  5125. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1235
  5126. msgid "New interface for \"%s\" can not be created: %s"
  5127. msgstr ""
  5128. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1183
  5129. msgid "New interface name…"
  5130. msgstr ""
  5131. #: modules/luci-compat/luasrc/view/cbi/delegator.htm:11
  5132. msgid "Next »"
  5133. msgstr ""
  5134. #: modules/luci-base/htdocs/luci-static/resources/form.js:4181
  5135. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:303
  5136. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:351
  5137. msgid "No"
  5138. msgstr ""
  5139. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:642
  5140. msgid "No DHCP Server configured for this interface"
  5141. msgstr ""
  5142. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:202
  5143. msgid "No Data"
  5144. msgstr ""
  5145. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1465
  5146. msgid "No Encryption"
  5147. msgstr ""
  5148. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:171
  5149. msgid "No Host Routes"
  5150. msgstr ""
  5151. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:89
  5152. msgid "No NAT-T"
  5153. msgstr ""
  5154. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:79
  5155. msgid "No RX signal"
  5156. msgstr ""
  5157. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:148
  5158. msgid "No WireGuard interfaces configured."
  5159. msgstr ""
  5160. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:16
  5161. msgid "No allowed mode configuration found."
  5162. msgstr ""
  5163. #: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:69
  5164. #: themes/luci-theme-material/ucode/template/themes/material/header.ut:89
  5165. #: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:65
  5166. #: themes/luci-theme-openwrt/ucode/template/themes/openwrt.org/header.ut:82
  5167. msgid ""
  5168. "No changes to settings will be stored and are lost after rebooting. This "
  5169. "mode should only be used to install a firmware upgrade"
  5170. msgstr ""
  5171. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69
  5172. msgid "No client associated"
  5173. msgstr ""
  5174. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:27
  5175. msgid "No control device specified"
  5176. msgstr ""
  5177. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3265
  5178. msgctxt "empty table placeholder"
  5179. msgid "No data"
  5180. msgstr ""
  5181. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:406
  5182. msgid "No data received"
  5183. msgstr ""
  5184. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:750
  5185. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:757
  5186. msgid "No enforcement"
  5187. msgstr ""
  5188. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:239
  5189. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:242
  5190. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:245
  5191. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:248
  5192. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:251
  5193. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:254
  5194. msgid "No entries available"
  5195. msgstr ""
  5196. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2951
  5197. msgid "No entries in this directory"
  5198. msgstr ""
  5199. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:858
  5200. msgid ""
  5201. "No fixed interface listening port defined, peers might not be able to "
  5202. "initiate connections to this WireGuard instance!"
  5203. msgstr ""
  5204. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:86
  5205. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:91
  5206. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:88
  5207. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:93
  5208. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:70
  5209. msgid "No host route"
  5210. msgstr ""
  5211. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:792
  5212. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:142
  5213. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:362
  5214. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:59
  5215. msgid "No information available"
  5216. msgstr ""
  5217. #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:66
  5218. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:8
  5219. msgid "No matching prefix delegation"
  5220. msgstr ""
  5221. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:145
  5222. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:148
  5223. msgid "No more slaves available"
  5224. msgstr ""
  5225. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:194
  5226. msgid "No more slaves available, can not save interface"
  5227. msgstr ""
  5228. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:730
  5229. msgid "No negative cache"
  5230. msgstr ""
  5231. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:696
  5232. msgid "No nftables ruleset loaded."
  5233. msgstr ""
  5234. #: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:58
  5235. #: themes/luci-theme-material/ucode/template/themes/material/header.ut:78
  5236. #: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:54
  5237. #: themes/luci-theme-openwrt/ucode/template/themes/openwrt.org/header.ut:71
  5238. msgid "No password set!"
  5239. msgstr ""
  5240. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:84
  5241. msgid "No peers connected"
  5242. msgstr ""
  5243. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:497
  5244. msgid "No peers defined yet."
  5245. msgstr ""
  5246. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:15
  5247. msgid "No preferred mode configuration found."
  5248. msgstr ""
  5249. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:146
  5250. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:283
  5251. msgid "No public keys present yet."
  5252. msgstr ""
  5253. #: modules/luci-base/htdocs/luci-static/resources/tools/views.js:20
  5254. msgid "No related logs yet!"
  5255. msgstr ""
  5256. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:613
  5257. msgctxt "nft chain is empty"
  5258. msgid "No rules in this chain"
  5259. msgstr ""
  5260. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:91
  5261. msgid "No rules in this chain."
  5262. msgstr ""
  5263. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:390
  5264. msgid "No validation or filtering"
  5265. msgstr ""
  5266. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:139
  5267. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1280
  5268. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:259
  5269. msgid "No zone assigned"
  5270. msgstr ""
  5271. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:246
  5272. msgid "Node info"
  5273. msgstr ""
  5274. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:250
  5275. msgid "Node info privacy"
  5276. msgstr ""
  5277. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:58
  5278. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:84
  5279. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:187
  5280. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:235
  5281. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:279
  5282. msgid "Noise"
  5283. msgstr ""
  5284. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:30
  5285. msgid "Noise Margin"
  5286. msgstr ""
  5287. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:272
  5288. msgid "Noise:"
  5289. msgstr ""
  5290. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:537
  5291. msgid "Non-wildcard"
  5292. msgstr ""
  5293. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:159
  5294. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:183
  5295. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:80
  5296. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:85
  5297. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:114
  5298. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:182
  5299. msgid "None"
  5300. msgstr ""
  5301. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1016
  5302. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:198
  5303. msgid "Normal"
  5304. msgstr ""
  5305. #: modules/luci-base/ucode/template/error404.ut:9
  5306. msgid "Not Found"
  5307. msgstr ""
  5308. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:211
  5309. msgctxt "VLAN port state"
  5310. msgid "Not Member"
  5311. msgstr ""
  5312. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:75
  5313. msgid "Not associated"
  5314. msgstr ""
  5315. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:36
  5316. msgid "Not connected"
  5317. msgstr ""
  5318. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:46
  5319. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:83
  5320. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:107
  5321. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:133
  5322. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:301
  5323. msgid "Not present"
  5324. msgstr ""
  5325. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:92
  5326. msgid "Not started on boot"
  5327. msgstr ""
  5328. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:409
  5329. msgid "Not supported"
  5330. msgstr ""
  5331. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:714
  5332. msgid "Note: IPv4 only."
  5333. msgstr ""
  5334. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1888
  5335. msgid ""
  5336. "Note: Some wireless drivers do not fully support 802.11w. E.g. mwlwifi may "
  5337. "have problems"
  5338. msgstr ""
  5339. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1922
  5340. msgid ""
  5341. "Note: Workaround mode allows a STA that claims OCV capability to connect "
  5342. "even if the STA doesn't send OCI or negotiate PMF."
  5343. msgstr ""
  5344. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1571
  5345. msgid ""
  5346. "Note: this setting is for local services on the device only (not for "
  5347. "forwarding)."
  5348. msgstr ""
  5349. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:558
  5350. msgid ""
  5351. "Note: you may also need a DHCP Proxy (currently unavailable) when specifying "
  5352. "a non-standard Relay To port(<code>addr#port</code>)."
  5353. msgstr ""
  5354. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:142
  5355. msgid "Notes"
  5356. msgstr ""
  5357. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:188
  5358. msgid "Notice"
  5359. msgstr ""
  5360. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:135
  5361. msgid "Nslookup"
  5362. msgstr ""
  5363. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:338
  5364. msgid "Number of IGMP membership reports"
  5365. msgstr ""
  5366. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:835
  5367. msgid "Number of cached DNS entries, 10000 is maximum, 0 is no caching."
  5368. msgstr ""
  5369. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:316
  5370. msgid "Number of peer notifications after failover event"
  5371. msgstr ""
  5372. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:69
  5373. msgid "Obfuscated Group Password"
  5374. msgstr ""
  5375. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:61
  5376. msgid "Obfuscated Password"
  5377. msgstr ""
  5378. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:118
  5379. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:111
  5380. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:49
  5381. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:94
  5382. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:80
  5383. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:54
  5384. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:67
  5385. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:93
  5386. msgid "Obtain IPv6 address"
  5387. msgstr ""
  5388. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/none.js:19
  5389. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:87
  5390. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:357
  5391. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:342
  5392. msgid "Off"
  5393. msgstr ""
  5394. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/timer.js:18
  5395. msgid "Off-State Delay"
  5396. msgstr ""
  5397. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1560
  5398. msgid ""
  5399. "Off: <code>vlanXXX</code>, e.g., <code>vlan1</code>. On: "
  5400. "<code>vlan_tagged_interface.XXX</code>, e.g. <code>eth0.1</code>."
  5401. msgstr ""
  5402. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:652
  5403. msgid ""
  5404. "Off: use all files in the directory including the instance specific hosts "
  5405. "file"
  5406. msgstr ""
  5407. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/none.js:19
  5408. msgid "On"
  5409. msgstr ""
  5410. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:112
  5411. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:112
  5412. msgid "On a l2miss, send ARP"
  5413. msgstr ""
  5414. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:118
  5415. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:118
  5416. msgid "On a l3miss, send ARP for IP -> mac resolution"
  5417. msgstr ""
  5418. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/timer.js:12
  5419. msgid "On-State Delay"
  5420. msgstr ""
  5421. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:115
  5422. msgid "On-link"
  5423. msgstr ""
  5424. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:651
  5425. msgid "On: use instance specific hosts file only"
  5426. msgstr ""
  5427. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1219
  5428. msgid "One of hostname or MAC address must be specified!"
  5429. msgstr ""
  5430. #: modules/luci-base/htdocs/luci-static/resources/validation.js:520
  5431. msgid "One of the following: %s"
  5432. msgstr ""
  5433. #: modules/luci-compat/luasrc/view/cbi/nullsection.htm:17
  5434. #: modules/luci-compat/luasrc/view/cbi/ucisection.htm:22
  5435. msgid "One or more fields contain invalid values!"
  5436. msgstr ""
  5437. #: modules/luci-compat/luasrc/view/cbi/map.htm:32
  5438. msgid "One or more invalid/required values on tab"
  5439. msgstr ""
  5440. #: modules/luci-compat/luasrc/view/cbi/nullsection.htm:19
  5441. #: modules/luci-compat/luasrc/view/cbi/ucisection.htm:24
  5442. msgid "One or more required fields have no value!"
  5443. msgstr ""
  5444. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:908
  5445. msgid "Only DHCP Clients with this tag are sent this boot option."
  5446. msgstr ""
  5447. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:619
  5448. msgid "Only accept replies via"
  5449. msgstr ""
  5450. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:769
  5451. msgid "Only allow communication with non-isolated bridge ports when enabled"
  5452. msgstr ""
  5453. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:236
  5454. msgid ""
  5455. "Only if current active slave fails and the primary slave is up (failure, 2)"
  5456. msgstr ""
  5457. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:97
  5458. msgid "Only interfaces using this table (via override) will use this route."
  5459. msgstr ""
  5460. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:682
  5461. msgid "Open iptables rules overview…"
  5462. msgstr ""
  5463. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:474
  5464. msgid "Open list..."
  5465. msgstr ""
  5466. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:65
  5467. msgid "OpenConnect"
  5468. msgstr ""
  5469. #: modules/luci-compat/luasrc/model/network/proto_openconnect.lua:9
  5470. msgid "OpenConnect (CISCO AnyConnect)"
  5471. msgstr ""
  5472. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:63
  5473. msgid "OpenFortivpn"
  5474. msgstr ""
  5475. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:723
  5476. msgid ""
  5477. "Operate in <em>relay mode</em> if a designated master interface is "
  5478. "configured and active, otherwise disable <abbr title=\"Neighbour Discovery "
  5479. "Protocol\">NDP</abbr> proxying."
  5480. msgstr ""
  5481. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:722
  5482. msgid ""
  5483. "Operate in <em>relay mode</em> if a designated master interface is "
  5484. "configured and active, otherwise fall back to <em>server mode</em>."
  5485. msgstr ""
  5486. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:724
  5487. msgid ""
  5488. "Operate in <em>relay mode</em> if an upstream IPv6 prefix is present, "
  5489. "otherwise disable service."
  5490. msgstr ""
  5491. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1922
  5492. msgid "Operating Channel Validation"
  5493. msgstr ""
  5494. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1001
  5495. msgid "Operating frequency"
  5496. msgstr ""
  5497. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:100
  5498. msgid "Operator"
  5499. msgstr ""
  5500. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:101
  5501. msgid "Operator Code"
  5502. msgstr ""
  5503. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:135
  5504. msgid "Operator Name"
  5505. msgstr ""
  5506. #: modules/luci-base/htdocs/luci-static/resources/form.js:2008
  5507. #: modules/luci-base/htdocs/luci-static/resources/form.js:4193
  5508. msgid "Option \"%s\" contains an invalid input value."
  5509. msgstr ""
  5510. #: modules/luci-base/htdocs/luci-static/resources/form.js:2023
  5511. msgid "Option \"%s\" must not be empty."
  5512. msgstr ""
  5513. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4475
  5514. msgid "Option changed"
  5515. msgstr ""
  5516. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4477
  5517. msgid "Option removed"
  5518. msgstr ""
  5519. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1549
  5520. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1890
  5521. msgid "Optional"
  5522. msgstr ""
  5523. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1177
  5524. msgid "Optional hostname to assign"
  5525. msgstr ""
  5526. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:246
  5527. msgid ""
  5528. "Optional node info. This must be a { \"key\": \"value\", ... } map or set as "
  5529. "null. This is entirely optional but, if set, is visible to the whole network "
  5530. "on request."
  5531. msgstr ""
  5532. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:142
  5533. msgid "Optional, free-form notes about this device"
  5534. msgstr ""
  5535. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:147
  5536. msgid "Optional, in seconds. If set to '0', no reconnect is attempted."
  5537. msgstr ""
  5538. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:187
  5539. msgid ""
  5540. "Optional. 32-bit mark for outgoing encrypted packets. Enter value in hex, "
  5541. "starting with <code>0x</code>."
  5542. msgstr ""
  5543. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1101
  5544. msgid ""
  5545. "Optional. Allowed values: 'eui64', 'random', fixed value like '::1' or "
  5546. "'::1:2'. When IPv6 prefix (like 'a:b:c:d::') is received from a delegating "
  5547. "server, use the suffix (like '::1') to form the IPv6 address ('a:b:c:d::1') "
  5548. "for the interface."
  5549. msgstr ""
  5550. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:587
  5551. msgid ""
  5552. "Optional. Base64-encoded preshared key. Adds in an additional layer of "
  5553. "symmetric-key cryptography for post-quantum resistance."
  5554. msgstr ""
  5555. #: protocols/luci-proto-xfrm/htdocs/luci-static/resources/protocol/xfrm.js:42
  5556. msgid "Optional. Bind to a specific interface."
  5557. msgstr ""
  5558. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:644
  5559. msgid "Optional. Create routes for Allowed IPs for this peer."
  5560. msgstr ""
  5561. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:196
  5562. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:196
  5563. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:505
  5564. msgid "Optional. Description of peer."
  5565. msgstr ""
  5566. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:171
  5567. msgid "Optional. Do not create host routes to peers."
  5568. msgstr ""
  5569. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:647
  5570. msgid ""
  5571. "Optional. Host of peer. Names are resolved prior to bringing up the "
  5572. "interface."
  5573. msgstr ""
  5574. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:609
  5575. msgid ""
  5576. "Optional. IP addresses and prefixes that this peer is allowed to use inside "
  5577. "the tunnel. Usually the peer's tunnel IP addresses and the networks the peer "
  5578. "routes through the tunnel."
  5579. msgstr ""
  5580. #: protocols/luci-proto-xfrm/htdocs/luci-static/resources/protocol/xfrm.js:46
  5581. msgid "Optional. Maximum Transmission Unit of the XFRM interface."
  5582. msgstr ""
  5583. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:182
  5584. msgid "Optional. Maximum Transmission Unit of tunnel interface."
  5585. msgstr ""
  5586. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:663
  5587. msgid "Optional. Port of peer."
  5588. msgstr ""
  5589. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:578
  5590. msgid ""
  5591. "Optional. Private key of the WireGuard peer. The key is not required for "
  5592. "establishing a connection but allows generating a peer configuration or QR "
  5593. "code if available. It can be removed after the configuration has been "
  5594. "exported."
  5595. msgstr ""
  5596. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:668
  5597. msgid ""
  5598. "Optional. Seconds between keep alive messages. Default is 0 (disabled). "
  5599. "Recommended value if this device is behind a NAT is 25."
  5600. msgstr ""
  5601. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:162
  5602. msgid "Optional. UDP port used for outgoing and incoming packets."
  5603. msgstr ""
  5604. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:72
  5605. msgid "Options"
  5606. msgstr ""
  5607. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:125
  5608. msgid "Options:"
  5609. msgstr ""
  5610. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:969
  5611. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1001
  5612. msgid "Ordinal: lower comes first."
  5613. msgstr ""
  5614. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:83
  5615. msgid "Ordinal: routes with the lowest metric match first"
  5616. msgstr ""
  5617. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:55
  5618. msgid "Originator Interval"
  5619. msgstr ""
  5620. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:351
  5621. msgid "Other:"
  5622. msgstr ""
  5623. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:69
  5624. msgid "Out"
  5625. msgstr ""
  5626. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:277
  5627. msgid "Outbound:"
  5628. msgstr ""
  5629. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:101
  5630. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:106
  5631. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:103
  5632. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:108
  5633. msgid "Outgoing checksum"
  5634. msgstr ""
  5635. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:161
  5636. msgid "Outgoing interface"
  5637. msgstr ""
  5638. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:96
  5639. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:101
  5640. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:98
  5641. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:103
  5642. #: protocols/luci-proto-vti/htdocs/luci-static/resources/protocol/vti.js:68
  5643. msgid "Outgoing key"
  5644. msgstr ""
  5645. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:103
  5646. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:108
  5647. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:105
  5648. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:110
  5649. msgid "Outgoing serialization"
  5650. msgstr ""
  5651. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:50
  5652. msgid "Output Interface"
  5653. msgstr ""
  5654. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:68
  5655. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:174
  5656. msgid "Output zone"
  5657. msgstr ""
  5658. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:16
  5659. msgid "Overlap"
  5660. msgstr ""
  5661. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1038
  5662. msgid "Override IPv4 routing table"
  5663. msgstr ""
  5664. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1043
  5665. msgid "Override IPv6 routing table"
  5666. msgstr ""
  5667. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv_hardif.js:54
  5668. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:64
  5669. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:69
  5670. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:69
  5671. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:74
  5672. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:53
  5673. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:128
  5674. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:144
  5675. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:193
  5676. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:57
  5677. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:132
  5678. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:118
  5679. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:96
  5680. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:105
  5681. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:117
  5682. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:66
  5683. #: protocols/luci-proto-vti/htdocs/luci-static/resources/protocol/vti.js:55
  5684. msgid "Override MTU"
  5685. msgstr ""
  5686. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:74
  5687. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:79
  5688. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:63
  5689. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:142
  5690. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:142
  5691. msgid "Override TOS"
  5692. msgstr ""
  5693. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:69
  5694. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:74
  5695. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:74
  5696. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:79
  5697. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:58
  5698. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:137
  5699. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:137
  5700. msgid "Override TTL"
  5701. msgstr ""
  5702. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1228
  5703. msgid ""
  5704. "Override default MAC address - the range of usable addresses might be "
  5705. "limited by the driver"
  5706. msgstr ""
  5707. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1220
  5708. msgid "Override default interface name"
  5709. msgstr ""
  5710. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:167
  5711. msgid "Override the gateway in DHCP responses"
  5712. msgstr ""
  5713. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:690
  5714. msgid ""
  5715. "Override the netmask sent to clients. Normally it is calculated from the "
  5716. "subnet that is served."
  5717. msgstr ""
  5718. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:179
  5719. msgid "Override the table used for internal routes"
  5720. msgstr ""
  5721. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:3
  5722. msgid "Overview"
  5723. msgstr "Overview"
  5724. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2795
  5725. msgid "Overwrite existing file \"%s\" ?"
  5726. msgstr ""
  5727. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:342
  5728. msgid "Overwrite the current settings with the imported configuration?"
  5729. msgstr ""
  5730. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:98
  5731. msgid "Own Numbers"
  5732. msgstr ""
  5733. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:70
  5734. msgid "Owner"
  5735. msgstr ""
  5736. #: modules/luci-base/htdocs/luci-static/resources/network.js:3911
  5737. msgid "P2P Client"
  5738. msgstr ""
  5739. #: modules/luci-base/htdocs/luci-static/resources/network.js:3912
  5740. msgid "P2P Go"
  5741. msgstr ""
  5742. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:78
  5743. msgid "PAP"
  5744. msgstr ""
  5745. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:77
  5746. msgid "PAP/CHAP"
  5747. msgstr ""
  5748. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:111
  5749. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:88
  5750. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:132
  5751. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:107
  5752. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:45
  5753. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:90
  5754. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:76
  5755. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:44
  5756. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:63
  5757. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:101
  5758. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:50
  5759. msgid "PAP/CHAP password"
  5760. msgstr ""
  5761. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:109
  5762. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:83
  5763. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:127
  5764. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:105
  5765. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:43
  5766. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:88
  5767. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:74
  5768. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:42
  5769. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:61
  5770. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:96
  5771. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:48
  5772. msgid "PAP/CHAP username"
  5773. msgstr ""
  5774. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:94
  5775. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:121
  5776. msgid "PDP Type"
  5777. msgstr ""
  5778. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:69
  5779. msgid "PID"
  5780. msgstr ""
  5781. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:106
  5782. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:73
  5783. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:76
  5784. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:102
  5785. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:86
  5786. msgid "PIN"
  5787. msgstr ""
  5788. #: modules/luci-base/htdocs/luci-static/resources/network.js:21
  5789. #: modules/luci-compat/luasrc/model/network.lua:39
  5790. msgid "PIN code rejected"
  5791. msgstr ""
  5792. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1708
  5793. msgid "PMK R1 Push"
  5794. msgstr ""
  5795. #: modules/luci-compat/luasrc/model/network/proto_ppp.lua:13
  5796. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:43
  5797. msgid "PPP"
  5798. msgstr ""
  5799. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:58
  5800. msgid "PPPoA Encapsulation"
  5801. msgstr ""
  5802. #: modules/luci-compat/luasrc/model/network/proto_ppp.lua:19
  5803. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:28
  5804. msgid "PPPoATM"
  5805. msgstr ""
  5806. #: modules/luci-compat/luasrc/model/network/proto_ppp.lua:17
  5807. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:28
  5808. msgid "PPPoE"
  5809. msgstr ""
  5810. #: modules/luci-compat/luasrc/model/network/proto_pppossh.lua:9
  5811. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:28
  5812. msgid "PPPoSSH"
  5813. msgstr ""
  5814. #: modules/luci-compat/luasrc/model/network/proto_ppp.lua:15
  5815. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:28
  5816. msgid "PPtP"
  5817. msgstr ""
  5818. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:73
  5819. msgid "PSID offset"
  5820. msgstr ""
  5821. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:70
  5822. msgid "PSID-bits length"
  5823. msgstr ""
  5824. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:559
  5825. msgctxt "Label indicating that WireGuard peer uses a PSK"
  5826. msgid "PSK"
  5827. msgstr ""
  5828. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1618
  5829. msgid "PTM/EFM (Packet Transfer Mode)"
  5830. msgstr ""
  5831. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:400
  5832. msgid "PXE/TFTP"
  5833. msgstr ""
  5834. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:103
  5835. msgid "Packet Service State"
  5836. msgstr ""
  5837. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1561
  5838. msgid "Packet Steering"
  5839. msgstr ""
  5840. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:25
  5841. msgctxt "nft meta mark"
  5842. msgid "Packet mark"
  5843. msgstr ""
  5844. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:27
  5845. msgctxt "nft meta time"
  5846. msgid "Packet receive time"
  5847. msgstr ""
  5848. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:54
  5849. msgid "Packets"
  5850. msgstr ""
  5851. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:282
  5852. msgid "Packets To Transmit Before Moving To Next Slave"
  5853. msgstr ""
  5854. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:90
  5855. msgid "Packets exceeding this value may be fragmented"
  5856. msgstr ""
  5857. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:291
  5858. msgid "Part of network:"
  5859. msgid_plural "Part of networks:"
  5860. msgstr[0] ""
  5861. msgstr[1] ""
  5862. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:139
  5863. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1280
  5864. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:259
  5865. msgid "Part of zone %q"
  5866. msgstr ""
  5867. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:492
  5868. msgctxt "MACVLAN mode"
  5869. msgid "Pass-through (Mirror physical device to single MAC VLAN)"
  5870. msgstr ""
  5871. #: modules/luci-base/ucode/template/sysauth.ut:29
  5872. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1881
  5873. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:51
  5874. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:148
  5875. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:103
  5876. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:58
  5877. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:298
  5878. #: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:19
  5879. msgid "Password"
  5880. msgstr ""
  5881. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:27
  5882. msgid "Password authentication"
  5883. msgstr ""
  5884. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1813
  5885. msgid "Password of Private Key"
  5886. msgstr ""
  5887. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1871
  5888. msgid "Password of inner Private Key"
  5889. msgstr ""
  5890. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:31
  5891. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:33
  5892. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:35
  5893. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:37
  5894. msgid "Password strength"
  5895. msgstr ""
  5896. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:151
  5897. msgid "Password2"
  5898. msgstr ""
  5899. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:266
  5900. msgid "Paste or drag SSH key file…"
  5901. msgstr ""
  5902. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:431
  5903. msgid "Paste or drag WireGuard peer configuration (wg0.conf) file…"
  5904. msgstr ""
  5905. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:424
  5906. msgid ""
  5907. "Paste or drag a WireGuard configuration (commonly <em>wg0.conf</em>) from "
  5908. "another system below to create a matching peer entry allowing that system to "
  5909. "connect to the local WireGuard interface."
  5910. msgstr ""
  5911. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:430
  5912. msgid "Paste or drag supplied WireGuard configuration file…"
  5913. msgstr ""
  5914. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1792
  5915. msgid "Path to CA-Certificate"
  5916. msgstr ""
  5917. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1807
  5918. msgid "Path to Client-Certificate"
  5919. msgstr ""
  5920. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1810
  5921. msgid "Path to Private Key"
  5922. msgstr ""
  5923. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1850
  5924. msgid "Path to inner CA-Certificate"
  5925. msgstr ""
  5926. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1865
  5927. msgid "Path to inner Client-Certificate"
  5928. msgstr ""
  5929. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1868
  5930. msgid "Path to inner Private Key"
  5931. msgstr ""
  5932. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2727
  5933. msgid "Paused"
  5934. msgstr ""
  5935. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:273
  5936. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:283
  5937. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:337
  5938. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:347
  5939. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:357
  5940. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:242
  5941. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:252
  5942. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:262
  5943. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:268
  5944. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:278
  5945. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:296
  5946. msgid "Peak:"
  5947. msgstr ""
  5948. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:74
  5949. msgid "Peer"
  5950. msgstr ""
  5951. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:51
  5952. msgid "Peer Details"
  5953. msgstr ""
  5954. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:210
  5955. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:241
  5956. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:210
  5957. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:241
  5958. msgid "Peer IP"
  5959. msgstr ""
  5960. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:89
  5961. msgid "Peer IP address to assign"
  5962. msgstr ""
  5963. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:667
  5964. msgid "Peer MAC address"
  5965. msgstr ""
  5966. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:276
  5967. msgid "Peer URI"
  5968. msgstr ""
  5969. #: modules/luci-base/htdocs/luci-static/resources/network.js:14
  5970. #: modules/luci-compat/luasrc/model/network.lua:32
  5971. msgid "Peer address is missing"
  5972. msgstr ""
  5973. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:270
  5974. msgid "Peer addresses"
  5975. msgstr ""
  5976. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:648
  5977. msgid "Peer device name"
  5978. msgstr ""
  5979. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:279
  5980. msgid "Peer interface"
  5981. msgstr ""
  5982. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:200
  5983. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:254
  5984. msgid "Peers"
  5985. msgstr ""
  5986. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:80
  5987. msgid "Perfect Forward Secrecy"
  5988. msgstr ""
  5989. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:103
  5990. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:108
  5991. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:105
  5992. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:110
  5993. msgid "Perform outgoing packets serialization (optional)."
  5994. msgstr ""
  5995. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:34
  5996. msgid "Perform reboot"
  5997. msgstr ""
  5998. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:408
  5999. msgid "Perform reset"
  6000. msgstr ""
  6001. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:407
  6002. msgid "Permission denied"
  6003. msgstr ""
  6004. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:668
  6005. msgid "Persistent Keep Alive"
  6006. msgstr ""
  6007. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:147
  6008. msgid "Persistent reconnect interval"
  6009. msgstr ""
  6010. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:321
  6011. msgid "PersistentKeepAlive setting is invalid"
  6012. msgstr ""
  6013. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:290
  6014. msgid "Phy Rate:"
  6015. msgstr ""
  6016. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:469
  6017. msgid "Physical Settings"
  6018. msgstr ""
  6019. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:87
  6020. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:88
  6021. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:98
  6022. msgid "Ping"
  6023. msgstr ""
  6024. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:49
  6025. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:50
  6026. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:86
  6027. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:87
  6028. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:138
  6029. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:64
  6030. msgid "Pkts."
  6031. msgstr ""
  6032. #: modules/luci-base/ucode/template/sysauth.ut:19
  6033. msgid "Please enter your username and password."
  6034. msgstr ""
  6035. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4211
  6036. msgid "Please select the file to upload."
  6037. msgstr ""
  6038. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:54
  6039. msgid "Policy"
  6040. msgstr ""
  6041. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:594
  6042. msgctxt "Chain hook policy"
  6043. msgid "Policy: <strong>%h</strong> (%h)"
  6044. msgstr ""
  6045. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:964
  6046. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:23
  6047. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:223
  6048. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:223
  6049. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:294
  6050. msgid "Port"
  6051. msgstr ""
  6052. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:137
  6053. msgctxt "WireGuard listen port"
  6054. msgid "Port %d"
  6055. msgstr ""
  6056. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:293
  6057. msgid "Port is not part of any network"
  6058. msgstr ""
  6059. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:769
  6060. msgid "Port isolation"
  6061. msgstr ""
  6062. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:299
  6063. msgid "Port status"
  6064. msgstr ""
  6065. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:278
  6066. msgid "Port status:"
  6067. msgstr ""
  6068. #: modules/luci-base/htdocs/luci-static/resources/validation.js:546
  6069. msgid "Potential negation of: %s"
  6070. msgstr ""
  6071. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:89
  6072. msgid "Power State"
  6073. msgstr ""
  6074. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:78
  6075. msgid "Prefer LTE"
  6076. msgstr ""
  6077. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:79
  6078. msgid "Prefer UMTS"
  6079. msgstr ""
  6080. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:995
  6081. msgid "Preferred lifetime for a prefix."
  6082. msgstr ""
  6083. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:108
  6084. msgid "Preferred network technology"
  6085. msgstr ""
  6086. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:37
  6087. msgid "Prefix Delegated"
  6088. msgstr ""
  6089. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:199
  6090. msgid "Prefix suppressor"
  6091. msgstr ""
  6092. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:587
  6093. msgid "Preshared Key"
  6094. msgstr ""
  6095. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:558
  6096. msgid "Preshared key in use"
  6097. msgstr ""
  6098. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:295
  6099. msgid "PresharedKey setting is invalid"
  6100. msgstr ""
  6101. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:130
  6102. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:102
  6103. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:88
  6104. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:62
  6105. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:75
  6106. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:98
  6107. msgid ""
  6108. "Presume peer to be dead after given amount of LCP echo failures, use 0 to "
  6109. "ignore failures"
  6110. msgstr ""
  6111. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1216
  6112. msgid "Prevents client-to-client communication"
  6113. msgstr ""
  6114. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:61
  6115. msgid ""
  6116. "Prevents one wireless client to talk to another. This setting only affects "
  6117. "packets without any VLAN tag (untagged packets)."
  6118. msgstr ""
  6119. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:200
  6120. msgid ""
  6121. "Prevents overly broad routes being considered. Setting 16 would "
  6122. "consider /17, /24, /28 or more specific routes yet ignore /16, /8, /0 "
  6123. "(default) routes"
  6124. msgstr ""
  6125. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:218
  6126. msgid "Primary Slave"
  6127. msgstr ""
  6128. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:235
  6129. msgid ""
  6130. "Primary becomes active slave when it comes back up if speed and duplex "
  6131. "better than current slave (better, 1)"
  6132. msgstr ""
  6133. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:234
  6134. msgid "Primary becomes active slave whenever it comes back up (always, 0)"
  6135. msgstr ""
  6136. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:562
  6137. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:969
  6138. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1001
  6139. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:135
  6140. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:207
  6141. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:233
  6142. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:146
  6143. msgid "Priority"
  6144. msgstr ""
  6145. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:553
  6146. msgctxt "Label indicating that WireGuard peer private key is stored"
  6147. msgid "Private"
  6148. msgstr ""
  6149. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:490
  6150. msgctxt "MACVLAN mode"
  6151. msgid "Private (Prevent communication between MAC VLANs)"
  6152. msgstr ""
  6153. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:137
  6154. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:578
  6155. #, fuzzy
  6156. msgid "Private Key"
  6157. msgstr "Private Key"
  6158. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1478
  6159. msgid ""
  6160. "Private Pre-Shared Key (PPSK) allows the use of different Pre-Shared Key for "
  6161. "each STA MAC address. Private MAC PSKs are stored on the RADIUS server."
  6162. msgstr ""
  6163. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:230
  6164. msgid "Private key"
  6165. msgstr ""
  6166. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:552
  6167. msgid "Private key present"
  6168. msgstr ""
  6169. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:283
  6170. msgid "PrivateKey setting is missing or invalid"
  6171. msgstr ""
  6172. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:64
  6173. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:93
  6174. msgid "Processes"
  6175. msgstr ""
  6176. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:67
  6177. msgid "Prot."
  6178. msgstr ""
  6179. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:82
  6180. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:549
  6181. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1197
  6182. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:387
  6183. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:36
  6184. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:201
  6185. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:227
  6186. msgid "Protocol"
  6187. msgstr ""
  6188. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:282
  6189. msgid "Provide NTP server"
  6190. msgstr ""
  6191. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:916
  6192. msgid ""
  6193. "Provide a DHCPv6 server on this interface and reply to DHCPv6 solicitations "
  6194. "and requests."
  6195. msgstr ""
  6196. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:944
  6197. msgid "Provide new network"
  6198. msgstr ""
  6199. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:288
  6200. msgid ""
  6201. "Provide the NTP server to the selected interface or, if unspecified, to all "
  6202. "interfaces"
  6203. msgstr ""
  6204. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:154
  6205. msgid "Proxy Server"
  6206. msgstr ""
  6207. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1764
  6208. msgid "ProxyARP"
  6209. msgstr ""
  6210. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1139
  6211. msgid "Pseudo Ad-Hoc (ahdemo)"
  6212. msgstr ""
  6213. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:144
  6214. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:573
  6215. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:37
  6216. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:54
  6217. msgid "Public Key"
  6218. msgstr ""
  6219. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:235
  6220. msgid "Public key"
  6221. msgstr ""
  6222. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:535
  6223. msgid "Public key is missing"
  6224. msgstr ""
  6225. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:544
  6226. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:101
  6227. msgctxt "Tooltip displaying full WireGuard peer public key"
  6228. msgid "Public key: %h"
  6229. msgstr ""
  6230. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:290
  6231. msgid ""
  6232. "Public keys allow for passwordless SSH logins with higher security than "
  6233. "plain passwords. In order to upload a new key to the device, paste an "
  6234. "OpenSSH-compatible public key or drag a <code>.pub</code> file into the "
  6235. "input field."
  6236. msgstr ""
  6237. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:193
  6238. msgid "Public prefix routed to this device for distribution to clients."
  6239. msgstr ""
  6240. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:292
  6241. msgid "PublicKey setting is invalid"
  6242. msgstr ""
  6243. #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:9
  6244. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:27
  6245. msgid "QMI Cellular"
  6246. msgstr ""
  6247. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:146
  6248. msgid "Quality"
  6249. msgstr ""
  6250. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:181
  6251. msgid ""
  6252. "Quantifies the cost or distance to a destination in a way that allows "
  6253. "routers to make informed decisions about the optimal path to forward data "
  6254. "packets"
  6255. msgstr ""
  6256. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:772
  6257. msgid "Query all available upstream resolvers."
  6258. msgstr ""
  6259. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:610
  6260. msgid "Query interval"
  6261. msgstr ""
  6262. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:615
  6263. msgid "Query response interval"
  6264. msgstr ""
  6265. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:646
  6266. msgid "Query upstream resolvers in the order they appear in the resolv file."
  6267. msgstr ""
  6268. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1696
  6269. msgid "R0 Key Lifetime"
  6270. msgstr ""
  6271. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1702
  6272. msgid "R1 Key Holder"
  6273. msgstr ""
  6274. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1531
  6275. msgid "RADIUS Access-Request attributes"
  6276. msgstr ""
  6277. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1505
  6278. msgid "RADIUS Accounting Port"
  6279. msgstr ""
  6280. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1511
  6281. msgid "RADIUS Accounting Secret"
  6282. msgstr ""
  6283. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1500
  6284. msgid "RADIUS Accounting Server"
  6285. msgstr ""
  6286. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1538
  6287. msgid "RADIUS Accounting-Request attributes"
  6288. msgstr ""
  6289. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1487
  6290. msgid "RADIUS Authentication Port"
  6291. msgstr ""
  6292. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1494
  6293. msgid "RADIUS Authentication Secret"
  6294. msgstr ""
  6295. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1481
  6296. msgid "RADIUS Authentication Server"
  6297. msgstr ""
  6298. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1545
  6299. msgid "RADIUS Dynamic VLAN Assignment"
  6300. msgstr ""
  6301. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1555
  6302. msgid "RADIUS Per STA VLAN"
  6303. msgstr ""
  6304. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1574
  6305. msgid "RADIUS VLAN Bridge Naming Scheme"
  6306. msgstr ""
  6307. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1560
  6308. msgid "RADIUS VLAN Naming"
  6309. msgstr ""
  6310. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1564
  6311. msgid "RADIUS VLAN Tagged Interface"
  6312. msgstr ""
  6313. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:88
  6314. msgid "RFC3947 NAT-T mode"
  6315. msgstr ""
  6316. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1598
  6317. msgid "RSN Preauth"
  6318. msgstr ""
  6319. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1065
  6320. msgid "RSSI threshold for joining"
  6321. msgstr ""
  6322. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1028
  6323. msgid "RTS/CTS Threshold"
  6324. msgstr ""
  6325. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:49
  6326. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:86
  6327. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:144
  6328. msgid "RX"
  6329. msgstr ""
  6330. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:236
  6331. msgid "RX Rate"
  6332. msgstr ""
  6333. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2414
  6334. msgid "RX Rate / TX Rate"
  6335. msgstr ""
  6336. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1725
  6337. msgid ""
  6338. "Radio Resource Measurement - Sends beacons to assist roaming. Not all "
  6339. "clients support this."
  6340. msgstr ""
  6341. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:61
  6342. msgctxt "nft nat flag random"
  6343. msgid "Randomize source port mapping"
  6344. msgstr ""
  6345. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1101
  6346. msgid "Raw Data"
  6347. msgstr ""
  6348. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:88
  6349. msgid "Raw hex-encoded bytes. Leave empty unless your ISP require this"
  6350. msgstr ""
  6351. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:626
  6352. msgid "Read {etc_ethers} to configure the DHCP server."
  6353. msgstr ""
  6354. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:554
  6355. msgid "Really switch protocol?"
  6356. msgstr ""
  6357. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:118
  6358. msgid "Realtime Graphs"
  6359. msgstr ""
  6360. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1679
  6361. msgid "Reassociation Deadline"
  6362. msgstr ""
  6363. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:507
  6364. msgid "Rebind protection"
  6365. msgstr ""
  6366. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:20
  6367. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:140
  6368. msgid "Reboot"
  6369. msgstr ""
  6370. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:153
  6371. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:162
  6372. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:46
  6373. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:51
  6374. msgid "Rebooting…"
  6375. msgstr ""
  6376. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:21
  6377. msgid "Reboots the operating system of your device"
  6378. msgstr ""
  6379. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:26
  6380. msgid "Receive"
  6381. msgstr ""
  6382. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:243
  6383. msgid "Receive dropped"
  6384. msgstr ""
  6385. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:242
  6386. msgid "Receive errors"
  6387. msgstr ""
  6388. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:57
  6389. #, fuzzy
  6390. msgid "Received Data"
  6391. msgstr "Receiver Antenna"
  6392. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:239
  6393. msgid "Received bytes"
  6394. msgstr ""
  6395. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:241
  6396. msgid "Received multicast"
  6397. msgstr ""
  6398. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:240
  6399. msgid "Received packets"
  6400. msgstr ""
  6401. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:167
  6402. msgid "Recommended. IP addresses of the WireGuard interface."
  6403. msgstr ""
  6404. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:198
  6405. msgid "Reconnect Timeout"
  6406. msgstr ""
  6407. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:494
  6408. msgid "Reconnect this interface"
  6409. msgstr ""
  6410. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/uhttpd.js:14
  6411. msgid "Redirect to HTTPS"
  6412. msgstr ""
  6413. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:118
  6414. msgctxt "nft redirect to port"
  6415. msgid "Redirect to local port <strong>%h</strong>"
  6416. msgstr ""
  6417. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:117
  6418. msgctxt "nft redirect"
  6419. msgid "Redirect to local system"
  6420. msgstr ""
  6421. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:57
  6422. msgid "References"
  6423. msgstr ""
  6424. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:417
  6425. msgid "Refresh Channels"
  6426. msgstr ""
  6427. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2721
  6428. msgid "Refreshing"
  6429. msgstr ""
  6430. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:102
  6431. msgid "Registration State"
  6432. msgstr ""
  6433. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:101
  6434. msgctxt "nft reject with icmp type"
  6435. msgid "Reject IPv4 packet with <strong>ICMP type %h</strong>"
  6436. msgstr ""
  6437. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:103
  6438. msgctxt "nft reject with icmpx type"
  6439. msgid "Reject packet with <strong>ICMP type %h</strong>"
  6440. msgstr ""
  6441. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:102
  6442. msgctxt "nft reject with icmpv6 type"
  6443. msgid "Reject packet with <strong>ICMPv6 type %h</strong>"
  6444. msgstr ""
  6445. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:100
  6446. msgctxt "nft reject with tcp reset"
  6447. msgid "Reject packet with <strong>TCP reset</strong>"
  6448. msgstr ""
  6449. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:680
  6450. msgid ""
  6451. "Reject reverse lookups to {rfc_6303_link} IP ranges ({reverse_arpa}) not in "
  6452. "{etc_hosts}."
  6453. msgstr ""
  6454. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:199
  6455. msgid ""
  6456. "Reject routing decisions that have a prefix length less than or equal to the "
  6457. "specified value"
  6458. msgstr ""
  6459. #: modules/luci-compat/luasrc/model/network/proto_relay.lua:153
  6460. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:399
  6461. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:996
  6462. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:39
  6463. msgid "Relay"
  6464. msgstr ""
  6465. #: modules/luci-compat/luasrc/model/network/proto_relay.lua:157
  6466. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:36
  6467. msgid "Relay Bridge"
  6468. msgstr ""
  6469. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:557
  6470. msgid "Relay DHCP requests elsewhere. OK: v4↔v4, v6↔v6. Not OK: v4↔v6, v6↔v4."
  6471. msgstr ""
  6472. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:154
  6473. msgid "Relay between networks"
  6474. msgstr ""
  6475. #: modules/luci-compat/luasrc/model/network/proto_relay.lua:12
  6476. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:64
  6477. msgid "Relay bridge"
  6478. msgstr ""
  6479. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:569
  6480. msgid "Relay from"
  6481. msgstr ""
  6482. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:589
  6483. msgid "Relay to address"
  6484. msgstr ""
  6485. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:100
  6486. msgid "Reload"
  6487. msgstr ""
  6488. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:50
  6489. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:49
  6490. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:41
  6491. msgid "Remote IPv4 address"
  6492. msgstr ""
  6493. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:42
  6494. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:42
  6495. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:40
  6496. #: protocols/luci-proto-vti/htdocs/luci-static/resources/protocol/vti.js:40
  6497. msgid "Remote IPv4 address or FQDN"
  6498. msgstr ""
  6499. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:41
  6500. msgid "Remote IPv6 address"
  6501. msgstr ""
  6502. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:42
  6503. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:42
  6504. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/ipip6.js:40
  6505. msgid "Remote IPv6 address or FQDN"
  6506. msgstr ""
  6507. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:43
  6508. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:43
  6509. msgid "Remote VTEP"
  6510. msgstr ""
  6511. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:968
  6512. msgid "Remove"
  6513. msgstr ""
  6514. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:697
  6515. msgid "Remove IPv4 addresses from the results and only return IPv6 addresses."
  6516. msgstr ""
  6517. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:691
  6518. msgid "Remove IPv6 addresses from the results and only return IPv4 addresses."
  6519. msgstr ""
  6520. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:752
  6521. msgid "Remove MAC address before forwarding query"
  6522. msgstr ""
  6523. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:753
  6524. msgid ""
  6525. "Remove any MAC address information already in downstream queries before "
  6526. "forwarding upstream."
  6527. msgstr ""
  6528. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:768
  6529. msgid ""
  6530. "Remove any subnet address already present in a downstream query before "
  6531. "forwarding it upstream."
  6532. msgstr ""
  6533. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:371
  6534. msgctxt "Dnsmasq instance"
  6535. msgid "Remove default instance"
  6536. msgstr ""
  6537. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:375
  6538. msgctxt "Dnsmasq instance"
  6539. msgid "Remove instance \"%q\""
  6540. msgstr ""
  6541. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:371
  6542. msgctxt "Dnsmasq instance"
  6543. msgid "Remove instance #%d"
  6544. msgstr ""
  6545. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1381
  6546. msgid "Remove related device settings from the configuration"
  6547. msgstr ""
  6548. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:767
  6549. msgid "Remove subnet address before forwarding query"
  6550. msgstr ""
  6551. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:701
  6552. msgid "Removes records of the specified type(s) from answers."
  6553. msgstr ""
  6554. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2254
  6555. msgid "Replace wireless configuration"
  6556. msgstr ""
  6557. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:108
  6558. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:108
  6559. msgid "Reply on Neighbour request when mapping found in VXLAN FDB"
  6560. msgstr ""
  6561. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:17
  6562. msgid "Request IPv6-address"
  6563. msgstr ""
  6564. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:23
  6565. msgid "Request IPv6-prefix of length"
  6566. msgstr ""
  6567. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:408
  6568. msgid "Request timeout"
  6569. msgstr ""
  6570. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:100
  6571. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:105
  6572. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:102
  6573. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:107
  6574. msgid "Require incoming checksum (optional)."
  6575. msgstr ""
  6576. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:102
  6577. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:107
  6578. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:104
  6579. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:109
  6580. msgid "Require incoming packets serialization (optional)."
  6581. msgstr ""
  6582. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1550
  6583. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1891
  6584. msgid "Required"
  6585. msgstr ""
  6586. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34
  6587. msgid "Required for certain ISPs, e.g. Charter with DOCSIS 3"
  6588. msgstr ""
  6589. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:137
  6590. msgid "Required. Base64-encoded private key for this interface."
  6591. msgstr ""
  6592. #: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:40
  6593. msgid "Required. Path to the .yml config file for this interface."
  6594. msgstr ""
  6595. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:573
  6596. msgid "Required. Public key of the WireGuard peer."
  6597. msgstr ""
  6598. #: protocols/luci-proto-xfrm/htdocs/luci-static/resources/protocol/xfrm.js:39
  6599. msgid "Required. XFRM interface ID to be used for SA."
  6600. msgstr ""
  6601. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1545
  6602. msgid ""
  6603. "Required: Rejects auth if RADIUS server does not provide appropriate VLAN "
  6604. "attributes."
  6605. msgstr ""
  6606. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1392
  6607. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1393
  6608. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1394
  6609. msgid "Requires hostapd"
  6610. msgstr ""
  6611. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1399
  6612. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1400
  6613. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1401
  6614. msgid "Requires hostapd with EAP Suite-B support"
  6615. msgstr ""
  6616. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1397
  6617. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1398
  6618. msgid "Requires hostapd with EAP support"
  6619. msgstr ""
  6620. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1402
  6621. msgid "Requires hostapd with OWE support"
  6622. msgstr ""
  6623. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1395
  6624. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1396
  6625. msgid "Requires hostapd with SAE support"
  6626. msgstr ""
  6627. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1390
  6628. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1391
  6629. msgid "Requires hostapd with WEP support"
  6630. msgstr ""
  6631. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1407
  6632. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1408
  6633. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1409
  6634. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1422
  6635. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1423
  6636. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1424
  6637. msgid "Requires wpa-supplicant"
  6638. msgstr ""
  6639. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1414
  6640. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1415
  6641. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1416
  6642. msgid "Requires wpa-supplicant with EAP Suite-B support"
  6643. msgstr ""
  6644. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1412
  6645. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1413
  6646. msgid "Requires wpa-supplicant with EAP support"
  6647. msgstr ""
  6648. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1417
  6649. msgid "Requires wpa-supplicant with OWE support"
  6650. msgstr ""
  6651. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1410
  6652. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1411
  6653. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1427
  6654. msgid "Requires wpa-supplicant with SAE support"
  6655. msgstr ""
  6656. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1405
  6657. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1406
  6658. msgid "Requires wpa-supplicant with WEP support"
  6659. msgstr ""
  6660. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:231
  6661. msgid "Reselection policy for primary slave"
  6662. msgstr ""
  6663. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2197
  6664. #: modules/luci-base/ucode/template/sysauth.ut:39
  6665. #: modules/luci-compat/luasrc/view/cbi/delegator.htm:17
  6666. #: modules/luci-compat/luasrc/view/cbi/footer.htm:30
  6667. #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:66
  6668. msgid "Reset"
  6669. msgstr ""
  6670. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:347
  6671. msgid "Reset Counters"
  6672. msgstr ""
  6673. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:406
  6674. msgid "Reset to defaults"
  6675. msgstr ""
  6676. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:396
  6677. msgid "Resolv &amp; Hosts Files"
  6678. msgstr ""
  6679. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:638
  6680. msgid "Resolv file"
  6681. msgstr ""
  6682. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:477
  6683. msgid "Resolve specified FQDNs to an IP."
  6684. msgstr ""
  6685. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:423
  6686. msgid "Resolve these locally"
  6687. msgstr ""
  6688. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1091
  6689. msgid "Resource Record Name"
  6690. msgstr ""
  6691. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1096
  6692. msgid "Resource Record Number"
  6693. msgstr ""
  6694. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:405
  6695. msgid "Resource not found"
  6696. msgstr ""
  6697. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:496
  6698. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:936
  6699. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:99
  6700. msgid "Restart"
  6701. msgstr ""
  6702. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:352
  6703. msgid "Restart Firewall"
  6704. msgstr ""
  6705. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:934
  6706. msgid "Restart radio interface"
  6707. msgstr ""
  6708. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:402
  6709. msgid "Restore"
  6710. msgstr ""
  6711. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:412
  6712. msgid "Restore backup"
  6713. msgstr ""
  6714. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:366
  6715. msgid ""
  6716. "Retrieve the listener addresses from the Yggdrasil interface configuration."
  6717. msgstr ""
  6718. #: modules/luci-base/htdocs/luci-static/resources/ui.js:386
  6719. #: modules/luci-base/htdocs/luci-static/resources/ui.js:387
  6720. msgid "Reveal/hide password"
  6721. msgstr ""
  6722. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:679
  6723. msgid "Reverse path filter"
  6724. msgstr ""
  6725. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4499
  6726. msgid "Revert"
  6727. msgstr ""
  6728. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4606
  6729. msgid "Revert changes"
  6730. msgstr ""
  6731. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4817
  6732. msgid "Revert request failed with status <code>%h</code>"
  6733. msgstr ""
  6734. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4797
  6735. msgid "Reverting configuration…"
  6736. msgstr ""
  6737. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:84
  6738. msgid "Revision"
  6739. msgstr ""
  6740. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:111
  6741. msgctxt "nft dnat ip to addr"
  6742. msgid "Rewrite destination to <strong>%h</strong>"
  6743. msgstr ""
  6744. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:114
  6745. msgctxt "nft dnat ip6 to addr"
  6746. msgid "Rewrite destination to <strong>%h</strong>"
  6747. msgstr ""
  6748. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:112
  6749. msgctxt "nft dnat ip to addr:port"
  6750. msgid "Rewrite destination to <strong>%h</strong>, port <strong>%h</strong>"
  6751. msgstr ""
  6752. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:115
  6753. msgctxt "nft dnat ip6 to addr:port"
  6754. msgid "Rewrite destination to <strong>%h</strong>, port <strong>%h</strong>"
  6755. msgstr ""
  6756. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:105
  6757. msgctxt "nft snat ip to addr"
  6758. msgid "Rewrite source to <strong>%h</strong>"
  6759. msgstr ""
  6760. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:108
  6761. msgctxt "nft snat ip6 to addr"
  6762. msgid "Rewrite source to <strong>%h</strong>"
  6763. msgstr ""
  6764. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:106
  6765. msgctxt "nft snat ip to addr:port"
  6766. msgid "Rewrite source to <strong>%h</strong>, port <strong>%h</strong>"
  6767. msgstr ""
  6768. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:109
  6769. msgctxt "nft snat ip6 to addr:port"
  6770. msgid "Rewrite source to <strong>%h</strong>, port <strong>%h</strong>"
  6771. msgstr ""
  6772. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:120
  6773. msgid "Rewrite to egress device address"
  6774. msgstr ""
  6775. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1598
  6776. msgid ""
  6777. "Robust Security Network (RSN): Allow roaming preauth for WPA2-EAP networks "
  6778. "(and advertise it in WLAN beacons). Only works if the specified network "
  6779. "interface is a bridge. Shortens the time-critical reassociation process."
  6780. msgstr ""
  6781. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:605
  6782. msgid "Robustness"
  6783. msgstr ""
  6784. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:860
  6785. msgid ""
  6786. "Root directory for files served via TFTP. <em>Enable TFTP server</em> and "
  6787. "<em>TFTP server root</em> turn on the TFTP server and serve files from "
  6788. "<em>TFTP server root</em>."
  6789. msgstr ""
  6790. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:298
  6791. msgid "Root preparation"
  6792. msgstr ""
  6793. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:209
  6794. msgid "Round-Robin policy (balance-rr, 0)"
  6795. msgstr ""
  6796. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:644
  6797. msgid "Route Allowed IPs"
  6798. msgstr ""
  6799. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:532
  6800. msgid "Route action chain \"%h\""
  6801. msgstr ""
  6802. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:103
  6803. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:103
  6804. msgid "Route short-circuit (RSC)"
  6805. msgstr ""
  6806. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:48
  6807. msgid "Route type"
  6808. msgstr ""
  6809. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:864
  6810. msgid ""
  6811. "Router Lifetime published in <abbr title=\"Router Advertisement, ICMPv6 Type "
  6812. "134\">RA</abbr> messages. Maximum is 9000 seconds."
  6813. msgstr ""
  6814. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:46
  6815. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:26
  6816. msgid "Router Password"
  6817. msgstr ""
  6818. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:29
  6819. msgid ""
  6820. "Routes go in routing tables and define the specific path to reach "
  6821. "destinations."
  6822. msgstr ""
  6823. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:28
  6824. #: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:50
  6825. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:258
  6826. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:15
  6827. msgid "Routing"
  6828. msgstr ""
  6829. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:44
  6830. msgid "Routing Algorithm"
  6831. msgstr ""
  6832. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:28
  6833. msgid ""
  6834. "Routing defines over which interface and gateway a certain host or network "
  6835. "can be reached."
  6836. msgstr ""
  6837. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:95
  6838. msgid "Routing table into which to insert this rule."
  6839. msgstr ""
  6840. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:172
  6841. msgid "Routing table to use for traffic matching this rule."
  6842. msgstr ""
  6843. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:218
  6844. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:208
  6845. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:234
  6846. msgid "Rule"
  6847. msgstr ""
  6848. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:602
  6849. msgid "Rule actions"
  6850. msgstr ""
  6851. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:475
  6852. msgctxt "nft comment"
  6853. msgid "Rule comment: %s"
  6854. msgstr ""
  6855. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:540
  6856. msgid "Rule container chain \"%h\""
  6857. msgstr ""
  6858. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:601
  6859. msgid "Rule matches"
  6860. msgstr ""
  6861. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:142
  6862. msgid "Rule type"
  6863. msgstr ""
  6864. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:30
  6865. msgid ""
  6866. "Rules determine which routing table to use, based on conditions like source "
  6867. "address or interface."
  6868. msgstr ""
  6869. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2360
  6870. msgid "Runtime error"
  6871. msgstr ""
  6872. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:226
  6873. msgid "SHA256"
  6874. msgstr "SHA-256"
  6875. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:145
  6876. msgid "SIM %d"
  6877. msgstr ""
  6878. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:147
  6879. msgid "SIMs"
  6880. msgstr ""
  6881. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:59
  6882. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:280
  6883. msgid "SNR"
  6884. msgstr ""
  6885. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:935
  6886. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:954
  6887. msgid "SRV"
  6888. msgstr ""
  6889. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:10
  6890. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:38
  6891. msgid "SSH Access"
  6892. msgstr ""
  6893. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:70
  6894. msgid "SSH server address"
  6895. msgstr ""
  6896. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:74
  6897. msgid "SSH server port"
  6898. msgstr ""
  6899. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:58
  6900. msgid "SSH username"
  6901. msgstr ""
  6902. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:289
  6903. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:51
  6904. msgid "SSH-Keys"
  6905. msgstr ""
  6906. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:156
  6907. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:181
  6908. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1970
  6909. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:443
  6910. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:147
  6911. msgid "SSID"
  6912. msgstr ""
  6913. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:9
  6914. msgid "SSTP"
  6915. msgstr ""
  6916. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:44
  6917. msgid "SSTP Port"
  6918. msgstr ""
  6919. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:41
  6920. msgid "SSTP Server"
  6921. msgstr ""
  6922. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:338
  6923. msgid "SWAP"
  6924. msgstr ""
  6925. #: modules/luci-base/htdocs/luci-static/resources/form.js:3232
  6926. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2192
  6927. #: modules/luci-compat/luasrc/view/cbi/error.htm:17
  6928. #: modules/luci-compat/luasrc/view/cbi/footer.htm:26
  6929. #: modules/luci-compat/luasrc/view/cbi/header.htm:20
  6930. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:465
  6931. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:123
  6932. msgid "Save"
  6933. msgstr ""
  6934. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2174
  6935. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4487
  6936. #: modules/luci-compat/luasrc/view/cbi/footer.htm:22
  6937. msgid "Save & Apply"
  6938. msgstr ""
  6939. #: modules/luci-base/htdocs/luci-static/resources/form.js:609
  6940. msgid "Save error"
  6941. msgstr ""
  6942. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:436
  6943. msgid "Save mtdblock"
  6944. msgstr ""
  6945. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:426
  6946. msgid "Save mtdblock contents"
  6947. msgstr ""
  6948. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:941
  6949. msgid "Scan"
  6950. msgstr ""
  6951. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/crontab.js:28
  6952. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:90
  6953. msgid "Scheduled Tasks"
  6954. msgstr ""
  6955. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/dmesg.js:47
  6956. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/syslog.js:51
  6957. msgctxt "scroll to top (the head) of the log file"
  6958. msgid "Scroll to head"
  6959. msgstr ""
  6960. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/dmesg.js:38
  6961. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/syslog.js:42
  6962. msgctxt "scroll to bottom (the tail) of the log file"
  6963. msgid "Scroll to tail"
  6964. msgstr ""
  6965. #: protocols/luci-proto-external/htdocs/luci-static/resources/protocol/external.js:41
  6966. msgid "Search domain"
  6967. msgstr ""
  6968. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:39
  6969. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:62
  6970. msgid "Section %s is empty."
  6971. msgstr ""
  6972. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4471
  6973. msgid "Section added"
  6974. msgstr ""
  6975. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4473
  6976. msgid "Section removed"
  6977. msgstr ""
  6978. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:332
  6979. msgid "See \"mount\" manpage for details"
  6980. msgstr ""
  6981. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:285
  6982. msgid ""
  6983. "Select 'Force upgrade' to flash the image even if the image format check "
  6984. "fails. Use only if you are sure that the firmware is correct and meant for "
  6985. "your device!"
  6986. msgstr ""
  6987. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2686
  6988. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2836
  6989. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3000
  6990. msgid "Select file…"
  6991. msgstr ""
  6992. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:325
  6993. msgid "Selects the transmit hash policy to use for slave selection"
  6994. msgstr ""
  6995. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:791
  6996. msgid ""
  6997. "Send <abbr title=\"Router Advertisement, ICMPv6 Type 134\">RA</abbr> "
  6998. "messages advertising this device as IPv6 router."
  6999. msgstr ""
  7000. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:704
  7001. msgid "Send ICMP redirects"
  7002. msgstr ""
  7003. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:143
  7004. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:115
  7005. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:101
  7006. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:75
  7007. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:88
  7008. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:111
  7009. msgid ""
  7010. "Send LCP echo requests at the given interval in seconds, only effective in "
  7011. "conjunction with failure threshold"
  7012. msgstr ""
  7013. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:290
  7014. msgid "Send multicast beacon"
  7015. msgstr ""
  7016. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:24
  7017. msgid "Send the hostname of this device"
  7018. msgstr ""
  7019. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:89
  7020. msgid "Server"
  7021. msgstr "Server"
  7022. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:894
  7023. msgid "Server address"
  7024. msgstr ""
  7025. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:888
  7026. msgid "Server name"
  7027. msgstr ""
  7028. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:50
  7029. msgid "Service Name"
  7030. msgstr ""
  7031. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:88
  7032. msgid "Service Type"
  7033. msgstr ""
  7034. #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:36
  7035. msgid "Services"
  7036. msgstr ""
  7037. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2664
  7038. msgid "Session expired"
  7039. msgstr ""
  7040. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:126
  7041. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:175
  7042. msgid "Set Static"
  7043. msgstr ""
  7044. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:849
  7045. msgid "Set a maximum seconds TTL value for entries in the cache."
  7046. msgstr ""
  7047. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1007
  7048. msgid "Set an alias for a hostname."
  7049. msgstr ""
  7050. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1058
  7051. msgid "Set an arbitrary resource record (RR) type."
  7052. msgstr ""
  7053. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:122
  7054. msgctxt "nft mangle"
  7055. msgid "Set header field <var>%s</var> to <strong>%s</strong>"
  7056. msgstr ""
  7057. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:991
  7058. msgid "Set interface as NDP-Proxy external slave. Default is off."
  7059. msgstr ""
  7060. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1319
  7061. msgid ""
  7062. "Set interface properties regardless of the link carrier (If set, carrier "
  7063. "sense events do not invoke hotplug handlers)."
  7064. msgstr ""
  7065. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:447
  7066. msgid "Set log class/facility for syslog entries."
  7067. msgstr ""
  7068. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:307
  7069. msgid "Set same MAC Address to all slaves"
  7070. msgstr ""
  7071. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:810
  7072. msgid ""
  7073. "Set the autonomous address-configuration flag in the prefix information "
  7074. "options of sent <abbr title=\"Router Advertisement\">RA</abbr> messages. "
  7075. "When enabled, clients will perform stateless IPv6 address autoconfiguration."
  7076. msgstr ""
  7077. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:718
  7078. msgid ""
  7079. "Set this interface as master for RA and DHCPv6 relaying as well as NDP "
  7080. "proxying."
  7081. msgstr ""
  7082. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:311
  7083. msgid "Set to currently active slave (active, 1)"
  7084. msgstr ""
  7085. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:312
  7086. msgid "Set to first slave added to the bond (follow, 2)"
  7087. msgstr ""
  7088. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:645
  7089. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:661
  7090. msgid "Set up DHCP Server"
  7091. msgstr ""
  7092. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:986
  7093. msgid "Set up routes for proxied IPv6 neighbours."
  7094. msgstr ""
  7095. #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:55
  7096. #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:55
  7097. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:23
  7098. msgid "Setting PLMN failed"
  7099. msgstr ""
  7100. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:68
  7101. msgid "Setting operation mode failed"
  7102. msgstr ""
  7103. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:89
  7104. msgid "Setting the allowed network technology."
  7105. msgstr ""
  7106. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:109
  7107. msgid "Setting the preferred network technology."
  7108. msgstr ""
  7109. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/uhttpd.js:11
  7110. msgid "Settings"
  7111. msgstr ""
  7112. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1050
  7113. msgid ""
  7114. "Settings for assisting wireless clients in roaming between multiple APs: "
  7115. "802.11r, 802.11k and 802.11v"
  7116. msgstr ""
  7117. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:212
  7118. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:39
  7119. msgid "Short GI"
  7120. msgstr ""
  7121. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1233
  7122. msgid "Short Preamble"
  7123. msgstr ""
  7124. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:472
  7125. msgid "Show current backup file list"
  7126. msgstr ""
  7127. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:297
  7128. msgid "Show empty chains"
  7129. msgstr ""
  7130. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:280
  7131. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:342
  7132. msgid "Show raw counters"
  7133. msgstr ""
  7134. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:500
  7135. msgid "Shutdown this interface"
  7136. msgstr ""
  7137. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:57
  7138. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:63
  7139. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:186
  7140. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1969
  7141. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:42
  7142. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:442
  7143. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:146
  7144. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:235
  7145. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:278
  7146. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:284
  7147. msgid "Signal"
  7148. msgstr ""
  7149. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2413
  7150. msgid "Signal / Noise"
  7151. msgstr ""
  7152. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:104
  7153. msgid "Signal Quality"
  7154. msgstr ""
  7155. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:148
  7156. msgid "Signal Refresh Rate"
  7157. msgstr ""
  7158. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:262
  7159. msgid "Signal:"
  7160. msgstr ""
  7161. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4235
  7162. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:224
  7163. msgid "Size"
  7164. msgstr ""
  7165. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:834
  7166. msgid "Size of DNS query cache"
  7167. msgstr ""
  7168. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:208
  7169. msgid "Size of the ZRam device in megabytes"
  7170. msgstr ""
  7171. #: modules/luci-compat/luasrc/view/cbi/footer.htm:18
  7172. #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:57
  7173. msgid "Skip"
  7174. msgstr ""
  7175. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:259
  7176. msgid "Skip from backup files that are equal to those in /rom"
  7177. msgstr ""
  7178. #: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:35
  7179. #: themes/luci-theme-openwrt/ucode/template/themes/openwrt.org/header.ut:38
  7180. msgid "Skip to content"
  7181. msgstr ""
  7182. #: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:34
  7183. #: themes/luci-theme-openwrt/ucode/template/themes/openwrt.org/header.ut:37
  7184. msgid "Skip to navigation"
  7185. msgstr ""
  7186. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:185
  7187. msgid "Slave Interfaces"
  7188. msgstr ""
  7189. #: modules/luci-base/htdocs/luci-static/resources/network.js:3036
  7190. #: modules/luci-compat/luasrc/model/network.lua:1428
  7191. msgid "Software VLAN"
  7192. msgstr ""
  7193. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1001
  7194. msgid ""
  7195. "Some channels may be restricted to Indoor Only use by your Regulatory "
  7196. "Domain. Make sure to follow this advice if a channel is reported as such."
  7197. msgstr ""
  7198. #: modules/luci-compat/luasrc/view/cbi/header.htm:5
  7199. msgid "Some fields are invalid, cannot save values!"
  7200. msgstr ""
  7201. #: modules/luci-base/ucode/template/error404.ut:10
  7202. msgid "Sorry, the object you requested was not found."
  7203. msgstr ""
  7204. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:444
  7205. msgid ""
  7206. "Sorry, there is no sysupgrade support present; a new firmware image must be "
  7207. "flashed manually. Please refer to the wiki for device specific install "
  7208. "instructions."
  7209. msgstr ""
  7210. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:105
  7211. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:154
  7212. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:388
  7213. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:70
  7214. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:224
  7215. msgid "Source"
  7216. msgstr ""
  7217. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:43
  7218. msgctxt "nft ip saddr"
  7219. msgid "Source IP"
  7220. msgstr ""
  7221. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:47
  7222. msgctxt "nft ip6 saddr"
  7223. msgid "Source IPv6"
  7224. msgstr ""
  7225. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:251
  7226. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:251
  7227. msgid "Source VNI"
  7228. msgstr ""
  7229. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57
  7230. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:57
  7231. msgid "Source interface"
  7232. msgstr ""
  7233. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:45
  7234. msgctxt "nft ip sport"
  7235. msgid "Source port"
  7236. msgstr ""
  7237. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:57
  7238. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:57
  7239. msgid "Source port range"
  7240. msgstr ""
  7241. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:874
  7242. msgid ""
  7243. "Special <abbr title=\"Preboot eXecution Environment\">PXE</abbr> boot "
  7244. "options for Dnsmasq."
  7245. msgstr ""
  7246. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:943
  7247. msgid ""
  7248. "Specifies a fixed list of DNS search domains to announce via DHCPv6. If left "
  7249. "unspecified, the local device DNS search domain will be announced."
  7250. msgstr ""
  7251. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:927
  7252. msgid ""
  7253. "Specifies a fixed list of IPv6 DNS server addresses to announce via DHCPv6. "
  7254. "If left unspecified, the device will announce itself as IPv6 DNS server "
  7255. "unless the <em>Local IPv6 DNS server</em> option is disabled."
  7256. msgstr ""
  7257. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:194
  7258. msgid ""
  7259. "Specifies an individual UID or range of UIDs to match, e.g. 1000 to match "
  7260. "corresponding UID or 1000-1005 to inclusively match all UIDs within the "
  7261. "corresponding range"
  7262. msgstr ""
  7263. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:348
  7264. msgid ""
  7265. "Specifies that duplicate frames (received on inactive ports) should be "
  7266. "dropped or delivered"
  7267. msgstr ""
  7268. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:364
  7269. msgid "Specifies the ARP link monitoring frequency in milliseconds"
  7270. msgstr ""
  7271. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:372
  7272. msgid "Specifies the IP addresses to use for ARP monitoring"
  7273. msgstr ""
  7274. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:401
  7275. msgid "Specifies the MII link monitoring frequency in milliseconds"
  7276. msgstr ""
  7277. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:189
  7278. msgid "Specifies the TOS value to match in IP headers"
  7279. msgstr ""
  7280. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:266
  7281. msgid "Specifies the aggregation selection logic to use"
  7282. msgstr ""
  7283. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:293
  7284. msgid "Specifies the directory the device is attached to"
  7285. msgstr ""
  7286. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:816
  7287. msgid ""
  7288. "Specifies the flags sent in <abbr title=\"Router Advertisement\">RA</abbr> "
  7289. "messages, for example to instruct clients to request further information via "
  7290. "stateful DHCPv6."
  7291. msgstr ""
  7292. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:184
  7293. msgid ""
  7294. "Specifies the fwmark and optionally its mask to match, e.g. 0xFF to match "
  7295. "mark 255 or 0x0/0x1 to match any even mark value"
  7296. msgstr ""
  7297. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:43
  7298. msgid ""
  7299. "Specifies the logical interface name of the parent (or master) interface "
  7300. "this route belongs to"
  7301. msgstr ""
  7302. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:259
  7303. msgid ""
  7304. "Specifies the mac-address for the actor in protocol packet exchanges "
  7305. "(LACPDUs). If empty, masters' mac address defaults to system default"
  7306. msgstr ""
  7307. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:175
  7308. msgid ""
  7309. "Specifies the maximum amount of failed ARP requests until hosts are presumed "
  7310. "to be dead"
  7311. msgstr ""
  7312. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:171
  7313. msgid ""
  7314. "Specifies the maximum amount of seconds after which hosts are presumed to be "
  7315. "dead"
  7316. msgstr ""
  7317. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1008
  7318. msgid ""
  7319. "Specifies the maximum transmit power the wireless radio may use. Depending "
  7320. "on regulatory requirements and wireless usage, the actual transmit power may "
  7321. "be reduced by the driver."
  7322. msgstr ""
  7323. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:243
  7324. msgid ""
  7325. "Specifies the minimum number of links that must be active before asserting "
  7326. "carrier"
  7327. msgstr ""
  7328. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:207
  7329. msgid "Specifies the mode to be used for this bonding interface"
  7330. msgstr ""
  7331. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:79
  7332. msgid ""
  7333. "Specifies the network gateway. If omitted, the gateway from the parent "
  7334. "interface is taken if any, otherwise creates a link scope route. If set to "
  7335. "0.0.0.0 no gateway will be specified for the route"
  7336. msgstr ""
  7337. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:339
  7338. msgid ""
  7339. "Specifies the number of IGMP membership reports to be issued after a "
  7340. "failover event in 200ms intervals"
  7341. msgstr ""
  7342. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:283
  7343. msgid ""
  7344. "Specifies the number of packets to transmit through a slave before moving to "
  7345. "the next one"
  7346. msgstr ""
  7347. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:317
  7348. msgid ""
  7349. "Specifies the number of peer notifications (gratuitous ARPs and unsolicited "
  7350. "IPv6 Neighbor Advertisements) to be issued after a failover event"
  7351. msgstr ""
  7352. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:291
  7353. msgid ""
  7354. "Specifies the number of seconds between instances where the bonding driver "
  7355. "sends learning packets to each slaves peer switch"
  7356. msgstr ""
  7357. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:105
  7358. msgid ""
  7359. "Specifies the preferred source address when sending to destinations covered "
  7360. "by the target"
  7361. msgstr ""
  7362. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:380
  7363. msgid "Specifies the quantity of ARP IP targets that must be reachable"
  7364. msgstr ""
  7365. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:275
  7366. msgid ""
  7367. "Specifies the rate in which the link partner will be asked to transmit "
  7368. "LACPDU packets"
  7369. msgstr ""
  7370. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:232
  7371. msgid ""
  7372. "Specifies the reselection policy for the primary slave when failure of the "
  7373. "active slave or recovery of the primary slave occurs"
  7374. msgstr ""
  7375. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:48
  7376. msgid "Specifies the route type to be created"
  7377. msgstr ""
  7378. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:142
  7379. msgid "Specifies the rule target routing action"
  7380. msgstr ""
  7381. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:251
  7382. msgid "Specifies the system priority"
  7383. msgstr ""
  7384. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:409
  7385. msgid ""
  7386. "Specifies the time in milliseconds to wait before disabling a slave after a "
  7387. "link failure detection"
  7388. msgstr ""
  7389. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:417
  7390. msgid ""
  7391. "Specifies the time in milliseconds to wait before enabling a slave after a "
  7392. "link recovery detection"
  7393. msgstr ""
  7394. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:548
  7395. msgid ""
  7396. "Specifies the wired ports to attach to this bridge. In order to attach "
  7397. "wireless networks, choose the associated interface as network in the "
  7398. "wireless settings."
  7399. msgstr ""
  7400. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:388
  7401. msgid ""
  7402. "Specifies whether ARP probes and replies should be validated or non-ARP "
  7403. "traffic should be filtered for link monitoring"
  7404. msgstr ""
  7405. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:308
  7406. msgid ""
  7407. "Specifies whether active-backup mode should set all slaves to the same MAC "
  7408. "address at enslavement"
  7409. msgstr ""
  7410. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:425
  7411. msgid ""
  7412. "Specifies whether or not miimon should use MII or ETHTOOL ioctls vs. "
  7413. "netif_carrier_ok()"
  7414. msgstr ""
  7415. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:300
  7416. msgid ""
  7417. "Specifies whether to shuffle active flows across slaves based on the load"
  7418. msgstr ""
  7419. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:186
  7420. msgid ""
  7421. "Specifies which slave interfaces should be attached to this bonding interface"
  7422. msgstr ""
  7423. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:219
  7424. msgid ""
  7425. "Specifies which slave is the primary device. It will always be the active "
  7426. "slave while it is available"
  7427. msgstr ""
  7428. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:63
  7429. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:142
  7430. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:142
  7431. msgid "Specify a TOS (Type of Service)."
  7432. msgstr ""
  7433. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:74
  7434. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:79
  7435. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:79
  7436. msgid ""
  7437. "Specify a TOS (Type of Service). Can be <code>inherit</code> (the outer "
  7438. "header inherits the value of the inner header) or an hexadecimal value "
  7439. "<code>00..FF</code> (optional)."
  7440. msgstr ""
  7441. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:74
  7442. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:74
  7443. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:79
  7444. msgid ""
  7445. "Specify a TTL (Time to Live) for the encapsulating packet other than the "
  7446. "default (64) (optional)."
  7447. msgstr ""
  7448. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:69
  7449. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:58
  7450. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:137
  7451. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:137
  7452. msgid ""
  7453. "Specify a TTL (Time to Live) for the encapsulating packet other than the "
  7454. "default (64)."
  7455. msgstr ""
  7456. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:84
  7457. msgid ""
  7458. "Specify a Traffic Class. Can be <code>inherit</code> (the outer header "
  7459. "inherits the value of the inner header) or an hexadecimal value <code>00.."
  7460. "FF</code> (optional)."
  7461. msgstr ""
  7462. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:64
  7463. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:69
  7464. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:69
  7465. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:74
  7466. msgid ""
  7467. "Specify an MTU (Maximum Transmission Unit) other than the default (1280 "
  7468. "bytes) (optional)."
  7469. msgstr ""
  7470. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:53
  7471. msgid ""
  7472. "Specify an MTU (Maximum Transmission Unit) other than the default (1280 "
  7473. "bytes)."
  7474. msgstr ""
  7475. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2273
  7476. msgid "Specify the secret encryption key here."
  7477. msgstr ""
  7478. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:215
  7479. msgid "Speed: %d Mibit/s, Duplex: %s"
  7480. msgstr ""
  7481. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1598
  7482. msgid "Splitterless ADSL (G.992.2) Annex A"
  7483. msgstr ""
  7484. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:717
  7485. msgid "Stale neighbour cache timeout"
  7486. msgstr ""
  7487. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1572
  7488. msgid "Standard: none"
  7489. msgstr ""
  7490. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:668
  7491. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:98
  7492. msgid "Start"
  7493. msgstr ""
  7494. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:140
  7495. msgid "Start WPS"
  7496. msgstr ""
  7497. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:75
  7498. msgid "Start priority"
  7499. msgstr ""
  7500. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2073
  7501. msgid "Start refresh"
  7502. msgstr ""
  7503. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4721
  7504. msgid "Starting configuration apply…"
  7505. msgstr ""
  7506. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1986
  7507. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:468
  7508. msgid "Starting wireless scan..."
  7509. msgstr ""
  7510. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:109
  7511. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:78
  7512. msgid "Startup"
  7513. msgstr ""
  7514. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:90
  7515. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:139
  7516. msgid "State"
  7517. msgstr ""
  7518. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:34
  7519. msgid "Static IPv4 Routes"
  7520. msgstr ""
  7521. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:34
  7522. msgid "Static IPv6 Routes"
  7523. msgstr ""
  7524. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:91
  7525. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:138
  7526. msgid "Static Lease"
  7527. msgstr ""
  7528. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:397
  7529. msgid "Static Leases"
  7530. msgstr ""
  7531. #: modules/luci-base/htdocs/luci-static/resources/network.js:2090
  7532. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:173
  7533. #: modules/luci-compat/luasrc/model/network.lua:967
  7534. msgid "Static address"
  7535. msgstr ""
  7536. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1162
  7537. msgid ""
  7538. "Static leases are used to assign fixed IP addresses and symbolic hostnames "
  7539. "to DHCP clients. They are also required for non-dynamic interface "
  7540. "configurations where only hosts with a corresponding lease are served."
  7541. msgstr ""
  7542. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1250
  7543. msgid "Station inactivity limit"
  7544. msgstr ""
  7545. #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:16
  7546. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:536
  7547. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:990
  7548. #: modules/luci-mod-status/ucode/template/admin_status/index.ut:9
  7549. msgid "Status"
  7550. msgstr ""
  7551. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1569
  7552. msgid "Steering flows (<abbr title=\"Receive Packet Steering\">RPS</abbr>)"
  7553. msgstr ""
  7554. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:502
  7555. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:101
  7556. msgid "Stop"
  7557. msgstr ""
  7558. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:135
  7559. msgid "Stop WPS"
  7560. msgstr ""
  7561. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1984
  7562. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2078
  7563. msgid "Stop refresh"
  7564. msgstr ""
  7565. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:38
  7566. msgid "Storage"
  7567. msgstr ""
  7568. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:683
  7569. msgid "Strict filtering"
  7570. msgstr ""
  7571. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:645
  7572. msgid "Strict order"
  7573. msgstr ""
  7574. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:33
  7575. msgid "Strong"
  7576. msgstr ""
  7577. #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:61
  7578. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2298
  7579. msgid "Submit"
  7580. msgstr ""
  7581. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1573
  7582. msgid "Suggested: 128"
  7583. msgstr ""
  7584. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:667
  7585. msgid "Suppress logging"
  7586. msgstr ""
  7587. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:668
  7588. msgid "Suppress logging of the routine operation for the DHCP protocol."
  7589. msgstr ""
  7590. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:46
  7591. msgid "Swap free"
  7592. msgstr ""
  7593. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:139
  7594. #: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:3
  7595. msgid "Switch"
  7596. msgstr ""
  7597. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:172
  7598. msgid "Switch %q"
  7599. msgstr ""
  7600. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:150
  7601. msgid ""
  7602. "Switch %q has an unknown topology - the VLAN settings might not be accurate."
  7603. msgstr ""
  7604. #: modules/luci-base/htdocs/luci-static/resources/network.js:3036
  7605. #: modules/luci-compat/luasrc/model/network.lua:1426
  7606. msgid "Switch VLAN"
  7607. msgstr ""
  7608. #: modules/luci-base/htdocs/luci-static/resources/network.js:3033
  7609. msgid "Switch port"
  7610. msgstr ""
  7611. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:555
  7612. msgid "Switch protocol"
  7613. msgstr ""
  7614. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:103
  7615. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:104
  7616. #: modules/luci-compat/luasrc/view/cbi/ipaddr.htm:26
  7617. msgid "Switch to CIDR list notation"
  7618. msgstr ""
  7619. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2731
  7620. msgid "Symbolic link"
  7621. msgstr ""
  7622. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:89
  7623. msgid "Sync with NTP-Server"
  7624. msgstr ""
  7625. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:81
  7626. msgid "Sync with browser"
  7627. msgstr ""
  7628. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:954
  7629. msgid "Syntax:"
  7630. msgstr ""
  7631. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:478
  7632. msgid "Syntax: {code_syntax}."
  7633. msgstr ""
  7634. #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:26
  7635. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:22
  7636. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:113
  7637. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:3
  7638. msgid "System"
  7639. msgstr ""
  7640. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/syslog.js:58
  7641. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:63
  7642. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:75
  7643. msgid "System Log"
  7644. msgstr ""
  7645. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:250
  7646. msgid "System Priority"
  7647. msgstr ""
  7648. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:118
  7649. msgid "System Properties"
  7650. msgstr ""
  7651. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:227
  7652. msgid "System load"
  7653. msgstr ""
  7654. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:162
  7655. msgid "System log buffer size"
  7656. msgstr ""
  7657. #: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:68
  7658. #: themes/luci-theme-material/ucode/template/themes/material/header.ut:88
  7659. #: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:64
  7660. #: themes/luci-theme-openwrt/ucode/template/themes/openwrt.org/header.ut:81
  7661. msgid "System running in recovery (initramfs) mode."
  7662. msgstr ""
  7663. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:67
  7664. msgctxt "nft tcp option maxseg size"
  7665. msgid "TCP MSS"
  7666. msgstr ""
  7667. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:54
  7668. msgctxt "nft tcp dport"
  7669. msgid "TCP destination port"
  7670. msgstr ""
  7671. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:57
  7672. msgctxt "nft tcp flags"
  7673. msgid "TCP flags"
  7674. msgstr ""
  7675. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:53
  7676. msgctxt "nft tcp sport"
  7677. msgid "TCP source port"
  7678. msgstr ""
  7679. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:341
  7680. msgid "TCP:"
  7681. msgstr ""
  7682. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:859
  7683. msgid "TFTP server root"
  7684. msgstr ""
  7685. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:50
  7686. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:87
  7687. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:145
  7688. msgid "TX"
  7689. msgstr ""
  7690. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:236
  7691. msgid "TX Rate"
  7692. msgstr ""
  7693. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:672
  7694. msgid "TX queue length"
  7695. msgstr ""
  7696. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:95
  7697. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:172
  7698. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:18
  7699. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:182
  7700. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:200
  7701. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:226
  7702. msgid "Table"
  7703. msgstr ""
  7704. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1153
  7705. msgid "Table IP family"
  7706. msgstr ""
  7707. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1268
  7708. msgid "Tag"
  7709. msgstr ""
  7710. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:219
  7711. msgctxt "VLAN port state"
  7712. msgid "Tagged"
  7713. msgstr ""
  7714. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:959
  7715. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1022
  7716. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:60
  7717. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:66
  7718. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:178
  7719. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:180
  7720. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:197
  7721. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:223
  7722. msgid "Target"
  7723. msgstr "Target"
  7724. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:58
  7725. msgid "Target Platform"
  7726. msgstr ""
  7727. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:103
  7728. msgid "Target network"
  7729. msgstr ""
  7730. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:60
  7731. msgid "Temp space"
  7732. msgstr ""
  7733. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:50
  7734. msgid "Terminate"
  7735. msgstr ""
  7736. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:871
  7737. msgid ""
  7738. "The <abbr title=\"Maximum Transmission Unit\">MTU</abbr> to be published in "
  7739. "<abbr title=\"Router Advertisement, ICMPv6 Type 134\">RA</abbr> messages. "
  7740. "Minimum is 1280 bytes."
  7741. msgstr ""
  7742. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:819
  7743. msgid ""
  7744. "The <em>Managed address configuration</em> (M) flag indicates that IPv6 "
  7745. "addresses are available via DHCPv6."
  7746. msgstr ""
  7747. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:823
  7748. msgid ""
  7749. "The <em>Mobile IPv6 Home Agent</em> (H) flag indicates that the device is "
  7750. "also acting as Mobile IPv6 home agent on this link."
  7751. msgstr ""
  7752. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:821
  7753. msgid ""
  7754. "The <em>Other configuration</em> (O) flag indicates that other information, "
  7755. "such as DNS servers, is available via DHCPv6."
  7756. msgstr ""
  7757. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:84
  7758. msgid "The <em>block mount</em> command failed with code %d"
  7759. msgstr ""
  7760. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1256
  7761. msgid "The DHCPv6-DUID (DHCP unique identifier) of this host."
  7762. msgstr ""
  7763. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1029
  7764. msgid ""
  7765. "The DNS server entries in the local resolv.conf are primarily sorted by the "
  7766. "weight specified here"
  7767. msgstr ""
  7768. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:77
  7769. msgid ""
  7770. "The HE.net endpoint update configuration changed, you must now use the plain "
  7771. "username instead of the user ID!"
  7772. msgstr ""
  7773. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1228
  7774. msgid "The IP address %h is already used by another static lease"
  7775. msgstr ""
  7776. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1237
  7777. msgid "The IP address is outside of any DHCP pool address range"
  7778. msgstr ""
  7779. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:895
  7780. msgid "The IP address of the boot server"
  7781. msgstr ""
  7782. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1211
  7783. msgid ""
  7784. "The IP address to be used for this host, or <em>ignore</em> to ignore any "
  7785. "DHCP request from this host."
  7786. msgstr ""
  7787. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:41
  7788. msgid "The IPv4 address or the fully-qualified domain name of the remote end."
  7789. msgstr ""
  7790. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:42
  7791. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:42
  7792. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:40
  7793. #: protocols/luci-proto-vti/htdocs/luci-static/resources/protocol/vti.js:40
  7794. msgid ""
  7795. "The IPv4 address or the fully-qualified domain name of the remote tunnel end."
  7796. msgstr ""
  7797. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:41
  7798. msgid "The IPv6 address or the fully-qualified domain name of the remote end."
  7799. msgstr ""
  7800. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:42
  7801. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:42
  7802. msgid ""
  7803. "The IPv6 address or the fully-qualified domain name of the remote tunnel end."
  7804. msgstr ""
  7805. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1264
  7806. msgid ""
  7807. "The IPv6 interface identifier (address suffix) as hexadecimal number (max. "
  7808. "16 chars)."
  7809. msgstr ""
  7810. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:53
  7811. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:59
  7812. msgid ""
  7813. "The IPv6 prefix assigned to the provider, usually ends with <code>::</code>"
  7814. msgstr ""
  7815. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/timer.js:7
  7816. msgid "The LED blinks with the configured on/off frequency"
  7817. msgstr ""
  7818. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/heartbeat.js:7
  7819. msgid "The LED flashes to simulate actual heart beat."
  7820. msgstr ""
  7821. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:8
  7822. msgid ""
  7823. "The LED flashes with link status and activity on the configured interface."
  7824. msgstr ""
  7825. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/none.js:7
  7826. msgid "The LED is always in default state off."
  7827. msgstr ""
  7828. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/default-on.js:6
  7829. msgid "The LED is always in default state on."
  7830. msgstr ""
  7831. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:267
  7832. msgid ""
  7833. "The MAC address %h is already used by another static lease in the same DHCP "
  7834. "pool"
  7835. msgstr ""
  7836. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:640
  7837. msgid "The MTU must not exceed the parent device MTU of %d bytes"
  7838. msgstr ""
  7839. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:950
  7840. msgid "The VLAN ID must be unique"
  7841. msgstr ""
  7842. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:85
  7843. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:85
  7844. msgid ""
  7845. "The VXLAN header adds 50 bytes of IPv4 encapsulation overhead, 74 bytes for "
  7846. "IPv6."
  7847. msgstr ""
  7848. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:180
  7849. msgid "The address through which this %s is reachable"
  7850. msgstr ""
  7851. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:45
  7852. msgid "The algorithm that is used to discover mesh routes"
  7853. msgstr ""
  7854. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2258
  7855. msgid ""
  7856. "The allowed characters are: <code>A-Z</code>, <code>a-z</code>, <code>0-9</"
  7857. "code> and <code>_</code>"
  7858. msgstr ""
  7859. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:759
  7860. msgid ""
  7861. "The amount of the address forwarded depends on the prefix length parameter: "
  7862. "32 (128 for IPv6) forwards the whole address, zero forwards none of it but "
  7863. "still marks the request so that no upstream nameserver will add client "
  7864. "address information either."
  7865. msgstr ""
  7866. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:320
  7867. msgid ""
  7868. "The checkbox cannot be modified unless the <code>yggdrasil-jumper</code> "
  7869. "package is installed."
  7870. msgstr ""
  7871. #: modules/luci-compat/luasrc/view/cbi/error.htm:6
  7872. msgid "The configuration file could not be loaded due to the following error:"
  7873. msgstr ""
  7874. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2250
  7875. msgid ""
  7876. "The correct SSID must be manually specified when joining a hidden wireless "
  7877. "network"
  7878. msgstr ""
  7879. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:760
  7880. msgid "The default (%s) is zero for both IPv4 and IPv6."
  7881. msgstr ""
  7882. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4597
  7883. msgid ""
  7884. "The device could not be reached within %d seconds after applying the pending "
  7885. "changes, which caused the configuration to be rolled back for safety "
  7886. "reasons. If you believe that the configuration changes are correct "
  7887. "nonetheless, perform an unchecked configuration apply. Alternatively, you "
  7888. "can dismiss this warning and edit changes before attempting to apply again, "
  7889. "or revert all pending changes to keep the currently working configuration "
  7890. "state."
  7891. msgstr ""
  7892. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:281
  7893. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:391
  7894. msgid ""
  7895. "The device file of the memory or partition (<abbr title=\"for example\">e.g."
  7896. "</abbr> <code>/dev/sda1</code>)"
  7897. msgstr ""
  7898. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:504
  7899. msgid "The device name \"%s\" is already taken"
  7900. msgstr ""
  7901. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:382
  7902. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:416
  7903. msgid ""
  7904. "The existing network configuration needs to be changed for LuCI to function "
  7905. "properly."
  7906. msgstr ""
  7907. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:855
  7908. msgid ""
  7909. "The existing wireless configuration needs to be changed for LuCI to function "
  7910. "properly."
  7911. msgstr ""
  7912. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:222
  7913. msgid ""
  7914. "The flash image was uploaded. Below is the checksum and file size listed, "
  7915. "compare them with the original file to ensure data integrity. <br /> Click "
  7916. "'Continue' below to start the flash procedure."
  7917. msgstr ""
  7918. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:259
  7919. msgid "The following rules are currently active on this system."
  7920. msgstr ""
  7921. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/heartbeat.js:8
  7922. msgid "The frequency is in direct proportion to 1-minute average CPU load."
  7923. msgstr ""
  7924. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:155
  7925. msgid "The gateway address must not be a local IP address"
  7926. msgstr ""
  7927. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:756
  7928. msgid ""
  7929. "The generated configuration can be imported into a WireGuard client "
  7930. "application to set up a connection towards this device."
  7931. msgstr ""
  7932. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:172
  7933. msgid "The given SSH public key has already been added."
  7934. msgstr ""
  7935. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:178
  7936. msgid ""
  7937. "The given SSH public key is invalid. Please supply proper public RSA, "
  7938. "ED25519 or ECDSA keys."
  7939. msgstr ""
  7940. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1192
  7941. msgid "The hardware address(es) of this entry/host."
  7942. msgstr ""
  7943. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:93
  7944. msgid ""
  7945. "The hop penalty setting allows to modify batman-adv's preference for "
  7946. "multihop routes vs. short routes. The value is applied to the TQ of each "
  7947. "forwarded OGM, thereby propagating the cost of an extra hop (the packet has "
  7948. "to be received and retransmitted which costs airtime)"
  7949. msgstr ""
  7950. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:889
  7951. msgid "The hostname of the boot server"
  7952. msgstr ""
  7953. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:28
  7954. msgid "The interface could not be found"
  7955. msgstr ""
  7956. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1186
  7957. msgid "The interface name is already used"
  7958. msgstr ""
  7959. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1192
  7960. msgid "The interface name is too long"
  7961. msgstr ""
  7962. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:61
  7963. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:55
  7964. msgid ""
  7965. "The length of the IPv4 prefix in bits, the remainder is used in the IPv6 "
  7966. "addresses."
  7967. msgstr ""
  7968. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:57
  7969. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:63
  7970. msgid "The length of the IPv6 prefix in bits"
  7971. msgstr ""
  7972. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:168
  7973. msgid "The local IPv4 address"
  7974. msgstr ""
  7975. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:46
  7976. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:46
  7977. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:44
  7978. #: protocols/luci-proto-vti/htdocs/luci-static/resources/protocol/vti.js:44
  7979. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:47
  7980. msgid "The local IPv4 address over which the tunnel is created (optional)."
  7981. msgstr ""
  7982. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:175
  7983. msgid "The local IPv4 netmask"
  7984. msgstr ""
  7985. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:46
  7986. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:53
  7987. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:47
  7988. msgid "The local IPv6 address over which the tunnel is created (optional)."
  7989. msgstr ""
  7990. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:629
  7991. msgid ""
  7992. "The max response time in centiseconds inserted into group-specific queries "
  7993. "sent in response to leave group messages. It is also the amount of time "
  7994. "between group-specific query messages. This value may be tuned to modify the "
  7995. "\"leave latency\" of the network. A reduced value results in reduced time to "
  7996. "detect the loss of the last member of a group"
  7997. msgstr ""
  7998. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:615
  7999. msgid ""
  8000. "The max response time in centiseconds inserted into the periodic general "
  8001. "queries. By varying the value, an administrator may tune the burstiness of "
  8002. "IGMP messages on the subnet; larger values make the traffic less bursty, as "
  8003. "host responses are spread out over a larger interval"
  8004. msgstr ""
  8005. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:890
  8006. msgid ""
  8007. "The maximum hops to be published in <abbr title=\"Router Advertisement\">RA</"
  8008. "abbr> messages. Maximum is 255 hops."
  8009. msgstr ""
  8010. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1123
  8011. msgid "The netfilter components below are only regarded when running fw4."
  8012. msgstr ""
  8013. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2264
  8014. msgid "The network name is already used"
  8015. msgstr ""
  8016. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:139
  8017. msgid ""
  8018. "The network ports on this device can be combined to several <abbr "
  8019. "title=\"Virtual Local Area Network\">VLAN</abbr>s in which computers can "
  8020. "communicate directly with each other. <abbr title=\"Virtual Local Area "
  8021. "Network\">VLAN</abbr>s are often used to separate different network "
  8022. "segments. Often there is by default one Uplink port for a connection to the "
  8023. "next greater network like the internet and other ports for a local network."
  8024. msgstr ""
  8025. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:230
  8026. msgid "The private key for your Yggdrasil node"
  8027. msgstr ""
  8028. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:777
  8029. msgid ""
  8030. "The public hostname or IP address of this system the peer should connect to. "
  8031. "This usually is a static public IP address, a static hostname or a DDNS "
  8032. "domain."
  8033. msgstr ""
  8034. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:235
  8035. msgid "The public key for your Yggdrasil node"
  8036. msgstr ""
  8037. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:623
  8038. msgid "The query response interval must be lower than the query interval value"
  8039. msgstr ""
  8040. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:158
  8041. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:42
  8042. msgid "The reboot command failed with code %d"
  8043. msgstr ""
  8044. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:147
  8045. msgid "The restore command failed with code %d"
  8046. msgstr ""
  8047. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:605
  8048. msgid ""
  8049. "The robustness value allows tuning for the expected packet loss on the "
  8050. "network. If a network is expected to be lossy, the robustness value may be "
  8051. "increased. IGMP is robust to (Robustness-1) packet losses"
  8052. msgstr ""
  8053. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:183
  8054. msgid "The routing protocol identifier of this route"
  8055. msgstr ""
  8056. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1452
  8057. msgid "The selected %s mode is incompatible with %s encryption"
  8058. msgstr ""
  8059. #: modules/luci-base/ucode/template/csrftoken.ut:11
  8060. msgid "The submitted security token is invalid or already expired!"
  8061. msgstr ""
  8062. #: modules/luci-base/htdocs/luci-static/resources/tools/views.js:27
  8063. msgid "The syslog output, pre-filtered for messages related to:"
  8064. msgstr ""
  8065. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:98
  8066. msgid ""
  8067. "The system is erasing the configuration partition now and will reboot itself "
  8068. "when finished."
  8069. msgstr ""
  8070. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:322
  8071. msgid ""
  8072. "The system is flashing now.<br /> DO NOT POWER OFF THE DEVICE!<br /> Wait a "
  8073. "few minutes before you try to reconnect. It might be necessary to renew the "
  8074. "address of your computer to reach the device again, depending on your "
  8075. "settings."
  8076. msgstr ""
  8077. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:163
  8078. msgid ""
  8079. "The system is rebooting now. If the restored configuration changed the "
  8080. "current LAN IP address, you might need to reconnect manually."
  8081. msgstr ""
  8082. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:85
  8083. msgid "The system password has been successfully changed."
  8084. msgstr ""
  8085. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:347
  8086. msgid "The sysupgrade command failed with code %d"
  8087. msgstr ""
  8088. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1164
  8089. msgid ""
  8090. "The tag construct filters which host directives are used; more than one tag "
  8091. "can be provided, in this case the request must match all of them. Tagged "
  8092. "directives are used in preference to untagged ones. Note that one of mac, "
  8093. "duid or hostname still needs to be specified (can be a wildcard)."
  8094. msgstr ""
  8095. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:120
  8096. msgid ""
  8097. "The uploaded backup archive appears to be valid and contains the files "
  8098. "listed below. Press \"Continue\" to restore the backup and reboot, or "
  8099. "\"Cancel\" to abort the operation."
  8100. msgstr ""
  8101. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:115
  8102. msgid "The uploaded backup archive is not readable"
  8103. msgstr ""
  8104. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:251
  8105. msgid "The uploaded firmware does not allow keeping current configuration."
  8106. msgstr ""
  8107. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:246
  8108. msgid ""
  8109. "The uploaded image file does not contain a supported format. Make sure that "
  8110. "you choose the generic image format for your platform."
  8111. msgstr ""
  8112. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1535
  8113. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1547
  8114. msgid "The value is overridden by configuration."
  8115. msgstr ""
  8116. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:56
  8117. msgid ""
  8118. "The value specifies the interval (milliseconds) in which batman-adv floods "
  8119. "the network with its protocol information."
  8120. msgstr ""
  8121. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:678
  8122. msgid ""
  8123. "There are legacy iptables rules present on the system. Mixing iptables and "
  8124. "nftables rules is discouraged and may lead to incomplete traffic filtering."
  8125. msgstr ""
  8126. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1338
  8127. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1370
  8128. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:130
  8129. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:179
  8130. msgid "There are no active leases"
  8131. msgstr ""
  8132. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4764
  8133. msgid "There are no changes to apply"
  8134. msgstr ""
  8135. #: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:59
  8136. #: themes/luci-theme-material/ucode/template/themes/material/header.ut:79
  8137. #: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:55
  8138. #: themes/luci-theme-openwrt/ucode/template/themes/openwrt.org/header.ut:72
  8139. msgid ""
  8140. "There is no password set on this router. Please configure a root password to "
  8141. "protect the web interface."
  8142. msgstr ""
  8143. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:49
  8144. msgid "This IPv4 address of the relay"
  8145. msgstr ""
  8146. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1833
  8147. msgid "This authentication type is not applicable to the selected EAP method."
  8148. msgstr ""
  8149. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:58
  8150. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:56
  8151. msgid "This does not look like a valid PEM file"
  8152. msgstr ""
  8153. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:456
  8154. msgid ""
  8155. "This is a list of shell glob patterns for matching files and directories to "
  8156. "include during sysupgrade. Modified files in /etc/config/ and certain other "
  8157. "configurations are automatically preserved."
  8158. msgstr ""
  8159. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:81
  8160. msgid ""
  8161. "This is either the \"Update Key\" configured for the tunnel or the account "
  8162. "password if no update key has been configured"
  8163. msgstr ""
  8164. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:106
  8165. msgid "This is only used if no default route matches the destination gateway"
  8166. msgstr ""
  8167. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv_hardif.js:42
  8168. msgid ""
  8169. "This is the batman-adv device where you want to link the physical Device "
  8170. "from above to. If this list is empty, then you need to create one first. If "
  8171. "you want to route mesh traffic over a wired network device, then please "
  8172. "select it from the above Device selector. If you want to assign the batman-"
  8173. "adv interface to a Wi-fi mesh then do not select a Device in the Device "
  8174. "selector but rather go to the Wireless settings and select this Interface as "
  8175. "a network from there."
  8176. msgstr ""
  8177. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:116
  8178. msgid ""
  8179. "This is the content of /etc/rc.local. Insert your own commands here (in "
  8180. "front of 'exit 0') to execute them at the end of the boot process."
  8181. msgstr ""
  8182. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:54
  8183. msgid ""
  8184. "This is the local endpoint address assigned by the tunnel broker, it usually "
  8185. "ends with <code>...:2/64</code>"
  8186. msgstr ""
  8187. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:420
  8188. msgid "This is the only DHCP server in the local network."
  8189. msgstr ""
  8190. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:73
  8191. msgid "This is the plain username for logging into the account"
  8192. msgstr ""
  8193. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:57
  8194. msgid ""
  8195. "This is the prefix routed to you by the tunnel broker for use by clients"
  8196. msgstr ""
  8197. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/crontab.js:29
  8198. msgid "This is the system crontab in which scheduled tasks can be defined."
  8199. msgstr ""
  8200. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:50
  8201. msgid ""
  8202. "This is usually the address of the nearest PoP operated by the tunnel broker"
  8203. msgstr ""
  8204. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:65
  8205. msgid ""
  8206. "This list gives an overview over currently running system processes and "
  8207. "their status."
  8208. msgstr ""
  8209. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:404
  8210. msgid "This option adds additional record types to the cache."
  8211. msgstr ""
  8212. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1787
  8213. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1845
  8214. msgid ""
  8215. "This option cannot be used because the ca-bundle package is not installed."
  8216. msgstr ""
  8217. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:323
  8218. msgid "This page displays the active connections via this device."
  8219. msgstr ""
  8220. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:315
  8221. msgid ""
  8222. "This page displays the bandwidth used for all available physical interfaces."
  8223. msgstr ""
  8224. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:342
  8225. msgid ""
  8226. "This page displays the wireless metrics, for each available radio interfaces."
  8227. msgstr ""
  8228. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1558
  8229. msgid "This prefix is randomly generated at first install."
  8230. msgstr ""
  8231. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:713
  8232. msgid "This prevents unreachable IPs in subnets not accessible to you."
  8233. msgstr ""
  8234. #: modules/luci-base/htdocs/luci-static/resources/form.js:2282
  8235. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:172
  8236. #: modules/luci-compat/luasrc/view/cbi/tsection.htm:32
  8237. msgid "This section contains no values yet"
  8238. msgstr ""
  8239. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:124
  8240. msgid "Time Synchronization"
  8241. msgstr ""
  8242. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1740
  8243. msgid "Time advertisement"
  8244. msgstr ""
  8245. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:713
  8246. msgid "Time in milliseconds"
  8247. msgstr ""
  8248. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:581
  8249. msgid "Time in seconds to spend in listening and learning states"
  8250. msgstr ""
  8251. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1241
  8252. msgid "Time interval for rekeying GTK"
  8253. msgstr ""
  8254. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1749
  8255. msgid "Time zone"
  8256. msgstr ""
  8257. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:15
  8258. msgid "Timed-out"
  8259. msgstr ""
  8260. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:717
  8261. msgid "Timeout in seconds"
  8262. msgstr ""
  8263. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:567
  8264. msgid "Timeout in seconds for learned MAC addresses in the forwarding database"
  8265. msgstr ""
  8266. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:586
  8267. msgid "Timeout in seconds until topology updates on link loss"
  8268. msgstr ""
  8269. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:145
  8270. msgid "Timezone"
  8271. msgstr ""
  8272. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:425
  8273. msgid ""
  8274. "To fully configure the local WireGuard interface from an existing (e.g. "
  8275. "provider supplied) configuration file, use the <strong><a class=\"full-"
  8276. "import\" href=\"#\">configuration import</a></strong> instead."
  8277. msgstr ""
  8278. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:402
  8279. msgid ""
  8280. "To restore configuration files, you can upload a previously generated backup "
  8281. "archive here. To reset the firmware to its initial state, click \"Perform "
  8282. "reset\" (only possible with squashfs images)."
  8283. msgstr ""
  8284. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1607
  8285. msgid "Tone"
  8286. msgstr ""
  8287. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:35
  8288. msgid "Total Available"
  8289. msgstr ""
  8290. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:347
  8291. msgid "Trace"
  8292. msgstr ""
  8293. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:110
  8294. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:111
  8295. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:121
  8296. msgid "Traceroute"
  8297. msgstr ""
  8298. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:126
  8299. msgid "Tracking Area Code"
  8300. msgstr ""
  8301. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:54
  8302. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:65
  8303. msgid "Traffic"
  8304. msgstr ""
  8305. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:79
  8306. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:84
  8307. msgid "Traffic Class"
  8308. msgstr ""
  8309. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:528
  8310. msgid "Traffic filter chain \"%h\""
  8311. msgstr ""
  8312. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:466
  8313. msgctxt "nft counter"
  8314. msgid "Traffic matched by rule: %.1000mPackets, %.1024mBytes"
  8315. msgstr ""
  8316. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:390
  8317. msgid "Transfer"
  8318. msgstr ""
  8319. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:777
  8320. msgid ""
  8321. "Transform replies which contain the specified addresses or subnets into "
  8322. "{nxdomain} responses."
  8323. msgstr ""
  8324. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:44
  8325. msgid "Transix (Japan only)"
  8326. msgstr ""
  8327. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:25
  8328. msgid "Transmit"
  8329. msgstr ""
  8330. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:324
  8331. msgid "Transmit Hash Policy"
  8332. msgstr ""
  8333. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:248
  8334. msgid "Transmit dropped"
  8335. msgstr ""
  8336. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:247
  8337. msgid "Transmit errors"
  8338. msgstr ""
  8339. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:58
  8340. #, fuzzy
  8341. msgid "Transmitted Data"
  8342. msgstr "Transmitter Antenna"
  8343. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:245
  8344. msgid "Transmitted bytes"
  8345. msgstr ""
  8346. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:246
  8347. msgid "Transmitted packets"
  8348. msgstr ""
  8349. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:79
  8350. msgctxt "nft @th,off,len"
  8351. msgid "Transport header bits %d-%d"
  8352. msgstr ""
  8353. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:59
  8354. msgctxt "nft th dport"
  8355. msgid "Transport header destination port"
  8356. msgstr ""
  8357. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:58
  8358. msgctxt "nft th sport"
  8359. msgid "Transport header source port"
  8360. msgstr ""
  8361. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:75
  8362. msgid "Trigger"
  8363. msgstr ""
  8364. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:20
  8365. msgid "Trigger Mode"
  8366. msgstr ""
  8367. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:69
  8368. msgid "Tunnel ID"
  8369. msgstr ""
  8370. #: modules/luci-base/htdocs/luci-static/resources/network.js:3039
  8371. #: modules/luci-compat/luasrc/model/network.lua:1431
  8372. msgid "Tunnel Interface"
  8373. msgstr ""
  8374. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:44
  8375. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:57
  8376. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/ipip6.js:58
  8377. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:76
  8378. msgid "Tunnel Link"
  8379. msgstr ""
  8380. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1492
  8381. msgid "Tunnel device"
  8382. msgstr ""
  8383. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:185
  8384. msgid "Tx-Power"
  8385. msgstr ""
  8386. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:45
  8387. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1523
  8388. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:169
  8389. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:43
  8390. msgid "Type"
  8391. msgstr ""
  8392. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:189
  8393. msgid "Type of service"
  8394. msgstr ""
  8395. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:56
  8396. msgctxt "nft udp dport"
  8397. msgid "UDP destination port"
  8398. msgstr ""
  8399. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:223
  8400. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:223
  8401. msgid ""
  8402. "UDP destination port number to use to connect to the remote VXLAN tunnel "
  8403. "endpoint"
  8404. msgstr ""
  8405. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:55
  8406. msgctxt "nft udp sport"
  8407. msgid "UDP source port"
  8408. msgstr ""
  8409. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:331
  8410. msgid "UDP:"
  8411. msgstr ""
  8412. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1557
  8413. msgid "ULA for IPv6 is analogous to IPv4 private network addressing."
  8414. msgstr ""
  8415. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:91
  8416. msgid "UMTS only"
  8417. msgstr ""
  8418. #: modules/luci-compat/luasrc/model/network/proto_3g.lua:10
  8419. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:43
  8420. msgid "UMTS/GPRS/EV-DO"
  8421. msgstr ""
  8422. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:138
  8423. msgid "URI"
  8424. msgstr ""
  8425. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:43
  8426. msgid "URI scheme %s not supported"
  8427. msgstr ""
  8428. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:255
  8429. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:359
  8430. msgid "UUID"
  8431. msgstr ""
  8432. #: modules/luci-base/htdocs/luci-static/resources/network.js:16
  8433. #: modules/luci-base/htdocs/luci-static/resources/network.js:17
  8434. #: modules/luci-compat/luasrc/model/network.lua:34
  8435. #: modules/luci-compat/luasrc/model/network.lua:35
  8436. msgid "Unable to determine device name"
  8437. msgstr ""
  8438. #: modules/luci-base/htdocs/luci-static/resources/network.js:18
  8439. #: modules/luci-compat/luasrc/model/network.lua:36
  8440. msgid "Unable to determine external IP address"
  8441. msgstr ""
  8442. #: modules/luci-base/htdocs/luci-static/resources/network.js:19
  8443. #: modules/luci-compat/luasrc/model/network.lua:37
  8444. msgid "Unable to determine upstream interface"
  8445. msgstr ""
  8446. #: modules/luci-base/ucode/template/error404.ut:12
  8447. msgid "Unable to dispatch"
  8448. msgstr ""
  8449. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/dmesg.js:15
  8450. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/syslog.js:18
  8451. msgid "Unable to load log data:"
  8452. msgstr ""
  8453. #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:54
  8454. #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:54
  8455. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:22
  8456. msgid "Unable to obtain client ID"
  8457. msgstr ""
  8458. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:221
  8459. msgid "Unable to obtain mount information"
  8460. msgstr ""
  8461. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:311
  8462. msgid "Unable to reset ip6tables counters: %s"
  8463. msgstr ""
  8464. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:309
  8465. msgid "Unable to reset iptables counters: %s"
  8466. msgstr ""
  8467. #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:64
  8468. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:7
  8469. msgid "Unable to resolve AFTR host name"
  8470. msgstr ""
  8471. #: modules/luci-base/htdocs/luci-static/resources/network.js:20
  8472. #: modules/luci-compat/luasrc/model/network.lua:38
  8473. msgid "Unable to resolve peer host name"
  8474. msgstr ""
  8475. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:317
  8476. msgid "Unable to restart firewall: %s"
  8477. msgstr ""
  8478. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/crontab.js:22
  8479. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:372
  8480. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:56
  8481. msgid "Unable to save contents: %s"
  8482. msgstr ""
  8483. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:14
  8484. msgid "Unable to set allowed mode list."
  8485. msgstr ""
  8486. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:17
  8487. msgid "Unable to set preferred mode."
  8488. msgstr ""
  8489. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:29
  8490. msgid "Unable to verify PIN"
  8491. msgstr ""
  8492. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1380
  8493. msgid "Unconfigure"
  8494. msgstr ""
  8495. #: protocols/luci-proto-xfrm/htdocs/luci-static/resources/protocol/xfrm.js:42
  8496. msgid "Underlying interface"
  8497. msgstr ""
  8498. #: protocols/luci-proto-unet/htdocs/luci-static/resources/protocol/unet.js:8
  8499. msgid "Unet"
  8500. msgstr ""
  8501. #: modules/luci-base/htdocs/luci-static/resources/fs.js:102
  8502. msgid "Unexpected reply data format"
  8503. msgstr ""
  8504. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1556
  8505. msgid ""
  8506. "Unique Local Address (%s) - prefix <code>fd00::/8</code> (the L bit is "
  8507. "always 1)."
  8508. msgstr ""
  8509. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:78
  8510. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:78
  8511. msgid "Units: seconds"
  8512. msgstr ""
  8513. #: modules/luci-base/htdocs/luci-static/resources/network.js:2092
  8514. #: modules/luci-base/htdocs/luci-static/resources/network.js:3913
  8515. #: modules/luci-compat/luasrc/model/network.lua:971
  8516. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:17
  8517. msgid "Unknown"
  8518. msgstr ""
  8519. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:12
  8520. msgid "Unknown and unsupported connection method."
  8521. msgstr ""
  8522. #: modules/luci-base/htdocs/luci-static/resources/network.js:2435
  8523. #: modules/luci-compat/luasrc/model/network.lua:1138
  8524. msgid "Unknown error (%s)"
  8525. msgstr ""
  8526. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:412
  8527. msgid "Unknown error code"
  8528. msgstr ""
  8529. #: modules/luci-base/htdocs/luci-static/resources/network.js:2089
  8530. #: modules/luci-base/htdocs/luci-static/resources/protocol/none.js:6
  8531. #: modules/luci-compat/luasrc/model/network.lua:965
  8532. msgid "Unmanaged"
  8533. msgstr ""
  8534. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:195
  8535. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:217
  8536. msgid "Unmount"
  8537. msgstr ""
  8538. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:370
  8539. msgctxt "Dnsmasq instance"
  8540. msgid "Unnamed instance #%d"
  8541. msgstr ""
  8542. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:121
  8543. msgid "Unnamed key"
  8544. msgstr ""
  8545. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4411
  8546. msgid "Unsaved Changes"
  8547. msgstr ""
  8548. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:410
  8549. msgid "Unspecified error"
  8550. msgstr ""
  8551. #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:67
  8552. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:9
  8553. msgid "Unsupported MAP type"
  8554. msgstr ""
  8555. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:37
  8556. msgid "Unsupported URI scheme in %s"
  8557. msgstr ""
  8558. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:69
  8559. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:31
  8560. msgid "Unsupported modem"
  8561. msgstr ""
  8562. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:116
  8563. msgid "Unsupported protocol"
  8564. msgstr ""
  8565. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:288
  8566. msgid "Unsupported protocol type."
  8567. msgstr ""
  8568. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:215
  8569. msgctxt "VLAN port state"
  8570. msgid "Untagged"
  8571. msgstr ""
  8572. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:520
  8573. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:97
  8574. msgid "Untitled peer"
  8575. msgstr ""
  8576. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:151
  8577. msgid "Up"
  8578. msgstr ""
  8579. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:416
  8580. msgid "Up Delay"
  8581. msgstr ""
  8582. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4299
  8583. msgid "Upload"
  8584. msgstr ""
  8585. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:443
  8586. msgid ""
  8587. "Upload a sysupgrade-compatible image here to replace the running firmware."
  8588. msgstr ""
  8589. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:138
  8590. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:169
  8591. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:414
  8592. msgid "Upload archive..."
  8593. msgstr ""
  8594. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2890
  8595. msgid "Upload file"
  8596. msgstr ""
  8597. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2865
  8598. msgid "Upload file…"
  8599. msgstr ""
  8600. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4217
  8601. msgid "Upload has been cancelled"
  8602. msgstr ""
  8603. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2812
  8604. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4287
  8605. msgid "Upload request failed: %s"
  8606. msgstr ""
  8607. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4210
  8608. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4260
  8609. msgid "Uploading file…"
  8610. msgstr ""
  8611. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:856
  8612. msgid ""
  8613. "Upon pressing \"Continue\", anonymous \"wifi-iface\" sections will be "
  8614. "assigned with a name in the form <em>wifinet#</em> and the network will be "
  8615. "restarted to apply the updated configuration."
  8616. msgstr ""
  8617. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:383
  8618. msgid ""
  8619. "Upon pressing \"Continue\", bridges configuration will be updated and the "
  8620. "network will be restarted to apply the updated configuration."
  8621. msgstr ""
  8622. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:417
  8623. msgid ""
  8624. "Upon pressing \"Continue\", ifname options will get renamed and the network "
  8625. "will be restarted to apply the updated configuration."
  8626. msgstr ""
  8627. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:84
  8628. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:62
  8629. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:142
  8630. msgid "Uptime"
  8631. msgstr ""
  8632. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:106
  8633. msgid "Use DHCP"
  8634. msgstr ""
  8635. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:295
  8636. msgid "Use DHCP advertised servers"
  8637. msgstr ""
  8638. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:167
  8639. msgid "Use DHCP gateway"
  8640. msgstr ""
  8641. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:115
  8642. msgid "Use DHCPv6"
  8643. msgstr ""
  8644. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1015
  8645. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:144
  8646. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:160
  8647. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:139
  8648. msgid "Use DNS servers advertised by peer"
  8649. msgstr ""
  8650. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:683
  8651. msgid "Use ISO/IEC 3166 alpha2 country codes."
  8652. msgstr ""
  8653. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:48
  8654. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:89
  8655. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:69
  8656. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6to4.js:53
  8657. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:69
  8658. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/ipip6.js:78
  8659. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:84
  8660. msgid "Use MTU on tunnel interface"
  8661. msgstr ""
  8662. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:85
  8663. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:65
  8664. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6to4.js:49
  8665. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:80
  8666. msgid "Use TTL on tunnel interface"
  8667. msgstr ""
  8668. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:327
  8669. msgid "Use XOR of hardware MAC addresses (layer2)"
  8670. msgstr ""
  8671. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:328
  8672. msgid "Use XOR of hardware MAC addresses and IP addresses (layer2+3)"
  8673. msgstr ""
  8674. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:330
  8675. msgid ""
  8676. "Use XOR of hardware MAC addresses and IP addresses, rely on skb_flow_dissect "
  8677. "(encap2+3)"
  8678. msgstr ""
  8679. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:295
  8680. msgid "Use as external overlay (/overlay)"
  8681. msgstr ""
  8682. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:294
  8683. msgid "Use as root filesystem (/)"
  8684. msgstr ""
  8685. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34
  8686. msgid "Use broadcast flag"
  8687. msgstr ""
  8688. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1315
  8689. msgid "Use builtin IPv6-management"
  8690. msgstr ""
  8691. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1019
  8692. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:148
  8693. msgid "Use custom DNS servers"
  8694. msgstr ""
  8695. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1011
  8696. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:133
  8697. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:156
  8698. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:128
  8699. msgid "Use default gateway"
  8700. msgstr ""
  8701. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1033
  8702. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/ipip6.js:73
  8703. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:138
  8704. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:164
  8705. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:133
  8706. msgid "Use gateway metric"
  8707. msgstr ""
  8708. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:88
  8709. msgid "Use legacy MAP"
  8710. msgstr ""
  8711. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:88
  8712. msgid ""
  8713. "Use legacy MAP interface identifier format (draft-ietf-softwire-map-00) "
  8714. "instead of RFC7597"
  8715. msgstr ""
  8716. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:179
  8717. msgid "Use routing table"
  8718. msgstr ""
  8719. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:63
  8720. msgctxt "nft nat flag persistent"
  8721. msgid "Use same source and destination for each connection"
  8722. msgstr ""
  8723. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1780
  8724. msgid "Use system certificates"
  8725. msgstr ""
  8726. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1838
  8727. msgid "Use system certificates for inner-tunnel"
  8728. msgstr ""
  8729. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1163
  8730. msgid ""
  8731. "Use the <em>Add</em> Button to add a new lease entry. The <em>MAC address</"
  8732. "em> identifies the host, the <em>IPv4 address</em> specifies the fixed "
  8733. "address to use, and the <em>Hostname</em> is assigned as a symbolic name to "
  8734. "the requesting host. The optional <em>Lease time</em> can be used to set non-"
  8735. "standard host-specific lease time, e.g. 12h, 3d or infinite."
  8736. msgstr ""
  8737. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:329
  8738. msgid "Use upper layer protocol information (layer3+4)"
  8739. msgstr ""
  8740. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:331
  8741. msgid ""
  8742. "Use upper layer protocol information, rely on skb_flow_dissect (encap3+4)"
  8743. msgstr ""
  8744. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:625
  8745. msgid "Use {etc_ethers}"
  8746. msgstr ""
  8747. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:36
  8748. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:194
  8749. msgid "Used"
  8750. msgstr ""
  8751. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1625
  8752. msgid "Used Key Slot"
  8753. msgstr ""
  8754. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1668
  8755. msgid ""
  8756. "Used for two different purposes: RADIUS NAS ID and 802.11r R0KH-ID. Not "
  8757. "needed with normal WPA(2)-PSK."
  8758. msgstr ""
  8759. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:798
  8760. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:806
  8761. msgid "Useful for systems behind firewalls."
  8762. msgstr ""
  8763. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:157
  8764. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:106
  8765. msgid "User certificate (PEM encoded)"
  8766. msgstr ""
  8767. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:194
  8768. msgid "User identifier"
  8769. msgstr ""
  8770. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:169
  8771. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:118
  8772. msgid "User key (PEM encoded)"
  8773. msgstr ""
  8774. #: modules/luci-base/ucode/template/sysauth.ut:23
  8775. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:146
  8776. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:101
  8777. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:56
  8778. #: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:13
  8779. msgid "Username"
  8780. msgstr ""
  8781. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:131
  8782. msgid "Utilize flow table <strong>%h</strong>"
  8783. msgstr ""
  8784. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1675
  8785. msgid "VC-Mux"
  8786. msgstr ""
  8787. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1623
  8788. msgid "VDSL"
  8789. msgstr ""
  8790. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:489
  8791. msgctxt "MACVLAN mode"
  8792. msgid "VEPA (Virtual Ethernet Port Aggregator)"
  8793. msgstr ""
  8794. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:400
  8795. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1486
  8796. msgid "VLAN (802.1ad)"
  8797. msgstr ""
  8798. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:399
  8799. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1483
  8800. msgid "VLAN (802.1q)"
  8801. msgstr ""
  8802. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:468
  8803. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:931
  8804. msgid "VLAN ID"
  8805. msgstr ""
  8806. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:173
  8807. msgid "VLANs on %q"
  8808. msgstr ""
  8809. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:128
  8810. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:246
  8811. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:128
  8812. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:246
  8813. msgid "VNI"
  8814. msgstr ""
  8815. #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:54
  8816. msgid "VPN"
  8817. msgstr ""
  8818. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:42
  8819. msgid "VPN Local address"
  8820. msgstr ""
  8821. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:46
  8822. msgid "VPN Local port"
  8823. msgstr ""
  8824. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:97
  8825. msgid "VPN Protocol"
  8826. msgstr ""
  8827. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:106
  8828. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:93
  8829. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:58
  8830. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:39
  8831. msgid "VPN Server"
  8832. msgstr ""
  8833. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:152
  8834. msgid "VPN Server certificate's SHA256 hash"
  8835. msgstr ""
  8836. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:96
  8837. msgid "VPN Server port"
  8838. msgstr ""
  8839. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:144
  8840. msgid "VPN Server's certificate SHA1 hash"
  8841. msgstr ""
  8842. #: modules/luci-compat/luasrc/model/network/proto_vpnc.lua:9
  8843. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:9
  8844. msgid "VPNC (CISCO 3000 (and others) VPN)"
  8845. msgstr ""
  8846. #: protocols/luci-proto-vti/htdocs/luci-static/resources/protocol/vti.js:10
  8847. msgid "VTI"
  8848. msgstr ""
  8849. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:11
  8850. msgid "VXLAN (RFC7348)"
  8851. msgstr ""
  8852. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:127
  8853. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:127
  8854. msgid "VXLAN network identifier"
  8855. msgstr ""
  8856. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:11
  8857. msgid "VXLANv6 (RFC7348)"
  8858. msgstr ""
  8859. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:719
  8860. msgid ""
  8861. "Validate DNS replies and cache DNSSEC data, requires upstream to support "
  8862. "DNSSEC."
  8863. msgstr ""
  8864. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1780
  8865. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1838
  8866. msgid ""
  8867. "Validate server certificate using built-in system CA bundle,<br />requires "
  8868. "the \"ca-bundle\" package"
  8869. msgstr ""
  8870. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:393
  8871. msgid "Validation for all slaves"
  8872. msgstr ""
  8873. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:391
  8874. msgid "Validation only for active slave"
  8875. msgstr ""
  8876. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:392
  8877. msgid "Validation only for backup slaves"
  8878. msgstr ""
  8879. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:73
  8880. msgid "Vendor"
  8881. msgstr ""
  8882. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:40
  8883. msgid "Vendor Class to send when requesting DHCP"
  8884. msgstr ""
  8885. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:724
  8886. msgid "Verify unsigned domain responses really come from unsigned domains."
  8887. msgstr ""
  8888. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:198
  8889. msgid "Verifying the uploaded image file."
  8890. msgstr ""
  8891. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1018
  8892. msgid "Very High"
  8893. msgstr ""
  8894. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:229
  8895. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:229
  8896. msgid "Via"
  8897. msgstr ""
  8898. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:241
  8899. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:241
  8900. msgid "Via shall be specified when %s is a multicast address"
  8901. msgstr ""
  8902. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:402
  8903. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1498
  8904. msgid "Virtual Ethernet"
  8905. msgstr ""
  8906. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:60
  8907. msgid "Virtual dynamic interface"
  8908. msgstr ""
  8909. #: modules/luci-base/htdocs/luci-static/resources/network.js:3909
  8910. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1168
  8911. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1169
  8912. msgid "WDS"
  8913. msgstr ""
  8914. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1369
  8915. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1461
  8916. msgid "WEP Open System"
  8917. msgstr ""
  8918. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1370
  8919. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1462
  8920. msgid "WEP Shared Key"
  8921. msgstr ""
  8922. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2273
  8923. msgid "WEP passphrase"
  8924. msgstr ""
  8925. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1050
  8926. msgid "WLAN roaming"
  8927. msgstr ""
  8928. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1206
  8929. msgid "WMM Mode"
  8930. msgstr ""
  8931. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1753
  8932. msgid "WNM Sleep Mode"
  8933. msgstr ""
  8934. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1757
  8935. msgid "WNM Sleep Mode Fixes"
  8936. msgstr ""
  8937. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2273
  8938. msgid "WPA passphrase"
  8939. msgstr ""
  8940. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1360
  8941. msgid ""
  8942. "WPA-Encryption requires wpa_supplicant (for client mode) or hostapd (for AP "
  8943. "and ad-hoc mode) to be installed."
  8944. msgstr ""
  8945. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:153
  8946. msgid "WPS status"
  8947. msgstr ""
  8948. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:47
  8949. msgid "Waiting for device..."
  8950. msgstr ""
  8951. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:344
  8952. msgid "Warn"
  8953. msgstr ""
  8954. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:189
  8955. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:199
  8956. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:157
  8957. msgid "Warning"
  8958. msgstr ""
  8959. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:26
  8960. msgid "Warning: There are unsaved changes that will get lost on reboot!"
  8961. msgstr ""
  8962. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:37
  8963. msgid "Weak"
  8964. msgstr ""
  8965. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:974
  8966. msgid "Weight"
  8967. msgstr ""
  8968. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1273
  8969. msgid ""
  8970. "When a host matches an entry then the special tag %s is set. Use %s to match "
  8971. "all known hosts."
  8972. msgstr ""
  8973. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1105
  8974. msgid ""
  8975. "When delegating prefixes to multiple downstreams, interfaces with a higher "
  8976. "preference value are considered first when allocating subnets."
  8977. msgstr ""
  8978. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:105
  8979. msgid ""
  8980. "When enabled network coding increases the WiFi throughput by combining "
  8981. "multiple frames into a single frame, thus reducing the needed air time."
  8982. msgstr ""
  8983. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:76
  8984. msgid ""
  8985. "When enabled the distributed ARP table forms a mesh-wide ARP cache that "
  8986. "helps non-mesh clients to get ARP responses much more reliably and without "
  8987. "much delay."
  8988. msgstr ""
  8989. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:115
  8990. msgid ""
  8991. "When enabled, gateway is on-link even if the gateway does not match any "
  8992. "interface prefix"
  8993. msgstr ""
  8994. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:707
  8995. msgid ""
  8996. "When enabled, new ARP table entries are added from received gratuitous ARP "
  8997. "requests or replies, otherwise only preexisting table entries are updated, "
  8998. "but no new hosts are learned."
  8999. msgstr ""
  9000. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/heartbeat.js:14
  9001. msgid ""
  9002. "When inverted, the LED is continuously lit and flickers instead of it being "
  9003. "off by default and blinking on system activity."
  9004. msgstr ""
  9005. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:66
  9006. msgid ""
  9007. "When running the mesh over multiple WiFi interfaces per node batman-adv is "
  9008. "capable of optimizing the traffic flow to gain maximum performance."
  9009. msgstr ""
  9010. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1691
  9011. msgid ""
  9012. "When using a PSK, the PMK can be automatically generated. When enabled, the "
  9013. "R0/R1 key options below are not applied. Disable this to use the R0 and R1 "
  9014. "key options."
  9015. msgstr ""
  9016. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1206
  9017. msgid ""
  9018. "Where Wi-Fi Multimedia (WMM) Mode QoS is disabled, clients may be limited to "
  9019. "802.11a/802.11g rates."
  9020. msgstr ""
  9021. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1202
  9022. msgid ""
  9023. "Where the ESSID is hidden, clients may fail to roam and airtime efficiency "
  9024. "may be significantly reduced."
  9025. msgstr ""
  9026. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:178
  9027. msgid "Which is used to access this %s"
  9028. msgstr ""
  9029. #: modules/luci-compat/luasrc/view/cbi/wireless_modefreq.htm:194
  9030. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:580
  9031. msgid "Width"
  9032. msgstr ""
  9033. #: protocols/luci-proto-wireguard/root/usr/share/luci/menu.d/luci-proto-wireguard.json:3
  9034. msgid "WireGuard"
  9035. msgstr ""
  9036. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:120
  9037. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:165
  9038. msgid "WireGuard Status"
  9039. msgstr ""
  9040. #: modules/luci-compat/luasrc/model/network/proto_wireguard.lua:9
  9041. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:105
  9042. msgid "WireGuard VPN"
  9043. msgstr ""
  9044. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:527
  9045. msgid "WireGuard peer is disabled"
  9046. msgstr ""
  9047. #: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:17
  9048. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:10
  9049. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:341
  9050. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:148
  9051. msgid "Wireless"
  9052. msgstr ""
  9053. #: modules/luci-base/htdocs/luci-static/resources/network.js:3026
  9054. #: modules/luci-compat/luasrc/model/network.lua:1419
  9055. msgid "Wireless Adapter"
  9056. msgstr ""
  9057. #: modules/luci-base/htdocs/luci-static/resources/network.js:3005
  9058. #: modules/luci-base/htdocs/luci-static/resources/network.js:4332
  9059. #: modules/luci-compat/luasrc/model/network.lua:1405
  9060. #: modules/luci-compat/luasrc/model/network.lua:1868
  9061. msgid "Wireless Network"
  9062. msgstr ""
  9063. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:872
  9064. msgid "Wireless Overview"
  9065. msgstr ""
  9066. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1047
  9067. msgid "Wireless Security"
  9068. msgstr ""
  9069. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:854
  9070. msgid "Wireless configuration migration"
  9071. msgstr ""
  9072. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:153
  9073. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:193
  9074. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:152
  9075. msgid "Wireless is disabled"
  9076. msgstr ""
  9077. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:153
  9078. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:193
  9079. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:152
  9080. msgid "Wireless is not associated"
  9081. msgstr ""
  9082. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:996
  9083. msgid "Wireless network is disabled"
  9084. msgstr ""
  9085. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:996
  9086. msgid "Wireless network is enabled"
  9087. msgstr ""
  9088. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1935
  9089. msgid "Workaround mode can only be used when acting as an access point."
  9090. msgstr ""
  9091. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:437
  9092. msgid "Write received DNS queries to syslog."
  9093. msgstr ""
  9094. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:181
  9095. msgid "Write system log to file"
  9096. msgstr ""
  9097. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:211
  9098. msgid "XOR policy (balance-xor, 2)"
  9099. msgstr ""
  9100. #: modules/luci-base/htdocs/luci-static/resources/form.js:4181
  9101. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:302
  9102. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:350
  9103. msgid "Yes"
  9104. msgstr ""
  9105. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:310
  9106. msgid "Yes (none, 0)"
  9107. msgstr ""
  9108. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:205
  9109. msgid "Yggdrasil Network"
  9110. msgstr ""
  9111. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:163
  9112. msgid ""
  9113. "You appear to be currently connected to the device via the \"%h\" interface. "
  9114. "Do you really want to shut down the interface?"
  9115. msgstr ""
  9116. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:112
  9117. msgid ""
  9118. "You can enable or disable installed init scripts here. Changes will be "
  9119. "applied after a device reboot.<br /><strong>Warning: If you disable "
  9120. "essential init scripts like \"network\", your device might become "
  9121. "inaccessible!</strong>"
  9122. msgstr ""
  9123. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:944
  9124. msgid "You may add multiple records for the same Target."
  9125. msgstr ""
  9126. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:981
  9127. msgid "You may add multiple records for the same domain."
  9128. msgstr ""
  9129. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:559
  9130. msgid "You may add multiple unique Relay To on the same Listen addr."
  9131. msgstr ""
  9132. #: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:79
  9133. #: themes/luci-theme-material/ucode/template/themes/material/header.ut:99
  9134. #: themes/luci-theme-openwrt/ucode/template/themes/openwrt.org/header.ut:65
  9135. msgid ""
  9136. "You must enable JavaScript in your browser or LuCI will not work properly."
  9137. msgstr ""
  9138. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:120
  9139. msgid ""
  9140. "You must select a primary interface which is included in selected slave "
  9141. "interfaces!"
  9142. msgstr ""
  9143. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:101
  9144. msgid ""
  9145. "You must select at least one ARP IP target if ARP monitoring is selected!"
  9146. msgstr ""
  9147. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:213
  9148. msgid "ZRam Compression Algorithm"
  9149. msgstr ""
  9150. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:206
  9151. msgid "ZRam Settings"
  9152. msgstr ""
  9153. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:208
  9154. msgid "ZRam Size"
  9155. msgstr ""
  9156. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:943
  9157. msgid "_proto: _tcp, _udp, _sctp, _quic, … ."
  9158. msgstr ""
  9159. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:942
  9160. msgid ""
  9161. "_service: _sip, _ldap, _imap, _stun, _xmpp-client, … . (Note: while _http is "
  9162. "possible, no browsers support SRV records.)"
  9163. msgstr ""
  9164. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:794
  9165. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:158
  9166. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:169
  9167. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:105
  9168. msgid "any"
  9169. msgstr ""
  9170. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1608
  9171. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1616
  9172. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1621
  9173. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:87
  9174. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:102
  9175. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:139
  9176. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1306
  9177. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:83
  9178. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:48
  9179. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:51
  9180. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:89
  9181. msgid "auto"
  9182. msgstr ""
  9183. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:157
  9184. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:800
  9185. msgid "automatic"
  9186. msgstr ""
  9187. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:198
  9188. msgid "automatic (disabled)"
  9189. msgstr ""
  9190. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:198
  9191. msgid "automatic (enabled)"
  9192. msgstr ""
  9193. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:82
  9194. msgid "baseT"
  9195. msgstr ""
  9196. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1681
  9197. msgid "bridged"
  9198. msgstr ""
  9199. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:155
  9200. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:418
  9201. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:35
  9202. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:99
  9203. #: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:31
  9204. msgid "create"
  9205. msgstr ""
  9206. #: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:69
  9207. msgid "create:"
  9208. msgstr ""
  9209. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:165
  9210. msgid ""
  9211. "custom: Use different options when establishing a connection (these options "
  9212. "are prefixed with %s)."
  9213. msgstr ""
  9214. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:55
  9215. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:57
  9216. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:58
  9217. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:62
  9218. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:63
  9219. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:83
  9220. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:84
  9221. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:87
  9222. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:185
  9223. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:186
  9224. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:187
  9225. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:41
  9226. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:42
  9227. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:276
  9228. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:278
  9229. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:279
  9230. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:283
  9231. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:284
  9232. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:263
  9233. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:266
  9234. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:269
  9235. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:273
  9236. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:276
  9237. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:279
  9238. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:306
  9239. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:307
  9240. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:308
  9241. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:312
  9242. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:313
  9243. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:314
  9244. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:316
  9245. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:317
  9246. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:318
  9247. msgid "dBm"
  9248. msgstr ""
  9249. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:73
  9250. msgctxt "nft unit"
  9251. msgid "day"
  9252. msgstr ""
  9253. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:164
  9254. msgid "default: Use the configuration options above (APN, IP Type, ...)."
  9255. msgstr ""
  9256. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1149
  9257. msgid "disable"
  9258. msgstr ""
  9259. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:157
  9260. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:681
  9261. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:788
  9262. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:913
  9263. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:979
  9264. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1057
  9265. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:91
  9266. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:25
  9267. msgid "disabled"
  9268. msgstr ""
  9269. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:20
  9270. msgctxt "DHCPv6 address request mode"
  9271. msgid "disabled"
  9272. msgstr ""
  9273. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:637
  9274. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:671
  9275. msgid "driver default"
  9276. msgstr ""
  9277. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1229
  9278. msgid "driver default (%s)"
  9279. msgstr ""
  9280. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:70
  9281. msgid "e.g: --proxy 10.10.10.10"
  9282. msgstr ""
  9283. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:72
  9284. msgid "e.g: dump"
  9285. msgstr ""
  9286. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:157
  9287. msgid "enabled"
  9288. msgstr ""
  9289. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:747
  9290. msgid "enabled (default)"
  9291. msgstr ""
  9292. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:60
  9293. msgctxt "WireGuard keep alive interval"
  9294. msgid "every %ds"
  9295. msgstr ""
  9296. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1318
  9297. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1348
  9298. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:101
  9299. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:148
  9300. msgid "expired"
  9301. msgstr ""
  9302. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:19
  9303. msgctxt "DHCPv6 address request mode"
  9304. msgid "force"
  9305. msgstr ""
  9306. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:804
  9307. msgid "forced"
  9308. msgstr ""
  9309. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:94
  9310. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:205
  9311. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:61
  9312. msgid "forward"
  9313. msgstr ""
  9314. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:98
  9315. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:84
  9316. msgid "full-duplex"
  9317. msgstr ""
  9318. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:98
  9319. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:84
  9320. msgid "half-duplex"
  9321. msgstr ""
  9322. #: modules/luci-base/htdocs/luci-static/resources/validation.js:623
  9323. msgid "hexadecimal encoded value"
  9324. msgstr ""
  9325. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2046
  9326. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:353
  9327. msgid "hidden"
  9328. msgstr ""
  9329. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:74
  9330. msgctxt "nft unit"
  9331. msgid "hour"
  9332. msgstr ""
  9333. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:794
  9334. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:919
  9335. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:983
  9336. msgid "hybrid mode"
  9337. msgstr ""
  9338. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:65
  9339. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/ipip6.js:66
  9340. msgid "ignore"
  9341. msgstr ""
  9342. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1252
  9343. msgid "infinite (lease does not expire)"
  9344. msgstr ""
  9345. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:78
  9346. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:201
  9347. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:46
  9348. msgid "input"
  9349. msgstr ""
  9350. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1528
  9351. msgid "integer"
  9352. msgstr ""
  9353. #: modules/luci-base/htdocs/luci-static/resources/validation.js:440
  9354. msgid "key between 8 and 63 characters"
  9355. msgstr ""
  9356. #: modules/luci-base/htdocs/luci-static/resources/validation.js:452
  9357. msgid "key with either 5 or 13 characters"
  9358. msgstr ""
  9359. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1276
  9360. msgid "known"
  9361. msgstr ""
  9362. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1278
  9363. msgid "known-othernet (on different subnet)"
  9364. msgstr ""
  9365. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:111
  9366. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:111
  9367. msgid "l2miss: Layer 2 miss"
  9368. msgstr ""
  9369. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:117
  9370. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:117
  9371. msgid "l3miss: Layer 3 miss"
  9372. msgstr ""
  9373. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:818
  9374. msgid "managed config (M)"
  9375. msgstr ""
  9376. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1471
  9377. msgid "medium security"
  9378. msgstr ""
  9379. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:75
  9380. msgctxt "nft unit"
  9381. msgid "minute"
  9382. msgstr ""
  9383. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1696
  9384. msgid "minutes"
  9385. msgstr ""
  9386. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:822
  9387. msgid "mobile home agent (H)"
  9388. msgstr ""
  9389. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:428
  9390. msgid "netif_carrier_ok()"
  9391. msgstr ""
  9392. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:47
  9393. msgid "no"
  9394. msgstr ""
  9395. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:104
  9396. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:76
  9397. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:232
  9398. msgid "no link"
  9399. msgstr ""
  9400. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1229
  9401. msgid "no override"
  9402. msgstr ""
  9403. #: modules/luci-base/htdocs/luci-static/resources/form.js:2271
  9404. #: modules/luci-base/htdocs/luci-static/resources/validation.js:72
  9405. msgid "non-empty value"
  9406. msgstr ""
  9407. #: modules/luci-base/htdocs/luci-static/resources/form.js:3382
  9408. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:825
  9409. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:166
  9410. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:39
  9411. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:56
  9412. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:60
  9413. msgid "none"
  9414. msgstr ""
  9415. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:163
  9416. msgid "none: Do not set an initial EPS bearer (default behaviour)"
  9417. msgstr ""
  9418. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:41
  9419. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:55
  9420. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:69
  9421. msgid "not present"
  9422. msgstr ""
  9423. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1528
  9424. msgid "octet string"
  9425. msgstr ""
  9426. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:746
  9427. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:349
  9428. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1026
  9429. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1030
  9430. msgid "off"
  9431. msgstr ""
  9432. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:802
  9433. msgid "on available prefix"
  9434. msgstr ""
  9435. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1472
  9436. msgid "open network"
  9437. msgstr ""
  9438. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:820
  9439. msgid "other config (O)"
  9440. msgstr ""
  9441. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:78
  9442. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:46
  9443. msgid "output"
  9444. msgstr ""
  9445. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:28
  9446. msgid "over a day ago"
  9447. msgstr ""
  9448. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:69
  9449. msgctxt "nft unit"
  9450. msgid "packets"
  9451. msgstr ""
  9452. #: modules/luci-base/htdocs/luci-static/resources/validation.js:265
  9453. msgid "positive decimal value"
  9454. msgstr ""
  9455. #: modules/luci-base/htdocs/luci-static/resources/validation.js:257
  9456. msgid "positive integer value"
  9457. msgstr ""
  9458. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:164
  9459. msgid "random"
  9460. msgstr ""
  9461. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1230
  9462. msgid "randomly generated"
  9463. msgstr ""
  9464. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:51
  9465. msgid ""
  9466. "reduces overhead by collecting and aggregating originator messages in a "
  9467. "single packet rather than many small ones"
  9468. msgstr ""
  9469. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:792
  9470. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:917
  9471. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:981
  9472. msgid "relay mode"
  9473. msgstr ""
  9474. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1682
  9475. msgid "routed"
  9476. msgstr ""
  9477. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1241
  9478. msgid "sec"
  9479. msgstr ""
  9480. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:790
  9481. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:915
  9482. msgid "server mode"
  9483. msgstr ""
  9484. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:58
  9485. msgid "sstpc Log-level"
  9486. msgstr ""
  9487. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:466
  9488. msgid "stderr"
  9489. msgstr ""
  9490. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1528
  9491. msgid "string (UTF-8)"
  9492. msgstr ""
  9493. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1470
  9494. msgid "strong security"
  9495. msgstr ""
  9496. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:354
  9497. msgid "tagged"
  9498. msgstr ""
  9499. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:246
  9500. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:246
  9501. msgid ""
  9502. "the VXLAN Network Identifier (or VXLAN Segment ID) to use to connect to the "
  9503. "remote VXLAN tunnel endpoint"
  9504. msgstr ""
  9505. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:251
  9506. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:251
  9507. msgid ""
  9508. "the source VNI Network Identifier (or VXLAN Segment ID) this entry belongs "
  9509. "to. Used only when the VXLAN device is in external or collect metadata mode"
  9510. msgstr ""
  9511. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1679
  9512. msgid "time units (TUs / 1.024 ms) [1000-65535]"
  9513. msgstr ""
  9514. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:18
  9515. msgctxt "DHCPv6 address request mode"
  9516. msgid "try"
  9517. msgstr ""
  9518. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/uhttpd.js:9
  9519. msgid ""
  9520. "uHTTPd offers <abbr title=\"Hypertext Transfer Protocol\">HTTP</abbr> or "
  9521. "<abbr title=\"Hypertext Transfer Protocol Secure\">HTTPS</abbr> network "
  9522. "access."
  9523. msgstr ""
  9524. #: modules/luci-base/htdocs/luci-static/resources/validation.js:613
  9525. msgid "unique value"
  9526. msgstr ""
  9527. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:652
  9528. msgid "unknown"
  9529. msgstr ""
  9530. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:28
  9531. msgid "unknown version"
  9532. msgstr ""
  9533. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1316
  9534. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1346
  9535. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:99
  9536. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:146
  9537. msgid "unlimited"
  9538. msgstr ""
  9539. #: modules/luci-base/htdocs/luci-static/resources/form.js:3747
  9540. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:85
  9541. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:147
  9542. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:382
  9543. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:409
  9544. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:445
  9545. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:482
  9546. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:578
  9547. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:53
  9548. #: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:38
  9549. msgid "unspecified"
  9550. msgstr ""
  9551. #: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:71
  9552. msgid "unspecified -or- create:"
  9553. msgstr ""
  9554. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:352
  9555. msgid "untagged"
  9556. msgstr ""
  9557. #: modules/luci-base/htdocs/luci-static/resources/validation.js:270
  9558. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:192
  9559. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:203
  9560. msgid "valid IP address"
  9561. msgstr ""
  9562. #: modules/luci-base/htdocs/luci-static/resources/validation.js:270
  9563. msgid "valid IP address or prefix"
  9564. msgstr ""
  9565. #: modules/luci-base/htdocs/luci-static/resources/validation.js:351
  9566. msgid "valid IP address range"
  9567. msgstr ""
  9568. #: modules/luci-base/htdocs/luci-static/resources/validation.js:307
  9569. msgid "valid IPv4 CIDR"
  9570. msgstr ""
  9571. #: modules/luci-base/htdocs/luci-static/resources/validation.js:278
  9572. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:196
  9573. msgid "valid IPv4 address"
  9574. msgstr ""
  9575. #: modules/luci-base/htdocs/luci-static/resources/validation.js:278
  9576. msgid "valid IPv4 address or network"
  9577. msgstr ""
  9578. #: modules/luci-base/htdocs/luci-static/resources/validation.js:357
  9579. msgid "valid IPv4 address range"
  9580. msgstr ""
  9581. #: modules/luci-base/htdocs/luci-static/resources/validation.js:419
  9582. msgid "valid IPv4 address:port"
  9583. msgstr ""
  9584. #: modules/luci-base/htdocs/luci-static/resources/validation.js:341
  9585. msgid "valid IPv4 network"
  9586. msgstr ""
  9587. #: modules/luci-base/htdocs/luci-static/resources/validation.js:301
  9588. msgid "valid IPv4 or IPv6 CIDR"
  9589. msgstr ""
  9590. #: modules/luci-base/htdocs/luci-static/resources/validation.js:291
  9591. msgid "valid IPv4 prefix value (0-32)"
  9592. msgstr ""
  9593. #: modules/luci-base/htdocs/luci-static/resources/validation.js:313
  9594. msgid "valid IPv6 CIDR"
  9595. msgstr ""
  9596. #: modules/luci-base/htdocs/luci-static/resources/validation.js:286
  9597. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:200
  9598. msgid "valid IPv6 address"
  9599. msgstr ""
  9600. #: modules/luci-base/htdocs/luci-static/resources/validation.js:286
  9601. msgid "valid IPv6 address or prefix"
  9602. msgstr ""
  9603. #: modules/luci-base/htdocs/luci-static/resources/validation.js:363
  9604. msgid "valid IPv6 address range"
  9605. msgstr ""
  9606. #: modules/luci-base/htdocs/luci-static/resources/validation.js:331
  9607. msgid "valid IPv6 host id"
  9608. msgstr ""
  9609. #: modules/luci-base/htdocs/luci-static/resources/validation.js:346
  9610. msgid "valid IPv6 network"
  9611. msgstr ""
  9612. #: modules/luci-base/htdocs/luci-static/resources/validation.js:296
  9613. msgid "valid IPv6 prefix value (0-128)"
  9614. msgstr ""
  9615. #: modules/luci-base/htdocs/luci-static/resources/validation.js:385
  9616. msgid "valid MAC address"
  9617. msgstr ""
  9618. #: modules/luci-base/htdocs/luci-static/resources/validation.js:456
  9619. msgid "valid UCI identifier"
  9620. msgstr ""
  9621. #: modules/luci-base/htdocs/luci-static/resources/validation.js:407
  9622. msgid "valid UCI identifier, hostname or IP address range"
  9623. msgstr ""
  9624. #: modules/luci-base/htdocs/luci-static/resources/validation.js:428
  9625. #: modules/luci-base/htdocs/luci-static/resources/validation.js:431
  9626. msgid "valid address:port"
  9627. msgstr ""
  9628. #: modules/luci-base/htdocs/luci-static/resources/validation.js:587
  9629. #: modules/luci-base/htdocs/luci-static/resources/validation.js:591
  9630. msgid "valid date (YYYY-MM-DD)"
  9631. msgstr ""
  9632. #: modules/luci-base/htdocs/luci-static/resources/validation.js:261
  9633. msgid "valid decimal value"
  9634. msgstr ""
  9635. #: modules/luci-base/htdocs/luci-static/resources/validation.js:450
  9636. msgid "valid hexadecimal WEP key"
  9637. msgstr ""
  9638. #: modules/luci-base/htdocs/luci-static/resources/validation.js:438
  9639. msgid "valid hexadecimal WPA key"
  9640. msgstr ""
  9641. #: modules/luci-base/htdocs/luci-static/resources/validation.js:413
  9642. msgid "valid host:port"
  9643. msgstr ""
  9644. #: modules/luci-base/htdocs/luci-static/resources/validation.js:400
  9645. #: modules/luci-base/htdocs/luci-static/resources/validation.js:402
  9646. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:142
  9647. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:148
  9648. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:176
  9649. msgid "valid hostname"
  9650. msgstr ""
  9651. #: modules/luci-base/htdocs/luci-static/resources/validation.js:390
  9652. msgid "valid hostname or IP address"
  9653. msgstr ""
  9654. #: modules/luci-base/htdocs/luci-static/resources/validation.js:253
  9655. msgid "valid integer value"
  9656. msgstr ""
  9657. #: modules/luci-base/htdocs/luci-static/resources/validation.js:385
  9658. msgid "valid multicast MAC address"
  9659. msgstr ""
  9660. #: modules/luci-base/htdocs/luci-static/resources/validation.js:465
  9661. msgid ""
  9662. "valid network device name between 1 and 15 characters not containing \":\", "
  9663. "\"/\", \"%\" or spaces"
  9664. msgstr ""
  9665. #: modules/luci-base/htdocs/luci-static/resources/validation.js:463
  9666. msgid "valid network device name, not \".\" or \"..\""
  9667. msgstr ""
  9668. #: modules/luci-base/htdocs/luci-static/resources/validation.js:336
  9669. msgid "valid network in address/netmask notation"
  9670. msgstr ""
  9671. #: modules/luci-base/htdocs/luci-static/resources/validation.js:562
  9672. msgid "valid phone digit (0-9, \"*\", \"#\", \"!\" or \".\")"
  9673. msgstr ""
  9674. #: modules/luci-base/htdocs/luci-static/resources/validation.js:376
  9675. #: modules/luci-base/htdocs/luci-static/resources/validation.js:379
  9676. msgid "valid port or port range (port1-port2)"
  9677. msgstr ""
  9678. #: modules/luci-base/htdocs/luci-static/resources/validation.js:368
  9679. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:207
  9680. msgid "valid port value"
  9681. msgstr ""
  9682. #: modules/luci-base/htdocs/luci-static/resources/validation.js:567
  9683. msgid "valid time (HH:MM:SS)"
  9684. msgstr ""
  9685. #: modules/luci-base/htdocs/luci-static/resources/validation.js:489
  9686. msgid "value between %d and %d characters"
  9687. msgstr ""
  9688. #: modules/luci-base/htdocs/luci-static/resources/validation.js:470
  9689. msgid "value between %f and %f"
  9690. msgstr ""
  9691. #: modules/luci-base/htdocs/luci-static/resources/validation.js:474
  9692. msgid "value greater or equal to %f"
  9693. msgstr ""
  9694. #: modules/luci-base/htdocs/luci-static/resources/validation.js:478
  9695. msgid "value smaller or equal to %f"
  9696. msgstr ""
  9697. #: modules/luci-base/htdocs/luci-static/resources/validation.js:483
  9698. msgid "value with %d characters"
  9699. msgstr ""
  9700. #: modules/luci-base/htdocs/luci-static/resources/validation.js:494
  9701. msgid "value with at least %d characters"
  9702. msgstr ""
  9703. #: modules/luci-base/htdocs/luci-static/resources/validation.js:499
  9704. msgid "value with at most %d characters"
  9705. msgstr ""
  9706. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1472
  9707. msgid "weak security"
  9708. msgstr ""
  9709. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:72
  9710. msgctxt "nft unit"
  9711. msgid "week"
  9712. msgstr ""
  9713. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:47
  9714. msgid "yes"
  9715. msgstr ""
  9716. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:483
  9717. msgctxt "hint: <code>/#/</code> matches any domain (and returns NXDOMAIN)."
  9718. msgid "{any_domain} matches any domain (and returns {nxdomain})."
  9719. msgstr ""
  9720. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:487
  9721. msgctxt ""
  9722. "hint: <code>/example.com/#</code> returns NULL addresses (<code>0.0.0.0</"
  9723. "code>, <code>::</code>) for example.com and its subdomains."
  9724. msgid ""
  9725. "{example_null} returns {null_addr} addresses ({null_ipv4}, {null_ipv6}) for "
  9726. "{example_com} and its subdomains."
  9727. msgstr ""
  9728. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:480
  9729. msgctxt "hint: <code>/example.com/</code> returns <code>NXDOMAIN</code>."
  9730. msgid "{example_nx} returns {nxdomain}."
  9731. msgstr ""
  9732. #: modules/luci-compat/luasrc/view/cbi/delegator.htm:20
  9733. msgid "« Back"
  9734. msgstr ""
  9735. #~ msgid "Default %d"
  9736. #~ msgstr "Default %d"
  9737. #~ msgid "Auto Refresh"
  9738. #~ msgstr "Auto Refresh"
  9739. #~ msgid "Host entries"
  9740. #~ msgstr "Host entries"
  9741. #~ msgid "Bridge interfaces"
  9742. #~ msgstr "Bridge interfaces"
  9743. #~ msgid "Creates a bridge over specified interface(s)"
  9744. #~ msgstr "Creates a bridge over specified interface(s)"
  9745. #~ msgid "Enable/Disable"
  9746. #~ msgstr "Enable/Disable"
  9747. #~ msgid "Define a name for this network."
  9748. #~ msgstr "Define a name for this network."
  9749. #~ msgid "Bad address specified!"
  9750. #~ msgstr "Bad address specified!"
  9751. #~ msgid "Assign interfaces..."
  9752. #~ msgstr "Assign interfaces..."
  9753. #~ msgid ""
  9754. #~ "This page gives an overview over currently active network connections."
  9755. #~ msgstr ""
  9756. #~ "This page gives an overview over currently active network connections."
  9757. #~ msgid "Changes applied."
  9758. #~ msgstr "Changes applied."
  9759. #~ msgid "(%s available)"
  9760. #~ msgstr "(%s available)"
  9761. #~ msgid "Check"
  9762. #~ msgstr "Check"
  9763. #~ msgid "Checksum"
  9764. #~ msgstr "Checksum"
  9765. #~ msgid "Flash Firmware"
  9766. #~ msgstr "Flash Firmware"
  9767. #~ msgid "Proceed"
  9768. #~ msgstr "Proceed"
  9769. #~ msgid ""
  9770. #~ "The filesystem that was used to format the memory (<abbr title=\"for "
  9771. #~ "example\">e.g.</abbr> <samp><abbr title=\"Third Extended "
  9772. #~ "Filesystem\">ext3</abbr></samp>)"
  9773. #~ msgstr ""
  9774. #~ "The filesystem that was used to format the memory (<abbr title=\"for "
  9775. #~ "example\">e.g.</abbr> <samp><abbr title=\"Third Extended "
  9776. #~ "Filesystem\">ext3</abbr></samp>)"
  9777. #~ msgid "Antenna 1"
  9778. #~ msgstr "Antenna 1"
  9779. #~ msgid "Antenna 2"
  9780. #~ msgstr "Antenna 2"
  9781. #~ msgid "Back to overview"
  9782. #~ msgstr "Back to overview"
  9783. #~ msgid "Back to scan results"
  9784. #~ msgstr "Back to scan results"
  9785. #~ msgid "Common Configuration"
  9786. #~ msgstr "Common Configuration"
  9787. #~ msgid "Connect"
  9788. #~ msgstr "Connect"
  9789. #~ msgid "Connection Limit"
  9790. #~ msgstr "Connection Limit"
  9791. #~ msgid "Cover the following interface"
  9792. #~ msgstr "Cover the following interface"
  9793. #~ msgid "Cover the following interfaces"
  9794. #~ msgstr "Cover the following interfaces"
  9795. #~ msgid "Create Interface"
  9796. #~ msgstr "Create Interface"
  9797. #~ msgid "Create a bridge over multiple interfaces"
  9798. #~ msgstr "Create a bridge over multiple interfaces"
  9799. #~ msgid "Diversity"
  9800. #~ msgstr "Diversity"
  9801. #~ msgid "Frame Bursting"
  9802. #~ msgstr "Frame Bursting"
  9803. #~ msgid ""
  9804. #~ "On this page you can configure the network interfaces. You can bridge "
  9805. #~ "several interfaces by ticking the \"bridge interfaces\" field and enter "
  9806. #~ "the names of several network interfaces separated by spaces. You can also "
  9807. #~ "use <abbr title=\"Virtual Local Area Network\">VLAN</abbr> notation "
  9808. #~ "<samp>INTERFACE.VLANNR</samp> (<abbr title=\"for example\">e.g.</abbr>: "
  9809. #~ "<samp>eth0.1</samp>)."
  9810. #~ msgstr ""
  9811. #~ "On this page you can configure the network interfaces. You can bridge "
  9812. #~ "several interfaces by ticking the \"bridge interfaces\" field and enter "
  9813. #~ "the names of several network interfaces separated by spaces. You can also "
  9814. #~ "use <abbr title=\"Virtual Local Area Network\">VLAN</abbr> notation "
  9815. #~ "<samp>INTERFACE.VLANNR</samp> (<abbr title=\"for example\">e.g.</abbr>: "
  9816. #~ "<samp>eth0.1</samp>)."
  9817. #~ msgid "Repeat scan"
  9818. #~ msgstr "Repeat scan"
  9819. #~ msgid "Replace entry"
  9820. #~ msgstr "Replace entry"
  9821. #~ msgid "Separate Clients"
  9822. #~ msgstr "Separate Clients"
  9823. #~ msgid "Slot time"
  9824. #~ msgstr "Slot time"
  9825. #~ msgid "Transmission Rate"
  9826. #~ msgstr "Transmission Rate"
  9827. #~ msgid "Uploaded File"
  9828. #~ msgstr "Uploaded File"
  9829. #~ msgid "The following changes have been reverted"
  9830. #~ msgstr "The following changes have been reverted"
  9831. #~ msgid "Theme"
  9832. #~ msgstr "Theme"
  9833. #~ msgid "Available packages"
  9834. #~ msgstr "Available packages"
  9835. #~ msgid "Download and install package"
  9836. #~ msgstr "Download and install package"
  9837. #~ msgid "Find package"
  9838. #~ msgstr "Find package"
  9839. #~ msgid "Install"
  9840. #~ msgstr "Install"
  9841. #~ msgid "OK"
  9842. #~ msgstr "OK"
  9843. #~ msgid "OPKG-Configuration"
  9844. #~ msgstr "OPKG-Configuration"
  9845. #~ msgid "Package name"
  9846. #~ msgstr "Package name"
  9847. #~ msgid "Software"
  9848. #~ msgstr "Software"
  9849. #~ msgid "Version"
  9850. #~ msgstr "Version"
  9851. #~ msgid "No chains in this table"
  9852. #~ msgstr "No chains in this table"
  9853. #~ msgid "Configuration files will be kept."
  9854. #~ msgstr "Configuration files will be kept."
  9855. #~ msgid "Activate this network"
  9856. #~ msgstr "Activate this network"
  9857. #~ msgid "Backup / Restore"
  9858. #~ msgstr "Backup / Restore"
  9859. #~ msgid "DHCP Leases"
  9860. #~ msgstr "DHCP Leases"
  9861. #~ msgid "help"
  9862. #~ msgstr "help"
  9863. #~ msgid "Apply"
  9864. #~ msgstr "Apply"
  9865. #~ msgid "Applying changes"
  9866. #~ msgstr "Applying changes"
  9867. #~ msgid "Configuration applied."
  9868. #~ msgstr "Configuration applied."
  9869. #~ msgid "Action"
  9870. #~ msgstr "Action"
  9871. #~ msgid "Buttons"
  9872. #~ msgstr "Buttons"
  9873. #~ msgid "Handler"
  9874. #~ msgstr "Handler"
  9875. #~ msgid "Maximum hold time"
  9876. #~ msgstr "Maximum hold time"
  9877. #~ msgid "Minimum hold time"
  9878. #~ msgstr "Minimum hold time"
  9879. #~ msgid "Specifies the button state to handle"
  9880. #~ msgstr "Specifies the button state to handle"
  9881. #~ msgid "Leasetime"
  9882. #~ msgstr "Leasetime"
  9883. #~ msgid "AR Support"
  9884. #~ msgstr "AR Support"
  9885. #~ msgid "Background Scan"
  9886. #~ msgstr "Background Scan"
  9887. #~ msgid "Compression"
  9888. #~ msgstr "Compression"
  9889. #~ msgid "Disable HW-Beacon timer"
  9890. #~ msgstr "Disable HW-Beacon timer"
  9891. #~ msgid "Do not send probe responses"
  9892. #~ msgstr "Do not send probe responses"
  9893. #~ msgid "Fast Frames"
  9894. #~ msgstr "Fast Frames"
  9895. #~ msgid "Maximum Rate"
  9896. #~ msgstr "Maximum Rate"
  9897. #~ msgid "Minimum Rate"
  9898. #~ msgstr "Minimum Rate"
  9899. #~ msgid "Multicast Rate"
  9900. #~ msgstr "Multicast Rate"
  9901. #~ msgid "Outdoor Channels"
  9902. #~ msgstr "Outdoor Channels"
  9903. #~ msgid "Regulatory Domain"
  9904. #~ msgstr "Regulatory Domain"
  9905. #~ msgid "Separate WDS"
  9906. #~ msgstr "Separate WDS"
  9907. #~ msgid "Turbo Mode"
  9908. #~ msgstr "Turbo Mode"
  9909. #~ msgid "XR Support"
  9910. #~ msgstr "XR Support"
  9911. #~ msgid "An additional network will be created if you leave this unchecked."
  9912. #~ msgstr "An additional network will be created if you leave this unchecked."
  9913. #~ msgid "CPU"
  9914. #~ msgstr "CPU"