base.po 452 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820118211182211823118241182511826118271182811829118301183111832118331183411835118361183711838118391184011841118421184311844118451184611847118481184911850118511185211853118541185511856118571185811859118601186111862118631186411865118661186711868118691187011871118721187311874118751187611877118781187911880118811188211883118841188511886118871188811889118901189111892118931189411895118961189711898118991190011901119021190311904119051190611907119081190911910119111191211913119141191511916119171191811919119201192111922119231192411925119261192711928119291193011931119321193311934119351193611937119381193911940119411194211943119441194511946119471194811949119501195111952119531195411955119561195711958119591196011961119621196311964119651196611967119681196911970119711197211973119741197511976119771197811979119801198111982119831198411985119861198711988119891199011991119921199311994119951199611997119981199912000120011200212003120041200512006120071200812009120101201112012120131201412015120161201712018120191202012021120221202312024120251202612027120281202912030120311203212033120341203512036120371203812039120401204112042120431204412045120461204712048120491205012051120521205312054120551205612057120581205912060120611206212063120641206512066120671206812069120701207112072120731207412075120761207712078120791208012081120821208312084120851208612087120881208912090120911209212093120941209512096120971209812099121001210112102121031210412105121061210712108121091211012111121121211312114121151211612117121181211912120121211212212123121241212512126121271212812129121301213112132121331213412135121361213712138121391214012141121421214312144121451214612147121481214912150121511215212153121541215512156121571215812159121601216112162121631216412165121661216712168121691217012171121721217312174121751217612177121781217912180121811218212183121841218512186121871218812189121901219112192121931219412195121961219712198121991220012201122021220312204122051220612207122081220912210122111221212213122141221512216122171221812219122201222112222122231222412225122261222712228122291223012231122321223312234122351223612237122381223912240122411224212243122441224512246122471224812249122501225112252122531225412255122561225712258
  1. msgid ""
  2. msgstr ""
  3. "PO-Revision-Date: 2024-07-06 11:32+0000\n"
  4. "Last-Translator: Sathvic <sathvic.p@gmail.com>\n"
  5. "Language-Team: Hindi <https://hosted.weblate.org/projects/openwrt/luci/hi/>\n"
  6. "Language: hi\n"
  7. "Content-Type: text/plain; charset=UTF-8\n"
  8. "Content-Transfer-Encoding: 8bit\n"
  9. "Plural-Forms: nplurals=2; plural=n > 1;\n"
  10. "X-Generator: Weblate 5.7-dev\n"
  11. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1277
  12. msgid "!known (not known)"
  13. msgstr ""
  14. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:649
  15. msgctxt "Yet unknown nftables table family (\"family\" table \"name\")"
  16. msgid "\"%h\" table \"%h\""
  17. msgstr ""
  18. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1629
  19. msgid "%.1f dB"
  20. msgstr "%.1f डेसिबल"
  21. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:123
  22. msgid "%d Bit"
  23. msgstr "%d बिट"
  24. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4132
  25. msgid "%d invalid field(s)"
  26. msgstr "%d अमान्य क्षेत्र"
  27. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:26
  28. msgid "%dh ago"
  29. msgstr ""
  30. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:24
  31. msgid "%dm ago"
  32. msgstr ""
  33. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:22
  34. msgid "%ds ago"
  35. msgstr ""
  36. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:762
  37. msgid "%s adds 1.2.3.0/24 for IPv4 requestors and ::/0 for IPv6 requestors."
  38. msgstr ""
  39. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:763
  40. msgid "%s adds 1.2.3.0/24 for both IPv4 and IPv6 requestors."
  41. msgstr ""
  42. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:761
  43. msgid ""
  44. "%s adds the /24 and /96 subnets of the requestor for IPv4 and IPv6 "
  45. "requestors, respectively."
  46. msgstr ""
  47. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:311
  48. msgid ""
  49. "%s is an independent project that aims to transparently reduce latency of a "
  50. "connection over Yggdrasil network, utilizing NAT traversal to bypass "
  51. "intermediary nodes."
  52. msgstr ""
  53. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:35
  54. msgid "%s is untagged in multiple VLANs!"
  55. msgstr "%s विभिन्न वी.लैन में टैग नहीं किए गए!"
  56. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:902
  57. msgid "%s means \"the address of the system running dnsmasq\"."
  58. msgstr ""
  59. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:744
  60. msgid "%s uses a human-readable encoding of hex-and-colons"
  61. msgstr ""
  62. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:743
  63. msgid "%s uses an alternative encoding of the MAC as base64"
  64. msgstr ""
  65. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:742
  66. msgid "%s uses the default MAC address format encoding"
  67. msgstr ""
  68. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:297
  69. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:409
  70. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:276
  71. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:310
  72. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:328
  73. msgid "(%d minute window, %d second interval)"
  74. msgstr "(%d मिनट अवधि, %d पल मध्यांतर)"
  75. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:843
  76. msgid "(Max 1h == 3600)"
  77. msgstr ""
  78. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:127
  79. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:133
  80. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:268
  81. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:292
  82. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:88
  83. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:91
  84. msgid "(empty)"
  85. msgstr "(खाली)"
  86. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:364
  87. #: modules/luci-compat/luasrc/view/cbi/network_netinfo.htm:23
  88. #: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:58
  89. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:271
  90. msgid "(no interfaces attached)"
  91. msgstr "(कोई इंटरफ़ेस संलग्न नहीं है)"
  92. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:620
  93. msgctxt "Label indicating further amount of allowed ips"
  94. msgid "+ %d more"
  95. msgstr ""
  96. #: modules/luci-compat/luasrc/view/cbi/ucisection.htm:48
  97. msgid "-- Additional Field --"
  98. msgstr "अतिरिक्त अनुभाग"
  99. #: modules/luci-base/htdocs/luci-static/resources/cbi.js:275
  100. #: modules/luci-base/htdocs/luci-static/resources/form.js:3747
  101. #: modules/luci-base/htdocs/luci-static/resources/form.js:4244
  102. #: modules/luci-base/htdocs/luci-static/resources/ui.js:799
  103. #: modules/luci-base/htdocs/luci-static/resources/ui.js:1037
  104. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2030
  105. #: modules/luci-compat/luasrc/view/cbi/header.htm:8
  106. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:89
  107. msgid "-- Please choose --"
  108. msgstr "कृपया चुने"
  109. #: modules/luci-base/htdocs/luci-static/resources/cbi.js:276
  110. #: modules/luci-base/htdocs/luci-static/resources/ui.js:1038
  111. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2031
  112. #: modules/luci-compat/luasrc/view/cbi/header.htm:9
  113. msgid "-- custom --"
  114. msgstr "--अमानक--"
  115. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:271
  116. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:378
  117. msgid "-- match by label --"
  118. msgstr "--लेबल द्वारा मिलान करें--"
  119. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:257
  120. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:361
  121. msgid "-- match by uuid --"
  122. msgstr "--uuid द्वारा मिलान करें--"
  123. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:27
  124. #: modules/luci-compat/luasrc/view/cbi/network_ifacelist.htm:44
  125. #: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:23
  126. msgid "-- please select --"
  127. msgstr "--कृपया चुने--"
  128. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:59
  129. msgctxt "sstp log level value"
  130. msgid "0"
  131. msgstr ""
  132. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1065
  133. msgid "0 = not using RSSI threshold, 1 = do not change driver default"
  134. msgstr "0 = RSSI सीमा का उपयोग नहीं कर रहा है, 1 = ड्राइवर डिफ़ॉल्ट को न बदलें"
  135. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:60
  136. msgctxt "sstp log level value"
  137. msgid "1"
  138. msgstr ""
  139. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:236
  140. msgid "1 Minute Load:"
  141. msgstr "1 मिनट का बोझ:"
  142. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:323
  143. msgctxt "nft amount of flags"
  144. msgid "1 flag"
  145. msgid_plural "%d flags"
  146. msgstr[0] ""
  147. msgstr[1] ""
  148. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1250
  149. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1000
  150. msgid "12h (12 hours - default)"
  151. msgstr ""
  152. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:256
  153. msgid "15 Minute Load:"
  154. msgstr "15 मिनट का बोझ:"
  155. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:61
  156. msgctxt "sstp log level value"
  157. msgid "2"
  158. msgstr ""
  159. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1574
  160. msgid "256"
  161. msgstr ""
  162. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:62
  163. msgctxt "sstp log level value"
  164. msgid "3"
  165. msgstr ""
  166. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1249
  167. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:999
  168. msgid "3h (3 hours)"
  169. msgstr ""
  170. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:63
  171. msgctxt "sstp log level value"
  172. msgid "4"
  173. msgstr ""
  174. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1673
  175. msgid "4-character hexadecimal ID"
  176. msgstr "4-चरित्र हेक्साडेसिमल पहचान"
  177. #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:20
  178. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:11
  179. msgid "464XLAT (CLAT)"
  180. msgstr "464XLAT (CLAT)"
  181. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:246
  182. msgid "5 Minute Load:"
  183. msgstr "5 मिनट का बोझ:"
  184. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1248
  185. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:998
  186. msgid "5m (5 minutes)"
  187. msgstr ""
  188. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1702
  189. msgid "6-octet identifier as a hex string - no colons"
  190. msgstr "6-ओक्टेट पहचानकर्ता एक हेक्स स्ट्रिंग के रूप में - कोई कॉलन नहीं"
  191. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1251
  192. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1001
  193. msgid "7d (7 days)"
  194. msgstr ""
  195. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1725
  196. msgid "802.11k RRM"
  197. msgstr ""
  198. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1734
  199. msgid "802.11k: Enable beacon report via radio measurements."
  200. msgstr ""
  201. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1730
  202. msgid "802.11k: Enable neighbor report via radio measurements."
  203. msgstr ""
  204. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1662
  205. msgid "802.11r Fast Transition"
  206. msgstr "802.11r तेज संक्र्रांति"
  207. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1250
  208. msgid "802.11v: BSS Max Idle. Units: seconds."
  209. msgstr ""
  210. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1760
  211. msgid "802.11v: Basic Service Set (BSS) transition management."
  212. msgstr ""
  213. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1749
  214. msgid "802.11v: Local Time Zone Advertisement in management frames."
  215. msgstr ""
  216. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1764
  217. msgid ""
  218. "802.11v: Proxy ARP enables non-AP STA to remain in power-save for longer."
  219. msgstr ""
  220. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1740
  221. msgid "802.11v: Time Advertisement in management frames."
  222. msgstr ""
  223. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1753
  224. msgid ""
  225. "802.11v: Wireless Network Management (WNM) Sleep Mode (extended sleep mode "
  226. "for stations)."
  227. msgstr ""
  228. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1757
  229. msgid ""
  230. "802.11v: Wireless Network Management (WNM) Sleep Mode Fixes: Prevents "
  231. "reinstallation attacks."
  232. msgstr ""
  233. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1907
  234. msgid "802.11w Association SA Query maximum timeout"
  235. msgstr "802.11w संगति SA प्रश्नचिहन महत्तम काल समापन"
  236. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1914
  237. msgid "802.11w Association SA Query retry timeout"
  238. msgstr "802.11w संगति SA प्रश्नचिहन पुन: प्रयास काल समापन"
  239. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1888
  240. msgid "802.11w Management Frame Protection"
  241. msgstr "802.11w प्रबंध ढांचा सुरक्षा"
  242. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1907
  243. msgid "802.11w maximum timeout"
  244. msgstr "802.11w महत्तम काल समापन"
  245. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1914
  246. msgid "802.11w retry timeout"
  247. msgstr "802.11 पुन: प्रयास काल समापन"
  248. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:235
  249. msgid "; invalid MAC:"
  250. msgstr ""
  251. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1082
  252. msgid "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>"
  253. msgstr "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>"
  254. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1071
  255. msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>"
  256. msgstr ""
  257. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:690
  258. msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Netmask"
  259. msgstr "<abbr title=\"इंटरनेट प्रोटोकॉल संस्करण 4\">IPv4</abbr>-नेटवर्क मास्क"
  260. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:58
  261. msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Configuration"
  262. msgstr ""
  263. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:70
  264. msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Name"
  265. msgstr ""
  266. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:976
  267. msgid "<abbr title=\"Neighbour Discovery Protocol\">NDP</abbr>-Proxy"
  268. msgstr ""
  269. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:921
  270. msgid "<abbr title=\"Prefix Delegation\">PD</abbr> minimum length"
  271. msgstr ""
  272. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:815
  273. msgid "<abbr title=\"Router Advertisement\">RA</abbr> Flags"
  274. msgstr ""
  275. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:890
  276. msgid "<abbr title=\"Router Advertisement\">RA</abbr> Hop Limit"
  277. msgstr ""
  278. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:864
  279. msgid "<abbr title=\"Router Advertisement\">RA</abbr> Lifetime"
  280. msgstr ""
  281. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:871
  282. msgid "<abbr title=\"Router Advertisement\">RA</abbr> MTU"
  283. msgstr ""
  284. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:785
  285. msgid "<abbr title=\"Router Advertisement\">RA</abbr>-Service"
  286. msgstr ""
  287. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:87
  288. msgctxt "nft relational \">\" operator expression"
  289. msgid "<var>%s</var> greater than <strong>%s</strong>"
  290. msgstr ""
  291. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:85
  292. msgctxt "nft relational \">=\" operator expression"
  293. msgid "<var>%s</var> greater than or equal to <strong>%s</strong>"
  294. msgstr ""
  295. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:90
  296. msgctxt "nft set match expression"
  297. msgid "<var>%s</var> in set <strong>%s</strong>"
  298. msgstr ""
  299. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:83
  300. msgctxt "nft relational \"==\" operator expression"
  301. msgid "<var>%s</var> is <strong>%s</strong>"
  302. msgstr ""
  303. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:89
  304. msgctxt "nft relational \"in\" operator expression"
  305. msgid "<var>%s</var> is one of <strong>%s</strong>"
  306. msgstr ""
  307. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:88
  308. msgctxt "nft relational \"<\" operator expression"
  309. msgid "<var>%s</var> lower than <strong>%s</strong>"
  310. msgstr ""
  311. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:86
  312. msgctxt "nft relational \"<=\" operator expression"
  313. msgid "<var>%s</var> lower than or equal to <strong>%s</strong>"
  314. msgstr ""
  315. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:84
  316. msgctxt "nft relational \"!=\" operator expression"
  317. msgid "<var>%s</var> not <strong>%s</strong>"
  318. msgstr ""
  319. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:91
  320. msgctxt "nft not in set match expression"
  321. msgid "<var>%s</var> not in set <strong>%s</strong>"
  322. msgstr ""
  323. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:86
  324. msgid ""
  325. "A batman-adv node can either run in server mode (sharing its internet "
  326. "connection with the mesh) or in client mode (searching for the most suitable "
  327. "internet connection in the mesh) or having the gateway support turned off "
  328. "entirely (which is the default setting)."
  329. msgstr ""
  330. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:424
  331. msgid "A configuration for the device \"%s\" already exists"
  332. msgstr ""
  333. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:241
  334. msgid ""
  335. "A default MTU of 65535 is set by Yggdrasil. It is recomended to utilize the "
  336. "default."
  337. msgstr ""
  338. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2794
  339. msgid "A directory with the same name already exists."
  340. msgstr "समान नाम वाली एक निर्देशिका पहले से मौजूद है।"
  341. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2666
  342. msgid "A new login is required since the authentication session expired."
  343. msgstr "प्रमाणीकरण सत्र समाप्त होने के बाद से एक नया लॉगिन आवश्यक है।"
  344. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:96
  345. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:173
  346. msgid ""
  347. "A numeric table index, or symbol alias declared in %s. Special aliases local "
  348. "(255), main (254) and default (253) are also valid"
  349. msgstr ""
  350. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1609
  351. msgid "A43C + J43 + A43"
  352. msgstr "A43C + J43 + A43"
  353. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1610
  354. msgid "A43C + J43 + A43 + V43"
  355. msgstr "A43C + J43 + A43 + V43"
  356. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1622
  357. msgid "ADSL"
  358. msgstr "ADSL"
  359. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1596
  360. msgid "ADSL (G.992.1) Annex A"
  361. msgstr ""
  362. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1597
  363. msgid "ADSL (G.992.1) Annex B"
  364. msgstr ""
  365. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1590
  366. msgid "ADSL (all variants) Annex A/L/M"
  367. msgstr ""
  368. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1586
  369. msgid "ADSL (all variants) Annex A/L/M + VDSL2 Annex A/B/C"
  370. msgstr ""
  371. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1591
  372. msgid "ADSL (all variants) Annex B"
  373. msgstr ""
  374. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1587
  375. msgid "ADSL (all variants) Annex B + VDSL2 Annex A/B/C"
  376. msgstr ""
  377. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1592
  378. msgid "ADSL (all variants) Annex B/J"
  379. msgstr ""
  380. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1588
  381. msgid "ADSL (all variants) Annex B/J + VDSL2 Annex A/B/C"
  382. msgstr ""
  383. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1594
  384. msgid "ADSL (all variants) Annex M"
  385. msgstr ""
  386. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1599
  387. msgid "ADSL2 (G.992.3) Annex A"
  388. msgstr ""
  389. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1600
  390. msgid "ADSL2 (G.992.3) Annex B"
  391. msgstr ""
  392. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1601
  393. msgid "ADSL2 (G.992.3) Annex L"
  394. msgstr ""
  395. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1602
  396. msgid "ADSL2 (G.992.3) Annex M"
  397. msgstr ""
  398. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1603
  399. msgid "ADSL2+ (G.992.5) Annex A"
  400. msgstr ""
  401. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1604
  402. msgid "ADSL2+ (G.992.5) Annex B"
  403. msgstr ""
  404. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1605
  405. msgid "ADSL2+ (G.992.5) Annex M"
  406. msgstr ""
  407. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1595
  408. msgid "ANSI T1.413"
  409. msgstr "ANSI T1.413"
  410. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:95
  411. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:65
  412. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:65
  413. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:91
  414. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:77
  415. msgid "APN"
  416. msgstr "APN"
  417. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:144
  418. msgid "APN profile index"
  419. msgstr ""
  420. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:358
  421. msgid "ARP"
  422. msgstr ""
  423. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:371
  424. msgid "ARP IP Targets"
  425. msgstr ""
  426. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:363
  427. msgid "ARP Interval"
  428. msgstr ""
  429. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:387
  430. msgid "ARP Validation"
  431. msgstr ""
  432. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:379
  433. msgid "ARP mode to consider a slave as being up"
  434. msgstr ""
  435. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:82
  436. msgid "ARP monitoring is not supported for the selected policy!"
  437. msgstr ""
  438. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:107
  439. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:107
  440. msgid "ARP proxy"
  441. msgstr ""
  442. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:175
  443. msgid "ARP retry threshold"
  444. msgstr "ARP पुन: प्रयास चौखट"
  445. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:637
  446. msgid "ARP traffic table \"%h\""
  447. msgstr ""
  448. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1213
  449. msgid ""
  450. "ARP, IPv4 and IPv6 (even 802.1Q) with multicast destination MACs are unicast "
  451. "to the STA MAC address. Note: This is not Directed Multicast Service (DMS) "
  452. "in 802.11v. Note: might break receiver STA multicast expectations."
  453. msgstr ""
  454. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1617
  455. msgid "ATM (Asynchronous Transfer Mode)"
  456. msgstr "ATM (अतुल्यकालिक अंतरण विधा)"
  457. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1638
  458. msgid "ATM Bridges"
  459. msgstr "ATM पुलों"
  460. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1670
  461. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:66
  462. msgid "ATM Virtual Channel Identifier (VCI)"
  463. msgstr "ATM वर्चुअल चैनल पहचानकर्ता (VCI)"
  464. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1671
  465. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:70
  466. msgid "ATM Virtual Path Identifier (VPI)"
  467. msgstr "ATM वर्चुअल पथ पहचानकर्ता (VPI)"
  468. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1638
  469. msgid ""
  470. "ATM bridges expose encapsulated ethernet in AAL5 connections as virtual "
  471. "Linux network interfaces which can be used in conjunction with DHCP or PPP "
  472. "to dial into the provider network."
  473. msgstr ""
  474. "ATM पुलों में अतिक्रमित इथरनेट का पर्दाफाश होता है वर्चुअल लिनक्स नेटवर्क इंटरफेस के रूप में "
  475. "AAL5 कनेक्शन में जो प्रदाता नेटवर्क में डायल करने के लिए DHCP या PPP के साथ संयोजन में "
  476. "उपयोग किया जा सकता है।"
  477. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1677
  478. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:62
  479. msgid "ATM device number"
  480. msgstr "ATM यंत्र अंक"
  481. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:275
  482. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:560
  483. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:564
  484. msgid "Absent Interface"
  485. msgstr "अनुपस्थित इंटरफ़ेस"
  486. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:532
  487. msgid "Accept DNS queries only from hosts whose address is on a local subnet."
  488. msgstr ""
  489. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:267
  490. msgid "Accept from public keys"
  491. msgstr ""
  492. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:701
  493. msgid "Accept local"
  494. msgstr ""
  495. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:95
  496. msgctxt "nft accept action"
  497. msgid "Accept packet"
  498. msgstr ""
  499. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:701
  500. msgid "Accept packets with local source addresses"
  501. msgstr ""
  502. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:47
  503. msgid "Access Concentrator"
  504. msgstr "प्रवेश सांद्रक"
  505. #: modules/luci-base/htdocs/luci-static/resources/network.js:3904
  506. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1053
  507. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1168
  508. msgid "Access Point"
  509. msgstr "प्रवेश स्थल"
  510. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:60
  511. msgid "Access Point Isolation"
  512. msgstr ""
  513. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:99
  514. msgid "Access Technologies"
  515. msgstr ""
  516. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:390
  517. msgid "Actions"
  518. msgstr "चाल-चलन"
  519. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:14
  520. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:134
  521. msgid "Active"
  522. msgstr ""
  523. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:72
  524. msgid "Active Connections"
  525. msgstr "सक्रिय संबंध"
  526. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:35
  527. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:182
  528. msgid "Active DHCP Leases"
  529. msgstr "सक्रिय DHCP पट्टों"
  530. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:54
  531. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:184
  532. msgid "Active DHCPv6 Leases"
  533. msgstr "सक्रिय DHCPv6 पट्टों"
  534. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:265
  535. msgid "Active IPv4 Routes"
  536. msgstr ""
  537. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:268
  538. msgid "Active IPv4 Rules"
  539. msgstr ""
  540. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:275
  541. msgid "Active IPv6 Routes"
  542. msgstr ""
  543. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:278
  544. msgid "Active IPv6 Rules"
  545. msgstr ""
  546. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:256
  547. msgid "Active peers"
  548. msgstr ""
  549. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:210
  550. msgid "Active-Backup policy (active-backup, 1)"
  551. msgstr ""
  552. #: modules/luci-base/htdocs/luci-static/resources/network.js:3905
  553. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1055
  554. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:23
  555. msgid "Ad-Hoc"
  556. msgstr "तदर्थ"
  557. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:215
  558. msgid "Adaptive load balancing (balance-alb, 6)"
  559. msgstr ""
  560. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:214
  561. msgid "Adaptive transmit load balancing (balance-tlb, 5)"
  562. msgstr ""
  563. #: modules/luci-base/htdocs/luci-static/resources/form.js:2235
  564. #: modules/luci-base/htdocs/luci-static/resources/form.js:2238
  565. #: modules/luci-base/htdocs/luci-static/resources/form.js:2251
  566. #: modules/luci-base/htdocs/luci-static/resources/form.js:2259
  567. #: modules/luci-base/htdocs/luci-static/resources/form.js:3545
  568. #: modules/luci-compat/luasrc/view/cbi/nsection.htm:25
  569. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:189
  570. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:197
  571. #: modules/luci-compat/luasrc/view/cbi/tsection.htm:39
  572. #: modules/luci-compat/luasrc/view/cbi/tsection.htm:47
  573. #: modules/luci-compat/luasrc/view/cbi/ucisection.htm:54
  574. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:946
  575. msgid "Add"
  576. msgstr "जोड़ना"
  577. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1642
  578. msgid "Add ATM Bridge"
  579. msgstr "ATM पुल जोड़ें"
  580. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:92
  581. msgid "Add IPv4 address…"
  582. msgstr "IPv4 प्रमाचार जोड़ें…"
  583. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:186
  584. msgid "Add IPv6 address…"
  585. msgstr "IPv6 प्रमाचार जोड़ें…"
  586. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:65
  587. msgid "Add LED action"
  588. msgstr "LED क्रिया जोड़ें"
  589. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:221
  590. msgid "Add VLAN"
  591. msgstr "VLAN जोड़ें"
  592. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:757
  593. msgid ""
  594. "Add a subnet address to the DNS queries which are forwarded upstream, "
  595. "leaving this value empty disables the feature."
  596. msgstr ""
  597. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1391
  598. msgid "Add device configuration"
  599. msgstr ""
  600. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1331
  601. msgid "Add device configuration…"
  602. msgstr ""
  603. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:15
  604. msgid "Add instance"
  605. msgstr "दृष्टांत जोड़ें"
  606. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:171
  607. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:177
  608. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:274
  609. msgid "Add key"
  610. msgstr "चाबी जोड़ें"
  611. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:263
  612. msgid ""
  613. "Add listeners in order to accept incoming peerings from non-local nodes. "
  614. "Multicast peer discovery works regardless of listeners set here. URI Format: "
  615. "<code>tls://0.0.0.0:0</code> or <code>tls://[::]:0</code> to listen on all "
  616. "interfaces. Choose an acceptable URI <code>tls://</code>, <code>tcp://</"
  617. "code>, <code>unix://</code> or <code>quic://</code>"
  618. msgstr ""
  619. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:433
  620. msgid "Add local domain suffix to names served from hosts files."
  621. msgstr ""
  622. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:283
  623. msgid "Add multicast rule"
  624. msgstr ""
  625. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:454
  626. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1215
  627. msgid "Add new interface..."
  628. msgstr ""
  629. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:188
  630. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:188
  631. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:210
  632. msgid "Add peer"
  633. msgstr ""
  634. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:274
  635. msgid "Add peer address"
  636. msgstr ""
  637. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:740
  638. msgid "Add requestor MAC"
  639. msgstr ""
  640. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:352
  641. msgctxt "Dnsmasq instance"
  642. msgid "Add server instance"
  643. msgstr ""
  644. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1298
  645. msgid "Add static forward and reverse DNS entries for this host."
  646. msgstr ""
  647. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:756
  648. msgid "Add subnet address to forwards"
  649. msgstr ""
  650. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:741
  651. msgid ""
  652. "Add the MAC address of the requestor to DNS queries which are forwarded "
  653. "upstream."
  654. msgstr ""
  655. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:335
  656. msgid "Add to Blacklist"
  657. msgstr ""
  658. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:335
  659. msgid "Add to Whitelist"
  660. msgstr ""
  661. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1154
  662. msgid "Adding an IPv6 to an IPv4 set and vice-versa silently fails."
  663. msgstr ""
  664. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:178
  665. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:178
  666. msgid "Additional Peers"
  667. msgstr ""
  668. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:376
  669. msgid "Additional configuration settings (in TOML format)."
  670. msgstr ""
  671. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:662
  672. msgid "Additional hosts files"
  673. msgstr ""
  674. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:901
  675. msgid "Additional options to send to the below match tags."
  676. msgstr ""
  677. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:734
  678. msgid "Additional servers file"
  679. msgstr ""
  680. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:38
  681. msgid "Address"
  682. msgstr ""
  683. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:613
  684. msgid "Address families of \"Relay from\" and \"Relay to address\" must match."
  685. msgstr ""
  686. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:21
  687. msgctxt "nft meta nfproto"
  688. msgid "Address family"
  689. msgstr ""
  690. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:271
  691. msgid "Address setting is invalid"
  692. msgstr ""
  693. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:151
  694. msgid "Address to access local relay bridge"
  695. msgstr ""
  696. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:476
  697. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:793
  698. msgid "Addresses"
  699. msgstr ""
  700. #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:3
  701. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:15
  702. msgid "Administration"
  703. msgstr ""
  704. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:468
  705. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:632
  706. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1668
  707. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:41
  708. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:133
  709. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:985
  710. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1049
  711. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:241
  712. msgid "Advanced Settings"
  713. msgstr "उन्नत सेटिंग्स"
  714. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:391
  715. msgid "Advanced device options"
  716. msgstr ""
  717. #: protocols/luci-proto-external/htdocs/luci-static/resources/protocol/external.js:34
  718. msgid ""
  719. "Afer making changes to network using external protocol, network must be "
  720. "manually restarted."
  721. msgstr ""
  722. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:76
  723. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:76
  724. msgid "Ageing"
  725. msgstr ""
  726. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:567
  727. msgid "Ageing time"
  728. msgstr ""
  729. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:50
  730. msgid "Aggregate Originator Messages"
  731. msgstr ""
  732. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:265
  733. msgid "Aggregation Selection Logic"
  734. msgstr ""
  735. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:268
  736. msgid "Aggregator: All slaves down or has no slaves (stable, 0)"
  737. msgstr ""
  738. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:270
  739. msgid ""
  740. "Aggregator: Chosen by the largest number of ports + slave added/removed or "
  741. "state changes (count, 2)"
  742. msgstr ""
  743. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:269
  744. msgid "Aggregator: Slave added/removed or state changes (bandwidth, 1)"
  745. msgstr ""
  746. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:192
  747. msgid "Alert"
  748. msgstr ""
  749. #: modules/luci-base/htdocs/luci-static/resources/network.js:3023
  750. #: modules/luci-compat/luasrc/model/network.lua:1417
  751. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:62
  752. msgid "Alias Interface"
  753. msgstr ""
  754. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:132
  755. msgid "Alias of \"%s\""
  756. msgstr ""
  757. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:771
  758. msgid "All servers"
  759. msgstr ""
  760. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:674
  761. msgid ""
  762. "Allocate IP addresses sequentially, starting from the lowest available "
  763. "address."
  764. msgstr ""
  765. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:673
  766. msgid "Allocate IPs sequentially"
  767. msgstr ""
  768. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:355
  769. msgid "Allocate listen addresses"
  770. msgstr ""
  771. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:27
  772. msgid "Allow <abbr title=\"Secure Shell\">SSH</abbr> password authentication"
  773. msgstr ""
  774. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1260
  775. msgid "Allow AP mode to disconnect STAs based on low ACK condition"
  776. msgstr ""
  777. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:356
  778. msgid ""
  779. "Allow Yggdrasil Jumper to automatically configure Yggdrasil with proper "
  780. "listen address and random port."
  781. msgstr ""
  782. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1151
  783. msgid "Allow all except listed"
  784. msgstr ""
  785. #: modules/luci-compat/root/usr/share/rpcd/acl.d/luci-compat.json:3
  786. msgid "Allow full UCI access for legacy applications"
  787. msgstr ""
  788. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1005
  789. msgid "Allow legacy 802.11b rates"
  790. msgstr ""
  791. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1150
  792. msgid "Allow listed only"
  793. msgstr ""
  794. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:514
  795. msgid "Allow localhost"
  796. msgstr ""
  797. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:178
  798. msgid "Allow rebooting the device"
  799. msgstr ""
  800. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:38
  801. msgid "Allow remote hosts to connect to local SSH forwarded ports"
  802. msgstr ""
  803. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:33
  804. msgid "Allow root logins with password"
  805. msgstr ""
  806. #: modules/luci-base/root/usr/share/rpcd/acl.d/luci-base.json:3
  807. msgid "Allow system feature probing"
  808. msgstr ""
  809. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:33
  810. msgid "Allow the <em>root</em> user to log in with password"
  811. msgstr ""
  812. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:609
  813. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:782
  814. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:56
  815. msgid "Allowed IPs"
  816. msgstr ""
  817. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:88
  818. msgid "Allowed network technology"
  819. msgstr ""
  820. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:302
  821. msgid "AllowedIPs setting is invalid"
  822. msgstr ""
  823. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:42
  824. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:42
  825. msgid "Alternatively, a multicast address to reach a group of peers."
  826. msgstr ""
  827. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:775
  828. msgid "Always"
  829. msgstr ""
  830. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/none.js:6
  831. msgid "Always off (kernel: none)"
  832. msgstr ""
  833. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/default-on.js:5
  834. msgid "Always on (kernel: default-on)"
  835. msgstr ""
  836. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:914
  837. msgid ""
  838. "Always send the chosen DHCP options. Sometimes needed, with e.g. PXELinux."
  839. msgstr ""
  840. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1032
  841. msgid ""
  842. "Always use 40MHz channels even if the secondary channel overlaps. Using this "
  843. "option does not comply with IEEE 802.11n-2009!"
  844. msgstr ""
  845. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:740
  846. msgid "Amount of Duplicate Address Detection probes to send"
  847. msgstr ""
  848. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:119
  849. msgid "Amount of seconds to wait for the modem to become ready"
  850. msgstr ""
  851. #: modules/luci-base/htdocs/luci-static/resources/form.js:610
  852. msgid "An error occurred while saving the form:"
  853. msgstr ""
  854. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:139
  855. msgid "An optional, short description for this device"
  856. msgstr ""
  857. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1584
  858. msgid "Annex"
  859. msgstr ""
  860. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:843
  861. msgid ""
  862. "Announce NAT64 prefix in <abbr title=\"Router Advertisement\">RA</abbr> "
  863. "messages."
  864. msgstr ""
  865. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:935
  866. msgid "Announce this device as IPv6 DNS server."
  867. msgstr ""
  868. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:801
  869. msgid ""
  870. "Announce this device as default router if a local IPv6 default route is "
  871. "present."
  872. msgstr ""
  873. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:803
  874. msgid ""
  875. "Announce this device as default router if a public IPv6 prefix is available, "
  876. "regardless of local default route availability."
  877. msgstr ""
  878. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:805
  879. msgid ""
  880. "Announce this device as default router regardless of whether a prefix or "
  881. "default route is present."
  882. msgstr ""
  883. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:942
  884. msgid "Announced DNS domains"
  885. msgstr ""
  886. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:926
  887. msgid "Announced IPv6 DNS servers"
  888. msgstr ""
  889. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1878
  890. msgid "Anonymous Identity"
  891. msgstr ""
  892. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:162
  893. msgid "Anonymous Mount"
  894. msgstr ""
  895. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:158
  896. msgid "Anonymous Swap"
  897. msgstr ""
  898. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:518
  899. msgctxt "nft match any traffic"
  900. msgid "Any packet"
  901. msgstr ""
  902. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:93
  903. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:183
  904. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:205
  905. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:60
  906. msgid "Any zone"
  907. msgstr ""
  908. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:119
  909. msgid "Apply backup?"
  910. msgstr ""
  911. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4772
  912. msgid "Apply request failed with status <code>%h</code>"
  913. msgstr ""
  914. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2175
  915. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4488
  916. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4610
  917. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4746
  918. msgid "Apply unchecked"
  919. msgstr ""
  920. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4742
  921. msgid "Apply, reverting in case of connectivity loss"
  922. msgstr ""
  923. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4683
  924. msgid "Applying configuration changes… %ds"
  925. msgstr ""
  926. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:57
  927. msgid "Architecture"
  928. msgstr ""
  929. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:152
  930. msgid "Arp-scan"
  931. msgstr ""
  932. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1056
  933. msgid ""
  934. "Assign a part of given length of every public IPv6-prefix to this interface"
  935. msgstr ""
  936. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1269
  937. msgid "Assign new, freeform tags to this entry."
  938. msgstr ""
  939. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1061
  940. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:27
  941. msgid ""
  942. "Assign prefix parts using this hexadecimal subprefix ID for this interface."
  943. msgstr ""
  944. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2420
  945. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:366
  946. msgid "Associated Stations"
  947. msgstr ""
  948. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:151
  949. msgid "Associations"
  950. msgstr ""
  951. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:126
  952. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:127
  953. msgid ""
  954. "At least <strong>%h</strong> per <strong>%h</strong>, burst of <strong>%h</"
  955. "strong>"
  956. msgstr ""
  957. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:124
  958. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:125
  959. msgid ""
  960. "At most <strong>%h</strong> per <strong>%h</strong>, burst of <strong>%h</"
  961. "strong>"
  962. msgstr ""
  963. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:154
  964. msgid "Attempt to enable configured mount points for attached devices"
  965. msgstr ""
  966. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1532
  967. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1539
  968. msgid "Attributes to add/replace in each request."
  969. msgstr ""
  970. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:145
  971. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:64
  972. msgid "Auth Group"
  973. msgstr ""
  974. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1817
  975. msgid "Authentication"
  976. msgstr ""
  977. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:76
  978. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:79
  979. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:89
  980. msgid "Authentication Type"
  981. msgstr ""
  982. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:419
  983. msgid "Authoritative"
  984. msgstr ""
  985. #: modules/luci-base/ucode/template/sysauth.ut:17
  986. #: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:11
  987. msgid "Authorization Required"
  988. msgstr ""
  989. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:365
  990. msgid "Autofill listen addresses"
  991. msgstr ""
  992. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:120
  993. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:18
  994. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:24
  995. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:107
  996. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:116
  997. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:113
  998. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:51
  999. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:96
  1000. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:82
  1001. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:56
  1002. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:69
  1003. msgid "Automatic"
  1004. msgstr ""
  1005. #: modules/luci-compat/luasrc/model/network/proto_hnet.lua:7
  1006. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:7
  1007. msgid "Automatic Homenet (HNCP)"
  1008. msgstr ""
  1009. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:97
  1010. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:97
  1011. msgid ""
  1012. "Automatic mac learning using multicast; inserts unknown source link layer "
  1013. "addresses and IP addresses into the VXLAN device %s"
  1014. msgstr ""
  1015. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:174
  1016. msgid "Automatically check filesystem for errors before mounting"
  1017. msgstr ""
  1018. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1049
  1019. msgid ""
  1020. "Automatically handle multiple uplink interfaces using source-based policy "
  1021. "routing."
  1022. msgstr ""
  1023. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:170
  1024. msgid "Automatically mount filesystems on hotplug"
  1025. msgstr ""
  1026. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:166
  1027. msgid "Automatically mount swap on hotplug"
  1028. msgstr ""
  1029. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:170
  1030. msgid "Automount Filesystem"
  1031. msgstr ""
  1032. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:166
  1033. msgid "Automount Swap"
  1034. msgstr ""
  1035. #: protocols/luci-proto-autoip/htdocs/luci-static/resources/protocol/autoip.js:6
  1036. msgid "Avahi IPv4LL"
  1037. msgstr ""
  1038. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:193
  1039. msgid "Available"
  1040. msgstr ""
  1041. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:270
  1042. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:280
  1043. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:334
  1044. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:344
  1045. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:354
  1046. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:239
  1047. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:249
  1048. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:259
  1049. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:265
  1050. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:275
  1051. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:293
  1052. msgid "Average:"
  1053. msgstr ""
  1054. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:70
  1055. msgid "Avoid Bridge Loops"
  1056. msgstr ""
  1057. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1611
  1058. msgid "B43 + B43C"
  1059. msgstr "B43 + B43C"
  1060. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1612
  1061. msgid "B43 + B43C + V43"
  1062. msgstr "B43 + B43C + V43"
  1063. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:48
  1064. msgid "BR / DMR / AFTR"
  1065. msgstr "BR / DMR / AFTR"
  1066. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1760
  1067. msgid "BSS Transition"
  1068. msgstr ""
  1069. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:158
  1070. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:182
  1071. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1973
  1072. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:447
  1073. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:149
  1074. msgid "BSSID"
  1075. msgstr "BSSID"
  1076. #: modules/luci-compat/luasrc/view/cbi/footer.htm:14
  1077. #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:48
  1078. msgid "Back to Overview"
  1079. msgstr ""
  1080. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:851
  1081. msgid "Back to peer configuration"
  1082. msgstr ""
  1083. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:393
  1084. msgid "Backup"
  1085. msgstr ""
  1086. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:128
  1087. msgid "Backup / Flash Firmware"
  1088. msgstr ""
  1089. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:353
  1090. msgid "Backup file list"
  1091. msgstr ""
  1092. #: modules/luci-compat/luasrc/view/cbi/wireless_modefreq.htm:186
  1093. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:562
  1094. msgid "Band"
  1095. msgstr ""
  1096. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:314
  1097. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:139
  1098. msgid "Bandwidth"
  1099. msgstr ""
  1100. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:431
  1101. msgid "Base device"
  1102. msgstr ""
  1103. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:144
  1104. msgid "Base64-encoded public key of this interface for sharing."
  1105. msgstr ""
  1106. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:10
  1107. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv_hardif.js:41
  1108. msgid "Batman Device"
  1109. msgstr ""
  1110. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv_hardif.js:10
  1111. msgid "Batman Interface"
  1112. msgstr ""
  1113. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:81
  1114. msgid ""
  1115. "Batman-adv has a built-in layer 2 fragmentation for unicast data flowing "
  1116. "through the mesh which will allow to run batman-adv over interfaces / "
  1117. "connections that don't allow to increase the MTU beyond the standard "
  1118. "Ethernet packet size of 1500 bytes. When the fragmentation is enabled batman-"
  1119. "adv will automatically fragment over-sized packets and defragment them on "
  1120. "the other end. Per default fragmentation is enabled and inactive if the "
  1121. "packet fits but it is possible to deactivate the fragmentation entirely."
  1122. msgstr ""
  1123. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1035
  1124. msgid "Beacon Interval"
  1125. msgstr ""
  1126. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1734
  1127. msgid "Beacon Report"
  1128. msgstr ""
  1129. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:354
  1130. msgid ""
  1131. "Below is the determined list of files to backup. It consists of changed "
  1132. "configuration files marked by opkg, essential base files and the user "
  1133. "defined backup patterns."
  1134. msgstr ""
  1135. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:287
  1136. msgid "Bind NTP server"
  1137. msgstr ""
  1138. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:59
  1139. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64
  1140. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64
  1141. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:69
  1142. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:48
  1143. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:142
  1144. #: protocols/luci-proto-vti/htdocs/luci-static/resources/protocol/vti.js:59
  1145. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:132
  1146. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:132
  1147. msgid "Bind interface"
  1148. msgstr ""
  1149. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:538
  1150. msgid ""
  1151. "Bind only to configured interface addresses, instead of the wildcard address."
  1152. msgstr ""
  1153. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:980
  1154. msgid ""
  1155. "Bind service records to a domain name: specify the location of services."
  1156. msgstr ""
  1157. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:941
  1158. msgid ""
  1159. "Bind service records to a domain name: specify the location of services. See "
  1160. "<a href=\"%s\">RFC2782</a>."
  1161. msgstr ""
  1162. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:59
  1163. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64
  1164. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64
  1165. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:69
  1166. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:48
  1167. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:142
  1168. #: protocols/luci-proto-vti/htdocs/luci-static/resources/protocol/vti.js:59
  1169. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:132
  1170. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:132
  1171. msgid "Bind the tunnel to this interface (optional)."
  1172. msgstr ""
  1173. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:129
  1174. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:188
  1175. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:171
  1176. msgid "Bitrate"
  1177. msgstr ""
  1178. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:65
  1179. msgid "Bonding Mode"
  1180. msgstr ""
  1181. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:206
  1182. msgid "Bonding Policy"
  1183. msgstr ""
  1184. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:600
  1185. msgid "Both \"Relay from\" and \"Relay to address\" must be specified."
  1186. msgstr ""
  1187. #: modules/luci-base/htdocs/luci-static/resources/network.js:3029
  1188. #: modules/luci-compat/luasrc/model/network.lua:1421
  1189. msgid "Bridge"
  1190. msgstr "पुल (ब्रिज)"
  1191. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:491
  1192. msgctxt "MACVLAN mode"
  1193. msgid "Bridge (Support direct communication between MAC VLANs)"
  1194. msgstr ""
  1195. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:393
  1196. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:471
  1197. msgid "Bridge VLAN filtering"
  1198. msgstr ""
  1199. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:398
  1200. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1489
  1201. msgid "Bridge device"
  1202. msgstr ""
  1203. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:392
  1204. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:470
  1205. msgid "Bridge port specific options"
  1206. msgstr ""
  1207. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:522
  1208. msgid "Bridge ports"
  1209. msgstr ""
  1210. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:641
  1211. msgid "Bridge traffic table \"%h\""
  1212. msgstr ""
  1213. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1678
  1214. msgid "Bridge unit number"
  1215. msgstr ""
  1216. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:558
  1217. msgid "Bring up empty bridge"
  1218. msgstr ""
  1219. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:574
  1220. msgid "Bring up on boot"
  1221. msgstr ""
  1222. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:558
  1223. msgid "Bring up the bridge interface even if no ports are attached"
  1224. msgstr ""
  1225. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1293
  1226. msgid "Broadcast"
  1227. msgstr ""
  1228. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:212
  1229. msgid "Broadcast policy (broadcast, 3)"
  1230. msgstr ""
  1231. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2884
  1232. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4248
  1233. msgid "Browse…"
  1234. msgstr ""
  1235. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:40
  1236. msgid "Buffered"
  1237. msgstr ""
  1238. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:403
  1239. msgid "By default, dnsmasq caches A, AAAA, CNAME and SRV DNS record types."
  1240. msgstr ""
  1241. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:130
  1242. msgid ""
  1243. "CA certificate (PEM encoded; Use instead of system-wide store to verify the "
  1244. "gateway certificate."
  1245. msgstr ""
  1246. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:181
  1247. msgid "CA certificate; if empty it will be saved after the first connection."
  1248. msgstr ""
  1249. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:79
  1250. msgid "CHAP"
  1251. msgstr ""
  1252. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:7
  1253. msgid "CLAT configuration failed"
  1254. msgstr ""
  1255. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:937
  1256. msgid "CNAME"
  1257. msgstr ""
  1258. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:959
  1259. msgid "CNAME or fqdn"
  1260. msgstr ""
  1261. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:72
  1262. msgid "CPU usage (%)"
  1263. msgstr ""
  1264. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388
  1265. msgid "Cache"
  1266. msgstr ""
  1267. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:403
  1268. msgid "Cache arbitrary RR"
  1269. msgstr ""
  1270. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:43
  1271. msgid "Cached"
  1272. msgstr ""
  1273. #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:53
  1274. #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:53
  1275. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:21
  1276. msgid "Call failed"
  1277. msgstr ""
  1278. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1153
  1279. msgid "Can be hinted by adding 4 or 6 to the name."
  1280. msgstr ""
  1281. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:692
  1282. msgid ""
  1283. "Can be useful if ISP has IPv6 nameservers but does not provide IPv6 routing."
  1284. msgstr ""
  1285. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2976
  1286. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4219
  1287. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4738
  1288. #: modules/luci-compat/luasrc/view/cbi/delegator.htm:14
  1289. #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:52
  1290. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:174
  1291. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1221
  1292. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2294
  1293. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:128
  1294. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:297
  1295. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:209
  1296. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:472
  1297. msgid "Cancel"
  1298. msgstr "रद्द करें"
  1299. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:334
  1300. msgid "Cannot parse configuration: %s"
  1301. msgstr ""
  1302. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:568
  1303. msgctxt "Chain hook: forward"
  1304. msgid "Capture incoming packets addressed to other hosts"
  1305. msgstr ""
  1306. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:560
  1307. msgctxt "Chain hook: prerouting"
  1308. msgid "Capture incoming packets before any routing decision"
  1309. msgstr ""
  1310. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:564
  1311. msgctxt "Chain hook: input"
  1312. msgid "Capture incoming packets routed to the local system"
  1313. msgstr ""
  1314. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:576
  1315. msgctxt "Chain hook: postrouting"
  1316. msgid "Capture outgoing packets after any routing decision"
  1317. msgstr ""
  1318. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:572
  1319. msgctxt "Chain hook: output"
  1320. msgid "Capture outgoing packets originating from the local system"
  1321. msgstr ""
  1322. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:556
  1323. msgctxt "Chain hook: ingress"
  1324. msgid "Capture packets directly after the NIC received them"
  1325. msgstr ""
  1326. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:17
  1327. msgid "Category"
  1328. msgstr ""
  1329. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:114
  1330. msgid "Cell ID"
  1331. msgstr ""
  1332. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:113
  1333. msgid "Cell Location"
  1334. msgstr ""
  1335. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:167
  1336. #: protocols/luci-proto-modemmanager/root/usr/share/luci/menu.d/luci-proto-modemmanager.json:3
  1337. msgid "Cellular Network"
  1338. msgstr ""
  1339. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1801
  1340. msgid "Certificate constraint (Domain)"
  1341. msgstr ""
  1342. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1798
  1343. msgid "Certificate constraint (SAN)"
  1344. msgstr ""
  1345. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1795
  1346. msgid "Certificate constraint (Subject)"
  1347. msgstr ""
  1348. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1804
  1349. msgid "Certificate constraint (Wildcard)"
  1350. msgstr ""
  1351. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1795
  1352. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1853
  1353. msgid ""
  1354. "Certificate constraint substring - e.g. /CN=wifi.mycompany.com<br />See "
  1355. "`logread -f` during handshake for actual values"
  1356. msgstr ""
  1357. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1801
  1358. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1859
  1359. msgid ""
  1360. "Certificate constraint(s) against DNS SAN values (if available)<br />or "
  1361. "Subject CN (exact match)"
  1362. msgstr ""
  1363. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1804
  1364. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1862
  1365. msgid ""
  1366. "Certificate constraint(s) against DNS SAN values (if available)<br />or "
  1367. "Subject CN (suffix match)"
  1368. msgstr ""
  1369. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1798
  1370. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1856
  1371. msgid ""
  1372. "Certificate constraint(s) via Subject Alternate Name values<br />(supported "
  1373. "attributes: EMAIL, DNS, URI) - e.g. DNS:wifi.mycompany.com"
  1374. msgstr ""
  1375. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:54
  1376. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:57
  1377. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:212
  1378. msgid "Chain"
  1379. msgstr ""
  1380. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:580
  1381. msgctxt "Yet unknown nftables chain hook"
  1382. msgid "Chain hook \"%h\""
  1383. msgstr ""
  1384. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4466
  1385. msgid "Changes"
  1386. msgstr ""
  1387. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4733
  1388. msgid ""
  1389. "Changes have been made to the existing connection via \"%h\". This could "
  1390. "inhibit access to this device. Any IP change requires <strong>connecting to "
  1391. "the new IP</strong> within %d seconds to retain the changes."
  1392. msgstr ""
  1393. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4808
  1394. msgid "Changes have been reverted."
  1395. msgstr ""
  1396. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:46
  1397. msgid "Changes the administrator password for accessing the device"
  1398. msgstr ""
  1399. #: modules/luci-compat/luasrc/view/cbi/wireless_modefreq.htm:190
  1400. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:128
  1401. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:184
  1402. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:571
  1403. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1971
  1404. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:444
  1405. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:170
  1406. msgid "Channel"
  1407. msgstr ""
  1408. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:412
  1409. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:105
  1410. msgid "Channel Analysis"
  1411. msgstr ""
  1412. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:445
  1413. msgid "Channel Width"
  1414. msgstr ""
  1415. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:174
  1416. msgid "Check filesystems before mount"
  1417. msgstr ""
  1418. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2254
  1419. msgid "Check this option to delete the existing networks from this radio."
  1420. msgstr ""
  1421. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:110
  1422. msgid "Checking archive…"
  1423. msgstr ""
  1424. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:195
  1425. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:197
  1426. msgid "Checking image…"
  1427. msgstr ""
  1428. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:429
  1429. msgid "Choose mtdblock"
  1430. msgstr ""
  1431. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:579
  1432. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2284
  1433. msgid ""
  1434. "Choose the firewall zone you want to assign to this interface. Select "
  1435. "<em>unspecified</em> to remove the interface from the associated zone or "
  1436. "fill out the <em>custom</em> field to define a new zone and attach the "
  1437. "interface to it."
  1438. msgstr ""
  1439. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1085
  1440. msgid ""
  1441. "Choose the network(s) you want to attach to this wireless interface or fill "
  1442. "out the <em>custom</em> field to define a new network."
  1443. msgstr ""
  1444. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1296
  1445. msgid "Cipher"
  1446. msgstr ""
  1447. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:91
  1448. msgid "Cisco UDP encapsulation"
  1449. msgstr ""
  1450. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:393
  1451. msgid ""
  1452. "Click \"Generate archive\" to download a tar archive of the current "
  1453. "configuration files."
  1454. msgstr ""
  1455. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:426
  1456. msgid ""
  1457. "Click \"Save mtdblock\" to download specified mtdblock file. (NOTE: THIS "
  1458. "FEATURE IS FOR PROFESSIONALS! )"
  1459. msgstr ""
  1460. #: modules/luci-base/htdocs/luci-static/resources/network.js:3906
  1461. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1054
  1462. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1169
  1463. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:88
  1464. msgid "Client"
  1465. msgstr ""
  1466. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37
  1467. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:35
  1468. msgid "Client ID to send when requesting DHCP"
  1469. msgstr ""
  1470. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4485
  1471. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:173
  1472. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:179
  1473. msgid "Close"
  1474. msgstr ""
  1475. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:156
  1476. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:128
  1477. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:114
  1478. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:92
  1479. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:101
  1480. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:124
  1481. msgid ""
  1482. "Close inactive connection after the given amount of seconds, use 0 to "
  1483. "persist connection"
  1484. msgstr ""
  1485. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:44
  1486. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:63
  1487. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2418
  1488. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:394
  1489. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:356
  1490. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:359
  1491. #: themes/luci-theme-material/ucode/template/themes/material/header.ut:67
  1492. msgid "Collecting data..."
  1493. msgstr ""
  1494. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:250
  1495. msgid "Collisions seen"
  1496. msgstr ""
  1497. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:71
  1498. msgid "Command"
  1499. msgstr ""
  1500. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:401
  1501. msgid "Command OK"
  1502. msgstr ""
  1503. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:32
  1504. msgid "Command failed"
  1505. msgstr ""
  1506. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:73
  1507. msgid "Comment"
  1508. msgstr ""
  1509. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:182
  1510. msgid "Common name or numeric ID of the %s in which this route is found"
  1511. msgstr ""
  1512. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1942
  1513. msgid ""
  1514. "Complicates key reinstallation attacks on the client side by disabling "
  1515. "retransmission of EAPOL-Key frames that are used to install keys. This "
  1516. "workaround might cause interoperability issues and reduced robustness of key "
  1517. "negotiation especially in environments with heavy traffic load."
  1518. msgstr ""
  1519. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:101
  1520. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:106
  1521. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:103
  1522. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:108
  1523. msgid "Compute outgoing checksum (optional)."
  1524. msgstr ""
  1525. #: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:40
  1526. msgid "Config File"
  1527. msgstr ""
  1528. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4466
  1529. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:456
  1530. msgid "Configuration"
  1531. msgstr ""
  1532. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:675
  1533. msgid "Configuration Export"
  1534. msgstr ""
  1535. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4658
  1536. msgid "Configuration changes applied."
  1537. msgstr ""
  1538. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4596
  1539. msgid "Configuration changes have been rolled back!"
  1540. msgstr ""
  1541. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:63
  1542. msgid "Configuration failed"
  1543. msgstr ""
  1544. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1014
  1545. msgid ""
  1546. "Configures data rates based on the coverage cell density. Normal configures "
  1547. "basic rates to 6, 12, 24 Mbps if legacy 802.11b rates are not used else to "
  1548. "5.5, 11 Mbps. High configures basic rates to 12, 24 Mbps if legacy 802.11b "
  1549. "rates are not used else to the 11 Mbps rate. Very High configures 24 Mbps as "
  1550. "the basic rate. Supported rates lower than the minimum basic rate are not "
  1551. "offered."
  1552. msgstr ""
  1553. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:798
  1554. msgid ""
  1555. "Configures the default router advertisement in <abbr title=\"Router "
  1556. "Advertisement\">RA</abbr> messages."
  1557. msgstr ""
  1558. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:922
  1559. msgid ""
  1560. "Configures the minimum delegated prefix length assigned to a requesting "
  1561. "downstream router, potentially overriding a requested prefix length. If left "
  1562. "unspecified, the device will assign the smallest available prefix greater "
  1563. "than or equal to the requested prefix."
  1564. msgstr ""
  1565. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:786
  1566. msgid ""
  1567. "Configures the operation mode of the <abbr title=\"Router "
  1568. "Advertisement\">RA</abbr> service on this interface."
  1569. msgstr ""
  1570. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:911
  1571. msgid "Configures the operation mode of the DHCPv6 service on this interface."
  1572. msgstr ""
  1573. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:977
  1574. msgid ""
  1575. "Configures the operation mode of the NDP proxy service on this interface."
  1576. msgstr ""
  1577. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1377
  1578. msgid "Configure…"
  1579. msgstr ""
  1580. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:162
  1581. msgid "Confirm disconnect"
  1582. msgstr ""
  1583. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:55
  1584. msgid "Confirmation"
  1585. msgstr ""
  1586. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:98
  1587. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:101
  1588. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:47
  1589. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:232
  1590. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:42
  1591. msgid "Connected"
  1592. msgstr ""
  1593. #: modules/luci-base/htdocs/luci-static/resources/network.js:9
  1594. #: modules/luci-compat/luasrc/model/network.lua:27
  1595. msgid "Connection attempt failed"
  1596. msgstr ""
  1597. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:8
  1598. msgid "Connection attempt failed."
  1599. msgstr ""
  1600. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:777
  1601. msgid "Connection endpoint"
  1602. msgstr ""
  1603. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:411
  1604. msgid "Connection lost"
  1605. msgstr ""
  1606. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:322
  1607. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:160
  1608. msgid "Connections"
  1609. msgstr ""
  1610. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4732
  1611. msgid "Connectivity change"
  1612. msgstr ""
  1613. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:31
  1614. msgctxt "nft ct state"
  1615. msgid "Conntrack state"
  1616. msgstr ""
  1617. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:33
  1618. msgctxt "nft ct status"
  1619. msgid "Conntrack status"
  1620. msgstr ""
  1621. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:383
  1622. msgid "Consider the slave up when all ARP IP targets are reachable (all, 1)"
  1623. msgstr ""
  1624. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:382
  1625. msgid "Consider the slave up when any ARP IP target is reachable (any, 0)"
  1626. msgstr ""
  1627. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/crontab.js:18
  1628. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:370
  1629. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:54
  1630. msgid "Contents have been saved."
  1631. msgstr ""
  1632. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:388
  1633. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:422
  1634. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:861
  1635. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:132
  1636. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:271
  1637. msgid "Continue"
  1638. msgstr ""
  1639. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:97
  1640. msgctxt "nft jump action"
  1641. msgid "Continue in <strong><a href=\"#%q.%q\">%h</a></strong>"
  1642. msgstr ""
  1643. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:129
  1644. msgid "Continue in calling chain"
  1645. msgstr ""
  1646. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:550
  1647. msgctxt "Chain policy: accept"
  1648. msgid "Continue processing unmatched packets"
  1649. msgstr ""
  1650. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4632
  1651. msgid ""
  1652. "Could not regain access to the device after applying the configuration "
  1653. "changes. You might need to reconnect if you modified network related "
  1654. "settings such as the IP address or wireless security credentials."
  1655. msgstr ""
  1656. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:189
  1657. msgid "Country"
  1658. msgstr ""
  1659. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1011
  1660. msgid "Country Code"
  1661. msgstr ""
  1662. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1014
  1663. msgid "Coverage cell density"
  1664. msgstr ""
  1665. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:579
  1666. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2284
  1667. msgid "Create / Assign firewall-zone"
  1668. msgstr ""
  1669. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1253
  1670. msgid "Create interface"
  1671. msgstr ""
  1672. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:191
  1673. msgid "Critical"
  1674. msgstr ""
  1675. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:195
  1676. msgid "Cron Log Level"
  1677. msgstr ""
  1678. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:45
  1679. msgid "Cross Pass (Japan only)"
  1680. msgstr ""
  1681. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:651
  1682. msgid "Current power"
  1683. msgstr ""
  1684. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:28
  1685. msgctxt "nft meta hour"
  1686. msgid "Current time"
  1687. msgstr ""
  1688. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:29
  1689. msgctxt "nft meta day"
  1690. msgid "Current weekday"
  1691. msgstr ""
  1692. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:585
  1693. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:587
  1694. #: modules/luci-compat/luasrc/view/cbi/network_ifacelist.htm:51
  1695. #: modules/luci-compat/luasrc/view/cbi/network_ifacelist.htm:53
  1696. #: modules/luci-compat/luasrc/view/cbi/network_ifacelist.htm:82
  1697. #: modules/luci-compat/luasrc/view/cbi/network_ifacelist.htm:83
  1698. msgid "Custom Interface"
  1699. msgstr ""
  1700. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:412
  1701. msgid ""
  1702. "Custom files (certificates, scripts) may remain on the system. To prevent "
  1703. "this, perform a factory-reset first."
  1704. msgstr ""
  1705. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/timer.js:6
  1706. msgid "Custom flash interval (kernel: timer)"
  1707. msgstr ""
  1708. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:59
  1709. msgid ""
  1710. "Customizes the behaviour of the device <abbr title=\"Light Emitting "
  1711. "Diode\">LED</abbr>s if possible."
  1712. msgstr ""
  1713. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:740
  1714. msgid "DAD transmits"
  1715. msgstr ""
  1716. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1581
  1717. msgid "DAE-Client"
  1718. msgstr ""
  1719. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1586
  1720. msgid "DAE-Port"
  1721. msgstr ""
  1722. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1592
  1723. msgid "DAE-Secret"
  1724. msgstr ""
  1725. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:900
  1726. msgid "DHCP Options"
  1727. msgstr ""
  1728. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:473
  1729. msgid "DHCP Server"
  1730. msgstr ""
  1731. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:346
  1732. #: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:62
  1733. msgid "DHCP and DNS"
  1734. msgstr ""
  1735. #: modules/luci-base/htdocs/luci-static/resources/network.js:2091
  1736. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:16
  1737. #: modules/luci-compat/luasrc/model/network.lua:969
  1738. msgid "DHCP client"
  1739. msgstr ""
  1740. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:706
  1741. msgid "DHCP-Options"
  1742. msgstr ""
  1743. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1004
  1744. msgid ""
  1745. "DHCPv4 <code>leasetime</code> is used as limit and preferred lifetime of the "
  1746. "IPv6 prefix."
  1747. msgstr ""
  1748. #: modules/luci-compat/luasrc/model/network/proto_dhcpv6.lua:7
  1749. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:7
  1750. msgid "DHCPv6 client"
  1751. msgstr ""
  1752. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:952
  1753. msgctxt "DHCPv6 option 56. RFC5908 link"
  1754. msgid "DHCPv6 option 56. %s."
  1755. msgstr ""
  1756. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:910
  1757. msgid "DHCPv6-Service"
  1758. msgstr ""
  1759. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:40
  1760. msgid "DNS"
  1761. msgstr ""
  1762. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:469
  1763. msgid "DNS Forwards"
  1764. msgstr ""
  1765. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:390
  1766. msgid "DNS Records"
  1767. msgstr ""
  1768. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:788
  1769. msgid "DNS Servers"
  1770. msgstr ""
  1771. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:790
  1772. msgid "DNS query port"
  1773. msgstr ""
  1774. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1024
  1775. msgid "DNS search domains"
  1776. msgstr ""
  1777. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:783
  1778. msgid "DNS server port"
  1779. msgstr ""
  1780. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:788
  1781. msgid ""
  1782. "DNS servers for the remote clients using this tunnel to your openwrt device. "
  1783. "Some wireguard clients require this to be set."
  1784. msgstr ""
  1785. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:279
  1786. msgid "DNS setting is invalid"
  1787. msgstr ""
  1788. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1029
  1789. msgid "DNS weight"
  1790. msgstr ""
  1791. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:33
  1792. msgid "DNS-Label / FQDN"
  1793. msgstr ""
  1794. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:938
  1795. msgid "DNS-RR"
  1796. msgstr ""
  1797. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:391
  1798. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:718
  1799. msgid "DNSSEC"
  1800. msgstr ""
  1801. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:723
  1802. msgid "DNSSEC check unsigned"
  1803. msgstr ""
  1804. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:99
  1805. msgid "DPD Idle Timeout"
  1806. msgstr ""
  1807. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:41
  1808. msgid "DS-Lite AFTR address"
  1809. msgstr ""
  1810. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1581
  1811. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:37
  1812. msgid "DSL"
  1813. msgstr "DSL"
  1814. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:21
  1815. msgid "DSL Status"
  1816. msgstr ""
  1817. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1620
  1818. msgid "DSL line mode"
  1819. msgstr ""
  1820. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1236
  1821. msgid "DTIM Interval"
  1822. msgstr ""
  1823. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:59
  1824. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1255
  1825. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:136
  1826. msgid "DUID"
  1827. msgstr "DUID"
  1828. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:29
  1829. msgid "Data Rate"
  1830. msgstr ""
  1831. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:76
  1832. msgid "Data Received"
  1833. msgstr ""
  1834. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:77
  1835. msgid "Data Transmitted"
  1836. msgstr ""
  1837. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:186
  1838. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:197
  1839. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:159
  1840. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:346
  1841. msgid "Debug"
  1842. msgstr ""
  1843. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/ipip6.js:70
  1844. msgid "Default gateway"
  1845. msgstr ""
  1846. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:370
  1847. msgctxt "Dnsmasq instance"
  1848. msgid "Default instance"
  1849. msgstr ""
  1850. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:797
  1851. msgid "Default router"
  1852. msgstr ""
  1853. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/none.js:12
  1854. msgid "Default state"
  1855. msgstr ""
  1856. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1153
  1857. msgid "Defaults to IPv4+6."
  1858. msgstr ""
  1859. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1148
  1860. msgid "Defaults to fw4."
  1861. msgstr ""
  1862. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:706
  1863. msgid ""
  1864. "Define additional DHCP options, for example "
  1865. "\"<code>6,192.168.2.1,192.168.2.2</code>\" which advertises different DNS "
  1866. "servers to clients."
  1867. msgstr ""
  1868. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:516
  1869. msgid ""
  1870. "Defines a mapping of Linux internal packet priority to VLAN header priority "
  1871. "but for outgoing frames"
  1872. msgstr ""
  1873. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:510
  1874. msgid ""
  1875. "Defines a mapping of VLAN header priority to the Linux internal packet "
  1876. "priority on incoming frames"
  1877. msgstr ""
  1878. #: protocols/luci-proto-external/htdocs/luci-static/resources/protocol/external.js:34
  1879. msgid "Delay"
  1880. msgstr ""
  1881. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1053
  1882. msgid "Delegate IPv6 prefixes"
  1883. msgstr ""
  1884. #: modules/luci-base/htdocs/luci-static/resources/form.js:2312
  1885. #: modules/luci-base/htdocs/luci-static/resources/form.js:2698
  1886. #: modules/luci-base/htdocs/luci-static/resources/form.js:2702
  1887. #: modules/luci-base/htdocs/luci-static/resources/form.js:3529
  1888. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2945
  1889. #: modules/luci-compat/luasrc/view/cbi/nsection.htm:11
  1890. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:162
  1891. #: modules/luci-compat/luasrc/view/cbi/tsection.htm:16
  1892. msgid "Delete"
  1893. msgstr ""
  1894. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:205
  1895. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:211
  1896. msgid "Delete key"
  1897. msgstr ""
  1898. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2843
  1899. msgid "Delete request failed: %s"
  1900. msgstr ""
  1901. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:966
  1902. msgid "Delete this network"
  1903. msgstr ""
  1904. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1236
  1905. msgid "Delivery Traffic Indication Message Interval"
  1906. msgstr ""
  1907. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:342
  1908. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:139
  1909. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:196
  1910. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:196
  1911. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:505
  1912. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:53
  1913. msgid "Description"
  1914. msgstr ""
  1915. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2937
  1916. msgid "Deselect"
  1917. msgstr ""
  1918. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:237
  1919. msgid "Design"
  1920. msgstr ""
  1921. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:714
  1922. msgid "Designated master"
  1923. msgstr ""
  1924. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:165
  1925. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:389
  1926. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:71
  1927. msgid "Destination"
  1928. msgstr ""
  1929. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:44
  1930. msgctxt "nft ip daddr"
  1931. msgid "Destination IP"
  1932. msgstr ""
  1933. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:48
  1934. msgctxt "nft ip6 daddr"
  1935. msgid "Destination IPv6"
  1936. msgstr ""
  1937. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:52
  1938. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:52
  1939. msgid "Destination port"
  1940. msgstr ""
  1941. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:46
  1942. msgctxt "nft ip dport"
  1943. msgid "Destination port"
  1944. msgstr ""
  1945. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:68
  1946. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:174
  1947. msgid "Destination zone"
  1948. msgstr ""
  1949. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:76
  1950. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:201
  1951. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:43
  1952. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:46
  1953. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:83
  1954. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:564
  1955. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1203
  1956. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1505
  1957. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:46
  1958. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:196
  1959. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:222
  1960. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:13
  1961. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:248
  1962. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:281
  1963. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:355
  1964. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:391
  1965. #: protocols/luci-proto-external/htdocs/luci-static/resources/protocol/external.js:29
  1966. msgid "Device"
  1967. msgstr ""
  1968. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:980
  1969. msgid "Device Configuration"
  1970. msgstr ""
  1971. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:88
  1972. msgid "Device Identifier"
  1973. msgstr ""
  1974. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:132
  1975. msgid "Device is not active"
  1976. msgstr ""
  1977. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:242
  1978. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:717
  1979. msgid "Device is restarting…"
  1980. msgstr ""
  1981. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:495
  1982. msgid "Device name"
  1983. msgstr ""
  1984. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:10
  1985. msgid "Device not managed by ModemManager."
  1986. msgstr ""
  1987. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1480
  1988. msgid "Device not present"
  1989. msgstr ""
  1990. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:395
  1991. msgid "Device type"
  1992. msgstr ""
  1993. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4631
  1994. msgid "Device unreachable!"
  1995. msgstr ""
  1996. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:53
  1997. msgid "Device unreachable! Still waiting for device..."
  1998. msgstr "डिवाइस पहुंच से बाहर है! डिवाइस का अभी भी इंतज़ार है..।"
  1999. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1328
  2000. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:287
  2001. msgid "Devices"
  2002. msgstr ""
  2003. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:389
  2004. msgid "Devices &amp; Ports"
  2005. msgstr ""
  2006. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:159
  2007. #: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:76
  2008. msgid "Diagnostics"
  2009. msgstr ""
  2010. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:114
  2011. msgid "Dial number"
  2012. msgstr ""
  2013. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:140
  2014. msgid "Dir"
  2015. msgstr ""
  2016. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2739
  2017. msgid "Directory"
  2018. msgstr ""
  2019. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1570
  2020. msgid ""
  2021. "Directs packet flows to specific CPUs where the local socket owner listens "
  2022. "(the local service)."
  2023. msgstr ""
  2024. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:119
  2025. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:209
  2026. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:958
  2027. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:998
  2028. msgid "Disable"
  2029. msgstr ""
  2030. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:665
  2031. msgid ""
  2032. "Disable <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</abbr> for "
  2033. "this interface."
  2034. msgstr ""
  2035. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:174
  2036. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:378
  2037. msgid "Disable DNS lookups"
  2038. msgstr ""
  2039. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:93
  2040. msgid "Disable Encryption"
  2041. msgstr ""
  2042. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1246
  2043. msgid "Disable Inactivity Polling"
  2044. msgstr ""
  2045. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:571
  2046. msgid "Disable this interface"
  2047. msgstr ""
  2048. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:956
  2049. msgid "Disable this network"
  2050. msgstr ""
  2051. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1562
  2052. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1015
  2053. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1548
  2054. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1741
  2055. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1889
  2056. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1923
  2057. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:13
  2058. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:65
  2059. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:121
  2060. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:108
  2061. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:117
  2062. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:114
  2063. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:52
  2064. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:97
  2065. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:83
  2066. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:57
  2067. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:70
  2068. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:500
  2069. msgid "Disabled"
  2070. msgstr ""
  2071. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:529
  2072. msgctxt "Label indicating that WireGuard peer is disabled"
  2073. msgid "Disabled"
  2074. msgstr ""
  2075. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1260
  2076. msgid "Disassociate On Low Acknowledgement"
  2077. msgstr ""
  2078. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:509
  2079. msgid ""
  2080. "Discard also upstream responses containing {rfc_4193_link}, Link-Local and "
  2081. "private IPv4-Mapped {rfc_4291_link} IPv6 Addresses."
  2082. msgstr ""
  2083. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:508
  2084. msgid "Discard upstream responses containing {rfc_1918_link} addresses."
  2085. msgstr ""
  2086. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:184
  2087. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:783
  2088. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:336
  2089. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:351
  2090. msgid "Disconnect"
  2091. msgstr ""
  2092. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:64
  2093. msgid "Disconnection attempt failed"
  2094. msgstr ""
  2095. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:13
  2096. msgid "Disconnection attempt failed."
  2097. msgstr ""
  2098. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:59
  2099. msgid "Disk space"
  2100. msgstr ""
  2101. #: modules/luci-base/htdocs/luci-static/resources/form.js:613
  2102. #: modules/luci-base/htdocs/luci-static/resources/form.js:2980
  2103. #: modules/luci-base/htdocs/luci-static/resources/form.js:3213
  2104. #: modules/luci-base/htdocs/luci-static/resources/form.js:3227
  2105. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3750
  2106. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4602
  2107. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1996
  2108. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:360
  2109. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:45
  2110. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:66
  2111. msgid "Dismiss"
  2112. msgstr ""
  2113. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1020
  2114. msgid "Distance Optimization"
  2115. msgstr ""
  2116. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1020
  2117. msgid ""
  2118. "Distance to farthest network member in meters. Set only for distances above "
  2119. "one kilometer; otherwise it is harmful."
  2120. msgstr ""
  2121. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:75
  2122. msgid "Distributed ARP Table"
  2123. msgstr ""
  2124. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1283
  2125. msgid ""
  2126. "Dnsmasq instance to which this DHCP host section is bound. If unspecified, "
  2127. "the section is valid for all dnsmasq instances."
  2128. msgstr ""
  2129. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:919
  2130. msgid ""
  2131. "Dnsmasq instance to which this boot section is bound. If unspecified, the "
  2132. "section is valid for all dnsmasq instances."
  2133. msgstr ""
  2134. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:347
  2135. msgid ""
  2136. "Dnsmasq is a lightweight <abbr title=\"Dynamic Host Configuration "
  2137. "Protocol\">DHCP</abbr> server and <abbr title=\"Domain Name System\">DNS</"
  2138. "abbr> forwarder."
  2139. msgstr ""
  2140. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:731
  2141. msgid "Do not cache negative replies, e.g. for non-existent domains."
  2142. msgstr ""
  2143. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:86
  2144. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:91
  2145. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:88
  2146. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:93
  2147. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:70
  2148. msgid "Do not create host route to peer (optional)."
  2149. msgstr ""
  2150. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:551
  2151. msgid "Do not listen on the specified interfaces."
  2152. msgstr ""
  2153. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:914
  2154. msgid "Do not offer DHCPv6 service on this interface."
  2155. msgstr ""
  2156. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:980
  2157. msgid ""
  2158. "Do not proxy any <abbr title=\"Neighbour Discovery Protocol\">NDP</abbr> "
  2159. "packets."
  2160. msgstr ""
  2161. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:32
  2162. msgid "Do not send a Release when restarting"
  2163. msgstr ""
  2164. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:25
  2165. msgid "Do not send a hostname"
  2166. msgstr ""
  2167. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:789
  2168. msgid ""
  2169. "Do not send any <abbr title=\"Router Advertisement, ICMPv6 Type 134\">RA</"
  2170. "abbr> messages on this interface."
  2171. msgstr ""
  2172. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2829
  2173. msgid "Do you really want to delete \"%s\" ?"
  2174. msgstr ""
  2175. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:206
  2176. msgid "Do you really want to delete the following SSH key?"
  2177. msgstr ""
  2178. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:94
  2179. msgid "Do you really want to erase all settings?"
  2180. msgstr ""
  2181. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2827
  2182. msgid "Do you really want to recursively delete the directory \"%s\" ?"
  2183. msgstr ""
  2184. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:97
  2185. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:991
  2186. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1017
  2187. msgid "Domain"
  2188. msgstr ""
  2189. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:414
  2190. msgid "Domain required"
  2191. msgstr ""
  2192. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:522
  2193. msgid "Domain whitelist"
  2194. msgstr ""
  2195. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:83
  2196. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:88
  2197. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:67
  2198. msgid "Don't Fragment"
  2199. msgstr ""
  2200. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:152
  2201. msgid "Down"
  2202. msgstr ""
  2203. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:408
  2204. msgid "Down Delay"
  2205. msgstr ""
  2206. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2941
  2207. msgid "Download"
  2208. msgstr ""
  2209. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:396
  2210. msgid "Download backup"
  2211. msgstr ""
  2212. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3017
  2213. msgid "Download failed: %s"
  2214. msgstr ""
  2215. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:434
  2216. msgid "Download mtdblock"
  2217. msgstr ""
  2218. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1625
  2219. msgid "Downstream SNR offset"
  2220. msgstr ""
  2221. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:422
  2222. msgid ""
  2223. "Drag or paste a valid <em>*.conf</em> file below to configure the local "
  2224. "WireGuard interface."
  2225. msgstr ""
  2226. #: modules/luci-base/htdocs/luci-static/resources/form.js:2656
  2227. msgid "Drag to reorder"
  2228. msgstr ""
  2229. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:347
  2230. msgid "Drop Duplicate Frames"
  2231. msgstr ""
  2232. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:710
  2233. msgid ""
  2234. "Drop all gratuitous ARP frames, for example if there’s a known good ARP "
  2235. "proxy on the network and such frames need not be used or in the case of "
  2236. "802.11, must not be used to prevent attacks."
  2237. msgstr ""
  2238. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:732
  2239. msgid ""
  2240. "Drop all unsolicited neighbor advertisements, for example if there’s a known "
  2241. "good NA proxy on the network and such frames need not be used or in the case "
  2242. "of 802.11, must not be used to prevent attacks."
  2243. msgstr ""
  2244. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:710
  2245. msgid "Drop gratuitous ARP"
  2246. msgstr ""
  2247. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:786
  2248. msgid "Drop layer 2 multicast frames containing IPv4 unicast packets."
  2249. msgstr ""
  2250. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:790
  2251. msgid "Drop layer 2 multicast frames containing IPv6 unicast packets."
  2252. msgstr ""
  2253. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:786
  2254. msgid "Drop nested IPv4 unicast"
  2255. msgstr ""
  2256. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:790
  2257. msgid "Drop nested IPv6 unicast"
  2258. msgstr ""
  2259. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:96
  2260. msgctxt "nft drop action"
  2261. msgid "Drop packet"
  2262. msgstr ""
  2263. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:546
  2264. msgctxt "Chain policy: drop"
  2265. msgid "Drop unmatched packets"
  2266. msgstr ""
  2267. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:732
  2268. msgid "Drop unsolicited NA"
  2269. msgstr ""
  2270. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:12
  2271. msgid "Dropbear Instance"
  2272. msgstr ""
  2273. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:10
  2274. msgid ""
  2275. "Dropbear offers <abbr title=\"Secure Shell\">SSH</abbr> network shell access "
  2276. "and an integrated <abbr title=\"Secure Copy\">SCP</abbr> server"
  2277. msgstr ""
  2278. #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:14
  2279. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:11
  2280. msgid "Dual-Stack Lite (RFC6333)"
  2281. msgstr ""
  2282. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:437
  2283. msgid "Dump cache on SIGUSR1, include requesting IP."
  2284. msgstr ""
  2285. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:682
  2286. msgid "Dynamic <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</abbr>"
  2287. msgstr ""
  2288. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1581
  2289. msgid "Dynamic Authorization Extension client."
  2290. msgstr ""
  2291. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1586
  2292. msgid "Dynamic Authorization Extension port."
  2293. msgstr ""
  2294. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1592
  2295. msgid "Dynamic Authorization Extension secret."
  2296. msgstr ""
  2297. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:60
  2298. msgid "Dynamic tunnel"
  2299. msgstr ""
  2300. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:682
  2301. msgid ""
  2302. "Dynamically allocate DHCP addresses for clients. If disabled, only clients "
  2303. "having static leases will be served."
  2304. msgstr ""
  2305. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1574
  2306. msgid "E.g. <code>br-vlan</code> or <code>brvlan</code>."
  2307. msgstr ""
  2308. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1564
  2309. msgid "E.g. eth0, eth1"
  2310. msgstr ""
  2311. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:67
  2312. msgid "EA-bits length"
  2313. msgstr ""
  2314. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1773
  2315. msgid "EAP-Method"
  2316. msgstr ""
  2317. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1555
  2318. msgid "Each STA is assigned its own AP_VLAN interface."
  2319. msgstr ""
  2320. #: modules/luci-base/htdocs/luci-static/resources/form.js:2676
  2321. #: modules/luci-base/htdocs/luci-static/resources/form.js:2679
  2322. #: modules/luci-base/htdocs/luci-static/resources/form.js:3392
  2323. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:154
  2324. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:160
  2325. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:485
  2326. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:963
  2327. msgid "Edit"
  2328. msgstr ""
  2329. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1132
  2330. msgid "Edit IP set"
  2331. msgstr ""
  2332. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:878
  2333. msgid "Edit PXE/TFTP/BOOTP Host"
  2334. msgstr ""
  2335. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:190
  2336. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:190
  2337. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:212
  2338. msgid "Edit peer"
  2339. msgstr ""
  2340. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1173
  2341. msgid "Edit static lease"
  2342. msgstr ""
  2343. #: modules/luci-compat/luasrc/view/cbi/error.htm:13
  2344. msgid ""
  2345. "Edit the raw configuration data above to fix any error and hit \"Save\" to "
  2346. "reload the page."
  2347. msgstr ""
  2348. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:961
  2349. msgid "Edit this network"
  2350. msgstr ""
  2351. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:912
  2352. msgid "Edit wireless network"
  2353. msgstr ""
  2354. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:65
  2355. msgctxt "nft rt mtu"
  2356. msgid "Effective route MTU"
  2357. msgstr ""
  2358. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:516
  2359. msgid "Egress QoS mapping"
  2360. msgstr ""
  2361. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:12
  2362. msgctxt "nft meta oif"
  2363. msgid "Egress device id"
  2364. msgstr ""
  2365. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:10
  2366. msgctxt "nft meta oifname"
  2367. msgid "Egress device name"
  2368. msgstr ""
  2369. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:193
  2370. msgid "Emergency"
  2371. msgstr ""
  2372. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:119
  2373. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:119
  2374. msgid "Emits netlink IP ADDR miss notifications"
  2375. msgstr ""
  2376. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:113
  2377. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:113
  2378. msgid "Emits netlink LLADDR miss notifications"
  2379. msgstr ""
  2380. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:958
  2381. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:998
  2382. msgid "Enable"
  2383. msgstr ""
  2384. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:500
  2385. msgid "Enable / Disable peer. Restart wireguard interface to apply changes."
  2386. msgstr ""
  2387. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:592
  2388. msgid ""
  2389. "Enable <abbr title=\"Internet Group Management Protocol\">IGMP</abbr> "
  2390. "snooping"
  2391. msgstr ""
  2392. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:17
  2393. msgid "Enable <abbr title=\"Secure Shell\">SSH</abbr> service instance"
  2394. msgstr ""
  2395. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:572
  2396. msgid "Enable <abbr title=\"Spanning Tree Protocol\">STP</abbr>"
  2397. msgstr ""
  2398. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:809
  2399. msgid "Enable <abbr title=\"Stateless Address Auto Config\">SLAAC</abbr>"
  2400. msgstr ""
  2401. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:174
  2402. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:372
  2403. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:378
  2404. msgid "Enable DNS lookups"
  2405. msgstr ""
  2406. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:153
  2407. msgid "Enable Debugmode"
  2408. msgstr ""
  2409. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:299
  2410. msgid "Enable Dynamic Shuffling Of Flows"
  2411. msgstr ""
  2412. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:60
  2413. msgid "Enable HE.net dynamic endpoint update"
  2414. msgstr ""
  2415. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:725
  2416. msgid "Enable IPv6"
  2417. msgstr ""
  2418. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:101
  2419. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:108
  2420. msgid "Enable IPv6 negotiation"
  2421. msgstr ""
  2422. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:49
  2423. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:94
  2424. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:80
  2425. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:54
  2426. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:67
  2427. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:93
  2428. msgid "Enable IPv6 negotiation on the PPP link"
  2429. msgstr ""
  2430. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:728
  2431. msgid "Enable IPv6 segment routing"
  2432. msgstr ""
  2433. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:17
  2434. msgid "Enable Instance"
  2435. msgstr ""
  2436. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:194
  2437. msgid "Enable Jumbo Frame passthrough"
  2438. msgstr ""
  2439. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:763
  2440. msgid "Enable MAC address learning"
  2441. msgstr ""
  2442. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:257
  2443. msgid "Enable NTP client"
  2444. msgstr ""
  2445. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1478
  2446. msgid "Enable Private PSK (PPSK)"
  2447. msgstr ""
  2448. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:96
  2449. msgid "Enable Single DES"
  2450. msgstr ""
  2451. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:854
  2452. msgid "Enable TFTP server"
  2453. msgstr ""
  2454. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:795
  2455. msgid "Enable VLAN filtering"
  2456. msgstr ""
  2457. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:184
  2458. msgid "Enable VLAN functionality"
  2459. msgstr ""
  2460. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1946
  2461. msgid "Enable WPS pushbutton, requires WPA(2)-PSK/WPA3-SAE"
  2462. msgstr ""
  2463. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:319
  2464. msgid "Enable Yggdrasil Jumper"
  2465. msgstr ""
  2466. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/uhttpd.js:14
  2467. msgid ""
  2468. "Enable automatic redirection of <abbr title=\"Hypertext Transfer "
  2469. "Protocol\">HTTP</abbr> requests to <abbr title=\"Hypertext Transfer Protocol "
  2470. "Secure\">HTTPS</abbr> port."
  2471. msgstr ""
  2472. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1053
  2473. msgid ""
  2474. "Enable downstream delegation of IPv6 prefixes available on this interface"
  2475. msgstr ""
  2476. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1942
  2477. msgid "Enable key reinstallation (KRACK) countermeasures"
  2478. msgstr ""
  2479. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:189
  2480. msgid "Enable learning and aging"
  2481. msgstr ""
  2482. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:200
  2483. msgid "Enable mirroring of incoming packets"
  2484. msgstr ""
  2485. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:201
  2486. msgid "Enable mirroring of outgoing packets"
  2487. msgstr ""
  2488. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:782
  2489. msgid "Enable multicast fast leave"
  2490. msgstr ""
  2491. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:601
  2492. msgid "Enable multicast querier"
  2493. msgstr ""
  2494. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:746
  2495. msgid "Enable multicast support"
  2496. msgstr ""
  2497. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:250
  2498. msgid ""
  2499. "Enable node info privacy so that only items specified in \"Node info\" are "
  2500. "sent back. Otherwise defaults including the platform, architecture and "
  2501. "Yggdrasil version are included."
  2502. msgstr ""
  2503. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1561
  2504. msgid "Enable packet steering across CPUs. May help or hinder network speed."
  2505. msgstr ""
  2506. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:676
  2507. msgid "Enable promiscuous mode"
  2508. msgstr ""
  2509. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:169
  2510. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:169
  2511. msgid "Enable rx checksum"
  2512. msgstr ""
  2513. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:89
  2514. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:94
  2515. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:91
  2516. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:96
  2517. msgid "Enable support for multicast traffic (optional)."
  2518. msgstr ""
  2519. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:83
  2520. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:88
  2521. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:67
  2522. msgid "Enable the DF (Don't Fragment) flag of the encapsulating packets."
  2523. msgstr ""
  2524. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:855
  2525. msgid "Enable the built-in single-instance TFTP server."
  2526. msgstr ""
  2527. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:956
  2528. msgid "Enable this network"
  2529. msgstr ""
  2530. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:33
  2531. msgid "Enable to minimise the chance of prefix change after a restart"
  2532. msgstr ""
  2533. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:173
  2534. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:173
  2535. msgid "Enable tx checksum"
  2536. msgstr ""
  2537. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:766
  2538. msgid "Enable unicast flooding"
  2539. msgstr ""
  2540. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1563
  2541. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1742
  2542. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1924
  2543. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:243
  2544. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:351
  2545. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:65
  2546. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:109
  2547. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:118
  2548. msgid "Enabled"
  2549. msgstr ""
  2550. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1564
  2551. msgid "Enabled (all CPUs)"
  2552. msgstr ""
  2553. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1925
  2554. msgid "Enabled (workaround mode)"
  2555. msgstr ""
  2556. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:592
  2557. msgid "Enables IGMP snooping on this bridge"
  2558. msgstr ""
  2559. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1662
  2560. msgid ""
  2561. "Enables fast roaming among access points that belong to the same Mobility "
  2562. "Domain"
  2563. msgstr ""
  2564. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:100
  2565. msgid ""
  2566. "Enables more efficient, group aware multicast forwarding infrastructure in "
  2567. "batman-adv."
  2568. msgstr ""
  2569. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:572
  2570. msgid "Enables the Spanning Tree Protocol on this bridge"
  2571. msgstr ""
  2572. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:61
  2573. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/ipip6.js:62
  2574. msgid "Encapsulation limit"
  2575. msgstr ""
  2576. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1615
  2577. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1673
  2578. msgid "Encapsulation mode"
  2579. msgstr ""
  2580. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:159
  2581. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:183
  2582. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1265
  2583. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1974
  2584. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:150
  2585. msgid "Encryption"
  2586. msgstr ""
  2587. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:55
  2588. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:75
  2589. msgid "Endpoint"
  2590. msgstr ""
  2591. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:647
  2592. msgid "Endpoint Host"
  2593. msgstr ""
  2594. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:663
  2595. msgid "Endpoint Port"
  2596. msgstr ""
  2597. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:312
  2598. msgid "Endpoint setting is invalid"
  2599. msgstr ""
  2600. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:751
  2601. msgid "Enforce IGMPv1"
  2602. msgstr ""
  2603. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:752
  2604. msgid "Enforce IGMPv2"
  2605. msgstr ""
  2606. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:753
  2607. msgid "Enforce IGMPv3"
  2608. msgstr ""
  2609. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:758
  2610. msgid "Enforce MLD version 1"
  2611. msgstr ""
  2612. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:759
  2613. msgid "Enforce MLD version 2"
  2614. msgstr ""
  2615. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:84
  2616. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:84
  2617. msgid "Ensure MTU does not exceed that of parent interface"
  2618. msgstr ""
  2619. #: modules/luci-compat/luasrc/view/cbi/dropdown.htm:16
  2620. msgid "Enter custom value"
  2621. msgstr ""
  2622. #: modules/luci-compat/luasrc/view/cbi/dropdown.htm:16
  2623. msgid "Enter custom values"
  2624. msgstr ""
  2625. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:97
  2626. msgid "Erasing..."
  2627. msgstr ""
  2628. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:93
  2629. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:190
  2630. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:156
  2631. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:343
  2632. msgid "Error"
  2633. msgstr ""
  2634. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:156
  2635. msgid "Error getting PublicKey"
  2636. msgstr ""
  2637. #: modules/luci-base/htdocs/luci-static/resources/network.js:3042
  2638. #: modules/luci-compat/luasrc/model/network.lua:1433
  2639. msgid "Ethernet Adapter"
  2640. msgstr ""
  2641. #: modules/luci-base/htdocs/luci-static/resources/network.js:3033
  2642. #: modules/luci-compat/luasrc/model/network.lua:1423
  2643. msgid "Ethernet Switch"
  2644. msgstr ""
  2645. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:277
  2646. msgid "Every 30 seconds (slow, 0)"
  2647. msgstr ""
  2648. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:278
  2649. msgid "Every second (fast, 1)"
  2650. msgstr ""
  2651. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:550
  2652. msgid "Exclude interfaces"
  2653. msgstr ""
  2654. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:160
  2655. msgid ""
  2656. "Execution of various network commands to check the connection and name "
  2657. "resolution to other systems."
  2658. msgstr ""
  2659. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:135
  2660. msgid "Execution order of this IP rule: lower numbers go first"
  2661. msgstr ""
  2662. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:516
  2663. msgid ""
  2664. "Exempt {loopback_slash_8_v4} and {localhost_v6} from rebinding checks, e.g. "
  2665. "for <abbr title=\"Real-time Block List\">RBL</abbr> services."
  2666. msgstr ""
  2667. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:410
  2668. msgid "Existing device"
  2669. msgstr ""
  2670. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:432
  2671. msgid "Expand hosts"
  2672. msgstr ""
  2673. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:114
  2674. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:114
  2675. msgid "Expect netlink reply to add MAC address into VXLAN FDB"
  2676. msgstr ""
  2677. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:120
  2678. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:120
  2679. msgid "Expect netlink reply to add destination IP address into Neighbour table"
  2680. msgstr ""
  2681. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:605
  2682. msgid "Expected port number."
  2683. msgstr ""
  2684. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1070
  2685. msgid "Expecting a hexadecimal assignment hint"
  2686. msgstr ""
  2687. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:19
  2688. msgid "Expecting a valid IPv4 address"
  2689. msgstr ""
  2690. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:19
  2691. msgid "Expecting a valid IPv6 address"
  2692. msgstr ""
  2693. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:235
  2694. msgid "Expecting a valid MAC address, optionally including wildcards"
  2695. msgstr ""
  2696. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:29
  2697. msgid "Expecting two priority values separated by a colon"
  2698. msgstr ""
  2699. #: modules/luci-base/htdocs/luci-static/resources/form.js:2271
  2700. #: modules/luci-base/htdocs/luci-static/resources/validation.js:77
  2701. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:142
  2702. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:148
  2703. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:176
  2704. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:192
  2705. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:196
  2706. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:200
  2707. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:203
  2708. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:207
  2709. msgid "Expecting: %s"
  2710. msgstr ""
  2711. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:53
  2712. msgid "Expecting: non-empty value"
  2713. msgstr ""
  2714. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:41
  2715. msgid "Expires"
  2716. msgstr ""
  2717. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:678
  2718. msgid ""
  2719. "Expiry time of leased addresses, minimum is 2 minutes (<code>2m</code>)."
  2720. msgstr ""
  2721. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:842
  2722. msgid ""
  2723. "Extend short TTL values to the seconds value given when caching them. Use "
  2724. "with caution."
  2725. msgstr ""
  2726. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:19
  2727. msgid "External"
  2728. msgstr ""
  2729. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1713
  2730. msgid "External R0 Key Holder List"
  2731. msgstr ""
  2732. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1717
  2733. msgid "External R1 Key Holder List"
  2734. msgstr ""
  2735. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:167
  2736. msgid "External system log server"
  2737. msgstr ""
  2738. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:172
  2739. msgid "External system log server port"
  2740. msgstr ""
  2741. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:177
  2742. msgid "External system log server protocol"
  2743. msgstr ""
  2744. #: protocols/luci-proto-external/htdocs/luci-static/resources/protocol/external.js:7
  2745. msgid "Externally managed interface"
  2746. msgstr ""
  2747. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:441
  2748. msgid "Extra DHCP logging"
  2749. msgstr ""
  2750. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:79
  2751. msgid "Extra SSH command options"
  2752. msgstr ""
  2753. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:375
  2754. msgid "Extra config"
  2755. msgstr ""
  2756. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:72
  2757. msgid "Extra pppd options"
  2758. msgstr ""
  2759. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:70
  2760. msgid "Extra sstpc options"
  2761. msgstr ""
  2762. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:98
  2763. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:98
  2764. msgid "FDB"
  2765. msgstr ""
  2766. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:77
  2767. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:77
  2768. msgid "FDB entry lifetime"
  2769. msgstr ""
  2770. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1143
  2771. msgid "FQDN"
  2772. msgstr ""
  2773. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1688
  2774. msgid "FT over DS"
  2775. msgstr ""
  2776. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1687
  2777. msgid "FT over the Air"
  2778. msgstr ""
  2779. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1685
  2780. msgid "FT protocol"
  2781. msgstr ""
  2782. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:91
  2783. msgid "Failed Reason"
  2784. msgstr ""
  2785. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:87
  2786. msgid "Failed to change the system password."
  2787. msgstr ""
  2788. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:21
  2789. msgid "Failed to configure modem"
  2790. msgstr ""
  2791. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4590
  2792. msgid "Failed to confirm apply within %ds, waiting for rollback…"
  2793. msgstr ""
  2794. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:22
  2795. msgid "Failed to connect"
  2796. msgstr ""
  2797. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:23
  2798. msgid "Failed to disconnect"
  2799. msgstr ""
  2800. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:36
  2801. msgid "Failed to execute \"/etc/init.d/%s %s\" action: %s"
  2802. msgstr ""
  2803. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:25
  2804. msgid "Failed to get modem information"
  2805. msgstr ""
  2806. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:26
  2807. msgid "Failed to initialize modem"
  2808. msgstr ""
  2809. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:30
  2810. msgid "Failed to set operating mode"
  2811. msgstr ""
  2812. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2747
  2813. msgid "File"
  2814. msgstr ""
  2815. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:735
  2816. msgid ""
  2817. "File listing upstream resolvers, optionally domain-specific, e.g. "
  2818. "{servers_file_entry01}, {servers_file_entry02}."
  2819. msgstr ""
  2820. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2684
  2821. msgid "File not accessible"
  2822. msgstr ""
  2823. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:631
  2824. msgid "File to store DHCP lease information."
  2825. msgstr ""
  2826. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:639
  2827. msgid "File with upstream resolvers."
  2828. msgstr ""
  2829. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2885
  2830. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:882
  2831. msgid "Filename"
  2832. msgstr ""
  2833. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:867
  2834. msgid "Filename of the boot image advertised to clients."
  2835. msgstr ""
  2836. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:191
  2837. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:315
  2838. msgid "Filesystem"
  2839. msgstr "फाइल सिस्टम"
  2840. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:392
  2841. msgid "Filter"
  2842. msgstr ""
  2843. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:696
  2844. msgid "Filter IPv4 A records"
  2845. msgstr ""
  2846. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:690
  2847. msgid "Filter IPv6 AAAA records"
  2848. msgstr ""
  2849. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:685
  2850. msgid "Filter SRV/SOA service discovery"
  2851. msgstr ""
  2852. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:701
  2853. msgid "Filter arbitrary RR"
  2854. msgstr ""
  2855. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:678
  2856. msgid "Filter private"
  2857. msgstr ""
  2858. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:394
  2859. msgid "Filtering for all slaves, no validation"
  2860. msgstr ""
  2861. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:395
  2862. msgid "Filtering for all slaves, validation only for active slave"
  2863. msgstr ""
  2864. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:396
  2865. msgid "Filtering for all slaves, validation only for backup slaves"
  2866. msgstr ""
  2867. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:686
  2868. msgid ""
  2869. "Filters SRV/SOA service discovery, to avoid triggering dial-on-demand links."
  2870. msgstr ""
  2871. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:65
  2872. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:24
  2873. msgid "Finalizing failed"
  2874. msgstr ""
  2875. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:150
  2876. msgid ""
  2877. "Find all currently attached filesystems and swap and replace configuration "
  2878. "with defaults based on what was detected"
  2879. msgstr ""
  2880. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:939
  2881. msgid "Find and join network"
  2882. msgstr ""
  2883. #: modules/luci-compat/luasrc/view/cbi/delegator.htm:9
  2884. msgid "Finish"
  2885. msgstr ""
  2886. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:27
  2887. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:43
  2888. msgid "Firewall"
  2889. msgstr ""
  2890. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:187
  2891. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:39
  2892. msgid "Firewall Mark"
  2893. msgstr ""
  2894. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:472
  2895. msgid "Firewall Settings"
  2896. msgstr ""
  2897. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:330
  2898. msgid "Firewall Status"
  2899. msgstr ""
  2900. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:184
  2901. msgid "Firewall mark"
  2902. msgstr ""
  2903. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1632
  2904. msgid "Firmware File"
  2905. msgstr ""
  2906. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:59
  2907. msgid "Firmware Version"
  2908. msgstr ""
  2909. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:772
  2910. msgid "First answer wins."
  2911. msgstr ""
  2912. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:791
  2913. msgid "Fixed source port for outbound DNS queries."
  2914. msgstr ""
  2915. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:314
  2916. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:451
  2917. msgid "Flash image..."
  2918. msgstr ""
  2919. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:310
  2920. msgid "Flash image?"
  2921. msgstr ""
  2922. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:441
  2923. msgid "Flash new firmware image"
  2924. msgstr ""
  2925. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:386
  2926. msgid "Flash operations"
  2927. msgstr ""
  2928. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:319
  2929. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:321
  2930. msgid "Flashing…"
  2931. msgstr ""
  2932. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1004
  2933. msgid "Follow IPv4 Lifetime"
  2934. msgstr ""
  2935. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:211
  2936. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:211
  2937. msgid "For multicast, an outgoing interface (%s) needs to be specified"
  2938. msgstr ""
  2939. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:913
  2940. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:685
  2941. msgid "Force"
  2942. msgstr ""
  2943. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1032
  2944. msgid "Force 40MHz mode"
  2945. msgstr ""
  2946. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1307
  2947. msgid "Force CCMP (AES)"
  2948. msgstr ""
  2949. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1308
  2950. msgid "Force CCMP-256 (AES)"
  2951. msgstr ""
  2952. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:685
  2953. msgid "Force DHCP on this network even if another server is detected."
  2954. msgstr ""
  2955. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1309
  2956. msgid "Force GCMP (AES)"
  2957. msgstr ""
  2958. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1310
  2959. msgid "Force GCMP-256 (AES)"
  2960. msgstr ""
  2961. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:749
  2962. msgid "Force IGMP version"
  2963. msgstr ""
  2964. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:756
  2965. msgid "Force MLD version"
  2966. msgstr ""
  2967. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1311
  2968. msgid "Force TKIP"
  2969. msgstr ""
  2970. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1312
  2971. msgid "Force TKIP and CCMP (AES)"
  2972. msgstr ""
  2973. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1294
  2974. msgid "Force broadcast DHCP response."
  2975. msgstr ""
  2976. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1319
  2977. msgid "Force link"
  2978. msgstr ""
  2979. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:283
  2980. msgid "Force upgrade"
  2981. msgstr ""
  2982. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:90
  2983. msgid "Force use of NAT-T"
  2984. msgstr ""
  2985. #: modules/luci-base/ucode/template/csrftoken.ut:8
  2986. msgid "Form token mismatch"
  2987. msgstr ""
  2988. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1527
  2989. msgid "Format:"
  2990. msgstr ""
  2991. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:982
  2992. msgid ""
  2993. "Forward <abbr title=\"Neighbour Discovery Protocol\">NDP</abbr> <abbr "
  2994. "title=\"Neighbour Solicitation, Type 135\">NS</abbr> and <abbr "
  2995. "title=\"Neighbour Advertisement, Type 136\">NA</abbr> messages between the "
  2996. "designated master interface and downstream interfaces."
  2997. msgstr ""
  2998. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:793
  2999. msgid ""
  3000. "Forward <abbr title=\"Router Advertisement, ICMPv6 Type 134\">RA</abbr> "
  3001. "messages received on the designated master interface to downstream "
  3002. "interfaces."
  3003. msgstr ""
  3004. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:164
  3005. msgid "Forward DHCP traffic"
  3006. msgstr ""
  3007. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:918
  3008. msgid ""
  3009. "Forward DHCPv6 messages between the designated master interface and "
  3010. "downstream interfaces."
  3011. msgstr ""
  3012. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:161
  3013. msgid "Forward broadcast traffic"
  3014. msgstr ""
  3015. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:581
  3016. msgid "Forward delay"
  3017. msgstr ""
  3018. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1060
  3019. msgid "Forward mesh peer traffic"
  3020. msgstr ""
  3021. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:778
  3022. msgid "Forward multicast packets as unicast packets on this device."
  3023. msgstr ""
  3024. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:470
  3025. msgid "Forward specific domain queries to specific upstream servers."
  3026. msgstr ""
  3027. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1297
  3028. msgid "Forward/reverse DNS"
  3029. msgstr ""
  3030. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:98
  3031. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:98
  3032. msgid "Forwarding DataBase"
  3033. msgstr ""
  3034. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1680
  3035. msgid "Forwarding mode"
  3036. msgstr ""
  3037. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:393
  3038. msgid "Forwards"
  3039. msgstr ""
  3040. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:80
  3041. msgid "Fragmentation"
  3042. msgstr ""
  3043. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1024
  3044. msgid "Fragmentation Threshold"
  3045. msgstr ""
  3046. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:62
  3047. msgctxt "nft nat flag fully-random"
  3048. msgid "Full port randomization"
  3049. msgstr ""
  3050. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:178
  3051. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:178
  3052. msgid "Further information about VXLAN interfaces and peers %s."
  3053. msgstr ""
  3054. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:200
  3055. msgid ""
  3056. "Further information about WireGuard interfaces and peers at <a href='http://"
  3057. "wireguard.com'>wireguard.com</a>."
  3058. msgstr ""
  3059. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:123
  3060. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:123
  3061. msgid "GBP"
  3062. msgstr ""
  3063. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:128
  3064. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:184
  3065. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:170
  3066. msgid "GHz"
  3067. msgstr "GHz"
  3068. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:92
  3069. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:82
  3070. msgid "GPRS only"
  3071. msgstr ""
  3072. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:10
  3073. msgid "GRE tunnel over IPv4"
  3074. msgstr ""
  3075. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:10
  3076. msgid "GRE tunnel over IPv6"
  3077. msgstr ""
  3078. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:10
  3079. msgid "GRETAP tunnel over IPv4"
  3080. msgstr ""
  3081. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:10
  3082. msgid "GRETAP tunnel over IPv6"
  3083. msgstr ""
  3084. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:79
  3085. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:39
  3086. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:198
  3087. msgid "Gateway"
  3088. msgstr ""
  3089. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:85
  3090. msgid "Gateway Mode"
  3091. msgstr ""
  3092. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:38
  3093. msgid "Gateway Ports"
  3094. msgstr ""
  3095. #: modules/luci-base/htdocs/luci-static/resources/network.js:11
  3096. #: modules/luci-compat/luasrc/model/network.lua:29
  3097. msgid "Gateway address is invalid"
  3098. msgstr ""
  3099. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:151
  3100. msgid "Gateway metric"
  3101. msgstr ""
  3102. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:387
  3103. msgid "General"
  3104. msgstr ""
  3105. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:467
  3106. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:40
  3107. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:132
  3108. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:240
  3109. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:122
  3110. msgid "General Settings"
  3111. msgstr ""
  3112. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:631
  3113. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1667
  3114. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:984
  3115. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1046
  3116. msgid "General Setup"
  3117. msgstr ""
  3118. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:390
  3119. msgid "General device options"
  3120. msgstr ""
  3121. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:150
  3122. msgid "Generate Config"
  3123. msgstr ""
  3124. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1691
  3125. msgid "Generate PMK locally"
  3126. msgstr ""
  3127. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:398
  3128. msgid "Generate archive"
  3129. msgstr ""
  3130. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:836
  3131. msgid "Generate configuration"
  3132. msgstr ""
  3133. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:876
  3134. msgid "Generate configuration…"
  3135. msgstr ""
  3136. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:95
  3137. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:62
  3138. msgid "Generate new key pair"
  3139. msgstr ""
  3140. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:606
  3141. msgid "Generate preshared key"
  3142. msgstr ""
  3143. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:676
  3144. msgid "Generates a configuration suitable for import on a WireGuard peer"
  3145. msgstr ""
  3146. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:810
  3147. msgid "Generating QR code…"
  3148. msgstr ""
  3149. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:79
  3150. msgid "Given password confirmation did not match, password not changed!"
  3151. msgstr ""
  3152. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:146
  3153. msgid "Global Settings"
  3154. msgstr ""
  3155. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1551
  3156. msgid "Global network options"
  3157. msgstr ""
  3158. #: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:71
  3159. #: themes/luci-theme-material/ucode/template/themes/material/header.ut:91
  3160. #: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:67
  3161. #: themes/luci-theme-openwrt/ucode/template/themes/openwrt.org/header.ut:84
  3162. msgid "Go to firmware upgrade..."
  3163. msgstr ""
  3164. #: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:61
  3165. #: themes/luci-theme-material/ucode/template/themes/material/header.ut:81
  3166. #: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:57
  3167. #: themes/luci-theme-openwrt/ucode/template/themes/openwrt.org/header.ut:74
  3168. msgid "Go to password configuration..."
  3169. msgstr ""
  3170. #: modules/luci-base/htdocs/luci-static/resources/form.js:2598
  3171. #: modules/luci-base/htdocs/luci-static/resources/form.js:3711
  3172. #: modules/luci-compat/luasrc/view/cbi/full_valueheader.htm:4
  3173. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:58
  3174. msgid "Go to relevant configuration page"
  3175. msgstr ""
  3176. #: modules/luci-mod-network/root/usr/share/rpcd/acl.d/luci-mod-network.json:39
  3177. msgid "Grant access to DHCP configuration"
  3178. msgstr ""
  3179. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status-index.json:33
  3180. msgid "Grant access to DHCP status display"
  3181. msgstr ""
  3182. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status-index.json:42
  3183. msgid "Grant access to DSL status display"
  3184. msgstr ""
  3185. #: protocols/luci-proto-openconnect/root/usr/share/rpcd/acl.d/luci-openconnect.json:3
  3186. msgid "Grant access to LuCI OpenConnect procedures"
  3187. msgstr ""
  3188. #: protocols/luci-proto-wireguard/root/usr/share/rpcd/acl.d/luci-wireguard.json:3
  3189. msgid "Grant access to LuCI Wireguard procedures"
  3190. msgstr ""
  3191. #: protocols/luci-proto-yggdrasil/root/usr/share/rpcd/acl.d/luci-proto-yggdrasil.json:3
  3192. msgid "Grant access to LuCI Yggdrasil procedures"
  3193. msgstr ""
  3194. #: protocols/luci-proto-openfortivpn/root/usr/share/rpcd/acl.d/luci-openfortivpn.json:3
  3195. msgid "Grant access to LuCI openfortivpn procedures"
  3196. msgstr ""
  3197. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:22
  3198. msgid "Grant access to SSH configuration"
  3199. msgstr ""
  3200. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status-index.json:23
  3201. msgid "Grant access to Storage and Mount status display"
  3202. msgstr ""
  3203. #: modules/luci-base/root/usr/share/rpcd/acl.d/luci-base.json:12
  3204. msgid "Grant access to basic LuCI procedures"
  3205. msgstr ""
  3206. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:78
  3207. msgid "Grant access to crontab configuration"
  3208. msgstr ""
  3209. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:67
  3210. msgid "Grant access to firewall status"
  3211. msgstr ""
  3212. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:131
  3213. msgid "Grant access to flash operations"
  3214. msgstr ""
  3215. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status-index.json:3
  3216. msgid "Grant access to main status display"
  3217. msgstr ""
  3218. #: protocols/luci-proto-modemmanager/root/usr/share/rpcd/acl.d/luci-proto-modemmanager.json:3
  3219. msgid "Grant access to mmcli"
  3220. msgstr ""
  3221. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:99
  3222. msgid "Grant access to mount configuration"
  3223. msgstr ""
  3224. #: modules/luci-mod-network/root/usr/share/rpcd/acl.d/luci-mod-network.json:3
  3225. msgid "Grant access to network configuration"
  3226. msgstr ""
  3227. #: modules/luci-mod-network/root/usr/share/rpcd/acl.d/luci-mod-network.json:52
  3228. msgid "Grant access to network diagnostic tools"
  3229. msgstr ""
  3230. #: modules/luci-base/root/usr/share/rpcd/acl.d/luci-base.json:36
  3231. msgid "Grant access to network status information"
  3232. msgstr ""
  3233. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status-index.json:51
  3234. msgid "Grant access to port status display"
  3235. msgstr ""
  3236. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:13
  3237. msgid "Grant access to process status"
  3238. msgstr ""
  3239. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:3
  3240. msgid "Grant access to realtime statistics"
  3241. msgstr ""
  3242. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:44
  3243. msgid "Grant access to routing status"
  3244. msgstr ""
  3245. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:56
  3246. msgid "Grant access to startup configuration"
  3247. msgstr ""
  3248. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:3
  3249. msgid "Grant access to system configuration"
  3250. msgstr ""
  3251. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:30
  3252. msgid "Grant access to system logs"
  3253. msgstr ""
  3254. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:45
  3255. msgid "Grant access to uHTTPd configuration"
  3256. msgstr ""
  3257. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:58
  3258. msgid "Grant access to wireless channel status"
  3259. msgstr ""
  3260. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status-index.json:60
  3261. msgid "Grant access to wireless status display"
  3262. msgstr ""
  3263. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:124
  3264. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:124
  3265. msgid "Group Based Policy (VXLAN-GBP) extension"
  3266. msgstr ""
  3267. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:66
  3268. msgid "Group Password"
  3269. msgstr ""
  3270. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:22
  3271. msgid "Guest"
  3272. msgstr ""
  3273. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:81
  3274. msgid "HE.net password"
  3275. msgstr ""
  3276. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:73
  3277. msgid "HE.net username"
  3278. msgstr ""
  3279. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/uhttpd.js:9
  3280. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:64
  3281. msgid "HTTP(S) Access"
  3282. msgstr ""
  3283. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:46
  3284. msgid "Hang Up"
  3285. msgstr ""
  3286. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/heartbeat.js:6
  3287. msgid "Heartbeat interval (kernel: heartbeat)"
  3288. msgstr ""
  3289. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:576
  3290. msgid "Hello interval"
  3291. msgstr ""
  3292. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:114
  3293. msgid ""
  3294. "Here you can configure the basic aspects of your device like its hostname or "
  3295. "the timezone."
  3296. msgstr ""
  3297. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1108
  3298. msgid "Hex Data"
  3299. msgstr ""
  3300. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1059
  3301. msgid "Hexdata is automatically en/decoded on save and load"
  3302. msgstr ""
  3303. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1202
  3304. msgid "Hide <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>"
  3305. msgstr ""
  3306. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:297
  3307. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:336
  3308. msgid "Hide empty chains"
  3309. msgstr ""
  3310. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1017
  3311. msgid "High"
  3312. msgstr ""
  3313. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:707
  3314. msgid "Honor gratuitous ARP"
  3315. msgstr ""
  3316. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:593
  3317. msgctxt "Chain hook description"
  3318. msgid "Hook: <strong>%h</strong> (%h), Priority: <strong>%d</strong>"
  3319. msgstr ""
  3320. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:92
  3321. msgid "Hop Penalty"
  3322. msgstr ""
  3323. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:57
  3324. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2412
  3325. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:134
  3326. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:234
  3327. msgid "Host"
  3328. msgstr ""
  3329. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:171
  3330. msgid "Host expiry timeout"
  3331. msgstr ""
  3332. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:883
  3333. msgid "Host requests this filename from the boot server."
  3334. msgstr ""
  3335. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:88
  3336. msgid "Host-Uniq tag content"
  3337. msgstr ""
  3338. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1246
  3339. msgid ""
  3340. "Host-specific lease time, e.g. <code>5m</code>, <code>3h</code>, <code>7d</"
  3341. "code>."
  3342. msgstr ""
  3343. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:38
  3344. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1036
  3345. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1176
  3346. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:55
  3347. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:87
  3348. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:135
  3349. msgid "Hostname"
  3350. msgstr ""
  3351. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:22
  3352. msgid "Hostname to send when requesting DHCP"
  3353. msgstr ""
  3354. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:934
  3355. msgid "Hostnames"
  3356. msgstr ""
  3357. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1028
  3358. msgid ""
  3359. "Hostnames are used to bind a domain name to an IP address. This setting is "
  3360. "redundant for hostnames already configured with static leases, but it can be "
  3361. "useful to rebind an FQDN."
  3362. msgstr ""
  3363. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/timer.js:19
  3364. msgid "How long (in milliseconds) the LED should be off"
  3365. msgstr ""
  3366. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/timer.js:13
  3367. msgid "How long (in milliseconds) the LED should be on"
  3368. msgstr ""
  3369. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:280
  3370. msgid "Human-readable counters"
  3371. msgstr ""
  3372. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:24
  3373. msgid "Hybrid"
  3374. msgstr ""
  3375. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:49
  3376. msgctxt "nft icmp code"
  3377. msgid "ICMP code"
  3378. msgstr ""
  3379. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:50
  3380. msgctxt "nft icmp type"
  3381. msgid "ICMP type"
  3382. msgstr ""
  3383. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:51
  3384. msgctxt "nft icmpv6 code"
  3385. msgid "ICMPv6 code"
  3386. msgstr ""
  3387. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:52
  3388. msgctxt "nft icmpv6 type"
  3389. msgid "ICMPv6 type"
  3390. msgstr ""
  3391. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:128
  3392. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:128
  3393. msgid "ID used to uniquely identify the VXLAN"
  3394. msgstr ""
  3395. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:213
  3396. msgid "IEEE 802.3ad Dynamic link aggregation (802.3ad, 4)"
  3397. msgstr ""
  3398. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:75
  3399. msgid "IKE DH Group"
  3400. msgstr ""
  3401. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:86
  3402. msgid "IMEI"
  3403. msgstr ""
  3404. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:141
  3405. msgid "IP Address"
  3406. msgstr ""
  3407. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:167
  3408. msgid "IP Addresses"
  3409. msgstr ""
  3410. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:85
  3411. msgid "IP Protocol"
  3412. msgstr ""
  3413. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:398
  3414. msgid "IP Sets"
  3415. msgstr ""
  3416. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:138
  3417. msgid "IP Type"
  3418. msgstr ""
  3419. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1040
  3420. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:188
  3421. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:214
  3422. msgid "IP address"
  3423. msgstr ""
  3424. #: modules/luci-base/htdocs/luci-static/resources/network.js:10
  3425. #: modules/luci-compat/luasrc/model/network.lua:28
  3426. msgid "IP address is invalid"
  3427. msgstr ""
  3428. #: modules/luci-base/htdocs/luci-static/resources/network.js:13
  3429. #: modules/luci-compat/luasrc/model/network.lua:31
  3430. msgid "IP address is missing"
  3431. msgstr ""
  3432. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:210
  3433. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:210
  3434. msgid ""
  3435. "IP address of the remote VXLAN tunnel endpoint where the MAC address (Layer "
  3436. "2 Address) resides or a multicast address for a group of peers."
  3437. msgstr ""
  3438. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:793
  3439. msgid ""
  3440. "IP addresses for the peer to use inside the tunnel. Some clients require "
  3441. "this setting."
  3442. msgstr ""
  3443. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:782
  3444. msgid ""
  3445. "IP addresses that are allowed inside the tunnel. The peer will accept "
  3446. "tunnelled packets with source IP addresses matching this list and route back "
  3447. "packets with matching destination IP."
  3448. msgstr ""
  3449. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:36
  3450. msgctxt "nft ip protocol"
  3451. msgid "IP protocol"
  3452. msgstr ""
  3453. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:14
  3454. msgctxt "nft meta l4proto"
  3455. msgid "IP protocol"
  3456. msgstr ""
  3457. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:501
  3458. msgid "IP sets"
  3459. msgstr ""
  3460. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:776
  3461. msgid "IPs to override with {nxdomain}"
  3462. msgstr ""
  3463. #: protocols/luci-proto-xfrm/htdocs/luci-static/resources/protocol/xfrm.js:9
  3464. msgid "IPsec XFRM"
  3465. msgstr ""
  3466. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1158
  3467. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:87
  3468. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:110
  3469. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:88
  3470. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:96
  3471. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:87
  3472. msgid "IPv4"
  3473. msgstr "IPv4"
  3474. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:355
  3475. msgid "IPv4 Firewall"
  3476. msgstr ""
  3477. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:262
  3478. msgid "IPv4 Neighbours"
  3479. msgstr ""
  3480. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:261
  3481. msgid "IPv4 Routing"
  3482. msgstr ""
  3483. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:126
  3484. msgid "IPv4 Rules"
  3485. msgstr ""
  3486. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:33
  3487. msgid "IPv4 Upstream"
  3488. msgstr ""
  3489. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:179
  3490. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:39
  3491. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1211
  3492. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:88
  3493. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:167
  3494. msgid "IPv4 address"
  3495. msgstr ""
  3496. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:29
  3497. msgid "IPv4 assignment length"
  3498. msgstr ""
  3499. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:182
  3500. msgid "IPv4 broadcast"
  3501. msgstr ""
  3502. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:181
  3503. msgid "IPv4 gateway"
  3504. msgstr ""
  3505. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:180
  3506. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:174
  3507. msgid "IPv4 netmask"
  3508. msgstr ""
  3509. #: modules/luci-base/htdocs/luci-static/resources/validation.js:318
  3510. msgid "IPv4 network in address/netmask notation"
  3511. msgstr ""
  3512. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:140
  3513. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:205
  3514. msgid "IPv4 only"
  3515. msgstr ""
  3516. #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:16
  3517. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/ipip6.js:10
  3518. msgid "IPv4 over IPv6 (RFC2473-IPIPv6)"
  3519. msgstr ""
  3520. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:52
  3521. msgid "IPv4 prefix"
  3522. msgstr ""
  3523. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:61
  3524. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:55
  3525. msgid "IPv4 prefix length"
  3526. msgstr ""
  3527. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:625
  3528. msgid "IPv4 traffic table \"%h\""
  3529. msgstr ""
  3530. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1157
  3531. msgid "IPv4+6"
  3532. msgstr ""
  3533. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:88
  3534. msgid "IPv4+IPv6"
  3535. msgstr ""
  3536. #: modules/luci-compat/luasrc/model/network/proto_ipip.lua:9
  3537. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:10
  3538. msgid "IPv4-in-IPv4 (RFC2003)"
  3539. msgstr ""
  3540. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:95
  3541. msgid "IPv4/IPv6"
  3542. msgstr ""
  3543. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:139
  3544. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:204
  3545. msgid "IPv4/IPv6 (both - defaults to IPv4)"
  3546. msgstr ""
  3547. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:633
  3548. msgid "IPv4/IPv6 traffic table \"%h\""
  3549. msgstr ""
  3550. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1159
  3551. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:88
  3552. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:111
  3553. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:89
  3554. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:97
  3555. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:89
  3556. msgid "IPv6"
  3557. msgstr ""
  3558. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:81
  3559. msgid "IPv6 APN"
  3560. msgstr ""
  3561. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:150
  3562. msgid "IPv6 APN profile index"
  3563. msgstr ""
  3564. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:358
  3565. msgid "IPv6 Firewall"
  3566. msgstr ""
  3567. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:736
  3568. msgid "IPv6 MTU"
  3569. msgstr ""
  3570. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:272
  3571. msgid "IPv6 Neighbours"
  3572. msgstr ""
  3573. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:995
  3574. msgid "IPv6 Prefix Lifetime"
  3575. msgstr ""
  3576. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:634
  3577. msgid "IPv6 RA Settings"
  3578. msgstr ""
  3579. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:271
  3580. msgid "IPv6 Routing"
  3581. msgstr ""
  3582. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:126
  3583. msgid "IPv6 Rules"
  3584. msgstr ""
  3585. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:633
  3586. msgid "IPv6 Settings"
  3587. msgstr ""
  3588. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1555
  3589. msgid "IPv6 ULA-Prefix"
  3590. msgstr ""
  3591. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:33
  3592. msgid "IPv6 Upstream"
  3593. msgstr ""
  3594. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:184
  3595. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:58
  3596. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:135
  3597. msgid "IPv6 address"
  3598. msgstr ""
  3599. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1061
  3600. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:27
  3601. msgid "IPv6 assignment hint"
  3602. msgstr ""
  3603. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1056
  3604. msgid "IPv6 assignment length"
  3605. msgstr ""
  3606. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:189
  3607. msgid "IPv6 gateway"
  3608. msgstr ""
  3609. #: modules/luci-base/htdocs/luci-static/resources/validation.js:323
  3610. msgid "IPv6 network in address/netmask notation"
  3611. msgstr ""
  3612. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:141
  3613. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:206
  3614. msgid "IPv6 only"
  3615. msgstr ""
  3616. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1105
  3617. msgid "IPv6 preference"
  3618. msgstr ""
  3619. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:53
  3620. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:59
  3621. msgid "IPv6 prefix"
  3622. msgstr ""
  3623. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1078
  3624. msgid "IPv6 prefix filter"
  3625. msgstr ""
  3626. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:57
  3627. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:63
  3628. msgid "IPv6 prefix length"
  3629. msgstr ""
  3630. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:193
  3631. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:57
  3632. msgid "IPv6 routed prefix"
  3633. msgstr ""
  3634. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1049
  3635. msgid "IPv6 source routing"
  3636. msgstr ""
  3637. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1101
  3638. msgid "IPv6 suffix"
  3639. msgstr ""
  3640. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:55
  3641. msgid "IPv6 support"
  3642. msgstr ""
  3643. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:629
  3644. msgid "IPv6 traffic table \"%h\""
  3645. msgstr ""
  3646. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:90
  3647. msgid "IPv6-PD"
  3648. msgstr ""
  3649. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1263
  3650. msgid "IPv6-Suffix (hex)"
  3651. msgstr ""
  3652. #: modules/luci-compat/luasrc/model/network/proto_6x4.lua:13
  3653. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:10
  3654. msgid "IPv6-in-IPv4 (RFC4213)"
  3655. msgstr ""
  3656. #: modules/luci-compat/luasrc/model/network/proto_6x4.lua:17
  3657. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:9
  3658. msgid "IPv6-over-IPv4 (6rd)"
  3659. msgstr ""
  3660. #: modules/luci-compat/luasrc/model/network/proto_6x4.lua:15
  3661. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6to4.js:9
  3662. msgid "IPv6-over-IPv4 (6to4)"
  3663. msgstr ""
  3664. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1875
  3665. msgid "Identity"
  3666. msgstr ""
  3667. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1275
  3668. msgid ""
  3669. "If a host matches an entry which cannot be used because it specifies an "
  3670. "address on a different subnet, the tag %s is set."
  3671. msgstr ""
  3672. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:758
  3673. msgid ""
  3674. "If an address is specified in the flag, it will be used, otherwise, the "
  3675. "address of the requestor will be used."
  3676. msgstr ""
  3677. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:96
  3678. msgid "If checked, 1DES is enabled"
  3679. msgstr ""
  3680. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:55
  3681. msgid "If checked, adds \"+ipv6\" to the pppd options"
  3682. msgstr ""
  3683. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:93
  3684. msgid "If checked, encryption is disabled"
  3685. msgstr ""
  3686. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:104
  3687. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:104
  3688. msgid ""
  3689. "If destination MAC refers to router, replace it with destination MAC address"
  3690. msgstr ""
  3691. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:267
  3692. msgid ""
  3693. "If empty, all incoming connections will be allowed (default). This does not "
  3694. "affect outgoing peerings, nor link-local peers discovered via multicast."
  3695. msgstr ""
  3696. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1078
  3697. msgid ""
  3698. "If set, downstream subnets are only allocated from the given IPv6 prefix "
  3699. "classes."
  3700. msgstr ""
  3701. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:205
  3702. msgid "If set, the meaning of the match options is inverted"
  3703. msgstr ""
  3704. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:255
  3705. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:359
  3706. msgid ""
  3707. "If specified, mount the device by its UUID instead of a fixed device node"
  3708. msgstr ""
  3709. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:268
  3710. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:375
  3711. msgid ""
  3712. "If specified, mount the device by the partition label instead of a fixed "
  3713. "device node"
  3714. msgstr ""
  3715. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1011
  3716. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/ipip6.js:70
  3717. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:134
  3718. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:156
  3719. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:129
  3720. msgid "If unchecked, no default route is configured"
  3721. msgstr ""
  3722. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1015
  3723. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:145
  3724. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:160
  3725. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:140
  3726. msgid "If unchecked, the advertised DNS server addresses are ignored"
  3727. msgstr ""
  3728. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:338
  3729. msgid ""
  3730. "If your physical memory is insufficient unused data can be temporarily "
  3731. "swapped to a swap-device resulting in a higher amount of usable <abbr "
  3732. "title=\"Random Access Memory\">RAM</abbr>. Be aware that swapping data is a "
  3733. "very slow process as the swap-device cannot be accessed with the high "
  3734. "datarates of the <abbr title=\"Random Access Memory\">RAM</abbr>."
  3735. msgstr ""
  3736. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1212
  3737. msgid "Ignore"
  3738. msgstr ""
  3739. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:650
  3740. msgid "Ignore hosts files directory"
  3741. msgstr ""
  3742. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:665
  3743. msgid "Ignore interface"
  3744. msgstr ""
  3745. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1274
  3746. msgid "Ignore requests from unknown machines using %s."
  3747. msgstr ""
  3748. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:634
  3749. msgid "Ignore resolv file"
  3750. msgstr ""
  3751. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:657
  3752. msgid "Ignore {etc_hosts} file"
  3753. msgstr ""
  3754. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:449
  3755. msgid "Image"
  3756. msgstr ""
  3757. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:275
  3758. msgid "Image check failed:"
  3759. msgstr ""
  3760. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:463
  3761. msgid "Import as peer"
  3762. msgstr ""
  3763. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:174
  3764. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:463
  3765. msgid "Import configuration"
  3766. msgstr ""
  3767. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:491
  3768. msgid "Import configuration as peer…"
  3769. msgstr ""
  3770. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:477
  3771. msgid "Import settings"
  3772. msgstr ""
  3773. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:363
  3774. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:390
  3775. msgid "Imported peer configuration"
  3776. msgstr ""
  3777. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:174
  3778. msgid "Imports settings from an existing WireGuard configuration file"
  3779. msgstr ""
  3780. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:68
  3781. msgid "In"
  3782. msgstr ""
  3783. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1193
  3784. msgid ""
  3785. "In DHCPv4, it is possible to include more than one mac address. This allows "
  3786. "an IP address to be associated with multiple macaddrs, and dnsmasq abandons "
  3787. "a DHCP lease to one of the macaddrs when another asks for a lease. It only "
  3788. "works reliably if only one of the macaddrs is active at any time."
  3789. msgstr ""
  3790. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:71
  3791. msgid ""
  3792. "In bridged LAN setups it is advisable to enable the bridge loop avoidance in "
  3793. "order to avoid broadcast loops that can bring the entire LAN to a standstill."
  3794. msgstr ""
  3795. #: modules/luci-base/ucode/template/csrftoken.ut:13
  3796. msgid ""
  3797. "In order to prevent unauthorized access to the system, your request has been "
  3798. "blocked. Click \"Continue »\" below to return to the previous page."
  3799. msgstr ""
  3800. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:148
  3801. msgid "In seconds"
  3802. msgstr ""
  3803. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:156
  3804. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:128
  3805. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:114
  3806. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:92
  3807. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:101
  3808. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:124
  3809. msgid "Inactivity timeout"
  3810. msgstr ""
  3811. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:267
  3812. msgid "Inbound:"
  3813. msgstr ""
  3814. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:264
  3815. msgid ""
  3816. "Include in backup a list of current installed packages at /etc/backup/"
  3817. "installed_packages.txt"
  3818. msgstr ""
  3819. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:100
  3820. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:105
  3821. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:102
  3822. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:107
  3823. msgid "Incoming checksum"
  3824. msgstr ""
  3825. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:150
  3826. msgid "Incoming interface"
  3827. msgstr ""
  3828. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:92
  3829. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:97
  3830. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:94
  3831. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:99
  3832. #: protocols/luci-proto-vti/htdocs/luci-static/resources/protocol/vti.js:64
  3833. msgid "Incoming key"
  3834. msgstr ""
  3835. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:102
  3836. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:107
  3837. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:104
  3838. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:109
  3839. msgid "Incoming serialization"
  3840. msgstr ""
  3841. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:550
  3842. msgid "Indoor Only Channel Selected"
  3843. msgstr ""
  3844. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:187
  3845. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:158
  3846. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:345
  3847. msgid "Info"
  3848. msgstr ""
  3849. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:91
  3850. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:92
  3851. msgid "Information"
  3852. msgstr ""
  3853. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:510
  3854. msgid "Ingress QoS mapping"
  3855. msgstr ""
  3856. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:11
  3857. msgctxt "nft meta iif"
  3858. msgid "Ingress device id"
  3859. msgstr ""
  3860. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:9
  3861. msgctxt "nft meta iifname"
  3862. msgid "Ingress device name"
  3863. msgstr ""
  3864. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:162
  3865. msgid "Initial EPS Bearer"
  3866. msgstr ""
  3867. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:171
  3868. msgid "Initial EPS Bearer APN"
  3869. msgstr ""
  3870. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:175
  3871. msgid "Initial EPS Bearer Authentication Type"
  3872. msgstr ""
  3873. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:202
  3874. msgid "Initial EPS Bearer IP Type"
  3875. msgstr ""
  3876. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:193
  3877. msgid "Initial EPS Bearer Password"
  3878. msgstr ""
  3879. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:185
  3880. msgid "Initial EPS Bearer Username"
  3881. msgstr ""
  3882. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:67
  3883. msgid "Initialization failure"
  3884. msgstr ""
  3885. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:76
  3886. msgid "Initscript"
  3887. msgstr ""
  3888. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:111
  3889. msgid "Initscripts"
  3890. msgstr ""
  3891. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1859
  3892. msgid "Inner certificate constraint (Domain)"
  3893. msgstr ""
  3894. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1856
  3895. msgid "Inner certificate constraint (SAN)"
  3896. msgstr ""
  3897. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1853
  3898. msgid "Inner certificate constraint (Subject)"
  3899. msgstr ""
  3900. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1862
  3901. msgid "Inner certificate constraint (Wildcard)"
  3902. msgstr ""
  3903. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:289
  3904. msgid "Install protocol extensions..."
  3905. msgstr ""
  3906. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:918
  3907. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1282
  3908. msgid "Instance"
  3909. msgstr ""
  3910. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:125
  3911. msgctxt "WireGuard instance heading"
  3912. msgid "Instance \"%h\""
  3913. msgstr ""
  3914. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:374
  3915. msgctxt "Dnsmasq instance"
  3916. msgid "Instance \"%q\""
  3917. msgstr ""
  3918. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:34
  3919. msgid "Instance Details"
  3920. msgstr ""
  3921. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2280
  3922. msgid ""
  3923. "Instead of joining any network with a matching SSID, only connect to the "
  3924. "BSSID <code>%h</code>."
  3925. msgstr ""
  3926. #: modules/luci-compat/luasrc/view/cbi/map.htm:43
  3927. msgid "Insufficient permissions to read UCI configuration."
  3928. msgstr ""
  3929. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:136
  3930. msgid "Integrated Circuit Card Identifier"
  3931. msgstr ""
  3932. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:43
  3933. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:190
  3934. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:216
  3935. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:20
  3936. msgid "Interface"
  3937. msgstr ""
  3938. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:717
  3939. msgid "Interface \"%h\" is already marked as designated master."
  3940. msgstr ""
  3941. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:62
  3942. msgid "Interface %q device auto-migrated from %q to %q."
  3943. msgstr ""
  3944. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1042
  3945. msgid "Interface Configuration"
  3946. msgstr ""
  3947. #: protocols/luci-proto-xfrm/htdocs/luci-static/resources/protocol/xfrm.js:39
  3948. msgid "Interface ID"
  3949. msgstr ""
  3950. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:91
  3951. msgid "Interface disabled"
  3952. msgstr ""
  3953. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:97
  3954. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:151
  3955. msgid "Interface has %d pending changes"
  3956. msgstr ""
  3957. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:92
  3958. msgid "Interface is disabled"
  3959. msgstr ""
  3960. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:65
  3961. msgid "Interface is marked for deletion"
  3962. msgstr ""
  3963. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:196
  3964. msgid "Interface is reconnecting..."
  3965. msgstr ""
  3966. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:180
  3967. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:190
  3968. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:196
  3969. msgid "Interface is shutting down..."
  3970. msgstr ""
  3971. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:274
  3972. msgid "Interface is starting..."
  3973. msgstr ""
  3974. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:277
  3975. msgid "Interface is stopping..."
  3976. msgstr ""
  3977. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1220
  3978. msgid "Interface name"
  3979. msgstr ""
  3980. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:109
  3981. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:293
  3982. msgid "Interface not present or not connected yet."
  3983. msgstr ""
  3984. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:451
  3985. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:481
  3986. #: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:38
  3987. msgid "Interfaces"
  3988. msgstr ""
  3989. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:20
  3990. msgid "Internal"
  3991. msgstr ""
  3992. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:85
  3993. msgid "International Mobile Station Equipment Identity"
  3994. msgstr ""
  3995. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:139
  3996. msgid "International Mobile Subscriber Identity"
  3997. msgstr ""
  3998. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:290
  3999. msgid "Interval For Sending Learning Packets"
  4000. msgstr ""
  4001. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:610
  4002. msgid ""
  4003. "Interval in centiseconds between multicast general queries. By varying the "
  4004. "value, an administrator may tune the number of IGMP messages on the subnet; "
  4005. "larger values cause IGMP Queries to be sent less often"
  4006. msgstr ""
  4007. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:576
  4008. msgid "Interval in seconds for STP hello packets"
  4009. msgstr ""
  4010. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:192
  4011. #: modules/luci-compat/luasrc/view/cbi/tsection.htm:42
  4012. msgid "Invalid"
  4013. msgstr ""
  4014. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:101
  4015. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:68
  4016. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:71
  4017. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:97
  4018. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:73
  4019. msgid "Invalid APN provided"
  4020. msgstr ""
  4021. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:38
  4022. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:41
  4023. msgid "Invalid Base64 key string"
  4024. msgstr ""
  4025. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:121
  4026. msgid "Invalid IPv6 address"
  4027. msgstr ""
  4028. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:78
  4029. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:83
  4030. msgid "Invalid TOS value, expected 00..FF or inherit"
  4031. msgstr ""
  4032. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:83
  4033. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:88
  4034. msgid "Invalid Traffic Class value, expected 00..FF or inherit"
  4035. msgstr ""
  4036. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:285
  4037. msgid "Invalid VLAN ID given! Only IDs between %d and %d are allowed."
  4038. msgstr ""
  4039. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:294
  4040. msgid "Invalid VLAN ID given! Only unique IDs are allowed"
  4041. msgstr ""
  4042. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:403
  4043. msgid "Invalid argument"
  4044. msgstr ""
  4045. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:11
  4046. msgid ""
  4047. "Invalid bearer list. Possibly too many bearers created. This protocol "
  4048. "supports one and only one bearer."
  4049. msgstr ""
  4050. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:402
  4051. msgid "Invalid command"
  4052. msgstr ""
  4053. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:191
  4054. msgid "Invalid hexadecimal value"
  4055. msgstr ""
  4056. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:130
  4057. msgid "Invalid hostname or IPv4 address"
  4058. msgstr ""
  4059. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:138
  4060. msgid "Invalid port"
  4061. msgstr ""
  4062. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:16
  4063. msgid "Invalid private key string %s"
  4064. msgstr ""
  4065. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:28
  4066. msgid "Invalid public key string %s"
  4067. msgstr ""
  4068. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:112
  4069. msgid "Invalid server URL"
  4070. msgstr ""
  4071. #: modules/luci-base/ucode/template/sysauth.ut:12
  4072. #: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:32
  4073. msgid "Invalid username and/or password! Please try again."
  4074. msgstr ""
  4075. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/heartbeat.js:13
  4076. msgid "Invert blinking"
  4077. msgstr ""
  4078. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:205
  4079. msgid "Invert match"
  4080. msgstr ""
  4081. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:223
  4082. msgctxt "VLAN port state"
  4083. msgid "Is Primary VLAN"
  4084. msgstr ""
  4085. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1216
  4086. msgid "Isolate Clients"
  4087. msgstr ""
  4088. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:238
  4089. msgid ""
  4090. "It appears that you are trying to flash an image that does not fit into the "
  4091. "flash memory, please verify the image file!"
  4092. msgstr ""
  4093. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:312
  4094. msgid ""
  4095. "It periodically probes for active sessions and automatically establishes "
  4096. "direct peerings over internet with remote nodes running Yggdrasil Jumper "
  4097. "without requiring firewall or port configuration."
  4098. msgstr ""
  4099. #: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:78
  4100. #: themes/luci-theme-material/ucode/template/themes/material/header.ut:98
  4101. #: themes/luci-theme-openwrt/ucode/template/themes/openwrt.org/header.ut:64
  4102. msgid "JavaScript required!"
  4103. msgstr ""
  4104. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2054
  4105. msgid "Join Network"
  4106. msgstr ""
  4107. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1988
  4108. msgid "Join Network: Wireless Scan"
  4109. msgstr ""
  4110. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2288
  4111. msgid "Joining Network: %q"
  4112. msgstr ""
  4113. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:179
  4114. msgid "Jump to rule"
  4115. msgstr ""
  4116. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:303
  4117. msgid "Jumper"
  4118. msgstr ""
  4119. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:179
  4120. msgid "Jumps to another rule specified by its priority value"
  4121. msgstr ""
  4122. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:230
  4123. msgid "Keep settings and retain the current configuration"
  4124. msgstr ""
  4125. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:60
  4126. msgid "Keep-Alive"
  4127. msgstr ""
  4128. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/dmesg.js:54
  4129. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:84
  4130. msgid "Kernel Log"
  4131. msgstr ""
  4132. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:60
  4133. msgid "Kernel Version"
  4134. msgstr ""
  4135. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1602
  4136. msgid "Key"
  4137. msgstr ""
  4138. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1628
  4139. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1629
  4140. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1630
  4141. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1631
  4142. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1643
  4143. msgid "Key #%d"
  4144. msgstr ""
  4145. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:92
  4146. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:97
  4147. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:94
  4148. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:99
  4149. #: protocols/luci-proto-vti/htdocs/luci-static/resources/protocol/vti.js:64
  4150. msgid "Key for incoming packets (optional)."
  4151. msgstr ""
  4152. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:96
  4153. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:101
  4154. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:98
  4155. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:103
  4156. #: protocols/luci-proto-vti/htdocs/luci-static/resources/protocol/vti.js:68
  4157. msgid "Key for outgoing packets (optional)."
  4158. msgstr ""
  4159. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:537
  4160. msgctxt "Label indicating that WireGuard peer lacks public key"
  4161. msgid "Key missing"
  4162. msgstr ""
  4163. #: protocols/luci-proto-unet/htdocs/luci-static/resources/protocol/unet.js:44
  4164. msgid "Key used to sign network config"
  4165. msgstr ""
  4166. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:71
  4167. msgctxt "nft unit"
  4168. msgid "KiB"
  4169. msgstr ""
  4170. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:54
  4171. msgid "Kill"
  4172. msgstr ""
  4173. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:202
  4174. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:202
  4175. msgid ""
  4176. "L2 (MAC) address of peer. Uses source-address learning when %s is specified"
  4177. msgstr ""
  4178. #: modules/luci-compat/luasrc/model/network/proto_ppp.lua:21
  4179. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:10
  4180. msgid "L2TP"
  4181. msgstr ""
  4182. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:40
  4183. msgid "L2TP Server"
  4184. msgstr ""
  4185. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:274
  4186. msgid "LACPDU Packets"
  4187. msgstr ""
  4188. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:130
  4189. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:102
  4190. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:88
  4191. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:62
  4192. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:75
  4193. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:98
  4194. msgid "LCP echo failure threshold"
  4195. msgstr ""
  4196. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:143
  4197. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:115
  4198. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:101
  4199. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:75
  4200. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:88
  4201. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:111
  4202. msgid "LCP echo interval"
  4203. msgstr ""
  4204. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:115
  4205. msgid "LED Configuration"
  4206. msgstr ""
  4207. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1674
  4208. msgid "LLC"
  4209. msgstr ""
  4210. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:268
  4211. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:375
  4212. msgid "Label"
  4213. msgstr ""
  4214. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:225
  4215. msgid "Language"
  4216. msgstr ""
  4217. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:125
  4218. msgid "Language and Style"
  4219. msgstr ""
  4220. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:945
  4221. msgid ""
  4222. "Larger weights (of the same prio) are given a proportionately higher "
  4223. "probability of being selected."
  4224. msgstr ""
  4225. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:147
  4226. msgid "Last Error"
  4227. msgstr ""
  4228. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:629
  4229. msgid "Last member interval"
  4230. msgstr ""
  4231. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:143
  4232. msgid "Latency"
  4233. msgstr ""
  4234. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:59
  4235. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:78
  4236. msgid "Latest Handshake"
  4237. msgstr ""
  4238. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:201
  4239. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:201
  4240. msgid "Layer 2 Address"
  4241. msgstr ""
  4242. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:21
  4243. msgid "Leaf"
  4244. msgstr ""
  4245. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:774
  4246. msgid "Learn"
  4247. msgstr ""
  4248. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:986
  4249. msgid "Learn routes"
  4250. msgstr ""
  4251. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:96
  4252. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:96
  4253. msgid "Learning"
  4254. msgstr ""
  4255. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:630
  4256. msgid "Lease file"
  4257. msgstr ""
  4258. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1245
  4259. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:678
  4260. msgid "Lease time"
  4261. msgstr ""
  4262. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:41
  4263. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:60
  4264. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:90
  4265. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:137
  4266. msgid "Lease time remaining"
  4267. msgstr ""
  4268. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:41
  4269. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:47
  4270. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:50
  4271. msgid "Leave empty to autodetect"
  4272. msgstr ""
  4273. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:40
  4274. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:39
  4275. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6to4.js:39
  4276. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:47
  4277. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/ipip6.js:48
  4278. msgid "Leave empty to use the current WAN address"
  4279. msgstr ""
  4280. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1005
  4281. msgid ""
  4282. "Legacy or badly behaving devices may require legacy 802.11b rates to "
  4283. "interoperate. Airtime efficiency may be significantly reduced where these "
  4284. "are used. It is recommended to not allow 802.11b rates where possible."
  4285. msgstr ""
  4286. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:677
  4287. msgid "Legacy rules detected"
  4288. msgstr ""
  4289. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4468
  4290. msgid "Legend:"
  4291. msgstr ""
  4292. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:673
  4293. msgid "Limit"
  4294. msgstr ""
  4295. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:712
  4296. msgid ""
  4297. "Limit response records (from {etc_hosts}) to those that fall within the "
  4298. "subnet of the querying interface."
  4299. msgstr ""
  4300. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:394
  4301. msgid "Limits"
  4302. msgstr ""
  4303. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:25
  4304. msgid "Line Mode"
  4305. msgstr ""
  4306. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:24
  4307. msgid "Line State"
  4308. msgstr ""
  4309. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:26
  4310. msgid "Line Uptime"
  4311. msgstr ""
  4312. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:128
  4313. msgid "Link Aggregation (Channel Bonding)"
  4314. msgstr ""
  4315. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:354
  4316. msgid "Link Monitoring"
  4317. msgstr ""
  4318. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:24
  4319. msgid "Link On"
  4320. msgstr ""
  4321. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:77
  4322. msgctxt "nft @ll,off,len"
  4323. msgid "Link layer header bits %d-%d"
  4324. msgstr ""
  4325. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:502
  4326. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1122
  4327. msgid ""
  4328. "List of IP sets to populate with the IPs of DNS lookup results of the FQDNs "
  4329. "also specified here."
  4330. msgstr ""
  4331. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1713
  4332. msgid ""
  4333. "List of R0KHs in the same Mobility Domain. <br />Format: MAC-address,NAS-"
  4334. "Identifier,256-bit key as hex string. <br />This list is used to map R0KH-ID "
  4335. "(NAS Identifier) to a destination MAC address when requesting PMK-R1 key "
  4336. "from the R0KH that the STA used during the Initial Mobility Domain "
  4337. "Association."
  4338. msgstr ""
  4339. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1717
  4340. msgid ""
  4341. "List of R1KHs in the same Mobility Domain. <br />Format: MAC-address,R1KH-ID "
  4342. "as 6 octets with colons,256-bit key as hex string. <br />This list is used "
  4343. "to map R1KH-ID to a destination MAC address when sending PMK-R1 key from the "
  4344. "R0KH. This is also the list of authorized R1KHs in the MD that can request "
  4345. "PMK-R1 keys."
  4346. msgstr ""
  4347. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:82
  4348. msgid "List of SSH key files for auth"
  4349. msgstr ""
  4350. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:523
  4351. msgid "List of domains to allow {rfc_1918_link} responses for."
  4352. msgstr ""
  4353. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:301
  4354. msgid "List of upstream NTP server candidates with which to synchronize."
  4355. msgstr ""
  4356. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:162
  4357. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:38
  4358. msgid "Listen Port"
  4359. msgstr ""
  4360. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:263
  4361. msgid "Listen addresses"
  4362. msgstr ""
  4363. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:260
  4364. msgid "Listen for peers"
  4365. msgstr ""
  4366. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:544
  4367. msgid "Listen interfaces"
  4368. msgstr ""
  4369. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:20
  4370. msgid "Listen only on the given interface or, if unspecified, on all"
  4371. msgstr ""
  4372. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:545
  4373. msgid ""
  4374. "Listen only on the specified interfaces, and loopback if not excluded "
  4375. "explicitly."
  4376. msgstr ""
  4377. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:292
  4378. msgid "Listen to multicast beacons"
  4379. msgstr ""
  4380. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:286
  4381. msgid "ListenPort setting is invalid"
  4382. msgstr ""
  4383. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:784
  4384. msgid "Listening port for inbound DNS queries."
  4385. msgstr ""
  4386. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:130
  4387. #: themes/luci-theme-openwrt/ucode/template/themes/openwrt.org/header.ut:46
  4388. msgid "Load"
  4389. msgstr ""
  4390. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:63
  4391. msgid "Load Average"
  4392. msgstr ""
  4393. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:228
  4394. msgid ""
  4395. "Load Average is a metric that is used by Linux to keep track of system "
  4396. "resources."
  4397. msgstr ""
  4398. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:175
  4399. msgid "Load configuration…"
  4400. msgstr ""
  4401. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1249
  4402. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2217
  4403. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:167
  4404. msgid "Loading data…"
  4405. msgstr ""
  4406. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3027
  4407. msgid "Loading directory contents…"
  4408. msgstr ""
  4409. #: modules/luci-base/htdocs/luci-static/resources/luci.js:1942
  4410. #: modules/luci-base/ucode/template/view.ut:4
  4411. #: modules/luci-mod-status/ucode/template/admin_status/index.ut:12
  4412. #: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:40
  4413. msgid "Loading view…"
  4414. msgstr ""
  4415. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:956
  4416. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:100
  4417. msgid "Local"
  4418. msgstr ""
  4419. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:169
  4420. msgid "Local IP address"
  4421. msgstr ""
  4422. #: modules/luci-base/htdocs/luci-static/resources/network.js:12
  4423. #: modules/luci-compat/luasrc/model/network.lua:30
  4424. msgid "Local IP address is invalid"
  4425. msgstr ""
  4426. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:86
  4427. msgid "Local IP address to assign"
  4428. msgstr ""
  4429. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:46
  4430. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:46
  4431. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:44
  4432. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:40
  4433. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:39
  4434. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6to4.js:39
  4435. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/ipip6.js:44
  4436. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:151
  4437. #: protocols/luci-proto-vti/htdocs/luci-static/resources/protocol/vti.js:44
  4438. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:47
  4439. msgid "Local IPv4 address"
  4440. msgstr ""
  4441. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:934
  4442. msgid "Local IPv6 DNS server"
  4443. msgstr ""
  4444. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:46
  4445. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:53
  4446. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:54
  4447. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:47
  4448. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/ipip6.js:48
  4449. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:47
  4450. msgid "Local IPv6 address"
  4451. msgstr ""
  4452. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:115
  4453. msgid "Local Startup"
  4454. msgstr ""
  4455. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:61
  4456. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:131
  4457. msgid "Local Time"
  4458. msgstr ""
  4459. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1079
  4460. msgid "Local ULA"
  4461. msgstr ""
  4462. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:48
  4463. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:48
  4464. msgid "Local VTEP"
  4465. msgstr ""
  4466. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:428
  4467. msgid "Local domain"
  4468. msgstr ""
  4469. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:429
  4470. msgid "Local domain suffix appended to DHCP names and hosts file entries."
  4471. msgstr ""
  4472. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:531
  4473. msgid "Local service only"
  4474. msgstr ""
  4475. #: protocols/luci-proto-unet/htdocs/luci-static/resources/protocol/unet.js:41
  4476. msgid "Local wireguard key"
  4477. msgstr ""
  4478. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:711
  4479. msgid "Localise queries"
  4480. msgstr ""
  4481. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:117
  4482. msgid "Location Area Code"
  4483. msgstr ""
  4484. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2280
  4485. msgid "Lock to BSSID"
  4486. msgstr ""
  4487. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:395
  4488. msgid "Log"
  4489. msgstr ""
  4490. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:442
  4491. msgid ""
  4492. "Log all options sent to DHCP clients and the tags used to determine them."
  4493. msgstr ""
  4494. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:98
  4495. msgctxt "nft log action"
  4496. msgid "Log event \"<strong>%h</strong>…\""
  4497. msgstr ""
  4498. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:446
  4499. msgid "Log facility"
  4500. msgstr ""
  4501. #: modules/luci-base/ucode/template/sysauth.ut:38
  4502. #: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:36
  4503. msgid "Log in"
  4504. msgstr ""
  4505. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2674
  4506. msgid "Log in…"
  4507. msgstr ""
  4508. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:340
  4509. msgid "Log level"
  4510. msgstr ""
  4511. #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:81
  4512. msgid "Log out"
  4513. msgstr ""
  4514. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:185
  4515. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:155
  4516. msgid "Log output level"
  4517. msgstr ""
  4518. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:436
  4519. msgid "Log queries"
  4520. msgstr ""
  4521. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:123
  4522. msgid "Logging"
  4523. msgstr ""
  4524. #: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:23
  4525. msgid "Logging in…"
  4526. msgstr ""
  4527. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57
  4528. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:57
  4529. msgid ""
  4530. "Logical network from which to select the local endpoint if local IPv6 "
  4531. "address is empty and no WAN IPv6 is available (optional)."
  4532. msgstr ""
  4533. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:57
  4534. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62
  4535. msgid "Logical network to which the tunnel will be added (bridged) (optional)."
  4536. msgstr ""
  4537. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:682
  4538. msgid "Loose filtering"
  4539. msgstr ""
  4540. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:668
  4541. msgid "Lowest leased address as offset from the network address."
  4542. msgstr ""
  4543. #: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/footer.ut:12
  4544. msgid "Lua compatibility mode active"
  4545. msgstr ""
  4546. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:48
  4547. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:85
  4548. msgid "MAC"
  4549. msgstr "MAC"
  4550. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1527
  4551. msgid "MAC Address"
  4552. msgstr ""
  4553. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1146
  4554. msgid "MAC Address Filter"
  4555. msgstr ""
  4556. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:258
  4557. msgid "MAC Address For The Actor"
  4558. msgstr ""
  4559. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:401
  4560. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1495
  4561. msgid "MAC VLAN"
  4562. msgstr ""
  4563. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:645
  4564. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:40
  4565. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1228
  4566. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2411
  4567. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:47
  4568. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:89
  4569. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:233
  4570. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:189
  4571. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:215
  4572. msgid "MAC address"
  4573. msgstr ""
  4574. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1191
  4575. msgid "MAC address(es)"
  4576. msgstr ""
  4577. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1048
  4578. msgid "MAC-Filter"
  4579. msgstr ""
  4580. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1153
  4581. msgid "MAC-List"
  4582. msgstr ""
  4583. #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:18
  4584. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:13
  4585. msgid "MAP / LW4over6"
  4586. msgstr ""
  4587. #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:65
  4588. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:7
  4589. msgid "MAP rule is invalid"
  4590. msgstr ""
  4591. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:24
  4592. msgid "MBIM Cellular"
  4593. msgstr ""
  4594. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:225
  4595. msgid "MD5"
  4596. msgstr "MD5"
  4597. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:199
  4598. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:28
  4599. msgid "MHz"
  4600. msgstr "MHz"
  4601. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:359
  4602. msgid "MII"
  4603. msgstr ""
  4604. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:427
  4605. msgid "MII / ETHTOOL ioctls"
  4606. msgstr ""
  4607. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:400
  4608. msgid "MII Interval"
  4609. msgstr ""
  4610. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:634
  4611. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1539
  4612. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:90
  4613. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:53
  4614. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:83
  4615. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:83
  4616. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:182
  4617. #: protocols/luci-proto-xfrm/htdocs/luci-static/resources/protocol/xfrm.js:46
  4618. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:241
  4619. msgid "MTU"
  4620. msgstr "MTU"
  4621. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:936
  4622. msgid "MX"
  4623. msgstr ""
  4624. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:303
  4625. msgid ""
  4626. "Make sure to clone the root filesystem using something like the commands "
  4627. "below:"
  4628. msgstr ""
  4629. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:122
  4630. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:115
  4631. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:53
  4632. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:98
  4633. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:84
  4634. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:58
  4635. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:71
  4636. msgid "Manual"
  4637. msgstr ""
  4638. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:82
  4639. msgid "Manufacturer"
  4640. msgstr ""
  4641. #: modules/luci-base/htdocs/luci-static/resources/network.js:3908
  4642. msgid "Master (VLAN)"
  4643. msgstr ""
  4644. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1272
  4645. msgid "Match Tag"
  4646. msgstr ""
  4647. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:907
  4648. msgid "Match this Tag"
  4649. msgstr ""
  4650. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:161
  4651. msgid "Match traffic destined to this interface"
  4652. msgstr ""
  4653. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:165
  4654. msgid "Match traffic destined to this subnet (CIDR notation)"
  4655. msgstr ""
  4656. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:150
  4657. msgid "Match traffic from this interface"
  4658. msgstr ""
  4659. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:154
  4660. msgid "Match traffic from this source subnet (CIDR notation)"
  4661. msgstr ""
  4662. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:174
  4663. msgid "Matched traffic re-targets to an interface using this table."
  4664. msgstr ""
  4665. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:850
  4666. msgid "Max <abbr title=\"Router Advertisement\">RA</abbr> interval"
  4667. msgstr ""
  4668. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:90
  4669. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:90
  4670. msgid "Max FDB size"
  4671. msgstr ""
  4672. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:848
  4673. msgid "Max cache TTL"
  4674. msgstr ""
  4675. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:806
  4676. msgid "Max valid value %s."
  4677. msgstr ""
  4678. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:813
  4679. msgid "Max. DHCP leases"
  4680. msgstr ""
  4681. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:820
  4682. msgid "Max. EDNS0 packet size"
  4683. msgstr ""
  4684. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:827
  4685. msgid "Max. concurrent queries"
  4686. msgstr ""
  4687. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:586
  4688. msgid "Maximum age"
  4689. msgstr ""
  4690. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1255
  4691. msgid "Maximum allowed Listen Interval"
  4692. msgstr ""
  4693. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:814
  4694. msgid "Maximum allowed number of active DHCP leases."
  4695. msgstr ""
  4696. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:828
  4697. msgid "Maximum allowed number of concurrent DNS queries."
  4698. msgstr ""
  4699. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:821
  4700. msgid "Maximum allowed size of EDNS0 UDP packets."
  4701. msgstr ""
  4702. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:126
  4703. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:124
  4704. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:113
  4705. msgid "Maximum amount of seconds to wait for the modem to become ready"
  4706. msgstr ""
  4707. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:91
  4708. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:91
  4709. msgid "Maximum number of FDB entries"
  4710. msgstr ""
  4711. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:673
  4712. msgid "Maximum number of leased addresses."
  4713. msgstr ""
  4714. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:596
  4715. msgid "Maximum snooping table size"
  4716. msgstr ""
  4717. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:805
  4718. msgid "Maximum source port #"
  4719. msgstr ""
  4720. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:850
  4721. msgid ""
  4722. "Maximum time allowed between sending unsolicited <abbr title=\"Router "
  4723. "Advertisement, ICMPv6 Type 134\">RA</abbr>. Default is 600 seconds."
  4724. msgstr ""
  4725. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1008
  4726. msgid "Maximum transmit power"
  4727. msgstr ""
  4728. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:687
  4729. msgid "May prevent VoIP or other services from working."
  4730. msgstr ""
  4731. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:129
  4732. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:188
  4733. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:199
  4734. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:28
  4735. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:171
  4736. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:324
  4737. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:325
  4738. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:326
  4739. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:330
  4740. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:331
  4741. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:332
  4742. msgid "Mbit/s"
  4743. msgstr "मेगाबिट्स प्रति सेकंड"
  4744. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:35
  4745. msgid "Medium"
  4746. msgstr ""
  4747. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:24
  4748. msgid "Memory"
  4749. msgstr ""
  4750. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:73
  4751. msgid "Memory usage (%)"
  4752. msgstr ""
  4753. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:156
  4754. msgid "Mesh ID"
  4755. msgstr ""
  4756. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1057
  4757. msgid "Mesh Id"
  4758. msgstr ""
  4759. #: modules/luci-base/htdocs/luci-static/resources/network.js:3910
  4760. msgid "Mesh Point"
  4761. msgstr ""
  4762. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:41
  4763. msgid "Mesh Routing"
  4764. msgstr ""
  4765. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:41
  4766. msgid "Mesh and routing related options"
  4767. msgstr ""
  4768. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:404
  4769. msgid "Method not found"
  4770. msgstr ""
  4771. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:355
  4772. msgid "Method of link monitoring"
  4773. msgstr ""
  4774. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:424
  4775. msgid "Method to determine link status"
  4776. msgstr ""
  4777. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:83
  4778. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:199
  4779. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:225
  4780. msgid "Metric"
  4781. msgstr ""
  4782. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1034
  4783. msgid ""
  4784. "Metric is an ordinal, where a gateway with 1 is chosen 1st, 2 is chosen 2nd, "
  4785. "3 is chosen 3rd, etc"
  4786. msgstr ""
  4787. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:70
  4788. msgctxt "nft unit"
  4789. msgid "MiB"
  4790. msgstr ""
  4791. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:857
  4792. msgid "Min <abbr title=\"Router Advertisement\">RA</abbr> interval"
  4793. msgstr ""
  4794. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:841
  4795. msgid "Min cache TTL"
  4796. msgstr ""
  4797. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:798
  4798. msgid "Min valid value %s."
  4799. msgstr ""
  4800. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:721
  4801. msgid "Minimum ARP validity time"
  4802. msgstr ""
  4803. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:242
  4804. msgid "Minimum Number of Links"
  4805. msgstr ""
  4806. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:721
  4807. msgid ""
  4808. "Minimum required time in seconds before an ARP entry may be replaced. "
  4809. "Prevents ARP cache thrashing."
  4810. msgstr ""
  4811. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:797
  4812. msgid "Minimum source port #"
  4813. msgstr ""
  4814. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:857
  4815. msgid ""
  4816. "Minimum time allowed between sending unsolicited <abbr title=\"Router "
  4817. "Advertisement, ICMPv6 Type 134\">RA</abbr>. Default is 200 seconds."
  4818. msgstr ""
  4819. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:204
  4820. msgid "Mirror monitor port"
  4821. msgstr ""
  4822. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:203
  4823. msgid "Mirror source port"
  4824. msgstr ""
  4825. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:120
  4826. msgid "Mobile Country Code"
  4827. msgstr ""
  4828. #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:9
  4829. msgid "Mobile Data"
  4830. msgstr ""
  4831. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:123
  4832. msgid "Mobile Network Code"
  4833. msgstr ""
  4834. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1673
  4835. msgid "Mobility Domain"
  4836. msgstr ""
  4837. #: modules/luci-compat/luasrc/view/cbi/wireless_modefreq.htm:182
  4838. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:488
  4839. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:157
  4840. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:180
  4841. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:553
  4842. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1052
  4843. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1972
  4844. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:446
  4845. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:148
  4846. msgid "Mode"
  4847. msgstr ""
  4848. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:56
  4849. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:83
  4850. msgid "Model"
  4851. msgstr ""
  4852. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:81
  4853. msgid "Modem Info"
  4854. msgstr ""
  4855. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:9
  4856. msgid ""
  4857. "Modem connection in progress. Please wait. This process will timeout after 2 "
  4858. "minutes."
  4859. msgstr ""
  4860. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:77
  4861. msgid "Modem default"
  4862. msgstr ""
  4863. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:73
  4864. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:54
  4865. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:51
  4866. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:65
  4867. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:73
  4868. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:57
  4869. msgid "Modem device"
  4870. msgstr ""
  4871. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:66
  4872. msgid "Modem information query failed"
  4873. msgstr ""
  4874. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:126
  4875. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:124
  4876. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:119
  4877. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:113
  4878. msgid "Modem init timeout"
  4879. msgstr ""
  4880. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:21
  4881. msgid "ModemManager"
  4882. msgstr ""
  4883. #: modules/luci-base/htdocs/luci-static/resources/network.js:3907
  4884. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1140
  4885. msgid "Monitor"
  4886. msgstr ""
  4887. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:31
  4888. msgid "More Characters"
  4889. msgstr ""
  4890. #: modules/luci-base/htdocs/luci-static/resources/form.js:2539
  4891. msgid "More…"
  4892. msgstr ""
  4893. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:192
  4894. msgid "Mount Point"
  4895. msgstr ""
  4896. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:144
  4897. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:228
  4898. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:102
  4899. msgid "Mount Points"
  4900. msgstr ""
  4901. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:229
  4902. msgid "Mount Points - Mount Entry"
  4903. msgstr ""
  4904. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:339
  4905. msgid "Mount Points - Swap Entry"
  4906. msgstr ""
  4907. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:228
  4908. msgid ""
  4909. "Mount Points define at which point a memory device will be attached to the "
  4910. "filesystem"
  4911. msgstr ""
  4912. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:154
  4913. msgid "Mount attached devices"
  4914. msgstr ""
  4915. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:162
  4916. msgid "Mount filesystems not specifically configured"
  4917. msgstr ""
  4918. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:332
  4919. msgid "Mount options"
  4920. msgstr ""
  4921. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:293
  4922. msgid "Mount point"
  4923. msgstr ""
  4924. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:158
  4925. msgid "Mount swap not specifically configured"
  4926. msgstr ""
  4927. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:223
  4928. msgid "Mounted file systems"
  4929. msgstr ""
  4930. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:152
  4931. msgid "Move down"
  4932. msgstr ""
  4933. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:151
  4934. msgid "Move up"
  4935. msgstr ""
  4936. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1213
  4937. msgid "Multi To Unicast"
  4938. msgstr ""
  4939. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:89
  4940. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:94
  4941. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:91
  4942. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:96
  4943. msgid "Multicast"
  4944. msgstr ""
  4945. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:99
  4946. msgid "Multicast Mode"
  4947. msgstr ""
  4948. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:772
  4949. msgid "Multicast routing"
  4950. msgstr ""
  4951. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:281
  4952. msgid "Multicast rules"
  4953. msgstr ""
  4954. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:778
  4955. msgid "Multicast to unicast"
  4956. msgstr ""
  4957. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1522
  4958. msgid "Must be in %s format."
  4959. msgstr ""
  4960. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:197
  4961. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:197
  4962. msgid "My Peer"
  4963. msgstr ""
  4964. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1668
  4965. msgid "NAS ID"
  4966. msgstr ""
  4967. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:536
  4968. msgid "NAT action chain \"%h\""
  4969. msgstr ""
  4970. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:87
  4971. msgid "NAT-T Mode"
  4972. msgstr ""
  4973. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:41
  4974. msgid "NAT64 Prefix"
  4975. msgstr ""
  4976. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:843
  4977. msgid "NAT64 prefix"
  4978. msgstr ""
  4979. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:26
  4980. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:35
  4981. msgid "NCM"
  4982. msgstr "NCM"
  4983. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:991
  4984. msgid "NDP-Proxy slave"
  4985. msgstr ""
  4986. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:72
  4987. msgid "NT Domain"
  4988. msgstr ""
  4989. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:951
  4990. msgid "NTP Servers"
  4991. msgstr ""
  4992. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:300
  4993. msgid "NTP server candidates"
  4994. msgstr ""
  4995. #: modules/luci-base/htdocs/luci-static/resources/form.js:2576
  4996. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4234
  4997. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:27
  4998. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:94
  4999. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1180
  5000. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:68
  5001. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:36
  5002. msgid "Name"
  5003. msgstr ""
  5004. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2257
  5005. msgid ""
  5006. "Name for OpenWrt network configuration. (No relation to wireless network "
  5007. "name/SSID)"
  5008. msgstr ""
  5009. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2256
  5010. msgid "Name of the new network"
  5011. msgstr ""
  5012. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:229
  5013. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:229
  5014. msgid ""
  5015. "Name of the outgoing interface to reach the remote VXLAN tunnel endpoint"
  5016. msgstr ""
  5017. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1134
  5018. msgid "Name of the set"
  5019. msgstr ""
  5020. #: protocols/luci-proto-unet/htdocs/luci-static/resources/protocol/unet.js:38
  5021. msgid "Name of the tunnel device"
  5022. msgstr ""
  5023. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:416
  5024. msgid "Names not in {etc_hosts} are answered {not_found}."
  5025. msgstr ""
  5026. #: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:39
  5027. #: themes/luci-theme-openwrt/ucode/template/themes/openwrt.org/header.ut:42
  5028. msgid "Navigation"
  5029. msgstr ""
  5030. #: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:10
  5031. msgid "Nebula Network"
  5032. msgstr ""
  5033. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1730
  5034. msgid "Neighbour Report"
  5035. msgstr ""
  5036. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:713
  5037. msgid "Neighbour cache validity"
  5038. msgstr ""
  5039. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1148
  5040. msgid "Netfilter table name"
  5041. msgstr ""
  5042. #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:45
  5043. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1085
  5044. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2410
  5045. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:386
  5046. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:54
  5047. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:232
  5048. msgid "Network"
  5049. msgstr ""
  5050. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:104
  5051. msgid "Network Coding"
  5052. msgstr ""
  5053. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:76
  5054. msgid "Network Mode"
  5055. msgstr ""
  5056. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:97
  5057. msgid "Network Registration"
  5058. msgstr ""
  5059. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2250
  5060. msgid "Network SSID"
  5061. msgstr ""
  5062. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:60
  5063. msgid "Network address"
  5064. msgstr ""
  5065. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:179
  5066. msgid "Network and its mask that define the size of the destination"
  5067. msgstr ""
  5068. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:184
  5069. msgid "Network and its mask that define which source addresses use this route"
  5070. msgstr ""
  5071. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:866
  5072. msgid "Network boot image"
  5073. msgstr ""
  5074. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:381
  5075. msgid "Network bridge configuration migration"
  5076. msgstr ""
  5077. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:397
  5078. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1501
  5079. msgid "Network device"
  5080. msgstr ""
  5081. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:7
  5082. msgid "Network device activity (kernel: netdev)"
  5083. msgstr ""
  5084. #: modules/luci-base/htdocs/luci-static/resources/network.js:15
  5085. #: modules/luci-compat/luasrc/model/network.lua:33
  5086. msgid "Network device is not present"
  5087. msgstr ""
  5088. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:645
  5089. msgid "Network device table \"%h\""
  5090. msgstr ""
  5091. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:78
  5092. msgctxt "nft @nh,off,len"
  5093. msgid "Network header bits %d-%d"
  5094. msgstr ""
  5095. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:415
  5096. msgid "Network ifname configuration migration"
  5097. msgstr ""
  5098. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:57
  5099. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62
  5100. msgid "Network interface"
  5101. msgstr ""
  5102. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:773
  5103. msgid "Never"
  5104. msgstr ""
  5105. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:16
  5106. msgctxt "No WireGuard peer handshake yet"
  5107. msgid "Never"
  5108. msgstr ""
  5109. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:415
  5110. msgid "Never forward DNS queries which lack dots or domain parts."
  5111. msgstr ""
  5112. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:424
  5113. msgid ""
  5114. "Never forward these matching domains or subdomains; resolve from DHCP or "
  5115. "hosts files only."
  5116. msgstr ""
  5117. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:380
  5118. msgctxt "Dnsmasq instance"
  5119. msgid "New instance name…"
  5120. msgstr ""
  5121. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1235
  5122. msgid "New interface for \"%s\" can not be created: %s"
  5123. msgstr ""
  5124. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1183
  5125. msgid "New interface name…"
  5126. msgstr ""
  5127. #: modules/luci-compat/luasrc/view/cbi/delegator.htm:11
  5128. msgid "Next »"
  5129. msgstr ""
  5130. #: modules/luci-base/htdocs/luci-static/resources/form.js:4181
  5131. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:303
  5132. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:351
  5133. msgid "No"
  5134. msgstr ""
  5135. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:642
  5136. msgid "No DHCP Server configured for this interface"
  5137. msgstr ""
  5138. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:202
  5139. msgid "No Data"
  5140. msgstr ""
  5141. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1465
  5142. msgid "No Encryption"
  5143. msgstr ""
  5144. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:171
  5145. msgid "No Host Routes"
  5146. msgstr ""
  5147. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:89
  5148. msgid "No NAT-T"
  5149. msgstr ""
  5150. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:79
  5151. msgid "No RX signal"
  5152. msgstr ""
  5153. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:148
  5154. msgid "No WireGuard interfaces configured."
  5155. msgstr ""
  5156. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:16
  5157. msgid "No allowed mode configuration found."
  5158. msgstr ""
  5159. #: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:69
  5160. #: themes/luci-theme-material/ucode/template/themes/material/header.ut:89
  5161. #: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:65
  5162. #: themes/luci-theme-openwrt/ucode/template/themes/openwrt.org/header.ut:82
  5163. msgid ""
  5164. "No changes to settings will be stored and are lost after rebooting. This "
  5165. "mode should only be used to install a firmware upgrade"
  5166. msgstr ""
  5167. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69
  5168. msgid "No client associated"
  5169. msgstr ""
  5170. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:27
  5171. msgid "No control device specified"
  5172. msgstr ""
  5173. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3265
  5174. msgctxt "empty table placeholder"
  5175. msgid "No data"
  5176. msgstr ""
  5177. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:406
  5178. msgid "No data received"
  5179. msgstr ""
  5180. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:750
  5181. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:757
  5182. msgid "No enforcement"
  5183. msgstr ""
  5184. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:239
  5185. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:242
  5186. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:245
  5187. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:248
  5188. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:251
  5189. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:254
  5190. msgid "No entries available"
  5191. msgstr ""
  5192. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2951
  5193. msgid "No entries in this directory"
  5194. msgstr ""
  5195. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:858
  5196. msgid ""
  5197. "No fixed interface listening port defined, peers might not be able to "
  5198. "initiate connections to this WireGuard instance!"
  5199. msgstr ""
  5200. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:86
  5201. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:91
  5202. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:88
  5203. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:93
  5204. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:70
  5205. msgid "No host route"
  5206. msgstr ""
  5207. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:792
  5208. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:142
  5209. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:362
  5210. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:59
  5211. msgid "No information available"
  5212. msgstr ""
  5213. #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:66
  5214. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:8
  5215. msgid "No matching prefix delegation"
  5216. msgstr ""
  5217. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:145
  5218. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:148
  5219. msgid "No more slaves available"
  5220. msgstr ""
  5221. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:194
  5222. msgid "No more slaves available, can not save interface"
  5223. msgstr ""
  5224. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:730
  5225. msgid "No negative cache"
  5226. msgstr ""
  5227. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:696
  5228. msgid "No nftables ruleset loaded."
  5229. msgstr ""
  5230. #: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:58
  5231. #: themes/luci-theme-material/ucode/template/themes/material/header.ut:78
  5232. #: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:54
  5233. #: themes/luci-theme-openwrt/ucode/template/themes/openwrt.org/header.ut:71
  5234. msgid "No password set!"
  5235. msgstr ""
  5236. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:84
  5237. msgid "No peers connected"
  5238. msgstr ""
  5239. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:497
  5240. msgid "No peers defined yet."
  5241. msgstr ""
  5242. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:15
  5243. msgid "No preferred mode configuration found."
  5244. msgstr ""
  5245. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:146
  5246. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:283
  5247. msgid "No public keys present yet."
  5248. msgstr ""
  5249. #: modules/luci-base/htdocs/luci-static/resources/tools/views.js:20
  5250. msgid "No related logs yet!"
  5251. msgstr ""
  5252. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:613
  5253. msgctxt "nft chain is empty"
  5254. msgid "No rules in this chain"
  5255. msgstr ""
  5256. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:91
  5257. msgid "No rules in this chain."
  5258. msgstr ""
  5259. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:390
  5260. msgid "No validation or filtering"
  5261. msgstr ""
  5262. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:139
  5263. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1280
  5264. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:259
  5265. msgid "No zone assigned"
  5266. msgstr ""
  5267. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:246
  5268. msgid "Node info"
  5269. msgstr ""
  5270. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:250
  5271. msgid "Node info privacy"
  5272. msgstr ""
  5273. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:58
  5274. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:84
  5275. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:187
  5276. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:235
  5277. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:279
  5278. msgid "Noise"
  5279. msgstr ""
  5280. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:30
  5281. msgid "Noise Margin"
  5282. msgstr ""
  5283. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:272
  5284. msgid "Noise:"
  5285. msgstr ""
  5286. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:537
  5287. msgid "Non-wildcard"
  5288. msgstr ""
  5289. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:159
  5290. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:183
  5291. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:80
  5292. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:85
  5293. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:114
  5294. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:182
  5295. msgid "None"
  5296. msgstr ""
  5297. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1016
  5298. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:198
  5299. msgid "Normal"
  5300. msgstr ""
  5301. #: modules/luci-base/ucode/template/error404.ut:9
  5302. msgid "Not Found"
  5303. msgstr ""
  5304. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:211
  5305. msgctxt "VLAN port state"
  5306. msgid "Not Member"
  5307. msgstr ""
  5308. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:75
  5309. msgid "Not associated"
  5310. msgstr ""
  5311. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:36
  5312. msgid "Not connected"
  5313. msgstr ""
  5314. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:46
  5315. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:83
  5316. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:107
  5317. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:133
  5318. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:301
  5319. msgid "Not present"
  5320. msgstr ""
  5321. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:92
  5322. msgid "Not started on boot"
  5323. msgstr ""
  5324. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:409
  5325. msgid "Not supported"
  5326. msgstr ""
  5327. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:714
  5328. msgid "Note: IPv4 only."
  5329. msgstr ""
  5330. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1888
  5331. msgid ""
  5332. "Note: Some wireless drivers do not fully support 802.11w. E.g. mwlwifi may "
  5333. "have problems"
  5334. msgstr ""
  5335. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1922
  5336. msgid ""
  5337. "Note: Workaround mode allows a STA that claims OCV capability to connect "
  5338. "even if the STA doesn't send OCI or negotiate PMF."
  5339. msgstr ""
  5340. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1571
  5341. msgid ""
  5342. "Note: this setting is for local services on the device only (not for "
  5343. "forwarding)."
  5344. msgstr ""
  5345. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:558
  5346. msgid ""
  5347. "Note: you may also need a DHCP Proxy (currently unavailable) when specifying "
  5348. "a non-standard Relay To port(<code>addr#port</code>)."
  5349. msgstr ""
  5350. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:142
  5351. msgid "Notes"
  5352. msgstr ""
  5353. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:188
  5354. msgid "Notice"
  5355. msgstr ""
  5356. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:135
  5357. msgid "Nslookup"
  5358. msgstr ""
  5359. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:338
  5360. msgid "Number of IGMP membership reports"
  5361. msgstr ""
  5362. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:835
  5363. msgid "Number of cached DNS entries, 10000 is maximum, 0 is no caching."
  5364. msgstr ""
  5365. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:316
  5366. msgid "Number of peer notifications after failover event"
  5367. msgstr ""
  5368. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:69
  5369. msgid "Obfuscated Group Password"
  5370. msgstr ""
  5371. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:61
  5372. msgid "Obfuscated Password"
  5373. msgstr ""
  5374. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:118
  5375. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:111
  5376. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:49
  5377. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:94
  5378. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:80
  5379. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:54
  5380. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:67
  5381. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:93
  5382. msgid "Obtain IPv6 address"
  5383. msgstr ""
  5384. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/none.js:19
  5385. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:87
  5386. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:357
  5387. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:342
  5388. msgid "Off"
  5389. msgstr ""
  5390. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/timer.js:18
  5391. msgid "Off-State Delay"
  5392. msgstr ""
  5393. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1560
  5394. msgid ""
  5395. "Off: <code>vlanXXX</code>, e.g., <code>vlan1</code>. On: "
  5396. "<code>vlan_tagged_interface.XXX</code>, e.g. <code>eth0.1</code>."
  5397. msgstr ""
  5398. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:652
  5399. msgid ""
  5400. "Off: use all files in the directory including the instance specific hosts "
  5401. "file"
  5402. msgstr ""
  5403. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/none.js:19
  5404. msgid "On"
  5405. msgstr ""
  5406. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:112
  5407. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:112
  5408. msgid "On a l2miss, send ARP"
  5409. msgstr ""
  5410. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:118
  5411. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:118
  5412. msgid "On a l3miss, send ARP for IP -> mac resolution"
  5413. msgstr ""
  5414. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/timer.js:12
  5415. msgid "On-State Delay"
  5416. msgstr ""
  5417. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:115
  5418. msgid "On-link"
  5419. msgstr ""
  5420. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:651
  5421. msgid "On: use instance specific hosts file only"
  5422. msgstr ""
  5423. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1219
  5424. msgid "One of hostname or MAC address must be specified!"
  5425. msgstr ""
  5426. #: modules/luci-base/htdocs/luci-static/resources/validation.js:520
  5427. msgid "One of the following: %s"
  5428. msgstr ""
  5429. #: modules/luci-compat/luasrc/view/cbi/nullsection.htm:17
  5430. #: modules/luci-compat/luasrc/view/cbi/ucisection.htm:22
  5431. msgid "One or more fields contain invalid values!"
  5432. msgstr ""
  5433. #: modules/luci-compat/luasrc/view/cbi/map.htm:32
  5434. msgid "One or more invalid/required values on tab"
  5435. msgstr ""
  5436. #: modules/luci-compat/luasrc/view/cbi/nullsection.htm:19
  5437. #: modules/luci-compat/luasrc/view/cbi/ucisection.htm:24
  5438. msgid "One or more required fields have no value!"
  5439. msgstr ""
  5440. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:908
  5441. msgid "Only DHCP Clients with this tag are sent this boot option."
  5442. msgstr ""
  5443. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:619
  5444. msgid "Only accept replies via"
  5445. msgstr ""
  5446. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:769
  5447. msgid "Only allow communication with non-isolated bridge ports when enabled"
  5448. msgstr ""
  5449. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:236
  5450. msgid ""
  5451. "Only if current active slave fails and the primary slave is up (failure, 2)"
  5452. msgstr ""
  5453. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:97
  5454. msgid "Only interfaces using this table (via override) will use this route."
  5455. msgstr ""
  5456. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:682
  5457. msgid "Open iptables rules overview…"
  5458. msgstr ""
  5459. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:474
  5460. msgid "Open list..."
  5461. msgstr ""
  5462. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:65
  5463. msgid "OpenConnect"
  5464. msgstr ""
  5465. #: modules/luci-compat/luasrc/model/network/proto_openconnect.lua:9
  5466. msgid "OpenConnect (CISCO AnyConnect)"
  5467. msgstr ""
  5468. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:63
  5469. msgid "OpenFortivpn"
  5470. msgstr ""
  5471. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:723
  5472. msgid ""
  5473. "Operate in <em>relay mode</em> if a designated master interface is "
  5474. "configured and active, otherwise disable <abbr title=\"Neighbour Discovery "
  5475. "Protocol\">NDP</abbr> proxying."
  5476. msgstr ""
  5477. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:722
  5478. msgid ""
  5479. "Operate in <em>relay mode</em> if a designated master interface is "
  5480. "configured and active, otherwise fall back to <em>server mode</em>."
  5481. msgstr ""
  5482. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:724
  5483. msgid ""
  5484. "Operate in <em>relay mode</em> if an upstream IPv6 prefix is present, "
  5485. "otherwise disable service."
  5486. msgstr ""
  5487. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1922
  5488. msgid "Operating Channel Validation"
  5489. msgstr ""
  5490. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1001
  5491. msgid "Operating frequency"
  5492. msgstr ""
  5493. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:100
  5494. msgid "Operator"
  5495. msgstr ""
  5496. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:101
  5497. msgid "Operator Code"
  5498. msgstr ""
  5499. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:135
  5500. msgid "Operator Name"
  5501. msgstr ""
  5502. #: modules/luci-base/htdocs/luci-static/resources/form.js:2008
  5503. #: modules/luci-base/htdocs/luci-static/resources/form.js:4193
  5504. msgid "Option \"%s\" contains an invalid input value."
  5505. msgstr ""
  5506. #: modules/luci-base/htdocs/luci-static/resources/form.js:2023
  5507. msgid "Option \"%s\" must not be empty."
  5508. msgstr ""
  5509. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4475
  5510. msgid "Option changed"
  5511. msgstr ""
  5512. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4477
  5513. msgid "Option removed"
  5514. msgstr ""
  5515. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1549
  5516. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1890
  5517. msgid "Optional"
  5518. msgstr ""
  5519. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1177
  5520. msgid "Optional hostname to assign"
  5521. msgstr ""
  5522. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:246
  5523. msgid ""
  5524. "Optional node info. This must be a { \"key\": \"value\", ... } map or set as "
  5525. "null. This is entirely optional but, if set, is visible to the whole network "
  5526. "on request."
  5527. msgstr ""
  5528. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:142
  5529. msgid "Optional, free-form notes about this device"
  5530. msgstr ""
  5531. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:147
  5532. msgid "Optional, in seconds. If set to '0', no reconnect is attempted."
  5533. msgstr ""
  5534. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:187
  5535. msgid ""
  5536. "Optional. 32-bit mark for outgoing encrypted packets. Enter value in hex, "
  5537. "starting with <code>0x</code>."
  5538. msgstr ""
  5539. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1101
  5540. msgid ""
  5541. "Optional. Allowed values: 'eui64', 'random', fixed value like '::1' or "
  5542. "'::1:2'. When IPv6 prefix (like 'a:b:c:d::') is received from a delegating "
  5543. "server, use the suffix (like '::1') to form the IPv6 address ('a:b:c:d::1') "
  5544. "for the interface."
  5545. msgstr ""
  5546. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:587
  5547. msgid ""
  5548. "Optional. Base64-encoded preshared key. Adds in an additional layer of "
  5549. "symmetric-key cryptography for post-quantum resistance."
  5550. msgstr ""
  5551. #: protocols/luci-proto-xfrm/htdocs/luci-static/resources/protocol/xfrm.js:42
  5552. msgid "Optional. Bind to a specific interface."
  5553. msgstr ""
  5554. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:644
  5555. msgid "Optional. Create routes for Allowed IPs for this peer."
  5556. msgstr ""
  5557. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:196
  5558. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:196
  5559. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:505
  5560. msgid "Optional. Description of peer."
  5561. msgstr ""
  5562. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:171
  5563. msgid "Optional. Do not create host routes to peers."
  5564. msgstr ""
  5565. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:647
  5566. msgid ""
  5567. "Optional. Host of peer. Names are resolved prior to bringing up the "
  5568. "interface."
  5569. msgstr ""
  5570. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:609
  5571. msgid ""
  5572. "Optional. IP addresses and prefixes that this peer is allowed to use inside "
  5573. "the tunnel. Usually the peer's tunnel IP addresses and the networks the peer "
  5574. "routes through the tunnel."
  5575. msgstr ""
  5576. #: protocols/luci-proto-xfrm/htdocs/luci-static/resources/protocol/xfrm.js:46
  5577. msgid "Optional. Maximum Transmission Unit of the XFRM interface."
  5578. msgstr ""
  5579. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:182
  5580. msgid "Optional. Maximum Transmission Unit of tunnel interface."
  5581. msgstr ""
  5582. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:663
  5583. msgid "Optional. Port of peer."
  5584. msgstr ""
  5585. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:578
  5586. msgid ""
  5587. "Optional. Private key of the WireGuard peer. The key is not required for "
  5588. "establishing a connection but allows generating a peer configuration or QR "
  5589. "code if available. It can be removed after the configuration has been "
  5590. "exported."
  5591. msgstr ""
  5592. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:668
  5593. msgid ""
  5594. "Optional. Seconds between keep alive messages. Default is 0 (disabled). "
  5595. "Recommended value if this device is behind a NAT is 25."
  5596. msgstr ""
  5597. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:162
  5598. msgid "Optional. UDP port used for outgoing and incoming packets."
  5599. msgstr ""
  5600. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:72
  5601. msgid "Options"
  5602. msgstr ""
  5603. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:125
  5604. msgid "Options:"
  5605. msgstr ""
  5606. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:969
  5607. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1001
  5608. msgid "Ordinal: lower comes first."
  5609. msgstr ""
  5610. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:83
  5611. msgid "Ordinal: routes with the lowest metric match first"
  5612. msgstr ""
  5613. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:55
  5614. msgid "Originator Interval"
  5615. msgstr ""
  5616. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:351
  5617. msgid "Other:"
  5618. msgstr ""
  5619. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:69
  5620. msgid "Out"
  5621. msgstr ""
  5622. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:277
  5623. msgid "Outbound:"
  5624. msgstr ""
  5625. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:101
  5626. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:106
  5627. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:103
  5628. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:108
  5629. msgid "Outgoing checksum"
  5630. msgstr ""
  5631. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:161
  5632. msgid "Outgoing interface"
  5633. msgstr ""
  5634. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:96
  5635. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:101
  5636. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:98
  5637. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:103
  5638. #: protocols/luci-proto-vti/htdocs/luci-static/resources/protocol/vti.js:68
  5639. msgid "Outgoing key"
  5640. msgstr ""
  5641. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:103
  5642. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:108
  5643. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:105
  5644. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:110
  5645. msgid "Outgoing serialization"
  5646. msgstr ""
  5647. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:50
  5648. msgid "Output Interface"
  5649. msgstr ""
  5650. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:68
  5651. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:174
  5652. msgid "Output zone"
  5653. msgstr ""
  5654. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:16
  5655. msgid "Overlap"
  5656. msgstr ""
  5657. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1038
  5658. msgid "Override IPv4 routing table"
  5659. msgstr ""
  5660. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1043
  5661. msgid "Override IPv6 routing table"
  5662. msgstr ""
  5663. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv_hardif.js:54
  5664. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:64
  5665. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:69
  5666. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:69
  5667. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:74
  5668. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:53
  5669. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:128
  5670. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:144
  5671. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:193
  5672. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:57
  5673. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:132
  5674. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:118
  5675. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:96
  5676. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:105
  5677. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:117
  5678. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:66
  5679. #: protocols/luci-proto-vti/htdocs/luci-static/resources/protocol/vti.js:55
  5680. msgid "Override MTU"
  5681. msgstr ""
  5682. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:74
  5683. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:79
  5684. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:63
  5685. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:142
  5686. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:142
  5687. msgid "Override TOS"
  5688. msgstr ""
  5689. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:69
  5690. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:74
  5691. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:74
  5692. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:79
  5693. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:58
  5694. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:137
  5695. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:137
  5696. msgid "Override TTL"
  5697. msgstr ""
  5698. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1228
  5699. msgid ""
  5700. "Override default MAC address - the range of usable addresses might be "
  5701. "limited by the driver"
  5702. msgstr ""
  5703. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1220
  5704. msgid "Override default interface name"
  5705. msgstr ""
  5706. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:167
  5707. msgid "Override the gateway in DHCP responses"
  5708. msgstr ""
  5709. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:690
  5710. msgid ""
  5711. "Override the netmask sent to clients. Normally it is calculated from the "
  5712. "subnet that is served."
  5713. msgstr ""
  5714. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:179
  5715. msgid "Override the table used for internal routes"
  5716. msgstr ""
  5717. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:3
  5718. msgid "Overview"
  5719. msgstr ""
  5720. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2795
  5721. msgid "Overwrite existing file \"%s\" ?"
  5722. msgstr ""
  5723. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:342
  5724. msgid "Overwrite the current settings with the imported configuration?"
  5725. msgstr ""
  5726. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:98
  5727. msgid "Own Numbers"
  5728. msgstr ""
  5729. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:70
  5730. msgid "Owner"
  5731. msgstr ""
  5732. #: modules/luci-base/htdocs/luci-static/resources/network.js:3911
  5733. msgid "P2P Client"
  5734. msgstr ""
  5735. #: modules/luci-base/htdocs/luci-static/resources/network.js:3912
  5736. msgid "P2P Go"
  5737. msgstr ""
  5738. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:78
  5739. msgid "PAP"
  5740. msgstr ""
  5741. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:77
  5742. msgid "PAP/CHAP"
  5743. msgstr ""
  5744. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:111
  5745. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:88
  5746. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:132
  5747. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:107
  5748. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:45
  5749. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:90
  5750. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:76
  5751. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:44
  5752. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:63
  5753. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:101
  5754. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:50
  5755. msgid "PAP/CHAP password"
  5756. msgstr ""
  5757. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:109
  5758. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:83
  5759. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:127
  5760. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:105
  5761. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:43
  5762. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:88
  5763. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:74
  5764. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:42
  5765. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:61
  5766. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:96
  5767. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:48
  5768. msgid "PAP/CHAP username"
  5769. msgstr ""
  5770. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:94
  5771. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:121
  5772. msgid "PDP Type"
  5773. msgstr ""
  5774. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:69
  5775. msgid "PID"
  5776. msgstr ""
  5777. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:106
  5778. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:73
  5779. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:76
  5780. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:102
  5781. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:86
  5782. msgid "PIN"
  5783. msgstr ""
  5784. #: modules/luci-base/htdocs/luci-static/resources/network.js:21
  5785. #: modules/luci-compat/luasrc/model/network.lua:39
  5786. msgid "PIN code rejected"
  5787. msgstr ""
  5788. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1708
  5789. msgid "PMK R1 Push"
  5790. msgstr ""
  5791. #: modules/luci-compat/luasrc/model/network/proto_ppp.lua:13
  5792. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:43
  5793. msgid "PPP"
  5794. msgstr "PPP"
  5795. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:58
  5796. msgid "PPPoA Encapsulation"
  5797. msgstr ""
  5798. #: modules/luci-compat/luasrc/model/network/proto_ppp.lua:19
  5799. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:28
  5800. msgid "PPPoATM"
  5801. msgstr "PPPoATM"
  5802. #: modules/luci-compat/luasrc/model/network/proto_ppp.lua:17
  5803. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:28
  5804. msgid "PPPoE"
  5805. msgstr "PPPoE"
  5806. #: modules/luci-compat/luasrc/model/network/proto_pppossh.lua:9
  5807. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:28
  5808. msgid "PPPoSSH"
  5809. msgstr "PPPoSSH"
  5810. #: modules/luci-compat/luasrc/model/network/proto_ppp.lua:15
  5811. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:28
  5812. msgid "PPtP"
  5813. msgstr ""
  5814. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:73
  5815. msgid "PSID offset"
  5816. msgstr ""
  5817. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:70
  5818. msgid "PSID-bits length"
  5819. msgstr ""
  5820. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:559
  5821. msgctxt "Label indicating that WireGuard peer uses a PSK"
  5822. msgid "PSK"
  5823. msgstr ""
  5824. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1618
  5825. msgid "PTM/EFM (Packet Transfer Mode)"
  5826. msgstr ""
  5827. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:400
  5828. msgid "PXE/TFTP"
  5829. msgstr ""
  5830. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:103
  5831. msgid "Packet Service State"
  5832. msgstr ""
  5833. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1561
  5834. msgid "Packet Steering"
  5835. msgstr ""
  5836. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:25
  5837. msgctxt "nft meta mark"
  5838. msgid "Packet mark"
  5839. msgstr ""
  5840. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:27
  5841. msgctxt "nft meta time"
  5842. msgid "Packet receive time"
  5843. msgstr ""
  5844. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:54
  5845. msgid "Packets"
  5846. msgstr ""
  5847. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:282
  5848. msgid "Packets To Transmit Before Moving To Next Slave"
  5849. msgstr ""
  5850. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:90
  5851. msgid "Packets exceeding this value may be fragmented"
  5852. msgstr ""
  5853. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:291
  5854. msgid "Part of network:"
  5855. msgid_plural "Part of networks:"
  5856. msgstr[0] ""
  5857. msgstr[1] ""
  5858. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:139
  5859. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1280
  5860. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:259
  5861. msgid "Part of zone %q"
  5862. msgstr ""
  5863. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:492
  5864. msgctxt "MACVLAN mode"
  5865. msgid "Pass-through (Mirror physical device to single MAC VLAN)"
  5866. msgstr ""
  5867. #: modules/luci-base/ucode/template/sysauth.ut:29
  5868. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1881
  5869. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:51
  5870. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:148
  5871. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:103
  5872. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:58
  5873. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:298
  5874. #: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:19
  5875. msgid "Password"
  5876. msgstr ""
  5877. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:27
  5878. msgid "Password authentication"
  5879. msgstr ""
  5880. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1813
  5881. msgid "Password of Private Key"
  5882. msgstr ""
  5883. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1871
  5884. msgid "Password of inner Private Key"
  5885. msgstr ""
  5886. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:31
  5887. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:33
  5888. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:35
  5889. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:37
  5890. msgid "Password strength"
  5891. msgstr ""
  5892. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:151
  5893. msgid "Password2"
  5894. msgstr ""
  5895. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:266
  5896. msgid "Paste or drag SSH key file…"
  5897. msgstr ""
  5898. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:431
  5899. msgid "Paste or drag WireGuard peer configuration (wg0.conf) file…"
  5900. msgstr ""
  5901. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:424
  5902. msgid ""
  5903. "Paste or drag a WireGuard configuration (commonly <em>wg0.conf</em>) from "
  5904. "another system below to create a matching peer entry allowing that system to "
  5905. "connect to the local WireGuard interface."
  5906. msgstr ""
  5907. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:430
  5908. msgid "Paste or drag supplied WireGuard configuration file…"
  5909. msgstr ""
  5910. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1792
  5911. msgid "Path to CA-Certificate"
  5912. msgstr ""
  5913. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1807
  5914. msgid "Path to Client-Certificate"
  5915. msgstr ""
  5916. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1810
  5917. msgid "Path to Private Key"
  5918. msgstr ""
  5919. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1850
  5920. msgid "Path to inner CA-Certificate"
  5921. msgstr ""
  5922. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1865
  5923. msgid "Path to inner Client-Certificate"
  5924. msgstr ""
  5925. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1868
  5926. msgid "Path to inner Private Key"
  5927. msgstr ""
  5928. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2727
  5929. msgid "Paused"
  5930. msgstr ""
  5931. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:273
  5932. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:283
  5933. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:337
  5934. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:347
  5935. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:357
  5936. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:242
  5937. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:252
  5938. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:262
  5939. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:268
  5940. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:278
  5941. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:296
  5942. msgid "Peak:"
  5943. msgstr ""
  5944. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:74
  5945. msgid "Peer"
  5946. msgstr ""
  5947. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:51
  5948. msgid "Peer Details"
  5949. msgstr ""
  5950. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:210
  5951. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:241
  5952. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:210
  5953. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:241
  5954. msgid "Peer IP"
  5955. msgstr ""
  5956. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:89
  5957. msgid "Peer IP address to assign"
  5958. msgstr ""
  5959. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:667
  5960. msgid "Peer MAC address"
  5961. msgstr ""
  5962. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:276
  5963. msgid "Peer URI"
  5964. msgstr ""
  5965. #: modules/luci-base/htdocs/luci-static/resources/network.js:14
  5966. #: modules/luci-compat/luasrc/model/network.lua:32
  5967. msgid "Peer address is missing"
  5968. msgstr ""
  5969. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:270
  5970. msgid "Peer addresses"
  5971. msgstr ""
  5972. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:648
  5973. msgid "Peer device name"
  5974. msgstr ""
  5975. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:279
  5976. msgid "Peer interface"
  5977. msgstr ""
  5978. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:200
  5979. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:254
  5980. msgid "Peers"
  5981. msgstr ""
  5982. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:80
  5983. msgid "Perfect Forward Secrecy"
  5984. msgstr ""
  5985. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:103
  5986. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:108
  5987. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:105
  5988. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:110
  5989. msgid "Perform outgoing packets serialization (optional)."
  5990. msgstr ""
  5991. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:34
  5992. msgid "Perform reboot"
  5993. msgstr ""
  5994. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:408
  5995. msgid "Perform reset"
  5996. msgstr ""
  5997. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:407
  5998. msgid "Permission denied"
  5999. msgstr ""
  6000. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:668
  6001. msgid "Persistent Keep Alive"
  6002. msgstr ""
  6003. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:147
  6004. msgid "Persistent reconnect interval"
  6005. msgstr ""
  6006. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:321
  6007. msgid "PersistentKeepAlive setting is invalid"
  6008. msgstr ""
  6009. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:290
  6010. msgid "Phy Rate:"
  6011. msgstr ""
  6012. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:469
  6013. msgid "Physical Settings"
  6014. msgstr ""
  6015. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:87
  6016. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:88
  6017. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:98
  6018. msgid "Ping"
  6019. msgstr ""
  6020. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:49
  6021. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:50
  6022. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:86
  6023. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:87
  6024. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:138
  6025. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:64
  6026. msgid "Pkts."
  6027. msgstr ""
  6028. #: modules/luci-base/ucode/template/sysauth.ut:19
  6029. msgid "Please enter your username and password."
  6030. msgstr ""
  6031. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4211
  6032. msgid "Please select the file to upload."
  6033. msgstr ""
  6034. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:54
  6035. msgid "Policy"
  6036. msgstr ""
  6037. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:594
  6038. msgctxt "Chain hook policy"
  6039. msgid "Policy: <strong>%h</strong> (%h)"
  6040. msgstr ""
  6041. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:964
  6042. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:23
  6043. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:223
  6044. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:223
  6045. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:294
  6046. msgid "Port"
  6047. msgstr ""
  6048. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:137
  6049. msgctxt "WireGuard listen port"
  6050. msgid "Port %d"
  6051. msgstr ""
  6052. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:293
  6053. msgid "Port is not part of any network"
  6054. msgstr ""
  6055. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:769
  6056. msgid "Port isolation"
  6057. msgstr ""
  6058. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:299
  6059. msgid "Port status"
  6060. msgstr ""
  6061. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:278
  6062. msgid "Port status:"
  6063. msgstr ""
  6064. #: modules/luci-base/htdocs/luci-static/resources/validation.js:546
  6065. msgid "Potential negation of: %s"
  6066. msgstr ""
  6067. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:89
  6068. msgid "Power State"
  6069. msgstr ""
  6070. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:78
  6071. msgid "Prefer LTE"
  6072. msgstr ""
  6073. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:79
  6074. msgid "Prefer UMTS"
  6075. msgstr ""
  6076. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:995
  6077. msgid "Preferred lifetime for a prefix."
  6078. msgstr ""
  6079. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:108
  6080. msgid "Preferred network technology"
  6081. msgstr ""
  6082. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:37
  6083. msgid "Prefix Delegated"
  6084. msgstr ""
  6085. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:199
  6086. msgid "Prefix suppressor"
  6087. msgstr ""
  6088. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:587
  6089. msgid "Preshared Key"
  6090. msgstr ""
  6091. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:558
  6092. msgid "Preshared key in use"
  6093. msgstr ""
  6094. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:295
  6095. msgid "PresharedKey setting is invalid"
  6096. msgstr ""
  6097. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:130
  6098. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:102
  6099. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:88
  6100. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:62
  6101. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:75
  6102. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:98
  6103. msgid ""
  6104. "Presume peer to be dead after given amount of LCP echo failures, use 0 to "
  6105. "ignore failures"
  6106. msgstr ""
  6107. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1216
  6108. msgid "Prevents client-to-client communication"
  6109. msgstr ""
  6110. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:61
  6111. msgid ""
  6112. "Prevents one wireless client to talk to another. This setting only affects "
  6113. "packets without any VLAN tag (untagged packets)."
  6114. msgstr ""
  6115. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:200
  6116. msgid ""
  6117. "Prevents overly broad routes being considered. Setting 16 would "
  6118. "consider /17, /24, /28 or more specific routes yet ignore /16, /8, /0 "
  6119. "(default) routes"
  6120. msgstr ""
  6121. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:218
  6122. msgid "Primary Slave"
  6123. msgstr ""
  6124. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:235
  6125. msgid ""
  6126. "Primary becomes active slave when it comes back up if speed and duplex "
  6127. "better than current slave (better, 1)"
  6128. msgstr ""
  6129. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:234
  6130. msgid "Primary becomes active slave whenever it comes back up (always, 0)"
  6131. msgstr ""
  6132. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:562
  6133. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:969
  6134. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1001
  6135. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:135
  6136. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:207
  6137. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:233
  6138. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:146
  6139. msgid "Priority"
  6140. msgstr ""
  6141. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:553
  6142. msgctxt "Label indicating that WireGuard peer private key is stored"
  6143. msgid "Private"
  6144. msgstr ""
  6145. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:490
  6146. msgctxt "MACVLAN mode"
  6147. msgid "Private (Prevent communication between MAC VLANs)"
  6148. msgstr ""
  6149. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:137
  6150. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:578
  6151. msgid "Private Key"
  6152. msgstr ""
  6153. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1478
  6154. msgid ""
  6155. "Private Pre-Shared Key (PPSK) allows the use of different Pre-Shared Key for "
  6156. "each STA MAC address. Private MAC PSKs are stored on the RADIUS server."
  6157. msgstr ""
  6158. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:230
  6159. msgid "Private key"
  6160. msgstr ""
  6161. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:552
  6162. msgid "Private key present"
  6163. msgstr ""
  6164. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:283
  6165. msgid "PrivateKey setting is missing or invalid"
  6166. msgstr ""
  6167. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:64
  6168. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:93
  6169. msgid "Processes"
  6170. msgstr ""
  6171. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:67
  6172. msgid "Prot."
  6173. msgstr ""
  6174. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:82
  6175. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:549
  6176. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1197
  6177. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:387
  6178. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:36
  6179. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:201
  6180. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:227
  6181. msgid "Protocol"
  6182. msgstr ""
  6183. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:282
  6184. msgid "Provide NTP server"
  6185. msgstr ""
  6186. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:916
  6187. msgid ""
  6188. "Provide a DHCPv6 server on this interface and reply to DHCPv6 solicitations "
  6189. "and requests."
  6190. msgstr ""
  6191. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:944
  6192. msgid "Provide new network"
  6193. msgstr ""
  6194. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:288
  6195. msgid ""
  6196. "Provide the NTP server to the selected interface or, if unspecified, to all "
  6197. "interfaces"
  6198. msgstr ""
  6199. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:154
  6200. msgid "Proxy Server"
  6201. msgstr ""
  6202. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1764
  6203. msgid "ProxyARP"
  6204. msgstr ""
  6205. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1139
  6206. msgid "Pseudo Ad-Hoc (ahdemo)"
  6207. msgstr ""
  6208. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:144
  6209. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:573
  6210. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:37
  6211. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:54
  6212. msgid "Public Key"
  6213. msgstr ""
  6214. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:235
  6215. msgid "Public key"
  6216. msgstr ""
  6217. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:535
  6218. msgid "Public key is missing"
  6219. msgstr ""
  6220. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:544
  6221. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:101
  6222. msgctxt "Tooltip displaying full WireGuard peer public key"
  6223. msgid "Public key: %h"
  6224. msgstr ""
  6225. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:290
  6226. msgid ""
  6227. "Public keys allow for passwordless SSH logins with higher security than "
  6228. "plain passwords. In order to upload a new key to the device, paste an "
  6229. "OpenSSH-compatible public key or drag a <code>.pub</code> file into the "
  6230. "input field."
  6231. msgstr ""
  6232. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:193
  6233. msgid "Public prefix routed to this device for distribution to clients."
  6234. msgstr ""
  6235. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:292
  6236. msgid "PublicKey setting is invalid"
  6237. msgstr ""
  6238. #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:9
  6239. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:27
  6240. msgid "QMI Cellular"
  6241. msgstr ""
  6242. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:146
  6243. msgid "Quality"
  6244. msgstr ""
  6245. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:181
  6246. msgid ""
  6247. "Quantifies the cost or distance to a destination in a way that allows "
  6248. "routers to make informed decisions about the optimal path to forward data "
  6249. "packets"
  6250. msgstr ""
  6251. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:772
  6252. msgid "Query all available upstream resolvers."
  6253. msgstr ""
  6254. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:610
  6255. msgid "Query interval"
  6256. msgstr ""
  6257. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:615
  6258. msgid "Query response interval"
  6259. msgstr ""
  6260. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:646
  6261. msgid "Query upstream resolvers in the order they appear in the resolv file."
  6262. msgstr ""
  6263. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1696
  6264. msgid "R0 Key Lifetime"
  6265. msgstr ""
  6266. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1702
  6267. msgid "R1 Key Holder"
  6268. msgstr ""
  6269. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1531
  6270. msgid "RADIUS Access-Request attributes"
  6271. msgstr ""
  6272. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1505
  6273. msgid "RADIUS Accounting Port"
  6274. msgstr ""
  6275. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1511
  6276. msgid "RADIUS Accounting Secret"
  6277. msgstr ""
  6278. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1500
  6279. msgid "RADIUS Accounting Server"
  6280. msgstr ""
  6281. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1538
  6282. msgid "RADIUS Accounting-Request attributes"
  6283. msgstr ""
  6284. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1487
  6285. msgid "RADIUS Authentication Port"
  6286. msgstr ""
  6287. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1494
  6288. msgid "RADIUS Authentication Secret"
  6289. msgstr ""
  6290. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1481
  6291. msgid "RADIUS Authentication Server"
  6292. msgstr ""
  6293. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1545
  6294. msgid "RADIUS Dynamic VLAN Assignment"
  6295. msgstr ""
  6296. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1555
  6297. msgid "RADIUS Per STA VLAN"
  6298. msgstr ""
  6299. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1574
  6300. msgid "RADIUS VLAN Bridge Naming Scheme"
  6301. msgstr ""
  6302. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1560
  6303. msgid "RADIUS VLAN Naming"
  6304. msgstr ""
  6305. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1564
  6306. msgid "RADIUS VLAN Tagged Interface"
  6307. msgstr ""
  6308. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:88
  6309. msgid "RFC3947 NAT-T mode"
  6310. msgstr ""
  6311. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1598
  6312. msgid "RSN Preauth"
  6313. msgstr ""
  6314. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1065
  6315. msgid "RSSI threshold for joining"
  6316. msgstr ""
  6317. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1028
  6318. msgid "RTS/CTS Threshold"
  6319. msgstr ""
  6320. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:49
  6321. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:86
  6322. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:144
  6323. msgid "RX"
  6324. msgstr ""
  6325. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:236
  6326. msgid "RX Rate"
  6327. msgstr ""
  6328. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2414
  6329. msgid "RX Rate / TX Rate"
  6330. msgstr ""
  6331. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1725
  6332. msgid ""
  6333. "Radio Resource Measurement - Sends beacons to assist roaming. Not all "
  6334. "clients support this."
  6335. msgstr ""
  6336. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:61
  6337. msgctxt "nft nat flag random"
  6338. msgid "Randomize source port mapping"
  6339. msgstr ""
  6340. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1101
  6341. msgid "Raw Data"
  6342. msgstr ""
  6343. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:88
  6344. msgid "Raw hex-encoded bytes. Leave empty unless your ISP require this"
  6345. msgstr ""
  6346. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:626
  6347. msgid "Read {etc_ethers} to configure the DHCP server."
  6348. msgstr ""
  6349. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:554
  6350. msgid "Really switch protocol?"
  6351. msgstr ""
  6352. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:118
  6353. msgid "Realtime Graphs"
  6354. msgstr ""
  6355. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1679
  6356. msgid "Reassociation Deadline"
  6357. msgstr ""
  6358. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:507
  6359. msgid "Rebind protection"
  6360. msgstr ""
  6361. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:20
  6362. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:140
  6363. msgid "Reboot"
  6364. msgstr "रीबूट"
  6365. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:153
  6366. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:162
  6367. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:46
  6368. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:51
  6369. msgid "Rebooting…"
  6370. msgstr "रीबूट हो रहा है…"
  6371. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:21
  6372. msgid "Reboots the operating system of your device"
  6373. msgstr ""
  6374. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:26
  6375. msgid "Receive"
  6376. msgstr ""
  6377. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:243
  6378. msgid "Receive dropped"
  6379. msgstr ""
  6380. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:242
  6381. msgid "Receive errors"
  6382. msgstr ""
  6383. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:57
  6384. msgid "Received Data"
  6385. msgstr ""
  6386. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:239
  6387. msgid "Received bytes"
  6388. msgstr ""
  6389. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:241
  6390. msgid "Received multicast"
  6391. msgstr ""
  6392. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:240
  6393. msgid "Received packets"
  6394. msgstr ""
  6395. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:167
  6396. msgid "Recommended. IP addresses of the WireGuard interface."
  6397. msgstr ""
  6398. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:198
  6399. msgid "Reconnect Timeout"
  6400. msgstr ""
  6401. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:494
  6402. msgid "Reconnect this interface"
  6403. msgstr ""
  6404. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/uhttpd.js:14
  6405. msgid "Redirect to HTTPS"
  6406. msgstr ""
  6407. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:118
  6408. msgctxt "nft redirect to port"
  6409. msgid "Redirect to local port <strong>%h</strong>"
  6410. msgstr ""
  6411. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:117
  6412. msgctxt "nft redirect"
  6413. msgid "Redirect to local system"
  6414. msgstr ""
  6415. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:57
  6416. msgid "References"
  6417. msgstr ""
  6418. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:417
  6419. msgid "Refresh Channels"
  6420. msgstr ""
  6421. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2721
  6422. msgid "Refreshing"
  6423. msgstr ""
  6424. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:102
  6425. msgid "Registration State"
  6426. msgstr ""
  6427. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:101
  6428. msgctxt "nft reject with icmp type"
  6429. msgid "Reject IPv4 packet with <strong>ICMP type %h</strong>"
  6430. msgstr ""
  6431. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:103
  6432. msgctxt "nft reject with icmpx type"
  6433. msgid "Reject packet with <strong>ICMP type %h</strong>"
  6434. msgstr ""
  6435. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:102
  6436. msgctxt "nft reject with icmpv6 type"
  6437. msgid "Reject packet with <strong>ICMPv6 type %h</strong>"
  6438. msgstr ""
  6439. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:100
  6440. msgctxt "nft reject with tcp reset"
  6441. msgid "Reject packet with <strong>TCP reset</strong>"
  6442. msgstr ""
  6443. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:680
  6444. msgid ""
  6445. "Reject reverse lookups to {rfc_6303_link} IP ranges ({reverse_arpa}) not in "
  6446. "{etc_hosts}."
  6447. msgstr ""
  6448. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:199
  6449. msgid ""
  6450. "Reject routing decisions that have a prefix length less than or equal to the "
  6451. "specified value"
  6452. msgstr ""
  6453. #: modules/luci-compat/luasrc/model/network/proto_relay.lua:153
  6454. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:399
  6455. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:996
  6456. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:39
  6457. msgid "Relay"
  6458. msgstr ""
  6459. #: modules/luci-compat/luasrc/model/network/proto_relay.lua:157
  6460. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:36
  6461. msgid "Relay Bridge"
  6462. msgstr ""
  6463. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:557
  6464. msgid "Relay DHCP requests elsewhere. OK: v4↔v4, v6↔v6. Not OK: v4↔v6, v6↔v4."
  6465. msgstr ""
  6466. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:154
  6467. msgid "Relay between networks"
  6468. msgstr ""
  6469. #: modules/luci-compat/luasrc/model/network/proto_relay.lua:12
  6470. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:64
  6471. msgid "Relay bridge"
  6472. msgstr ""
  6473. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:569
  6474. msgid "Relay from"
  6475. msgstr ""
  6476. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:589
  6477. msgid "Relay to address"
  6478. msgstr ""
  6479. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:100
  6480. msgid "Reload"
  6481. msgstr ""
  6482. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:50
  6483. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:49
  6484. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:41
  6485. msgid "Remote IPv4 address"
  6486. msgstr ""
  6487. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:42
  6488. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:42
  6489. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:40
  6490. #: protocols/luci-proto-vti/htdocs/luci-static/resources/protocol/vti.js:40
  6491. msgid "Remote IPv4 address or FQDN"
  6492. msgstr ""
  6493. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:41
  6494. msgid "Remote IPv6 address"
  6495. msgstr ""
  6496. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:42
  6497. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:42
  6498. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/ipip6.js:40
  6499. msgid "Remote IPv6 address or FQDN"
  6500. msgstr ""
  6501. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:43
  6502. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:43
  6503. msgid "Remote VTEP"
  6504. msgstr ""
  6505. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:968
  6506. msgid "Remove"
  6507. msgstr ""
  6508. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:697
  6509. msgid "Remove IPv4 addresses from the results and only return IPv6 addresses."
  6510. msgstr ""
  6511. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:691
  6512. msgid "Remove IPv6 addresses from the results and only return IPv4 addresses."
  6513. msgstr ""
  6514. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:752
  6515. msgid "Remove MAC address before forwarding query"
  6516. msgstr ""
  6517. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:753
  6518. msgid ""
  6519. "Remove any MAC address information already in downstream queries before "
  6520. "forwarding upstream."
  6521. msgstr ""
  6522. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:768
  6523. msgid ""
  6524. "Remove any subnet address already present in a downstream query before "
  6525. "forwarding it upstream."
  6526. msgstr ""
  6527. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:371
  6528. msgctxt "Dnsmasq instance"
  6529. msgid "Remove default instance"
  6530. msgstr ""
  6531. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:375
  6532. msgctxt "Dnsmasq instance"
  6533. msgid "Remove instance \"%q\""
  6534. msgstr ""
  6535. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:371
  6536. msgctxt "Dnsmasq instance"
  6537. msgid "Remove instance #%d"
  6538. msgstr ""
  6539. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1381
  6540. msgid "Remove related device settings from the configuration"
  6541. msgstr ""
  6542. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:767
  6543. msgid "Remove subnet address before forwarding query"
  6544. msgstr ""
  6545. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:701
  6546. msgid "Removes records of the specified type(s) from answers."
  6547. msgstr ""
  6548. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2254
  6549. msgid "Replace wireless configuration"
  6550. msgstr ""
  6551. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:108
  6552. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:108
  6553. msgid "Reply on Neighbour request when mapping found in VXLAN FDB"
  6554. msgstr ""
  6555. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:17
  6556. msgid "Request IPv6-address"
  6557. msgstr ""
  6558. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:23
  6559. msgid "Request IPv6-prefix of length"
  6560. msgstr ""
  6561. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:408
  6562. msgid "Request timeout"
  6563. msgstr ""
  6564. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:100
  6565. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:105
  6566. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:102
  6567. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:107
  6568. msgid "Require incoming checksum (optional)."
  6569. msgstr ""
  6570. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:102
  6571. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:107
  6572. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:104
  6573. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:109
  6574. msgid "Require incoming packets serialization (optional)."
  6575. msgstr ""
  6576. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1550
  6577. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1891
  6578. msgid "Required"
  6579. msgstr ""
  6580. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34
  6581. msgid "Required for certain ISPs, e.g. Charter with DOCSIS 3"
  6582. msgstr ""
  6583. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:137
  6584. msgid "Required. Base64-encoded private key for this interface."
  6585. msgstr ""
  6586. #: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:40
  6587. msgid "Required. Path to the .yml config file for this interface."
  6588. msgstr ""
  6589. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:573
  6590. msgid "Required. Public key of the WireGuard peer."
  6591. msgstr ""
  6592. #: protocols/luci-proto-xfrm/htdocs/luci-static/resources/protocol/xfrm.js:39
  6593. msgid "Required. XFRM interface ID to be used for SA."
  6594. msgstr ""
  6595. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1545
  6596. msgid ""
  6597. "Required: Rejects auth if RADIUS server does not provide appropriate VLAN "
  6598. "attributes."
  6599. msgstr ""
  6600. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1392
  6601. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1393
  6602. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1394
  6603. msgid "Requires hostapd"
  6604. msgstr ""
  6605. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1399
  6606. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1400
  6607. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1401
  6608. msgid "Requires hostapd with EAP Suite-B support"
  6609. msgstr ""
  6610. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1397
  6611. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1398
  6612. msgid "Requires hostapd with EAP support"
  6613. msgstr ""
  6614. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1402
  6615. msgid "Requires hostapd with OWE support"
  6616. msgstr ""
  6617. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1395
  6618. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1396
  6619. msgid "Requires hostapd with SAE support"
  6620. msgstr ""
  6621. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1390
  6622. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1391
  6623. msgid "Requires hostapd with WEP support"
  6624. msgstr ""
  6625. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1407
  6626. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1408
  6627. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1409
  6628. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1422
  6629. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1423
  6630. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1424
  6631. msgid "Requires wpa-supplicant"
  6632. msgstr ""
  6633. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1414
  6634. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1415
  6635. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1416
  6636. msgid "Requires wpa-supplicant with EAP Suite-B support"
  6637. msgstr ""
  6638. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1412
  6639. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1413
  6640. msgid "Requires wpa-supplicant with EAP support"
  6641. msgstr ""
  6642. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1417
  6643. msgid "Requires wpa-supplicant with OWE support"
  6644. msgstr ""
  6645. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1410
  6646. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1411
  6647. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1427
  6648. msgid "Requires wpa-supplicant with SAE support"
  6649. msgstr ""
  6650. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1405
  6651. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1406
  6652. msgid "Requires wpa-supplicant with WEP support"
  6653. msgstr ""
  6654. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:231
  6655. msgid "Reselection policy for primary slave"
  6656. msgstr ""
  6657. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2197
  6658. #: modules/luci-base/ucode/template/sysauth.ut:39
  6659. #: modules/luci-compat/luasrc/view/cbi/delegator.htm:17
  6660. #: modules/luci-compat/luasrc/view/cbi/footer.htm:30
  6661. #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:66
  6662. msgid "Reset"
  6663. msgstr ""
  6664. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:347
  6665. msgid "Reset Counters"
  6666. msgstr ""
  6667. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:406
  6668. msgid "Reset to defaults"
  6669. msgstr ""
  6670. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:396
  6671. msgid "Resolv &amp; Hosts Files"
  6672. msgstr ""
  6673. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:638
  6674. msgid "Resolv file"
  6675. msgstr ""
  6676. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:477
  6677. msgid "Resolve specified FQDNs to an IP."
  6678. msgstr ""
  6679. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:423
  6680. msgid "Resolve these locally"
  6681. msgstr ""
  6682. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1091
  6683. msgid "Resource Record Name"
  6684. msgstr ""
  6685. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1096
  6686. msgid "Resource Record Number"
  6687. msgstr ""
  6688. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:405
  6689. msgid "Resource not found"
  6690. msgstr ""
  6691. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:496
  6692. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:936
  6693. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:99
  6694. msgid "Restart"
  6695. msgstr ""
  6696. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:352
  6697. msgid "Restart Firewall"
  6698. msgstr ""
  6699. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:934
  6700. msgid "Restart radio interface"
  6701. msgstr ""
  6702. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:402
  6703. msgid "Restore"
  6704. msgstr ""
  6705. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:412
  6706. msgid "Restore backup"
  6707. msgstr ""
  6708. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:366
  6709. msgid ""
  6710. "Retrieve the listener addresses from the Yggdrasil interface configuration."
  6711. msgstr ""
  6712. #: modules/luci-base/htdocs/luci-static/resources/ui.js:386
  6713. #: modules/luci-base/htdocs/luci-static/resources/ui.js:387
  6714. msgid "Reveal/hide password"
  6715. msgstr ""
  6716. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:679
  6717. msgid "Reverse path filter"
  6718. msgstr ""
  6719. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4499
  6720. msgid "Revert"
  6721. msgstr ""
  6722. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4606
  6723. msgid "Revert changes"
  6724. msgstr ""
  6725. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4817
  6726. msgid "Revert request failed with status <code>%h</code>"
  6727. msgstr ""
  6728. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4797
  6729. msgid "Reverting configuration…"
  6730. msgstr ""
  6731. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:84
  6732. msgid "Revision"
  6733. msgstr ""
  6734. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:111
  6735. msgctxt "nft dnat ip to addr"
  6736. msgid "Rewrite destination to <strong>%h</strong>"
  6737. msgstr ""
  6738. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:114
  6739. msgctxt "nft dnat ip6 to addr"
  6740. msgid "Rewrite destination to <strong>%h</strong>"
  6741. msgstr ""
  6742. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:112
  6743. msgctxt "nft dnat ip to addr:port"
  6744. msgid "Rewrite destination to <strong>%h</strong>, port <strong>%h</strong>"
  6745. msgstr ""
  6746. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:115
  6747. msgctxt "nft dnat ip6 to addr:port"
  6748. msgid "Rewrite destination to <strong>%h</strong>, port <strong>%h</strong>"
  6749. msgstr ""
  6750. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:105
  6751. msgctxt "nft snat ip to addr"
  6752. msgid "Rewrite source to <strong>%h</strong>"
  6753. msgstr ""
  6754. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:108
  6755. msgctxt "nft snat ip6 to addr"
  6756. msgid "Rewrite source to <strong>%h</strong>"
  6757. msgstr ""
  6758. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:106
  6759. msgctxt "nft snat ip to addr:port"
  6760. msgid "Rewrite source to <strong>%h</strong>, port <strong>%h</strong>"
  6761. msgstr ""
  6762. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:109
  6763. msgctxt "nft snat ip6 to addr:port"
  6764. msgid "Rewrite source to <strong>%h</strong>, port <strong>%h</strong>"
  6765. msgstr ""
  6766. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:120
  6767. msgid "Rewrite to egress device address"
  6768. msgstr ""
  6769. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1598
  6770. msgid ""
  6771. "Robust Security Network (RSN): Allow roaming preauth for WPA2-EAP networks "
  6772. "(and advertise it in WLAN beacons). Only works if the specified network "
  6773. "interface is a bridge. Shortens the time-critical reassociation process."
  6774. msgstr ""
  6775. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:605
  6776. msgid "Robustness"
  6777. msgstr ""
  6778. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:860
  6779. msgid ""
  6780. "Root directory for files served via TFTP. <em>Enable TFTP server</em> and "
  6781. "<em>TFTP server root</em> turn on the TFTP server and serve files from "
  6782. "<em>TFTP server root</em>."
  6783. msgstr ""
  6784. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:298
  6785. msgid "Root preparation"
  6786. msgstr ""
  6787. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:209
  6788. msgid "Round-Robin policy (balance-rr, 0)"
  6789. msgstr ""
  6790. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:644
  6791. msgid "Route Allowed IPs"
  6792. msgstr ""
  6793. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:532
  6794. msgid "Route action chain \"%h\""
  6795. msgstr ""
  6796. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:103
  6797. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:103
  6798. msgid "Route short-circuit (RSC)"
  6799. msgstr ""
  6800. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:48
  6801. msgid "Route type"
  6802. msgstr ""
  6803. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:864
  6804. msgid ""
  6805. "Router Lifetime published in <abbr title=\"Router Advertisement, ICMPv6 Type "
  6806. "134\">RA</abbr> messages. Maximum is 9000 seconds."
  6807. msgstr ""
  6808. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:46
  6809. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:26
  6810. msgid "Router Password"
  6811. msgstr ""
  6812. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:29
  6813. msgid ""
  6814. "Routes go in routing tables and define the specific path to reach "
  6815. "destinations."
  6816. msgstr ""
  6817. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:28
  6818. #: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:50
  6819. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:258
  6820. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:15
  6821. msgid "Routing"
  6822. msgstr ""
  6823. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:44
  6824. msgid "Routing Algorithm"
  6825. msgstr ""
  6826. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:28
  6827. msgid ""
  6828. "Routing defines over which interface and gateway a certain host or network "
  6829. "can be reached."
  6830. msgstr ""
  6831. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:95
  6832. msgid "Routing table into which to insert this rule."
  6833. msgstr ""
  6834. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:172
  6835. msgid "Routing table to use for traffic matching this rule."
  6836. msgstr ""
  6837. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:218
  6838. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:208
  6839. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:234
  6840. msgid "Rule"
  6841. msgstr ""
  6842. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:602
  6843. msgid "Rule actions"
  6844. msgstr ""
  6845. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:475
  6846. msgctxt "nft comment"
  6847. msgid "Rule comment: %s"
  6848. msgstr ""
  6849. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:540
  6850. msgid "Rule container chain \"%h\""
  6851. msgstr ""
  6852. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:601
  6853. msgid "Rule matches"
  6854. msgstr ""
  6855. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:142
  6856. msgid "Rule type"
  6857. msgstr ""
  6858. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:30
  6859. msgid ""
  6860. "Rules determine which routing table to use, based on conditions like source "
  6861. "address or interface."
  6862. msgstr ""
  6863. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2360
  6864. msgid "Runtime error"
  6865. msgstr ""
  6866. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:226
  6867. msgid "SHA256"
  6868. msgstr ""
  6869. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:145
  6870. msgid "SIM %d"
  6871. msgstr ""
  6872. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:147
  6873. msgid "SIMs"
  6874. msgstr ""
  6875. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:59
  6876. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:280
  6877. msgid "SNR"
  6878. msgstr ""
  6879. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:935
  6880. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:954
  6881. msgid "SRV"
  6882. msgstr ""
  6883. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:10
  6884. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:38
  6885. msgid "SSH Access"
  6886. msgstr ""
  6887. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:70
  6888. msgid "SSH server address"
  6889. msgstr ""
  6890. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:74
  6891. msgid "SSH server port"
  6892. msgstr ""
  6893. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:58
  6894. msgid "SSH username"
  6895. msgstr ""
  6896. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:289
  6897. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:51
  6898. msgid "SSH-Keys"
  6899. msgstr ""
  6900. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:156
  6901. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:181
  6902. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1970
  6903. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:443
  6904. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:147
  6905. msgid "SSID"
  6906. msgstr "SSID"
  6907. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:9
  6908. msgid "SSTP"
  6909. msgstr ""
  6910. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:44
  6911. msgid "SSTP Port"
  6912. msgstr ""
  6913. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:41
  6914. msgid "SSTP Server"
  6915. msgstr ""
  6916. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:338
  6917. msgid "SWAP"
  6918. msgstr ""
  6919. #: modules/luci-base/htdocs/luci-static/resources/form.js:3232
  6920. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2192
  6921. #: modules/luci-compat/luasrc/view/cbi/error.htm:17
  6922. #: modules/luci-compat/luasrc/view/cbi/footer.htm:26
  6923. #: modules/luci-compat/luasrc/view/cbi/header.htm:20
  6924. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:465
  6925. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:123
  6926. msgid "Save"
  6927. msgstr ""
  6928. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2174
  6929. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4487
  6930. #: modules/luci-compat/luasrc/view/cbi/footer.htm:22
  6931. msgid "Save & Apply"
  6932. msgstr ""
  6933. #: modules/luci-base/htdocs/luci-static/resources/form.js:609
  6934. msgid "Save error"
  6935. msgstr ""
  6936. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:436
  6937. msgid "Save mtdblock"
  6938. msgstr ""
  6939. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:426
  6940. msgid "Save mtdblock contents"
  6941. msgstr ""
  6942. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:941
  6943. msgid "Scan"
  6944. msgstr ""
  6945. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/crontab.js:28
  6946. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:90
  6947. msgid "Scheduled Tasks"
  6948. msgstr ""
  6949. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/dmesg.js:47
  6950. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/syslog.js:51
  6951. msgctxt "scroll to top (the head) of the log file"
  6952. msgid "Scroll to head"
  6953. msgstr ""
  6954. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/dmesg.js:38
  6955. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/syslog.js:42
  6956. msgctxt "scroll to bottom (the tail) of the log file"
  6957. msgid "Scroll to tail"
  6958. msgstr ""
  6959. #: protocols/luci-proto-external/htdocs/luci-static/resources/protocol/external.js:41
  6960. msgid "Search domain"
  6961. msgstr ""
  6962. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:39
  6963. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:62
  6964. msgid "Section %s is empty."
  6965. msgstr ""
  6966. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4471
  6967. msgid "Section added"
  6968. msgstr ""
  6969. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4473
  6970. msgid "Section removed"
  6971. msgstr ""
  6972. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:332
  6973. msgid "See \"mount\" manpage for details"
  6974. msgstr ""
  6975. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:285
  6976. msgid ""
  6977. "Select 'Force upgrade' to flash the image even if the image format check "
  6978. "fails. Use only if you are sure that the firmware is correct and meant for "
  6979. "your device!"
  6980. msgstr ""
  6981. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2686
  6982. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2836
  6983. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3000
  6984. msgid "Select file…"
  6985. msgstr ""
  6986. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:325
  6987. msgid "Selects the transmit hash policy to use for slave selection"
  6988. msgstr ""
  6989. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:791
  6990. msgid ""
  6991. "Send <abbr title=\"Router Advertisement, ICMPv6 Type 134\">RA</abbr> "
  6992. "messages advertising this device as IPv6 router."
  6993. msgstr ""
  6994. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:704
  6995. msgid "Send ICMP redirects"
  6996. msgstr ""
  6997. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:143
  6998. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:115
  6999. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:101
  7000. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:75
  7001. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:88
  7002. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:111
  7003. msgid ""
  7004. "Send LCP echo requests at the given interval in seconds, only effective in "
  7005. "conjunction with failure threshold"
  7006. msgstr ""
  7007. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:290
  7008. msgid "Send multicast beacon"
  7009. msgstr ""
  7010. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:24
  7011. msgid "Send the hostname of this device"
  7012. msgstr ""
  7013. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:89
  7014. msgid "Server"
  7015. msgstr ""
  7016. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:894
  7017. msgid "Server address"
  7018. msgstr ""
  7019. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:888
  7020. msgid "Server name"
  7021. msgstr ""
  7022. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:50
  7023. msgid "Service Name"
  7024. msgstr ""
  7025. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:88
  7026. msgid "Service Type"
  7027. msgstr ""
  7028. #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:36
  7029. msgid "Services"
  7030. msgstr ""
  7031. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2664
  7032. msgid "Session expired"
  7033. msgstr ""
  7034. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:126
  7035. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:175
  7036. msgid "Set Static"
  7037. msgstr ""
  7038. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:849
  7039. msgid "Set a maximum seconds TTL value for entries in the cache."
  7040. msgstr ""
  7041. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1007
  7042. msgid "Set an alias for a hostname."
  7043. msgstr ""
  7044. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1058
  7045. msgid "Set an arbitrary resource record (RR) type."
  7046. msgstr ""
  7047. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:122
  7048. msgctxt "nft mangle"
  7049. msgid "Set header field <var>%s</var> to <strong>%s</strong>"
  7050. msgstr ""
  7051. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:991
  7052. msgid "Set interface as NDP-Proxy external slave. Default is off."
  7053. msgstr ""
  7054. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1319
  7055. msgid ""
  7056. "Set interface properties regardless of the link carrier (If set, carrier "
  7057. "sense events do not invoke hotplug handlers)."
  7058. msgstr ""
  7059. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:447
  7060. msgid "Set log class/facility for syslog entries."
  7061. msgstr ""
  7062. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:307
  7063. msgid "Set same MAC Address to all slaves"
  7064. msgstr ""
  7065. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:810
  7066. msgid ""
  7067. "Set the autonomous address-configuration flag in the prefix information "
  7068. "options of sent <abbr title=\"Router Advertisement\">RA</abbr> messages. "
  7069. "When enabled, clients will perform stateless IPv6 address autoconfiguration."
  7070. msgstr ""
  7071. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:718
  7072. msgid ""
  7073. "Set this interface as master for RA and DHCPv6 relaying as well as NDP "
  7074. "proxying."
  7075. msgstr ""
  7076. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:311
  7077. msgid "Set to currently active slave (active, 1)"
  7078. msgstr ""
  7079. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:312
  7080. msgid "Set to first slave added to the bond (follow, 2)"
  7081. msgstr ""
  7082. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:645
  7083. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:661
  7084. msgid "Set up DHCP Server"
  7085. msgstr ""
  7086. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:986
  7087. msgid "Set up routes for proxied IPv6 neighbours."
  7088. msgstr ""
  7089. #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:55
  7090. #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:55
  7091. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:23
  7092. msgid "Setting PLMN failed"
  7093. msgstr ""
  7094. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:68
  7095. msgid "Setting operation mode failed"
  7096. msgstr ""
  7097. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:89
  7098. msgid "Setting the allowed network technology."
  7099. msgstr ""
  7100. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:109
  7101. msgid "Setting the preferred network technology."
  7102. msgstr ""
  7103. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/uhttpd.js:11
  7104. msgid "Settings"
  7105. msgstr ""
  7106. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1050
  7107. msgid ""
  7108. "Settings for assisting wireless clients in roaming between multiple APs: "
  7109. "802.11r, 802.11k and 802.11v"
  7110. msgstr ""
  7111. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:212
  7112. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:39
  7113. msgid "Short GI"
  7114. msgstr ""
  7115. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1233
  7116. msgid "Short Preamble"
  7117. msgstr ""
  7118. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:472
  7119. msgid "Show current backup file list"
  7120. msgstr ""
  7121. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:297
  7122. msgid "Show empty chains"
  7123. msgstr ""
  7124. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:280
  7125. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:342
  7126. msgid "Show raw counters"
  7127. msgstr ""
  7128. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:500
  7129. msgid "Shutdown this interface"
  7130. msgstr ""
  7131. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:57
  7132. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:63
  7133. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:186
  7134. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1969
  7135. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:42
  7136. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:442
  7137. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:146
  7138. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:235
  7139. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:278
  7140. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:284
  7141. msgid "Signal"
  7142. msgstr ""
  7143. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2413
  7144. msgid "Signal / Noise"
  7145. msgstr ""
  7146. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:104
  7147. msgid "Signal Quality"
  7148. msgstr ""
  7149. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:148
  7150. msgid "Signal Refresh Rate"
  7151. msgstr ""
  7152. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:262
  7153. msgid "Signal:"
  7154. msgstr ""
  7155. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4235
  7156. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:224
  7157. msgid "Size"
  7158. msgstr ""
  7159. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:834
  7160. msgid "Size of DNS query cache"
  7161. msgstr ""
  7162. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:208
  7163. msgid "Size of the ZRam device in megabytes"
  7164. msgstr ""
  7165. #: modules/luci-compat/luasrc/view/cbi/footer.htm:18
  7166. #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:57
  7167. msgid "Skip"
  7168. msgstr ""
  7169. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:259
  7170. msgid "Skip from backup files that are equal to those in /rom"
  7171. msgstr ""
  7172. #: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:35
  7173. #: themes/luci-theme-openwrt/ucode/template/themes/openwrt.org/header.ut:38
  7174. msgid "Skip to content"
  7175. msgstr ""
  7176. #: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:34
  7177. #: themes/luci-theme-openwrt/ucode/template/themes/openwrt.org/header.ut:37
  7178. msgid "Skip to navigation"
  7179. msgstr ""
  7180. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:185
  7181. msgid "Slave Interfaces"
  7182. msgstr ""
  7183. #: modules/luci-base/htdocs/luci-static/resources/network.js:3036
  7184. #: modules/luci-compat/luasrc/model/network.lua:1428
  7185. msgid "Software VLAN"
  7186. msgstr ""
  7187. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1001
  7188. msgid ""
  7189. "Some channels may be restricted to Indoor Only use by your Regulatory "
  7190. "Domain. Make sure to follow this advice if a channel is reported as such."
  7191. msgstr ""
  7192. #: modules/luci-compat/luasrc/view/cbi/header.htm:5
  7193. msgid "Some fields are invalid, cannot save values!"
  7194. msgstr ""
  7195. #: modules/luci-base/ucode/template/error404.ut:10
  7196. msgid "Sorry, the object you requested was not found."
  7197. msgstr ""
  7198. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:444
  7199. msgid ""
  7200. "Sorry, there is no sysupgrade support present; a new firmware image must be "
  7201. "flashed manually. Please refer to the wiki for device specific install "
  7202. "instructions."
  7203. msgstr ""
  7204. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:105
  7205. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:154
  7206. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:388
  7207. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:70
  7208. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:224
  7209. msgid "Source"
  7210. msgstr ""
  7211. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:43
  7212. msgctxt "nft ip saddr"
  7213. msgid "Source IP"
  7214. msgstr ""
  7215. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:47
  7216. msgctxt "nft ip6 saddr"
  7217. msgid "Source IPv6"
  7218. msgstr ""
  7219. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:251
  7220. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:251
  7221. msgid "Source VNI"
  7222. msgstr ""
  7223. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57
  7224. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:57
  7225. msgid "Source interface"
  7226. msgstr ""
  7227. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:45
  7228. msgctxt "nft ip sport"
  7229. msgid "Source port"
  7230. msgstr ""
  7231. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:57
  7232. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:57
  7233. msgid "Source port range"
  7234. msgstr ""
  7235. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:874
  7236. msgid ""
  7237. "Special <abbr title=\"Preboot eXecution Environment\">PXE</abbr> boot "
  7238. "options for Dnsmasq."
  7239. msgstr ""
  7240. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:943
  7241. msgid ""
  7242. "Specifies a fixed list of DNS search domains to announce via DHCPv6. If left "
  7243. "unspecified, the local device DNS search domain will be announced."
  7244. msgstr ""
  7245. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:927
  7246. msgid ""
  7247. "Specifies a fixed list of IPv6 DNS server addresses to announce via DHCPv6. "
  7248. "If left unspecified, the device will announce itself as IPv6 DNS server "
  7249. "unless the <em>Local IPv6 DNS server</em> option is disabled."
  7250. msgstr ""
  7251. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:194
  7252. msgid ""
  7253. "Specifies an individual UID or range of UIDs to match, e.g. 1000 to match "
  7254. "corresponding UID or 1000-1005 to inclusively match all UIDs within the "
  7255. "corresponding range"
  7256. msgstr ""
  7257. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:348
  7258. msgid ""
  7259. "Specifies that duplicate frames (received on inactive ports) should be "
  7260. "dropped or delivered"
  7261. msgstr ""
  7262. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:364
  7263. msgid "Specifies the ARP link monitoring frequency in milliseconds"
  7264. msgstr ""
  7265. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:372
  7266. msgid "Specifies the IP addresses to use for ARP monitoring"
  7267. msgstr ""
  7268. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:401
  7269. msgid "Specifies the MII link monitoring frequency in milliseconds"
  7270. msgstr ""
  7271. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:189
  7272. msgid "Specifies the TOS value to match in IP headers"
  7273. msgstr ""
  7274. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:266
  7275. msgid "Specifies the aggregation selection logic to use"
  7276. msgstr ""
  7277. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:293
  7278. msgid "Specifies the directory the device is attached to"
  7279. msgstr ""
  7280. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:816
  7281. msgid ""
  7282. "Specifies the flags sent in <abbr title=\"Router Advertisement\">RA</abbr> "
  7283. "messages, for example to instruct clients to request further information via "
  7284. "stateful DHCPv6."
  7285. msgstr ""
  7286. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:184
  7287. msgid ""
  7288. "Specifies the fwmark and optionally its mask to match, e.g. 0xFF to match "
  7289. "mark 255 or 0x0/0x1 to match any even mark value"
  7290. msgstr ""
  7291. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:43
  7292. msgid ""
  7293. "Specifies the logical interface name of the parent (or master) interface "
  7294. "this route belongs to"
  7295. msgstr ""
  7296. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:259
  7297. msgid ""
  7298. "Specifies the mac-address for the actor in protocol packet exchanges "
  7299. "(LACPDUs). If empty, masters' mac address defaults to system default"
  7300. msgstr ""
  7301. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:175
  7302. msgid ""
  7303. "Specifies the maximum amount of failed ARP requests until hosts are presumed "
  7304. "to be dead"
  7305. msgstr ""
  7306. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:171
  7307. msgid ""
  7308. "Specifies the maximum amount of seconds after which hosts are presumed to be "
  7309. "dead"
  7310. msgstr ""
  7311. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1008
  7312. msgid ""
  7313. "Specifies the maximum transmit power the wireless radio may use. Depending "
  7314. "on regulatory requirements and wireless usage, the actual transmit power may "
  7315. "be reduced by the driver."
  7316. msgstr ""
  7317. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:243
  7318. msgid ""
  7319. "Specifies the minimum number of links that must be active before asserting "
  7320. "carrier"
  7321. msgstr ""
  7322. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:207
  7323. msgid "Specifies the mode to be used for this bonding interface"
  7324. msgstr ""
  7325. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:79
  7326. msgid ""
  7327. "Specifies the network gateway. If omitted, the gateway from the parent "
  7328. "interface is taken if any, otherwise creates a link scope route. If set to "
  7329. "0.0.0.0 no gateway will be specified for the route"
  7330. msgstr ""
  7331. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:339
  7332. msgid ""
  7333. "Specifies the number of IGMP membership reports to be issued after a "
  7334. "failover event in 200ms intervals"
  7335. msgstr ""
  7336. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:283
  7337. msgid ""
  7338. "Specifies the number of packets to transmit through a slave before moving to "
  7339. "the next one"
  7340. msgstr ""
  7341. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:317
  7342. msgid ""
  7343. "Specifies the number of peer notifications (gratuitous ARPs and unsolicited "
  7344. "IPv6 Neighbor Advertisements) to be issued after a failover event"
  7345. msgstr ""
  7346. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:291
  7347. msgid ""
  7348. "Specifies the number of seconds between instances where the bonding driver "
  7349. "sends learning packets to each slaves peer switch"
  7350. msgstr ""
  7351. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:105
  7352. msgid ""
  7353. "Specifies the preferred source address when sending to destinations covered "
  7354. "by the target"
  7355. msgstr ""
  7356. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:380
  7357. msgid "Specifies the quantity of ARP IP targets that must be reachable"
  7358. msgstr ""
  7359. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:275
  7360. msgid ""
  7361. "Specifies the rate in which the link partner will be asked to transmit "
  7362. "LACPDU packets"
  7363. msgstr ""
  7364. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:232
  7365. msgid ""
  7366. "Specifies the reselection policy for the primary slave when failure of the "
  7367. "active slave or recovery of the primary slave occurs"
  7368. msgstr ""
  7369. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:48
  7370. msgid "Specifies the route type to be created"
  7371. msgstr ""
  7372. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:142
  7373. msgid "Specifies the rule target routing action"
  7374. msgstr ""
  7375. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:251
  7376. msgid "Specifies the system priority"
  7377. msgstr ""
  7378. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:409
  7379. msgid ""
  7380. "Specifies the time in milliseconds to wait before disabling a slave after a "
  7381. "link failure detection"
  7382. msgstr ""
  7383. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:417
  7384. msgid ""
  7385. "Specifies the time in milliseconds to wait before enabling a slave after a "
  7386. "link recovery detection"
  7387. msgstr ""
  7388. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:548
  7389. msgid ""
  7390. "Specifies the wired ports to attach to this bridge. In order to attach "
  7391. "wireless networks, choose the associated interface as network in the "
  7392. "wireless settings."
  7393. msgstr ""
  7394. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:388
  7395. msgid ""
  7396. "Specifies whether ARP probes and replies should be validated or non-ARP "
  7397. "traffic should be filtered for link monitoring"
  7398. msgstr ""
  7399. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:308
  7400. msgid ""
  7401. "Specifies whether active-backup mode should set all slaves to the same MAC "
  7402. "address at enslavement"
  7403. msgstr ""
  7404. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:425
  7405. msgid ""
  7406. "Specifies whether or not miimon should use MII or ETHTOOL ioctls vs. "
  7407. "netif_carrier_ok()"
  7408. msgstr ""
  7409. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:300
  7410. msgid ""
  7411. "Specifies whether to shuffle active flows across slaves based on the load"
  7412. msgstr ""
  7413. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:186
  7414. msgid ""
  7415. "Specifies which slave interfaces should be attached to this bonding interface"
  7416. msgstr ""
  7417. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:219
  7418. msgid ""
  7419. "Specifies which slave is the primary device. It will always be the active "
  7420. "slave while it is available"
  7421. msgstr ""
  7422. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:63
  7423. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:142
  7424. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:142
  7425. msgid "Specify a TOS (Type of Service)."
  7426. msgstr ""
  7427. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:74
  7428. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:79
  7429. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:79
  7430. msgid ""
  7431. "Specify a TOS (Type of Service). Can be <code>inherit</code> (the outer "
  7432. "header inherits the value of the inner header) or an hexadecimal value "
  7433. "<code>00..FF</code> (optional)."
  7434. msgstr ""
  7435. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:74
  7436. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:74
  7437. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:79
  7438. msgid ""
  7439. "Specify a TTL (Time to Live) for the encapsulating packet other than the "
  7440. "default (64) (optional)."
  7441. msgstr ""
  7442. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:69
  7443. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:58
  7444. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:137
  7445. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:137
  7446. msgid ""
  7447. "Specify a TTL (Time to Live) for the encapsulating packet other than the "
  7448. "default (64)."
  7449. msgstr ""
  7450. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:84
  7451. msgid ""
  7452. "Specify a Traffic Class. Can be <code>inherit</code> (the outer header "
  7453. "inherits the value of the inner header) or an hexadecimal value <code>00.."
  7454. "FF</code> (optional)."
  7455. msgstr ""
  7456. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:64
  7457. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:69
  7458. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:69
  7459. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:74
  7460. msgid ""
  7461. "Specify an MTU (Maximum Transmission Unit) other than the default (1280 "
  7462. "bytes) (optional)."
  7463. msgstr ""
  7464. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:53
  7465. msgid ""
  7466. "Specify an MTU (Maximum Transmission Unit) other than the default (1280 "
  7467. "bytes)."
  7468. msgstr ""
  7469. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2273
  7470. msgid "Specify the secret encryption key here."
  7471. msgstr ""
  7472. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:215
  7473. msgid "Speed: %d Mibit/s, Duplex: %s"
  7474. msgstr ""
  7475. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1598
  7476. msgid "Splitterless ADSL (G.992.2) Annex A"
  7477. msgstr ""
  7478. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:717
  7479. msgid "Stale neighbour cache timeout"
  7480. msgstr ""
  7481. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1572
  7482. msgid "Standard: none"
  7483. msgstr ""
  7484. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:668
  7485. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:98
  7486. msgid "Start"
  7487. msgstr ""
  7488. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:140
  7489. msgid "Start WPS"
  7490. msgstr ""
  7491. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:75
  7492. msgid "Start priority"
  7493. msgstr ""
  7494. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2073
  7495. msgid "Start refresh"
  7496. msgstr ""
  7497. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4721
  7498. msgid "Starting configuration apply…"
  7499. msgstr ""
  7500. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1986
  7501. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:468
  7502. msgid "Starting wireless scan..."
  7503. msgstr ""
  7504. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:109
  7505. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:78
  7506. msgid "Startup"
  7507. msgstr ""
  7508. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:90
  7509. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:139
  7510. msgid "State"
  7511. msgstr ""
  7512. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:34
  7513. msgid "Static IPv4 Routes"
  7514. msgstr ""
  7515. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:34
  7516. msgid "Static IPv6 Routes"
  7517. msgstr ""
  7518. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:91
  7519. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:138
  7520. msgid "Static Lease"
  7521. msgstr ""
  7522. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:397
  7523. msgid "Static Leases"
  7524. msgstr ""
  7525. #: modules/luci-base/htdocs/luci-static/resources/network.js:2090
  7526. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:173
  7527. #: modules/luci-compat/luasrc/model/network.lua:967
  7528. msgid "Static address"
  7529. msgstr ""
  7530. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1162
  7531. msgid ""
  7532. "Static leases are used to assign fixed IP addresses and symbolic hostnames "
  7533. "to DHCP clients. They are also required for non-dynamic interface "
  7534. "configurations where only hosts with a corresponding lease are served."
  7535. msgstr ""
  7536. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1250
  7537. msgid "Station inactivity limit"
  7538. msgstr ""
  7539. #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:16
  7540. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:536
  7541. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:990
  7542. #: modules/luci-mod-status/ucode/template/admin_status/index.ut:9
  7543. msgid "Status"
  7544. msgstr "स्थिति"
  7545. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1569
  7546. msgid "Steering flows (<abbr title=\"Receive Packet Steering\">RPS</abbr>)"
  7547. msgstr ""
  7548. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:502
  7549. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:101
  7550. msgid "Stop"
  7551. msgstr ""
  7552. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:135
  7553. msgid "Stop WPS"
  7554. msgstr ""
  7555. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1984
  7556. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2078
  7557. msgid "Stop refresh"
  7558. msgstr ""
  7559. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:38
  7560. msgid "Storage"
  7561. msgstr ""
  7562. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:683
  7563. msgid "Strict filtering"
  7564. msgstr ""
  7565. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:645
  7566. msgid "Strict order"
  7567. msgstr ""
  7568. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:33
  7569. msgid "Strong"
  7570. msgstr ""
  7571. #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:61
  7572. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2298
  7573. msgid "Submit"
  7574. msgstr ""
  7575. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1573
  7576. msgid "Suggested: 128"
  7577. msgstr ""
  7578. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:667
  7579. msgid "Suppress logging"
  7580. msgstr ""
  7581. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:668
  7582. msgid "Suppress logging of the routine operation for the DHCP protocol."
  7583. msgstr ""
  7584. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:46
  7585. msgid "Swap free"
  7586. msgstr ""
  7587. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:139
  7588. #: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:3
  7589. msgid "Switch"
  7590. msgstr ""
  7591. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:172
  7592. msgid "Switch %q"
  7593. msgstr ""
  7594. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:150
  7595. msgid ""
  7596. "Switch %q has an unknown topology - the VLAN settings might not be accurate."
  7597. msgstr ""
  7598. #: modules/luci-base/htdocs/luci-static/resources/network.js:3036
  7599. #: modules/luci-compat/luasrc/model/network.lua:1426
  7600. msgid "Switch VLAN"
  7601. msgstr ""
  7602. #: modules/luci-base/htdocs/luci-static/resources/network.js:3033
  7603. msgid "Switch port"
  7604. msgstr ""
  7605. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:555
  7606. msgid "Switch protocol"
  7607. msgstr ""
  7608. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:103
  7609. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:104
  7610. #: modules/luci-compat/luasrc/view/cbi/ipaddr.htm:26
  7611. msgid "Switch to CIDR list notation"
  7612. msgstr ""
  7613. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2731
  7614. msgid "Symbolic link"
  7615. msgstr ""
  7616. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:89
  7617. msgid "Sync with NTP-Server"
  7618. msgstr ""
  7619. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:81
  7620. msgid "Sync with browser"
  7621. msgstr ""
  7622. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:954
  7623. msgid "Syntax:"
  7624. msgstr ""
  7625. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:478
  7626. msgid "Syntax: {code_syntax}."
  7627. msgstr ""
  7628. #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:26
  7629. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:22
  7630. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:113
  7631. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:3
  7632. msgid "System"
  7633. msgstr ""
  7634. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/syslog.js:58
  7635. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:63
  7636. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:75
  7637. msgid "System Log"
  7638. msgstr ""
  7639. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:250
  7640. msgid "System Priority"
  7641. msgstr ""
  7642. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:118
  7643. msgid "System Properties"
  7644. msgstr ""
  7645. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:227
  7646. msgid "System load"
  7647. msgstr ""
  7648. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:162
  7649. msgid "System log buffer size"
  7650. msgstr ""
  7651. #: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:68
  7652. #: themes/luci-theme-material/ucode/template/themes/material/header.ut:88
  7653. #: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:64
  7654. #: themes/luci-theme-openwrt/ucode/template/themes/openwrt.org/header.ut:81
  7655. msgid "System running in recovery (initramfs) mode."
  7656. msgstr ""
  7657. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:67
  7658. msgctxt "nft tcp option maxseg size"
  7659. msgid "TCP MSS"
  7660. msgstr ""
  7661. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:54
  7662. msgctxt "nft tcp dport"
  7663. msgid "TCP destination port"
  7664. msgstr ""
  7665. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:57
  7666. msgctxt "nft tcp flags"
  7667. msgid "TCP flags"
  7668. msgstr ""
  7669. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:53
  7670. msgctxt "nft tcp sport"
  7671. msgid "TCP source port"
  7672. msgstr ""
  7673. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:341
  7674. msgid "TCP:"
  7675. msgstr ""
  7676. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:859
  7677. msgid "TFTP server root"
  7678. msgstr ""
  7679. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:50
  7680. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:87
  7681. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:145
  7682. msgid "TX"
  7683. msgstr ""
  7684. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:236
  7685. msgid "TX Rate"
  7686. msgstr ""
  7687. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:672
  7688. msgid "TX queue length"
  7689. msgstr ""
  7690. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:95
  7691. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:172
  7692. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:18
  7693. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:182
  7694. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:200
  7695. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:226
  7696. msgid "Table"
  7697. msgstr ""
  7698. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1153
  7699. msgid "Table IP family"
  7700. msgstr ""
  7701. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1268
  7702. msgid "Tag"
  7703. msgstr ""
  7704. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:219
  7705. msgctxt "VLAN port state"
  7706. msgid "Tagged"
  7707. msgstr ""
  7708. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:959
  7709. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1022
  7710. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:60
  7711. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:66
  7712. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:178
  7713. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:180
  7714. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:197
  7715. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:223
  7716. msgid "Target"
  7717. msgstr ""
  7718. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:58
  7719. msgid "Target Platform"
  7720. msgstr ""
  7721. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:103
  7722. msgid "Target network"
  7723. msgstr ""
  7724. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:60
  7725. msgid "Temp space"
  7726. msgstr ""
  7727. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:50
  7728. msgid "Terminate"
  7729. msgstr ""
  7730. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:871
  7731. msgid ""
  7732. "The <abbr title=\"Maximum Transmission Unit\">MTU</abbr> to be published in "
  7733. "<abbr title=\"Router Advertisement, ICMPv6 Type 134\">RA</abbr> messages. "
  7734. "Minimum is 1280 bytes."
  7735. msgstr ""
  7736. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:819
  7737. msgid ""
  7738. "The <em>Managed address configuration</em> (M) flag indicates that IPv6 "
  7739. "addresses are available via DHCPv6."
  7740. msgstr ""
  7741. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:823
  7742. msgid ""
  7743. "The <em>Mobile IPv6 Home Agent</em> (H) flag indicates that the device is "
  7744. "also acting as Mobile IPv6 home agent on this link."
  7745. msgstr ""
  7746. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:821
  7747. msgid ""
  7748. "The <em>Other configuration</em> (O) flag indicates that other information, "
  7749. "such as DNS servers, is available via DHCPv6."
  7750. msgstr ""
  7751. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:84
  7752. msgid "The <em>block mount</em> command failed with code %d"
  7753. msgstr ""
  7754. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1256
  7755. msgid "The DHCPv6-DUID (DHCP unique identifier) of this host."
  7756. msgstr ""
  7757. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1029
  7758. msgid ""
  7759. "The DNS server entries in the local resolv.conf are primarily sorted by the "
  7760. "weight specified here"
  7761. msgstr ""
  7762. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:77
  7763. msgid ""
  7764. "The HE.net endpoint update configuration changed, you must now use the plain "
  7765. "username instead of the user ID!"
  7766. msgstr ""
  7767. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1228
  7768. msgid "The IP address %h is already used by another static lease"
  7769. msgstr ""
  7770. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1237
  7771. msgid "The IP address is outside of any DHCP pool address range"
  7772. msgstr ""
  7773. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:895
  7774. msgid "The IP address of the boot server"
  7775. msgstr ""
  7776. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1211
  7777. msgid ""
  7778. "The IP address to be used for this host, or <em>ignore</em> to ignore any "
  7779. "DHCP request from this host."
  7780. msgstr ""
  7781. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:41
  7782. msgid "The IPv4 address or the fully-qualified domain name of the remote end."
  7783. msgstr ""
  7784. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:42
  7785. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:42
  7786. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:40
  7787. #: protocols/luci-proto-vti/htdocs/luci-static/resources/protocol/vti.js:40
  7788. msgid ""
  7789. "The IPv4 address or the fully-qualified domain name of the remote tunnel end."
  7790. msgstr ""
  7791. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:41
  7792. msgid "The IPv6 address or the fully-qualified domain name of the remote end."
  7793. msgstr ""
  7794. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:42
  7795. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:42
  7796. msgid ""
  7797. "The IPv6 address or the fully-qualified domain name of the remote tunnel end."
  7798. msgstr ""
  7799. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1264
  7800. msgid ""
  7801. "The IPv6 interface identifier (address suffix) as hexadecimal number (max. "
  7802. "16 chars)."
  7803. msgstr ""
  7804. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:53
  7805. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:59
  7806. msgid ""
  7807. "The IPv6 prefix assigned to the provider, usually ends with <code>::</code>"
  7808. msgstr ""
  7809. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/timer.js:7
  7810. msgid "The LED blinks with the configured on/off frequency"
  7811. msgstr ""
  7812. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/heartbeat.js:7
  7813. msgid "The LED flashes to simulate actual heart beat."
  7814. msgstr ""
  7815. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:8
  7816. msgid ""
  7817. "The LED flashes with link status and activity on the configured interface."
  7818. msgstr ""
  7819. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/none.js:7
  7820. msgid "The LED is always in default state off."
  7821. msgstr ""
  7822. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/default-on.js:6
  7823. msgid "The LED is always in default state on."
  7824. msgstr ""
  7825. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:267
  7826. msgid ""
  7827. "The MAC address %h is already used by another static lease in the same DHCP "
  7828. "pool"
  7829. msgstr ""
  7830. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:640
  7831. msgid "The MTU must not exceed the parent device MTU of %d bytes"
  7832. msgstr ""
  7833. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:950
  7834. msgid "The VLAN ID must be unique"
  7835. msgstr ""
  7836. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:85
  7837. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:85
  7838. msgid ""
  7839. "The VXLAN header adds 50 bytes of IPv4 encapsulation overhead, 74 bytes for "
  7840. "IPv6."
  7841. msgstr ""
  7842. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:180
  7843. msgid "The address through which this %s is reachable"
  7844. msgstr ""
  7845. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:45
  7846. msgid "The algorithm that is used to discover mesh routes"
  7847. msgstr ""
  7848. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2258
  7849. msgid ""
  7850. "The allowed characters are: <code>A-Z</code>, <code>a-z</code>, <code>0-9</"
  7851. "code> and <code>_</code>"
  7852. msgstr ""
  7853. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:759
  7854. msgid ""
  7855. "The amount of the address forwarded depends on the prefix length parameter: "
  7856. "32 (128 for IPv6) forwards the whole address, zero forwards none of it but "
  7857. "still marks the request so that no upstream nameserver will add client "
  7858. "address information either."
  7859. msgstr ""
  7860. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:320
  7861. msgid ""
  7862. "The checkbox cannot be modified unless the <code>yggdrasil-jumper</code> "
  7863. "package is installed."
  7864. msgstr ""
  7865. #: modules/luci-compat/luasrc/view/cbi/error.htm:6
  7866. msgid "The configuration file could not be loaded due to the following error:"
  7867. msgstr ""
  7868. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2250
  7869. msgid ""
  7870. "The correct SSID must be manually specified when joining a hidden wireless "
  7871. "network"
  7872. msgstr ""
  7873. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:760
  7874. msgid "The default (%s) is zero for both IPv4 and IPv6."
  7875. msgstr ""
  7876. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4597
  7877. msgid ""
  7878. "The device could not be reached within %d seconds after applying the pending "
  7879. "changes, which caused the configuration to be rolled back for safety "
  7880. "reasons. If you believe that the configuration changes are correct "
  7881. "nonetheless, perform an unchecked configuration apply. Alternatively, you "
  7882. "can dismiss this warning and edit changes before attempting to apply again, "
  7883. "or revert all pending changes to keep the currently working configuration "
  7884. "state."
  7885. msgstr ""
  7886. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:281
  7887. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:391
  7888. msgid ""
  7889. "The device file of the memory or partition (<abbr title=\"for example\">e.g."
  7890. "</abbr> <code>/dev/sda1</code>)"
  7891. msgstr ""
  7892. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:504
  7893. msgid "The device name \"%s\" is already taken"
  7894. msgstr ""
  7895. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:382
  7896. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:416
  7897. msgid ""
  7898. "The existing network configuration needs to be changed for LuCI to function "
  7899. "properly."
  7900. msgstr ""
  7901. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:855
  7902. msgid ""
  7903. "The existing wireless configuration needs to be changed for LuCI to function "
  7904. "properly."
  7905. msgstr ""
  7906. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:222
  7907. msgid ""
  7908. "The flash image was uploaded. Below is the checksum and file size listed, "
  7909. "compare them with the original file to ensure data integrity. <br /> Click "
  7910. "'Continue' below to start the flash procedure."
  7911. msgstr ""
  7912. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:259
  7913. msgid "The following rules are currently active on this system."
  7914. msgstr ""
  7915. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/heartbeat.js:8
  7916. msgid "The frequency is in direct proportion to 1-minute average CPU load."
  7917. msgstr ""
  7918. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:155
  7919. msgid "The gateway address must not be a local IP address"
  7920. msgstr ""
  7921. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:756
  7922. msgid ""
  7923. "The generated configuration can be imported into a WireGuard client "
  7924. "application to set up a connection towards this device."
  7925. msgstr ""
  7926. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:172
  7927. msgid "The given SSH public key has already been added."
  7928. msgstr ""
  7929. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:178
  7930. msgid ""
  7931. "The given SSH public key is invalid. Please supply proper public RSA, "
  7932. "ED25519 or ECDSA keys."
  7933. msgstr ""
  7934. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1192
  7935. msgid "The hardware address(es) of this entry/host."
  7936. msgstr ""
  7937. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:93
  7938. msgid ""
  7939. "The hop penalty setting allows to modify batman-adv's preference for "
  7940. "multihop routes vs. short routes. The value is applied to the TQ of each "
  7941. "forwarded OGM, thereby propagating the cost of an extra hop (the packet has "
  7942. "to be received and retransmitted which costs airtime)"
  7943. msgstr ""
  7944. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:889
  7945. msgid "The hostname of the boot server"
  7946. msgstr ""
  7947. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:28
  7948. msgid "The interface could not be found"
  7949. msgstr ""
  7950. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1186
  7951. msgid "The interface name is already used"
  7952. msgstr ""
  7953. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1192
  7954. msgid "The interface name is too long"
  7955. msgstr ""
  7956. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:61
  7957. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:55
  7958. msgid ""
  7959. "The length of the IPv4 prefix in bits, the remainder is used in the IPv6 "
  7960. "addresses."
  7961. msgstr ""
  7962. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:57
  7963. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:63
  7964. msgid "The length of the IPv6 prefix in bits"
  7965. msgstr ""
  7966. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:168
  7967. msgid "The local IPv4 address"
  7968. msgstr ""
  7969. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:46
  7970. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:46
  7971. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:44
  7972. #: protocols/luci-proto-vti/htdocs/luci-static/resources/protocol/vti.js:44
  7973. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:47
  7974. msgid "The local IPv4 address over which the tunnel is created (optional)."
  7975. msgstr ""
  7976. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:175
  7977. msgid "The local IPv4 netmask"
  7978. msgstr ""
  7979. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:46
  7980. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:53
  7981. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:47
  7982. msgid "The local IPv6 address over which the tunnel is created (optional)."
  7983. msgstr ""
  7984. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:629
  7985. msgid ""
  7986. "The max response time in centiseconds inserted into group-specific queries "
  7987. "sent in response to leave group messages. It is also the amount of time "
  7988. "between group-specific query messages. This value may be tuned to modify the "
  7989. "\"leave latency\" of the network. A reduced value results in reduced time to "
  7990. "detect the loss of the last member of a group"
  7991. msgstr ""
  7992. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:615
  7993. msgid ""
  7994. "The max response time in centiseconds inserted into the periodic general "
  7995. "queries. By varying the value, an administrator may tune the burstiness of "
  7996. "IGMP messages on the subnet; larger values make the traffic less bursty, as "
  7997. "host responses are spread out over a larger interval"
  7998. msgstr ""
  7999. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:890
  8000. msgid ""
  8001. "The maximum hops to be published in <abbr title=\"Router Advertisement\">RA</"
  8002. "abbr> messages. Maximum is 255 hops."
  8003. msgstr ""
  8004. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1123
  8005. msgid "The netfilter components below are only regarded when running fw4."
  8006. msgstr ""
  8007. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2264
  8008. msgid "The network name is already used"
  8009. msgstr ""
  8010. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:139
  8011. msgid ""
  8012. "The network ports on this device can be combined to several <abbr "
  8013. "title=\"Virtual Local Area Network\">VLAN</abbr>s in which computers can "
  8014. "communicate directly with each other. <abbr title=\"Virtual Local Area "
  8015. "Network\">VLAN</abbr>s are often used to separate different network "
  8016. "segments. Often there is by default one Uplink port for a connection to the "
  8017. "next greater network like the internet and other ports for a local network."
  8018. msgstr ""
  8019. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:230
  8020. msgid "The private key for your Yggdrasil node"
  8021. msgstr ""
  8022. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:777
  8023. msgid ""
  8024. "The public hostname or IP address of this system the peer should connect to. "
  8025. "This usually is a static public IP address, a static hostname or a DDNS "
  8026. "domain."
  8027. msgstr ""
  8028. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:235
  8029. msgid "The public key for your Yggdrasil node"
  8030. msgstr ""
  8031. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:623
  8032. msgid "The query response interval must be lower than the query interval value"
  8033. msgstr ""
  8034. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:158
  8035. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:42
  8036. msgid "The reboot command failed with code %d"
  8037. msgstr "रीबूट कमांड कोड %d के साथ विफल हुआ"
  8038. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:147
  8039. msgid "The restore command failed with code %d"
  8040. msgstr ""
  8041. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:605
  8042. msgid ""
  8043. "The robustness value allows tuning for the expected packet loss on the "
  8044. "network. If a network is expected to be lossy, the robustness value may be "
  8045. "increased. IGMP is robust to (Robustness-1) packet losses"
  8046. msgstr ""
  8047. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:183
  8048. msgid "The routing protocol identifier of this route"
  8049. msgstr ""
  8050. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1452
  8051. msgid "The selected %s mode is incompatible with %s encryption"
  8052. msgstr ""
  8053. #: modules/luci-base/ucode/template/csrftoken.ut:11
  8054. msgid "The submitted security token is invalid or already expired!"
  8055. msgstr ""
  8056. #: modules/luci-base/htdocs/luci-static/resources/tools/views.js:27
  8057. msgid "The syslog output, pre-filtered for messages related to:"
  8058. msgstr ""
  8059. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:98
  8060. msgid ""
  8061. "The system is erasing the configuration partition now and will reboot itself "
  8062. "when finished."
  8063. msgstr ""
  8064. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:322
  8065. msgid ""
  8066. "The system is flashing now.<br /> DO NOT POWER OFF THE DEVICE!<br /> Wait a "
  8067. "few minutes before you try to reconnect. It might be necessary to renew the "
  8068. "address of your computer to reach the device again, depending on your "
  8069. "settings."
  8070. msgstr ""
  8071. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:163
  8072. msgid ""
  8073. "The system is rebooting now. If the restored configuration changed the "
  8074. "current LAN IP address, you might need to reconnect manually."
  8075. msgstr ""
  8076. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:85
  8077. msgid "The system password has been successfully changed."
  8078. msgstr ""
  8079. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:347
  8080. msgid "The sysupgrade command failed with code %d"
  8081. msgstr ""
  8082. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1164
  8083. msgid ""
  8084. "The tag construct filters which host directives are used; more than one tag "
  8085. "can be provided, in this case the request must match all of them. Tagged "
  8086. "directives are used in preference to untagged ones. Note that one of mac, "
  8087. "duid or hostname still needs to be specified (can be a wildcard)."
  8088. msgstr ""
  8089. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:120
  8090. msgid ""
  8091. "The uploaded backup archive appears to be valid and contains the files "
  8092. "listed below. Press \"Continue\" to restore the backup and reboot, or "
  8093. "\"Cancel\" to abort the operation."
  8094. msgstr ""
  8095. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:115
  8096. msgid "The uploaded backup archive is not readable"
  8097. msgstr ""
  8098. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:251
  8099. msgid "The uploaded firmware does not allow keeping current configuration."
  8100. msgstr ""
  8101. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:246
  8102. msgid ""
  8103. "The uploaded image file does not contain a supported format. Make sure that "
  8104. "you choose the generic image format for your platform."
  8105. msgstr ""
  8106. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1535
  8107. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1547
  8108. msgid "The value is overridden by configuration."
  8109. msgstr ""
  8110. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:56
  8111. msgid ""
  8112. "The value specifies the interval (milliseconds) in which batman-adv floods "
  8113. "the network with its protocol information."
  8114. msgstr ""
  8115. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:678
  8116. msgid ""
  8117. "There are legacy iptables rules present on the system. Mixing iptables and "
  8118. "nftables rules is discouraged and may lead to incomplete traffic filtering."
  8119. msgstr ""
  8120. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1338
  8121. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1370
  8122. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:130
  8123. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:179
  8124. msgid "There are no active leases"
  8125. msgstr ""
  8126. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4764
  8127. msgid "There are no changes to apply"
  8128. msgstr ""
  8129. #: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:59
  8130. #: themes/luci-theme-material/ucode/template/themes/material/header.ut:79
  8131. #: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:55
  8132. #: themes/luci-theme-openwrt/ucode/template/themes/openwrt.org/header.ut:72
  8133. msgid ""
  8134. "There is no password set on this router. Please configure a root password to "
  8135. "protect the web interface."
  8136. msgstr ""
  8137. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:49
  8138. msgid "This IPv4 address of the relay"
  8139. msgstr ""
  8140. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1833
  8141. msgid "This authentication type is not applicable to the selected EAP method."
  8142. msgstr ""
  8143. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:58
  8144. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:56
  8145. msgid "This does not look like a valid PEM file"
  8146. msgstr ""
  8147. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:456
  8148. msgid ""
  8149. "This is a list of shell glob patterns for matching files and directories to "
  8150. "include during sysupgrade. Modified files in /etc/config/ and certain other "
  8151. "configurations are automatically preserved."
  8152. msgstr ""
  8153. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:81
  8154. msgid ""
  8155. "This is either the \"Update Key\" configured for the tunnel or the account "
  8156. "password if no update key has been configured"
  8157. msgstr ""
  8158. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:106
  8159. msgid "This is only used if no default route matches the destination gateway"
  8160. msgstr ""
  8161. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv_hardif.js:42
  8162. msgid ""
  8163. "This is the batman-adv device where you want to link the physical Device "
  8164. "from above to. If this list is empty, then you need to create one first. If "
  8165. "you want to route mesh traffic over a wired network device, then please "
  8166. "select it from the above Device selector. If you want to assign the batman-"
  8167. "adv interface to a Wi-fi mesh then do not select a Device in the Device "
  8168. "selector but rather go to the Wireless settings and select this Interface as "
  8169. "a network from there."
  8170. msgstr ""
  8171. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:116
  8172. msgid ""
  8173. "This is the content of /etc/rc.local. Insert your own commands here (in "
  8174. "front of 'exit 0') to execute them at the end of the boot process."
  8175. msgstr ""
  8176. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:54
  8177. msgid ""
  8178. "This is the local endpoint address assigned by the tunnel broker, it usually "
  8179. "ends with <code>...:2/64</code>"
  8180. msgstr ""
  8181. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:420
  8182. msgid "This is the only DHCP server in the local network."
  8183. msgstr ""
  8184. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:73
  8185. msgid "This is the plain username for logging into the account"
  8186. msgstr ""
  8187. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:57
  8188. msgid ""
  8189. "This is the prefix routed to you by the tunnel broker for use by clients"
  8190. msgstr ""
  8191. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/crontab.js:29
  8192. msgid "This is the system crontab in which scheduled tasks can be defined."
  8193. msgstr ""
  8194. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:50
  8195. msgid ""
  8196. "This is usually the address of the nearest PoP operated by the tunnel broker"
  8197. msgstr ""
  8198. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:65
  8199. msgid ""
  8200. "This list gives an overview over currently running system processes and "
  8201. "their status."
  8202. msgstr ""
  8203. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:404
  8204. msgid "This option adds additional record types to the cache."
  8205. msgstr ""
  8206. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1787
  8207. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1845
  8208. msgid ""
  8209. "This option cannot be used because the ca-bundle package is not installed."
  8210. msgstr ""
  8211. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:323
  8212. msgid "This page displays the active connections via this device."
  8213. msgstr ""
  8214. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:315
  8215. msgid ""
  8216. "This page displays the bandwidth used for all available physical interfaces."
  8217. msgstr ""
  8218. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:342
  8219. msgid ""
  8220. "This page displays the wireless metrics, for each available radio interfaces."
  8221. msgstr ""
  8222. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1558
  8223. msgid "This prefix is randomly generated at first install."
  8224. msgstr ""
  8225. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:713
  8226. msgid "This prevents unreachable IPs in subnets not accessible to you."
  8227. msgstr ""
  8228. #: modules/luci-base/htdocs/luci-static/resources/form.js:2282
  8229. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:172
  8230. #: modules/luci-compat/luasrc/view/cbi/tsection.htm:32
  8231. msgid "This section contains no values yet"
  8232. msgstr ""
  8233. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:124
  8234. msgid "Time Synchronization"
  8235. msgstr ""
  8236. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1740
  8237. msgid "Time advertisement"
  8238. msgstr ""
  8239. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:713
  8240. msgid "Time in milliseconds"
  8241. msgstr ""
  8242. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:581
  8243. msgid "Time in seconds to spend in listening and learning states"
  8244. msgstr ""
  8245. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1241
  8246. msgid "Time interval for rekeying GTK"
  8247. msgstr ""
  8248. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1749
  8249. msgid "Time zone"
  8250. msgstr ""
  8251. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:15
  8252. msgid "Timed-out"
  8253. msgstr ""
  8254. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:717
  8255. msgid "Timeout in seconds"
  8256. msgstr ""
  8257. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:567
  8258. msgid "Timeout in seconds for learned MAC addresses in the forwarding database"
  8259. msgstr ""
  8260. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:586
  8261. msgid "Timeout in seconds until topology updates on link loss"
  8262. msgstr ""
  8263. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:145
  8264. msgid "Timezone"
  8265. msgstr ""
  8266. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:425
  8267. msgid ""
  8268. "To fully configure the local WireGuard interface from an existing (e.g. "
  8269. "provider supplied) configuration file, use the <strong><a class=\"full-"
  8270. "import\" href=\"#\">configuration import</a></strong> instead."
  8271. msgstr ""
  8272. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:402
  8273. msgid ""
  8274. "To restore configuration files, you can upload a previously generated backup "
  8275. "archive here. To reset the firmware to its initial state, click \"Perform "
  8276. "reset\" (only possible with squashfs images)."
  8277. msgstr ""
  8278. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1607
  8279. msgid "Tone"
  8280. msgstr ""
  8281. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:35
  8282. msgid "Total Available"
  8283. msgstr ""
  8284. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:347
  8285. msgid "Trace"
  8286. msgstr ""
  8287. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:110
  8288. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:111
  8289. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:121
  8290. msgid "Traceroute"
  8291. msgstr ""
  8292. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:126
  8293. msgid "Tracking Area Code"
  8294. msgstr ""
  8295. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:54
  8296. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:65
  8297. msgid "Traffic"
  8298. msgstr ""
  8299. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:79
  8300. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:84
  8301. msgid "Traffic Class"
  8302. msgstr ""
  8303. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:528
  8304. msgid "Traffic filter chain \"%h\""
  8305. msgstr ""
  8306. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:466
  8307. msgctxt "nft counter"
  8308. msgid "Traffic matched by rule: %.1000mPackets, %.1024mBytes"
  8309. msgstr ""
  8310. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:390
  8311. msgid "Transfer"
  8312. msgstr ""
  8313. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:777
  8314. msgid ""
  8315. "Transform replies which contain the specified addresses or subnets into "
  8316. "{nxdomain} responses."
  8317. msgstr ""
  8318. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:44
  8319. msgid "Transix (Japan only)"
  8320. msgstr ""
  8321. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:25
  8322. msgid "Transmit"
  8323. msgstr ""
  8324. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:324
  8325. msgid "Transmit Hash Policy"
  8326. msgstr ""
  8327. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:248
  8328. msgid "Transmit dropped"
  8329. msgstr ""
  8330. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:247
  8331. msgid "Transmit errors"
  8332. msgstr ""
  8333. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:58
  8334. msgid "Transmitted Data"
  8335. msgstr ""
  8336. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:245
  8337. msgid "Transmitted bytes"
  8338. msgstr ""
  8339. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:246
  8340. msgid "Transmitted packets"
  8341. msgstr ""
  8342. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:79
  8343. msgctxt "nft @th,off,len"
  8344. msgid "Transport header bits %d-%d"
  8345. msgstr ""
  8346. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:59
  8347. msgctxt "nft th dport"
  8348. msgid "Transport header destination port"
  8349. msgstr ""
  8350. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:58
  8351. msgctxt "nft th sport"
  8352. msgid "Transport header source port"
  8353. msgstr ""
  8354. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:75
  8355. msgid "Trigger"
  8356. msgstr ""
  8357. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:20
  8358. msgid "Trigger Mode"
  8359. msgstr ""
  8360. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:69
  8361. msgid "Tunnel ID"
  8362. msgstr ""
  8363. #: modules/luci-base/htdocs/luci-static/resources/network.js:3039
  8364. #: modules/luci-compat/luasrc/model/network.lua:1431
  8365. msgid "Tunnel Interface"
  8366. msgstr ""
  8367. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:44
  8368. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:57
  8369. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/ipip6.js:58
  8370. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:76
  8371. msgid "Tunnel Link"
  8372. msgstr ""
  8373. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1492
  8374. msgid "Tunnel device"
  8375. msgstr ""
  8376. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:185
  8377. msgid "Tx-Power"
  8378. msgstr ""
  8379. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:45
  8380. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1523
  8381. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:169
  8382. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:43
  8383. msgid "Type"
  8384. msgstr ""
  8385. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:189
  8386. msgid "Type of service"
  8387. msgstr ""
  8388. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:56
  8389. msgctxt "nft udp dport"
  8390. msgid "UDP destination port"
  8391. msgstr ""
  8392. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:223
  8393. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:223
  8394. msgid ""
  8395. "UDP destination port number to use to connect to the remote VXLAN tunnel "
  8396. "endpoint"
  8397. msgstr ""
  8398. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:55
  8399. msgctxt "nft udp sport"
  8400. msgid "UDP source port"
  8401. msgstr ""
  8402. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:331
  8403. msgid "UDP:"
  8404. msgstr ""
  8405. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1557
  8406. msgid "ULA for IPv6 is analogous to IPv4 private network addressing."
  8407. msgstr ""
  8408. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:91
  8409. msgid "UMTS only"
  8410. msgstr ""
  8411. #: modules/luci-compat/luasrc/model/network/proto_3g.lua:10
  8412. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:43
  8413. msgid "UMTS/GPRS/EV-DO"
  8414. msgstr ""
  8415. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:138
  8416. msgid "URI"
  8417. msgstr ""
  8418. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:43
  8419. msgid "URI scheme %s not supported"
  8420. msgstr ""
  8421. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:255
  8422. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:359
  8423. msgid "UUID"
  8424. msgstr ""
  8425. #: modules/luci-base/htdocs/luci-static/resources/network.js:16
  8426. #: modules/luci-base/htdocs/luci-static/resources/network.js:17
  8427. #: modules/luci-compat/luasrc/model/network.lua:34
  8428. #: modules/luci-compat/luasrc/model/network.lua:35
  8429. msgid "Unable to determine device name"
  8430. msgstr ""
  8431. #: modules/luci-base/htdocs/luci-static/resources/network.js:18
  8432. #: modules/luci-compat/luasrc/model/network.lua:36
  8433. msgid "Unable to determine external IP address"
  8434. msgstr ""
  8435. #: modules/luci-base/htdocs/luci-static/resources/network.js:19
  8436. #: modules/luci-compat/luasrc/model/network.lua:37
  8437. msgid "Unable to determine upstream interface"
  8438. msgstr ""
  8439. #: modules/luci-base/ucode/template/error404.ut:12
  8440. msgid "Unable to dispatch"
  8441. msgstr ""
  8442. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/dmesg.js:15
  8443. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/syslog.js:18
  8444. msgid "Unable to load log data:"
  8445. msgstr ""
  8446. #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:54
  8447. #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:54
  8448. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:22
  8449. msgid "Unable to obtain client ID"
  8450. msgstr ""
  8451. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:221
  8452. msgid "Unable to obtain mount information"
  8453. msgstr ""
  8454. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:311
  8455. msgid "Unable to reset ip6tables counters: %s"
  8456. msgstr ""
  8457. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:309
  8458. msgid "Unable to reset iptables counters: %s"
  8459. msgstr ""
  8460. #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:64
  8461. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:7
  8462. msgid "Unable to resolve AFTR host name"
  8463. msgstr ""
  8464. #: modules/luci-base/htdocs/luci-static/resources/network.js:20
  8465. #: modules/luci-compat/luasrc/model/network.lua:38
  8466. msgid "Unable to resolve peer host name"
  8467. msgstr ""
  8468. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:317
  8469. msgid "Unable to restart firewall: %s"
  8470. msgstr ""
  8471. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/crontab.js:22
  8472. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:372
  8473. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:56
  8474. msgid "Unable to save contents: %s"
  8475. msgstr ""
  8476. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:14
  8477. msgid "Unable to set allowed mode list."
  8478. msgstr ""
  8479. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:17
  8480. msgid "Unable to set preferred mode."
  8481. msgstr ""
  8482. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:29
  8483. msgid "Unable to verify PIN"
  8484. msgstr ""
  8485. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1380
  8486. msgid "Unconfigure"
  8487. msgstr ""
  8488. #: protocols/luci-proto-xfrm/htdocs/luci-static/resources/protocol/xfrm.js:42
  8489. msgid "Underlying interface"
  8490. msgstr ""
  8491. #: protocols/luci-proto-unet/htdocs/luci-static/resources/protocol/unet.js:8
  8492. msgid "Unet"
  8493. msgstr ""
  8494. #: modules/luci-base/htdocs/luci-static/resources/fs.js:102
  8495. msgid "Unexpected reply data format"
  8496. msgstr ""
  8497. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1556
  8498. msgid ""
  8499. "Unique Local Address (%s) - prefix <code>fd00::/8</code> (the L bit is "
  8500. "always 1)."
  8501. msgstr ""
  8502. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:78
  8503. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:78
  8504. msgid "Units: seconds"
  8505. msgstr ""
  8506. #: modules/luci-base/htdocs/luci-static/resources/network.js:2092
  8507. #: modules/luci-base/htdocs/luci-static/resources/network.js:3913
  8508. #: modules/luci-compat/luasrc/model/network.lua:971
  8509. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:17
  8510. msgid "Unknown"
  8511. msgstr "अज्ञात"
  8512. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:12
  8513. msgid "Unknown and unsupported connection method."
  8514. msgstr ""
  8515. #: modules/luci-base/htdocs/luci-static/resources/network.js:2435
  8516. #: modules/luci-compat/luasrc/model/network.lua:1138
  8517. msgid "Unknown error (%s)"
  8518. msgstr ""
  8519. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:412
  8520. msgid "Unknown error code"
  8521. msgstr ""
  8522. #: modules/luci-base/htdocs/luci-static/resources/network.js:2089
  8523. #: modules/luci-base/htdocs/luci-static/resources/protocol/none.js:6
  8524. #: modules/luci-compat/luasrc/model/network.lua:965
  8525. msgid "Unmanaged"
  8526. msgstr ""
  8527. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:195
  8528. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:217
  8529. msgid "Unmount"
  8530. msgstr ""
  8531. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:370
  8532. msgctxt "Dnsmasq instance"
  8533. msgid "Unnamed instance #%d"
  8534. msgstr ""
  8535. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:121
  8536. msgid "Unnamed key"
  8537. msgstr ""
  8538. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4411
  8539. msgid "Unsaved Changes"
  8540. msgstr ""
  8541. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:410
  8542. msgid "Unspecified error"
  8543. msgstr ""
  8544. #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:67
  8545. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:9
  8546. msgid "Unsupported MAP type"
  8547. msgstr ""
  8548. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:37
  8549. msgid "Unsupported URI scheme in %s"
  8550. msgstr ""
  8551. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:69
  8552. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:31
  8553. msgid "Unsupported modem"
  8554. msgstr ""
  8555. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:116
  8556. msgid "Unsupported protocol"
  8557. msgstr ""
  8558. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:288
  8559. msgid "Unsupported protocol type."
  8560. msgstr ""
  8561. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:215
  8562. msgctxt "VLAN port state"
  8563. msgid "Untagged"
  8564. msgstr ""
  8565. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:520
  8566. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:97
  8567. msgid "Untitled peer"
  8568. msgstr ""
  8569. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:151
  8570. msgid "Up"
  8571. msgstr ""
  8572. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:416
  8573. msgid "Up Delay"
  8574. msgstr ""
  8575. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4299
  8576. msgid "Upload"
  8577. msgstr ""
  8578. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:443
  8579. msgid ""
  8580. "Upload a sysupgrade-compatible image here to replace the running firmware."
  8581. msgstr ""
  8582. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:138
  8583. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:169
  8584. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:414
  8585. msgid "Upload archive..."
  8586. msgstr ""
  8587. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2890
  8588. msgid "Upload file"
  8589. msgstr ""
  8590. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2865
  8591. msgid "Upload file…"
  8592. msgstr ""
  8593. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4217
  8594. msgid "Upload has been cancelled"
  8595. msgstr ""
  8596. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2812
  8597. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4287
  8598. msgid "Upload request failed: %s"
  8599. msgstr ""
  8600. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4210
  8601. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4260
  8602. msgid "Uploading file…"
  8603. msgstr ""
  8604. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:856
  8605. msgid ""
  8606. "Upon pressing \"Continue\", anonymous \"wifi-iface\" sections will be "
  8607. "assigned with a name in the form <em>wifinet#</em> and the network will be "
  8608. "restarted to apply the updated configuration."
  8609. msgstr ""
  8610. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:383
  8611. msgid ""
  8612. "Upon pressing \"Continue\", bridges configuration will be updated and the "
  8613. "network will be restarted to apply the updated configuration."
  8614. msgstr ""
  8615. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:417
  8616. msgid ""
  8617. "Upon pressing \"Continue\", ifname options will get renamed and the network "
  8618. "will be restarted to apply the updated configuration."
  8619. msgstr ""
  8620. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:84
  8621. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:62
  8622. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:142
  8623. msgid "Uptime"
  8624. msgstr ""
  8625. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:106
  8626. msgid "Use DHCP"
  8627. msgstr ""
  8628. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:295
  8629. msgid "Use DHCP advertised servers"
  8630. msgstr ""
  8631. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:167
  8632. msgid "Use DHCP gateway"
  8633. msgstr ""
  8634. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:115
  8635. msgid "Use DHCPv6"
  8636. msgstr ""
  8637. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1015
  8638. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:144
  8639. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:160
  8640. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:139
  8641. msgid "Use DNS servers advertised by peer"
  8642. msgstr ""
  8643. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:683
  8644. msgid "Use ISO/IEC 3166 alpha2 country codes."
  8645. msgstr ""
  8646. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:48
  8647. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:89
  8648. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:69
  8649. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6to4.js:53
  8650. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:69
  8651. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/ipip6.js:78
  8652. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:84
  8653. msgid "Use MTU on tunnel interface"
  8654. msgstr ""
  8655. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:85
  8656. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:65
  8657. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6to4.js:49
  8658. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:80
  8659. msgid "Use TTL on tunnel interface"
  8660. msgstr ""
  8661. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:327
  8662. msgid "Use XOR of hardware MAC addresses (layer2)"
  8663. msgstr ""
  8664. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:328
  8665. msgid "Use XOR of hardware MAC addresses and IP addresses (layer2+3)"
  8666. msgstr ""
  8667. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:330
  8668. msgid ""
  8669. "Use XOR of hardware MAC addresses and IP addresses, rely on skb_flow_dissect "
  8670. "(encap2+3)"
  8671. msgstr ""
  8672. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:295
  8673. msgid "Use as external overlay (/overlay)"
  8674. msgstr ""
  8675. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:294
  8676. msgid "Use as root filesystem (/)"
  8677. msgstr ""
  8678. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34
  8679. msgid "Use broadcast flag"
  8680. msgstr ""
  8681. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1315
  8682. msgid "Use builtin IPv6-management"
  8683. msgstr ""
  8684. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1019
  8685. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:148
  8686. msgid "Use custom DNS servers"
  8687. msgstr ""
  8688. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1011
  8689. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:133
  8690. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:156
  8691. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:128
  8692. msgid "Use default gateway"
  8693. msgstr ""
  8694. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1033
  8695. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/ipip6.js:73
  8696. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:138
  8697. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:164
  8698. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:133
  8699. msgid "Use gateway metric"
  8700. msgstr ""
  8701. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:88
  8702. msgid "Use legacy MAP"
  8703. msgstr ""
  8704. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:88
  8705. msgid ""
  8706. "Use legacy MAP interface identifier format (draft-ietf-softwire-map-00) "
  8707. "instead of RFC7597"
  8708. msgstr ""
  8709. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:179
  8710. msgid "Use routing table"
  8711. msgstr ""
  8712. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:63
  8713. msgctxt "nft nat flag persistent"
  8714. msgid "Use same source and destination for each connection"
  8715. msgstr ""
  8716. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1780
  8717. msgid "Use system certificates"
  8718. msgstr ""
  8719. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1838
  8720. msgid "Use system certificates for inner-tunnel"
  8721. msgstr ""
  8722. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1163
  8723. msgid ""
  8724. "Use the <em>Add</em> Button to add a new lease entry. The <em>MAC address</"
  8725. "em> identifies the host, the <em>IPv4 address</em> specifies the fixed "
  8726. "address to use, and the <em>Hostname</em> is assigned as a symbolic name to "
  8727. "the requesting host. The optional <em>Lease time</em> can be used to set non-"
  8728. "standard host-specific lease time, e.g. 12h, 3d or infinite."
  8729. msgstr ""
  8730. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:329
  8731. msgid "Use upper layer protocol information (layer3+4)"
  8732. msgstr ""
  8733. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:331
  8734. msgid ""
  8735. "Use upper layer protocol information, rely on skb_flow_dissect (encap3+4)"
  8736. msgstr ""
  8737. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:625
  8738. msgid "Use {etc_ethers}"
  8739. msgstr ""
  8740. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:36
  8741. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:194
  8742. msgid "Used"
  8743. msgstr ""
  8744. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1625
  8745. msgid "Used Key Slot"
  8746. msgstr ""
  8747. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1668
  8748. msgid ""
  8749. "Used for two different purposes: RADIUS NAS ID and 802.11r R0KH-ID. Not "
  8750. "needed with normal WPA(2)-PSK."
  8751. msgstr ""
  8752. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:798
  8753. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:806
  8754. msgid "Useful for systems behind firewalls."
  8755. msgstr ""
  8756. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:157
  8757. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:106
  8758. msgid "User certificate (PEM encoded)"
  8759. msgstr ""
  8760. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:194
  8761. msgid "User identifier"
  8762. msgstr ""
  8763. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:169
  8764. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:118
  8765. msgid "User key (PEM encoded)"
  8766. msgstr ""
  8767. #: modules/luci-base/ucode/template/sysauth.ut:23
  8768. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:146
  8769. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:101
  8770. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:56
  8771. #: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:13
  8772. msgid "Username"
  8773. msgstr ""
  8774. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:131
  8775. msgid "Utilize flow table <strong>%h</strong>"
  8776. msgstr ""
  8777. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1675
  8778. msgid "VC-Mux"
  8779. msgstr ""
  8780. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1623
  8781. msgid "VDSL"
  8782. msgstr ""
  8783. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:489
  8784. msgctxt "MACVLAN mode"
  8785. msgid "VEPA (Virtual Ethernet Port Aggregator)"
  8786. msgstr ""
  8787. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:400
  8788. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1486
  8789. msgid "VLAN (802.1ad)"
  8790. msgstr ""
  8791. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:399
  8792. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1483
  8793. msgid "VLAN (802.1q)"
  8794. msgstr ""
  8795. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:468
  8796. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:931
  8797. msgid "VLAN ID"
  8798. msgstr ""
  8799. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:173
  8800. msgid "VLANs on %q"
  8801. msgstr ""
  8802. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:128
  8803. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:246
  8804. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:128
  8805. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:246
  8806. msgid "VNI"
  8807. msgstr ""
  8808. #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:54
  8809. msgid "VPN"
  8810. msgstr "VPN"
  8811. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:42
  8812. msgid "VPN Local address"
  8813. msgstr ""
  8814. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:46
  8815. msgid "VPN Local port"
  8816. msgstr ""
  8817. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:97
  8818. msgid "VPN Protocol"
  8819. msgstr ""
  8820. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:106
  8821. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:93
  8822. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:58
  8823. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:39
  8824. msgid "VPN Server"
  8825. msgstr ""
  8826. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:152
  8827. msgid "VPN Server certificate's SHA256 hash"
  8828. msgstr ""
  8829. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:96
  8830. msgid "VPN Server port"
  8831. msgstr ""
  8832. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:144
  8833. msgid "VPN Server's certificate SHA1 hash"
  8834. msgstr ""
  8835. #: modules/luci-compat/luasrc/model/network/proto_vpnc.lua:9
  8836. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:9
  8837. msgid "VPNC (CISCO 3000 (and others) VPN)"
  8838. msgstr ""
  8839. #: protocols/luci-proto-vti/htdocs/luci-static/resources/protocol/vti.js:10
  8840. msgid "VTI"
  8841. msgstr ""
  8842. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:11
  8843. msgid "VXLAN (RFC7348)"
  8844. msgstr ""
  8845. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:127
  8846. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:127
  8847. msgid "VXLAN network identifier"
  8848. msgstr ""
  8849. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:11
  8850. msgid "VXLANv6 (RFC7348)"
  8851. msgstr ""
  8852. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:719
  8853. msgid ""
  8854. "Validate DNS replies and cache DNSSEC data, requires upstream to support "
  8855. "DNSSEC."
  8856. msgstr ""
  8857. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1780
  8858. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1838
  8859. msgid ""
  8860. "Validate server certificate using built-in system CA bundle,<br />requires "
  8861. "the \"ca-bundle\" package"
  8862. msgstr ""
  8863. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:393
  8864. msgid "Validation for all slaves"
  8865. msgstr ""
  8866. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:391
  8867. msgid "Validation only for active slave"
  8868. msgstr ""
  8869. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:392
  8870. msgid "Validation only for backup slaves"
  8871. msgstr ""
  8872. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:73
  8873. msgid "Vendor"
  8874. msgstr ""
  8875. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:40
  8876. msgid "Vendor Class to send when requesting DHCP"
  8877. msgstr ""
  8878. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:724
  8879. msgid "Verify unsigned domain responses really come from unsigned domains."
  8880. msgstr ""
  8881. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:198
  8882. msgid "Verifying the uploaded image file."
  8883. msgstr ""
  8884. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1018
  8885. msgid "Very High"
  8886. msgstr ""
  8887. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:229
  8888. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:229
  8889. msgid "Via"
  8890. msgstr ""
  8891. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:241
  8892. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:241
  8893. msgid "Via shall be specified when %s is a multicast address"
  8894. msgstr ""
  8895. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:402
  8896. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1498
  8897. msgid "Virtual Ethernet"
  8898. msgstr ""
  8899. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:60
  8900. msgid "Virtual dynamic interface"
  8901. msgstr ""
  8902. #: modules/luci-base/htdocs/luci-static/resources/network.js:3909
  8903. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1168
  8904. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1169
  8905. msgid "WDS"
  8906. msgstr "WDS"
  8907. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1369
  8908. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1461
  8909. msgid "WEP Open System"
  8910. msgstr ""
  8911. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1370
  8912. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1462
  8913. msgid "WEP Shared Key"
  8914. msgstr ""
  8915. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2273
  8916. msgid "WEP passphrase"
  8917. msgstr ""
  8918. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1050
  8919. msgid "WLAN roaming"
  8920. msgstr ""
  8921. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1206
  8922. msgid "WMM Mode"
  8923. msgstr ""
  8924. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1753
  8925. msgid "WNM Sleep Mode"
  8926. msgstr ""
  8927. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1757
  8928. msgid "WNM Sleep Mode Fixes"
  8929. msgstr ""
  8930. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2273
  8931. msgid "WPA passphrase"
  8932. msgstr ""
  8933. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1360
  8934. msgid ""
  8935. "WPA-Encryption requires wpa_supplicant (for client mode) or hostapd (for AP "
  8936. "and ad-hoc mode) to be installed."
  8937. msgstr ""
  8938. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:153
  8939. msgid "WPS status"
  8940. msgstr ""
  8941. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:47
  8942. msgid "Waiting for device..."
  8943. msgstr "डिवाइस की प्रतीक्षा…"
  8944. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:344
  8945. msgid "Warn"
  8946. msgstr ""
  8947. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:189
  8948. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:199
  8949. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:157
  8950. msgid "Warning"
  8951. msgstr ""
  8952. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:26
  8953. msgid "Warning: There are unsaved changes that will get lost on reboot!"
  8954. msgstr "चेतावनी: कुछ परिवर्तन सहेजे नहीं गए हैं जो रीबूट करने पर नष्ट हो जाएंगे!"
  8955. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:37
  8956. msgid "Weak"
  8957. msgstr ""
  8958. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:974
  8959. msgid "Weight"
  8960. msgstr ""
  8961. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1273
  8962. msgid ""
  8963. "When a host matches an entry then the special tag %s is set. Use %s to match "
  8964. "all known hosts."
  8965. msgstr ""
  8966. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1105
  8967. msgid ""
  8968. "When delegating prefixes to multiple downstreams, interfaces with a higher "
  8969. "preference value are considered first when allocating subnets."
  8970. msgstr ""
  8971. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:105
  8972. msgid ""
  8973. "When enabled network coding increases the WiFi throughput by combining "
  8974. "multiple frames into a single frame, thus reducing the needed air time."
  8975. msgstr ""
  8976. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:76
  8977. msgid ""
  8978. "When enabled the distributed ARP table forms a mesh-wide ARP cache that "
  8979. "helps non-mesh clients to get ARP responses much more reliably and without "
  8980. "much delay."
  8981. msgstr ""
  8982. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:115
  8983. msgid ""
  8984. "When enabled, gateway is on-link even if the gateway does not match any "
  8985. "interface prefix"
  8986. msgstr ""
  8987. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:707
  8988. msgid ""
  8989. "When enabled, new ARP table entries are added from received gratuitous ARP "
  8990. "requests or replies, otherwise only preexisting table entries are updated, "
  8991. "but no new hosts are learned."
  8992. msgstr ""
  8993. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/heartbeat.js:14
  8994. msgid ""
  8995. "When inverted, the LED is continuously lit and flickers instead of it being "
  8996. "off by default and blinking on system activity."
  8997. msgstr ""
  8998. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:66
  8999. msgid ""
  9000. "When running the mesh over multiple WiFi interfaces per node batman-adv is "
  9001. "capable of optimizing the traffic flow to gain maximum performance."
  9002. msgstr ""
  9003. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1691
  9004. msgid ""
  9005. "When using a PSK, the PMK can be automatically generated. When enabled, the "
  9006. "R0/R1 key options below are not applied. Disable this to use the R0 and R1 "
  9007. "key options."
  9008. msgstr ""
  9009. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1206
  9010. msgid ""
  9011. "Where Wi-Fi Multimedia (WMM) Mode QoS is disabled, clients may be limited to "
  9012. "802.11a/802.11g rates."
  9013. msgstr ""
  9014. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1202
  9015. msgid ""
  9016. "Where the ESSID is hidden, clients may fail to roam and airtime efficiency "
  9017. "may be significantly reduced."
  9018. msgstr ""
  9019. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:178
  9020. msgid "Which is used to access this %s"
  9021. msgstr ""
  9022. #: modules/luci-compat/luasrc/view/cbi/wireless_modefreq.htm:194
  9023. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:580
  9024. msgid "Width"
  9025. msgstr ""
  9026. #: protocols/luci-proto-wireguard/root/usr/share/luci/menu.d/luci-proto-wireguard.json:3
  9027. msgid "WireGuard"
  9028. msgstr ""
  9029. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:120
  9030. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:165
  9031. msgid "WireGuard Status"
  9032. msgstr ""
  9033. #: modules/luci-compat/luasrc/model/network/proto_wireguard.lua:9
  9034. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:105
  9035. msgid "WireGuard VPN"
  9036. msgstr ""
  9037. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:527
  9038. msgid "WireGuard peer is disabled"
  9039. msgstr ""
  9040. #: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:17
  9041. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:10
  9042. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:341
  9043. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:148
  9044. msgid "Wireless"
  9045. msgstr ""
  9046. #: modules/luci-base/htdocs/luci-static/resources/network.js:3026
  9047. #: modules/luci-compat/luasrc/model/network.lua:1419
  9048. msgid "Wireless Adapter"
  9049. msgstr ""
  9050. #: modules/luci-base/htdocs/luci-static/resources/network.js:3005
  9051. #: modules/luci-base/htdocs/luci-static/resources/network.js:4332
  9052. #: modules/luci-compat/luasrc/model/network.lua:1405
  9053. #: modules/luci-compat/luasrc/model/network.lua:1868
  9054. msgid "Wireless Network"
  9055. msgstr ""
  9056. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:872
  9057. msgid "Wireless Overview"
  9058. msgstr ""
  9059. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1047
  9060. msgid "Wireless Security"
  9061. msgstr ""
  9062. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:854
  9063. msgid "Wireless configuration migration"
  9064. msgstr ""
  9065. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:153
  9066. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:193
  9067. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:152
  9068. msgid "Wireless is disabled"
  9069. msgstr ""
  9070. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:153
  9071. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:193
  9072. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:152
  9073. msgid "Wireless is not associated"
  9074. msgstr ""
  9075. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:996
  9076. msgid "Wireless network is disabled"
  9077. msgstr ""
  9078. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:996
  9079. msgid "Wireless network is enabled"
  9080. msgstr ""
  9081. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1935
  9082. msgid "Workaround mode can only be used when acting as an access point."
  9083. msgstr ""
  9084. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:437
  9085. msgid "Write received DNS queries to syslog."
  9086. msgstr ""
  9087. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:181
  9088. msgid "Write system log to file"
  9089. msgstr ""
  9090. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:211
  9091. msgid "XOR policy (balance-xor, 2)"
  9092. msgstr ""
  9093. #: modules/luci-base/htdocs/luci-static/resources/form.js:4181
  9094. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:302
  9095. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:350
  9096. msgid "Yes"
  9097. msgstr ""
  9098. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:310
  9099. msgid "Yes (none, 0)"
  9100. msgstr ""
  9101. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:205
  9102. msgid "Yggdrasil Network"
  9103. msgstr ""
  9104. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:163
  9105. msgid ""
  9106. "You appear to be currently connected to the device via the \"%h\" interface. "
  9107. "Do you really want to shut down the interface?"
  9108. msgstr ""
  9109. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:112
  9110. msgid ""
  9111. "You can enable or disable installed init scripts here. Changes will be "
  9112. "applied after a device reboot.<br /><strong>Warning: If you disable "
  9113. "essential init scripts like \"network\", your device might become "
  9114. "inaccessible!</strong>"
  9115. msgstr ""
  9116. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:944
  9117. msgid "You may add multiple records for the same Target."
  9118. msgstr ""
  9119. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:981
  9120. msgid "You may add multiple records for the same domain."
  9121. msgstr ""
  9122. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:559
  9123. msgid "You may add multiple unique Relay To on the same Listen addr."
  9124. msgstr ""
  9125. #: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:79
  9126. #: themes/luci-theme-material/ucode/template/themes/material/header.ut:99
  9127. #: themes/luci-theme-openwrt/ucode/template/themes/openwrt.org/header.ut:65
  9128. msgid ""
  9129. "You must enable JavaScript in your browser or LuCI will not work properly."
  9130. msgstr ""
  9131. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:120
  9132. msgid ""
  9133. "You must select a primary interface which is included in selected slave "
  9134. "interfaces!"
  9135. msgstr ""
  9136. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:101
  9137. msgid ""
  9138. "You must select at least one ARP IP target if ARP monitoring is selected!"
  9139. msgstr ""
  9140. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:213
  9141. msgid "ZRam Compression Algorithm"
  9142. msgstr ""
  9143. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:206
  9144. msgid "ZRam Settings"
  9145. msgstr ""
  9146. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:208
  9147. msgid "ZRam Size"
  9148. msgstr ""
  9149. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:943
  9150. msgid "_proto: _tcp, _udp, _sctp, _quic, … ."
  9151. msgstr ""
  9152. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:942
  9153. msgid ""
  9154. "_service: _sip, _ldap, _imap, _stun, _xmpp-client, … . (Note: while _http is "
  9155. "possible, no browsers support SRV records.)"
  9156. msgstr ""
  9157. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:794
  9158. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:158
  9159. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:169
  9160. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:105
  9161. msgid "any"
  9162. msgstr ""
  9163. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1608
  9164. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1616
  9165. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1621
  9166. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:87
  9167. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:102
  9168. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:139
  9169. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1306
  9170. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:83
  9171. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:48
  9172. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:51
  9173. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:89
  9174. msgid "auto"
  9175. msgstr ""
  9176. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:157
  9177. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:800
  9178. msgid "automatic"
  9179. msgstr ""
  9180. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:198
  9181. msgid "automatic (disabled)"
  9182. msgstr ""
  9183. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:198
  9184. msgid "automatic (enabled)"
  9185. msgstr ""
  9186. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:82
  9187. msgid "baseT"
  9188. msgstr ""
  9189. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1681
  9190. msgid "bridged"
  9191. msgstr ""
  9192. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:155
  9193. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:418
  9194. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:35
  9195. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:99
  9196. #: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:31
  9197. msgid "create"
  9198. msgstr ""
  9199. #: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:69
  9200. msgid "create:"
  9201. msgstr ""
  9202. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:165
  9203. msgid ""
  9204. "custom: Use different options when establishing a connection (these options "
  9205. "are prefixed with %s)."
  9206. msgstr ""
  9207. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:55
  9208. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:57
  9209. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:58
  9210. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:62
  9211. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:63
  9212. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:83
  9213. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:84
  9214. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:87
  9215. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:185
  9216. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:186
  9217. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:187
  9218. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:41
  9219. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:42
  9220. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:276
  9221. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:278
  9222. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:279
  9223. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:283
  9224. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:284
  9225. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:263
  9226. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:266
  9227. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:269
  9228. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:273
  9229. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:276
  9230. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:279
  9231. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:306
  9232. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:307
  9233. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:308
  9234. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:312
  9235. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:313
  9236. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:314
  9237. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:316
  9238. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:317
  9239. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:318
  9240. msgid "dBm"
  9241. msgstr "dBm"
  9242. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:73
  9243. msgctxt "nft unit"
  9244. msgid "day"
  9245. msgstr ""
  9246. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:164
  9247. msgid "default: Use the configuration options above (APN, IP Type, ...)."
  9248. msgstr ""
  9249. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1149
  9250. msgid "disable"
  9251. msgstr ""
  9252. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:157
  9253. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:681
  9254. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:788
  9255. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:913
  9256. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:979
  9257. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1057
  9258. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:91
  9259. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:25
  9260. msgid "disabled"
  9261. msgstr ""
  9262. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:20
  9263. msgctxt "DHCPv6 address request mode"
  9264. msgid "disabled"
  9265. msgstr ""
  9266. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:637
  9267. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:671
  9268. msgid "driver default"
  9269. msgstr ""
  9270. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1229
  9271. msgid "driver default (%s)"
  9272. msgstr ""
  9273. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:70
  9274. msgid "e.g: --proxy 10.10.10.10"
  9275. msgstr ""
  9276. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:72
  9277. msgid "e.g: dump"
  9278. msgstr ""
  9279. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:157
  9280. msgid "enabled"
  9281. msgstr ""
  9282. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:747
  9283. msgid "enabled (default)"
  9284. msgstr ""
  9285. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:60
  9286. msgctxt "WireGuard keep alive interval"
  9287. msgid "every %ds"
  9288. msgstr ""
  9289. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1318
  9290. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1348
  9291. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:101
  9292. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:148
  9293. msgid "expired"
  9294. msgstr ""
  9295. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:19
  9296. msgctxt "DHCPv6 address request mode"
  9297. msgid "force"
  9298. msgstr ""
  9299. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:804
  9300. msgid "forced"
  9301. msgstr ""
  9302. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:94
  9303. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:205
  9304. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:61
  9305. msgid "forward"
  9306. msgstr ""
  9307. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:98
  9308. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:84
  9309. msgid "full-duplex"
  9310. msgstr ""
  9311. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:98
  9312. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:84
  9313. msgid "half-duplex"
  9314. msgstr ""
  9315. #: modules/luci-base/htdocs/luci-static/resources/validation.js:623
  9316. msgid "hexadecimal encoded value"
  9317. msgstr ""
  9318. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2046
  9319. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:353
  9320. msgid "hidden"
  9321. msgstr ""
  9322. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:74
  9323. msgctxt "nft unit"
  9324. msgid "hour"
  9325. msgstr ""
  9326. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:794
  9327. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:919
  9328. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:983
  9329. msgid "hybrid mode"
  9330. msgstr ""
  9331. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:65
  9332. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/ipip6.js:66
  9333. msgid "ignore"
  9334. msgstr ""
  9335. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1252
  9336. msgid "infinite (lease does not expire)"
  9337. msgstr ""
  9338. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:78
  9339. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:201
  9340. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:46
  9341. msgid "input"
  9342. msgstr ""
  9343. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1528
  9344. msgid "integer"
  9345. msgstr ""
  9346. #: modules/luci-base/htdocs/luci-static/resources/validation.js:440
  9347. msgid "key between 8 and 63 characters"
  9348. msgstr ""
  9349. #: modules/luci-base/htdocs/luci-static/resources/validation.js:452
  9350. msgid "key with either 5 or 13 characters"
  9351. msgstr ""
  9352. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1276
  9353. msgid "known"
  9354. msgstr ""
  9355. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1278
  9356. msgid "known-othernet (on different subnet)"
  9357. msgstr ""
  9358. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:111
  9359. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:111
  9360. msgid "l2miss: Layer 2 miss"
  9361. msgstr ""
  9362. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:117
  9363. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:117
  9364. msgid "l3miss: Layer 3 miss"
  9365. msgstr ""
  9366. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:818
  9367. msgid "managed config (M)"
  9368. msgstr ""
  9369. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1471
  9370. msgid "medium security"
  9371. msgstr ""
  9372. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:75
  9373. msgctxt "nft unit"
  9374. msgid "minute"
  9375. msgstr ""
  9376. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1696
  9377. msgid "minutes"
  9378. msgstr ""
  9379. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:822
  9380. msgid "mobile home agent (H)"
  9381. msgstr ""
  9382. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:428
  9383. msgid "netif_carrier_ok()"
  9384. msgstr ""
  9385. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:47
  9386. msgid "no"
  9387. msgstr ""
  9388. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:104
  9389. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:76
  9390. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:232
  9391. msgid "no link"
  9392. msgstr ""
  9393. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1229
  9394. msgid "no override"
  9395. msgstr ""
  9396. #: modules/luci-base/htdocs/luci-static/resources/form.js:2271
  9397. #: modules/luci-base/htdocs/luci-static/resources/validation.js:72
  9398. msgid "non-empty value"
  9399. msgstr ""
  9400. #: modules/luci-base/htdocs/luci-static/resources/form.js:3382
  9401. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:825
  9402. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:166
  9403. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:39
  9404. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:56
  9405. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:60
  9406. msgid "none"
  9407. msgstr ""
  9408. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:163
  9409. msgid "none: Do not set an initial EPS bearer (default behaviour)"
  9410. msgstr ""
  9411. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:41
  9412. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:55
  9413. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:69
  9414. msgid "not present"
  9415. msgstr ""
  9416. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1528
  9417. msgid "octet string"
  9418. msgstr ""
  9419. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:746
  9420. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:349
  9421. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1026
  9422. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1030
  9423. msgid "off"
  9424. msgstr ""
  9425. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:802
  9426. msgid "on available prefix"
  9427. msgstr ""
  9428. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1472
  9429. msgid "open network"
  9430. msgstr ""
  9431. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:820
  9432. msgid "other config (O)"
  9433. msgstr ""
  9434. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:78
  9435. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:46
  9436. msgid "output"
  9437. msgstr ""
  9438. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:28
  9439. msgid "over a day ago"
  9440. msgstr ""
  9441. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:69
  9442. msgctxt "nft unit"
  9443. msgid "packets"
  9444. msgstr ""
  9445. #: modules/luci-base/htdocs/luci-static/resources/validation.js:265
  9446. msgid "positive decimal value"
  9447. msgstr ""
  9448. #: modules/luci-base/htdocs/luci-static/resources/validation.js:257
  9449. msgid "positive integer value"
  9450. msgstr ""
  9451. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:164
  9452. msgid "random"
  9453. msgstr ""
  9454. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1230
  9455. msgid "randomly generated"
  9456. msgstr ""
  9457. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:51
  9458. msgid ""
  9459. "reduces overhead by collecting and aggregating originator messages in a "
  9460. "single packet rather than many small ones"
  9461. msgstr ""
  9462. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:792
  9463. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:917
  9464. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:981
  9465. msgid "relay mode"
  9466. msgstr ""
  9467. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1682
  9468. msgid "routed"
  9469. msgstr ""
  9470. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1241
  9471. msgid "sec"
  9472. msgstr ""
  9473. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:790
  9474. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:915
  9475. msgid "server mode"
  9476. msgstr ""
  9477. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:58
  9478. msgid "sstpc Log-level"
  9479. msgstr ""
  9480. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:466
  9481. msgid "stderr"
  9482. msgstr ""
  9483. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1528
  9484. msgid "string (UTF-8)"
  9485. msgstr ""
  9486. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1470
  9487. msgid "strong security"
  9488. msgstr ""
  9489. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:354
  9490. msgid "tagged"
  9491. msgstr ""
  9492. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:246
  9493. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:246
  9494. msgid ""
  9495. "the VXLAN Network Identifier (or VXLAN Segment ID) to use to connect to the "
  9496. "remote VXLAN tunnel endpoint"
  9497. msgstr ""
  9498. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:251
  9499. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:251
  9500. msgid ""
  9501. "the source VNI Network Identifier (or VXLAN Segment ID) this entry belongs "
  9502. "to. Used only when the VXLAN device is in external or collect metadata mode"
  9503. msgstr ""
  9504. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1679
  9505. msgid "time units (TUs / 1.024 ms) [1000-65535]"
  9506. msgstr ""
  9507. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:18
  9508. msgctxt "DHCPv6 address request mode"
  9509. msgid "try"
  9510. msgstr ""
  9511. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/uhttpd.js:9
  9512. msgid ""
  9513. "uHTTPd offers <abbr title=\"Hypertext Transfer Protocol\">HTTP</abbr> or "
  9514. "<abbr title=\"Hypertext Transfer Protocol Secure\">HTTPS</abbr> network "
  9515. "access."
  9516. msgstr ""
  9517. #: modules/luci-base/htdocs/luci-static/resources/validation.js:613
  9518. msgid "unique value"
  9519. msgstr ""
  9520. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:652
  9521. msgid "unknown"
  9522. msgstr ""
  9523. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:28
  9524. msgid "unknown version"
  9525. msgstr ""
  9526. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1316
  9527. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1346
  9528. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:99
  9529. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:146
  9530. msgid "unlimited"
  9531. msgstr ""
  9532. #: modules/luci-base/htdocs/luci-static/resources/form.js:3747
  9533. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:85
  9534. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:147
  9535. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:382
  9536. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:409
  9537. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:445
  9538. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:482
  9539. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:578
  9540. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:53
  9541. #: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:38
  9542. msgid "unspecified"
  9543. msgstr ""
  9544. #: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:71
  9545. msgid "unspecified -or- create:"
  9546. msgstr ""
  9547. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:352
  9548. msgid "untagged"
  9549. msgstr ""
  9550. #: modules/luci-base/htdocs/luci-static/resources/validation.js:270
  9551. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:192
  9552. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:203
  9553. msgid "valid IP address"
  9554. msgstr ""
  9555. #: modules/luci-base/htdocs/luci-static/resources/validation.js:270
  9556. msgid "valid IP address or prefix"
  9557. msgstr ""
  9558. #: modules/luci-base/htdocs/luci-static/resources/validation.js:351
  9559. msgid "valid IP address range"
  9560. msgstr ""
  9561. #: modules/luci-base/htdocs/luci-static/resources/validation.js:307
  9562. msgid "valid IPv4 CIDR"
  9563. msgstr ""
  9564. #: modules/luci-base/htdocs/luci-static/resources/validation.js:278
  9565. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:196
  9566. msgid "valid IPv4 address"
  9567. msgstr ""
  9568. #: modules/luci-base/htdocs/luci-static/resources/validation.js:278
  9569. msgid "valid IPv4 address or network"
  9570. msgstr ""
  9571. #: modules/luci-base/htdocs/luci-static/resources/validation.js:357
  9572. msgid "valid IPv4 address range"
  9573. msgstr ""
  9574. #: modules/luci-base/htdocs/luci-static/resources/validation.js:419
  9575. msgid "valid IPv4 address:port"
  9576. msgstr ""
  9577. #: modules/luci-base/htdocs/luci-static/resources/validation.js:341
  9578. msgid "valid IPv4 network"
  9579. msgstr ""
  9580. #: modules/luci-base/htdocs/luci-static/resources/validation.js:301
  9581. msgid "valid IPv4 or IPv6 CIDR"
  9582. msgstr ""
  9583. #: modules/luci-base/htdocs/luci-static/resources/validation.js:291
  9584. msgid "valid IPv4 prefix value (0-32)"
  9585. msgstr ""
  9586. #: modules/luci-base/htdocs/luci-static/resources/validation.js:313
  9587. msgid "valid IPv6 CIDR"
  9588. msgstr ""
  9589. #: modules/luci-base/htdocs/luci-static/resources/validation.js:286
  9590. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:200
  9591. msgid "valid IPv6 address"
  9592. msgstr ""
  9593. #: modules/luci-base/htdocs/luci-static/resources/validation.js:286
  9594. msgid "valid IPv6 address or prefix"
  9595. msgstr ""
  9596. #: modules/luci-base/htdocs/luci-static/resources/validation.js:363
  9597. msgid "valid IPv6 address range"
  9598. msgstr ""
  9599. #: modules/luci-base/htdocs/luci-static/resources/validation.js:331
  9600. msgid "valid IPv6 host id"
  9601. msgstr ""
  9602. #: modules/luci-base/htdocs/luci-static/resources/validation.js:346
  9603. msgid "valid IPv6 network"
  9604. msgstr ""
  9605. #: modules/luci-base/htdocs/luci-static/resources/validation.js:296
  9606. msgid "valid IPv6 prefix value (0-128)"
  9607. msgstr ""
  9608. #: modules/luci-base/htdocs/luci-static/resources/validation.js:385
  9609. msgid "valid MAC address"
  9610. msgstr ""
  9611. #: modules/luci-base/htdocs/luci-static/resources/validation.js:456
  9612. msgid "valid UCI identifier"
  9613. msgstr ""
  9614. #: modules/luci-base/htdocs/luci-static/resources/validation.js:407
  9615. msgid "valid UCI identifier, hostname or IP address range"
  9616. msgstr ""
  9617. #: modules/luci-base/htdocs/luci-static/resources/validation.js:428
  9618. #: modules/luci-base/htdocs/luci-static/resources/validation.js:431
  9619. msgid "valid address:port"
  9620. msgstr ""
  9621. #: modules/luci-base/htdocs/luci-static/resources/validation.js:587
  9622. #: modules/luci-base/htdocs/luci-static/resources/validation.js:591
  9623. msgid "valid date (YYYY-MM-DD)"
  9624. msgstr ""
  9625. #: modules/luci-base/htdocs/luci-static/resources/validation.js:261
  9626. msgid "valid decimal value"
  9627. msgstr ""
  9628. #: modules/luci-base/htdocs/luci-static/resources/validation.js:450
  9629. msgid "valid hexadecimal WEP key"
  9630. msgstr ""
  9631. #: modules/luci-base/htdocs/luci-static/resources/validation.js:438
  9632. msgid "valid hexadecimal WPA key"
  9633. msgstr ""
  9634. #: modules/luci-base/htdocs/luci-static/resources/validation.js:413
  9635. msgid "valid host:port"
  9636. msgstr ""
  9637. #: modules/luci-base/htdocs/luci-static/resources/validation.js:400
  9638. #: modules/luci-base/htdocs/luci-static/resources/validation.js:402
  9639. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:142
  9640. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:148
  9641. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:176
  9642. msgid "valid hostname"
  9643. msgstr ""
  9644. #: modules/luci-base/htdocs/luci-static/resources/validation.js:390
  9645. msgid "valid hostname or IP address"
  9646. msgstr ""
  9647. #: modules/luci-base/htdocs/luci-static/resources/validation.js:253
  9648. msgid "valid integer value"
  9649. msgstr ""
  9650. #: modules/luci-base/htdocs/luci-static/resources/validation.js:385
  9651. msgid "valid multicast MAC address"
  9652. msgstr ""
  9653. #: modules/luci-base/htdocs/luci-static/resources/validation.js:465
  9654. msgid ""
  9655. "valid network device name between 1 and 15 characters not containing \":\", "
  9656. "\"/\", \"%\" or spaces"
  9657. msgstr ""
  9658. #: modules/luci-base/htdocs/luci-static/resources/validation.js:463
  9659. msgid "valid network device name, not \".\" or \"..\""
  9660. msgstr ""
  9661. #: modules/luci-base/htdocs/luci-static/resources/validation.js:336
  9662. msgid "valid network in address/netmask notation"
  9663. msgstr ""
  9664. #: modules/luci-base/htdocs/luci-static/resources/validation.js:562
  9665. msgid "valid phone digit (0-9, \"*\", \"#\", \"!\" or \".\")"
  9666. msgstr ""
  9667. #: modules/luci-base/htdocs/luci-static/resources/validation.js:376
  9668. #: modules/luci-base/htdocs/luci-static/resources/validation.js:379
  9669. msgid "valid port or port range (port1-port2)"
  9670. msgstr ""
  9671. #: modules/luci-base/htdocs/luci-static/resources/validation.js:368
  9672. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:207
  9673. msgid "valid port value"
  9674. msgstr ""
  9675. #: modules/luci-base/htdocs/luci-static/resources/validation.js:567
  9676. msgid "valid time (HH:MM:SS)"
  9677. msgstr ""
  9678. #: modules/luci-base/htdocs/luci-static/resources/validation.js:489
  9679. msgid "value between %d and %d characters"
  9680. msgstr ""
  9681. #: modules/luci-base/htdocs/luci-static/resources/validation.js:470
  9682. msgid "value between %f and %f"
  9683. msgstr ""
  9684. #: modules/luci-base/htdocs/luci-static/resources/validation.js:474
  9685. msgid "value greater or equal to %f"
  9686. msgstr ""
  9687. #: modules/luci-base/htdocs/luci-static/resources/validation.js:478
  9688. msgid "value smaller or equal to %f"
  9689. msgstr ""
  9690. #: modules/luci-base/htdocs/luci-static/resources/validation.js:483
  9691. msgid "value with %d characters"
  9692. msgstr ""
  9693. #: modules/luci-base/htdocs/luci-static/resources/validation.js:494
  9694. msgid "value with at least %d characters"
  9695. msgstr ""
  9696. #: modules/luci-base/htdocs/luci-static/resources/validation.js:499
  9697. msgid "value with at most %d characters"
  9698. msgstr ""
  9699. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1472
  9700. msgid "weak security"
  9701. msgstr ""
  9702. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:72
  9703. msgctxt "nft unit"
  9704. msgid "week"
  9705. msgstr ""
  9706. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:47
  9707. msgid "yes"
  9708. msgstr ""
  9709. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:483
  9710. msgctxt "hint: <code>/#/</code> matches any domain (and returns NXDOMAIN)."
  9711. msgid "{any_domain} matches any domain (and returns {nxdomain})."
  9712. msgstr ""
  9713. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:487
  9714. msgctxt ""
  9715. "hint: <code>/example.com/#</code> returns NULL addresses (<code>0.0.0.0</"
  9716. "code>, <code>::</code>) for example.com and its subdomains."
  9717. msgid ""
  9718. "{example_null} returns {null_addr} addresses ({null_ipv4}, {null_ipv6}) for "
  9719. "{example_com} and its subdomains."
  9720. msgstr ""
  9721. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:480
  9722. msgctxt "hint: <code>/example.com/</code> returns <code>NXDOMAIN</code>."
  9723. msgid "{example_nx} returns {nxdomain}."
  9724. msgstr ""
  9725. #: modules/luci-compat/luasrc/view/cbi/delegator.htm:20
  9726. msgid "« Back"
  9727. msgstr ""
  9728. #~ msgid "ATU-C System Vendor ID"
  9729. #~ msgstr "ATU-C सिस्टम विक्रेता पहचान (ID)"