base.po 311 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464
  1. msgid ""
  2. msgstr ""
  3. "PO-Revision-Date: 2021-06-01 13:26+0000\n"
  4. "Last-Translator: Kalin Iliev <kalin.t.iliev@gmail.com>\n"
  5. "Language-Team: Bulgarian <https://hosted.weblate.org/projects/openwrt/luci/"
  6. "bg/>\n"
  7. "Language: bg\n"
  8. "Content-Type: text/plain; charset=UTF-8\n"
  9. "Content-Transfer-Encoding: 8bit\n"
  10. "Plural-Forms: nplurals=2; plural=n != 1;\n"
  11. "X-Generator: Weblate 4.7-dev\n"
  12. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1484
  13. msgid "%.1f dB"
  14. msgstr "%.1f dB"
  15. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:117
  16. msgid "%d Bit"
  17. msgstr "%d Бита"
  18. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3712
  19. msgid "%d invalid field(s)"
  20. msgstr "%d невалидни полета"
  21. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:35
  22. msgid "%s is untagged in multiple VLANs!"
  23. msgstr ""
  24. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:296
  25. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:405
  26. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:272
  27. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:309
  28. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:327
  29. msgid "(%d minute window, %d second interval)"
  30. msgstr ""
  31. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:118
  32. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:124
  33. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:258
  34. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:282
  35. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:88
  36. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:91
  37. msgid "(empty)"
  38. msgstr ""
  39. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:351
  40. #: modules/luci-compat/luasrc/view/cbi/network_netinfo.htm:23
  41. #: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:58
  42. msgid "(no interfaces attached)"
  43. msgstr ""
  44. #: modules/luci-compat/luasrc/view/cbi/ucisection.htm:48
  45. msgid "-- Additional Field --"
  46. msgstr ""
  47. #: modules/luci-base/htdocs/luci-static/resources/cbi.js:275
  48. #: modules/luci-base/htdocs/luci-static/resources/form.js:3397
  49. #: modules/luci-base/htdocs/luci-static/resources/form.js:3763
  50. #: modules/luci-base/htdocs/luci-static/resources/ui.js:784
  51. #: modules/luci-base/htdocs/luci-static/resources/ui.js:1022
  52. #: modules/luci-base/htdocs/luci-static/resources/ui.js:1995
  53. #: modules/luci-compat/luasrc/view/cbi/header.htm:8
  54. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:89
  55. msgid "-- Please choose --"
  56. msgstr ""
  57. #: modules/luci-base/htdocs/luci-static/resources/cbi.js:276
  58. #: modules/luci-base/htdocs/luci-static/resources/ui.js:1023
  59. #: modules/luci-base/htdocs/luci-static/resources/ui.js:1996
  60. #: modules/luci-compat/luasrc/view/cbi/header.htm:9
  61. msgid "-- custom --"
  62. msgstr ""
  63. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:270
  64. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:379
  65. msgid "-- match by label --"
  66. msgstr ""
  67. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:256
  68. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:362
  69. msgid "-- match by uuid --"
  70. msgstr ""
  71. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:27
  72. #: modules/luci-compat/luasrc/view/cbi/network_ifacelist.htm:44
  73. #: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:23
  74. msgid "-- please select --"
  75. msgstr ""
  76. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:55
  77. msgctxt "sstp log level value"
  78. msgid "0"
  79. msgstr ""
  80. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1002
  81. msgid "0 = not using RSSI threshold, 1 = do not change driver default"
  82. msgstr ""
  83. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:56
  84. msgctxt "sstp log level value"
  85. msgid "1"
  86. msgstr ""
  87. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:233
  88. msgid "1 Minute Load:"
  89. msgstr ""
  90. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:253
  91. msgid "15 Minute Load:"
  92. msgstr ""
  93. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:57
  94. msgctxt "sstp log level value"
  95. msgid "2"
  96. msgstr ""
  97. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:58
  98. msgctxt "sstp log level value"
  99. msgid "3"
  100. msgstr ""
  101. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:59
  102. msgctxt "sstp log level value"
  103. msgid "4"
  104. msgstr ""
  105. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1514
  106. msgid "4-character hexadecimal ID"
  107. msgstr ""
  108. #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:18
  109. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:11
  110. msgid "464XLAT (CLAT)"
  111. msgstr "464XLAT (CLAT)"
  112. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:243
  113. msgid "5 Minute Load:"
  114. msgstr ""
  115. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1543
  116. msgid "6-octet identifier as a hex string - no colons"
  117. msgstr ""
  118. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1503
  119. msgid "802.11r Fast Transition"
  120. msgstr ""
  121. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1690
  122. msgid "802.11w Association SA Query maximum timeout"
  123. msgstr ""
  124. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1697
  125. msgid "802.11w Association SA Query retry timeout"
  126. msgstr ""
  127. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1678
  128. msgid "802.11w Management Frame Protection"
  129. msgstr ""
  130. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1690
  131. msgid "802.11w maximum timeout"
  132. msgstr ""
  133. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1697
  134. msgid "802.11w retry timeout"
  135. msgstr ""
  136. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1019
  137. msgid "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>"
  138. msgstr "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>"
  139. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:326
  140. msgid "<abbr title=\"Domain Name System\">DNS</abbr> query port"
  141. msgstr ""
  142. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:317
  143. msgid "<abbr title=\"Domain Name System\">DNS</abbr> server port"
  144. msgstr ""
  145. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:260
  146. msgid ""
  147. "<abbr title=\"Domain Name System\">DNS</abbr> servers will be queried in the "
  148. "order of the resolvfile"
  149. msgstr ""
  150. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1008
  151. msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>"
  152. msgstr "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>"
  153. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:495
  154. msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Address"
  155. msgstr ""
  156. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:42
  157. msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Gateway"
  158. msgstr ""
  159. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:691
  160. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:36
  161. msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Netmask"
  162. msgstr ""
  163. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:31
  164. msgid ""
  165. "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Address or Network "
  166. "(CIDR)"
  167. msgstr ""
  168. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:42
  169. msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Gateway"
  170. msgstr ""
  171. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:531
  172. msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Suffix (hex)"
  173. msgstr ""
  174. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:58
  175. msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Configuration"
  176. msgstr ""
  177. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:69
  178. msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Name"
  179. msgstr ""
  180. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:431
  181. msgid "<abbr title=\"Media Access Control\">MAC</abbr>-Address"
  182. msgstr ""
  183. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:897
  184. msgid "<abbr title=\"Neighbour Discovery Protocol\">NDP</abbr>-Proxy"
  185. msgstr ""
  186. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:791
  187. msgid "<abbr title=\"Router Advertisement\">RA</abbr> Flags"
  188. msgstr ""
  189. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:849
  190. msgid "<abbr title=\"Router Advertisement\">RA</abbr> Hop Limit"
  191. msgstr ""
  192. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:825
  193. msgid "<abbr title=\"Router Advertisement\">RA</abbr> Lifetime"
  194. msgstr ""
  195. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:832
  196. msgid "<abbr title=\"Router Advertisement\">RA</abbr> MTU"
  197. msgstr ""
  198. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:763
  199. msgid "<abbr title=\"Router Advertisement\">RA</abbr>-Service"
  200. msgstr ""
  201. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:525
  202. msgid "<abbr title=\"The DHCP Unique Identifier\">DUID</abbr>"
  203. msgstr "<abbr title=\"The DHCP Unique Identifier\">DUID</abbr>"
  204. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:335
  205. msgid ""
  206. "<abbr title=\"maximal\">Max.</abbr> <abbr title=\"Dynamic Host Configuration "
  207. "Protocol\">DHCP</abbr> leases"
  208. msgstr ""
  209. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:344
  210. msgid ""
  211. "<abbr title=\"maximal\">Max.</abbr> <abbr title=\"Extension Mechanisms for "
  212. "Domain Name System\">EDNS0</abbr> packet size"
  213. msgstr ""
  214. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:353
  215. msgid "<abbr title=\"maximal\">Max.</abbr> concurrent queries"
  216. msgstr ""
  217. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/crontab.js:29
  218. msgid ""
  219. "<br/>Note: you need to manually restart the cron service if the crontab file "
  220. "was empty before editing."
  221. msgstr ""
  222. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:370
  223. msgid "A configuration for the device \"%s\" already exists"
  224. msgstr ""
  225. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2741
  226. msgid "A directory with the same name already exists."
  227. msgstr ""
  228. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2671
  229. msgid "A new login is required since the authentication session expired."
  230. msgstr ""
  231. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1464
  232. msgid "A43C + J43 + A43"
  233. msgstr "A43C + J43 + A43"
  234. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1465
  235. msgid "A43C + J43 + A43 + V43"
  236. msgstr "A43C + J43 + A43 + V43"
  237. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1477
  238. msgid "ADSL"
  239. msgstr "ADSL"
  240. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1453
  241. msgid "ANSI T1.413"
  242. msgstr "ANSI T1.413"
  243. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:95
  244. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:94
  245. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:87
  246. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:68
  247. msgid "APN"
  248. msgstr "APN"
  249. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:200
  250. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:352
  251. msgid "ARP"
  252. msgstr "ARP"
  253. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:365
  254. msgid "ARP IP Targets"
  255. msgstr ""
  256. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:357
  257. msgid "ARP Interval"
  258. msgstr ""
  259. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:381
  260. msgid "ARP Validation"
  261. msgstr ""
  262. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:373
  263. msgid "ARP mode to consider a slave as being up"
  264. msgstr ""
  265. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:77
  266. msgid "ARP monitoring is not supported for the selected policy!"
  267. msgstr ""
  268. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:175
  269. msgid "ARP retry threshold"
  270. msgstr ""
  271. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1472
  272. msgid "ATM (Asynchronous Transfer Mode)"
  273. msgstr ""
  274. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1493
  275. msgid "ATM Bridges"
  276. msgstr ""
  277. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1525
  278. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:66
  279. msgid "ATM Virtual Channel Identifier (VCI)"
  280. msgstr ""
  281. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1526
  282. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:70
  283. msgid "ATM Virtual Path Identifier (VPI)"
  284. msgstr ""
  285. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1493
  286. msgid ""
  287. "ATM bridges expose encapsulated ethernet in AAL5 connections as virtual "
  288. "Linux network interfaces which can be used in conjunction with DHCP or PPP "
  289. "to dial into the provider network."
  290. msgstr ""
  291. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1532
  292. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:62
  293. msgid "ATM device number"
  294. msgstr ""
  295. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:36
  296. msgid "ATU-C System Vendor ID"
  297. msgstr ""
  298. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:265
  299. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:544
  300. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:548
  301. msgid "Absent Interface"
  302. msgstr ""
  303. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:647
  304. msgid "Accept local"
  305. msgstr ""
  306. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:647
  307. msgid "Accept packets with local source addresses"
  308. msgstr ""
  309. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:47
  310. msgid "Access Concentrator"
  311. msgstr ""
  312. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:990
  313. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1104
  314. msgid "Access Point"
  315. msgstr ""
  316. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:358
  317. msgid "Actions"
  318. msgstr "Действия"
  319. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:14
  320. msgid "Active"
  321. msgstr ""
  322. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:203
  323. msgid "Active <abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Routes"
  324. msgstr ""
  325. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:209
  326. msgid "Active <abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Routes"
  327. msgstr ""
  328. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:81
  329. msgid "Active Connections"
  330. msgstr ""
  331. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:33
  332. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:173
  333. msgid "Active DHCP Leases"
  334. msgstr ""
  335. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:52
  336. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:175
  337. msgid "Active DHCPv6 Leases"
  338. msgstr ""
  339. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:203
  340. msgid "Active-Backup policy (active-backup, 1)"
  341. msgstr ""
  342. #: modules/luci-base/htdocs/luci-static/resources/network.js:3864
  343. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:992
  344. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:23
  345. msgid "Ad-Hoc"
  346. msgstr "Ad-Hoc"
  347. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:208
  348. msgid "Adaptive load balancing (balance-alb, 6)"
  349. msgstr ""
  350. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:207
  351. msgid "Adaptive transmit load balancing (balance-tlb, 5)"
  352. msgstr ""
  353. #: modules/luci-base/htdocs/luci-static/resources/form.js:2192
  354. #: modules/luci-base/htdocs/luci-static/resources/form.js:2195
  355. #: modules/luci-base/htdocs/luci-static/resources/form.js:2209
  356. #: modules/luci-base/htdocs/luci-static/resources/form.js:2210
  357. #: modules/luci-base/htdocs/luci-static/resources/form.js:3195
  358. #: modules/luci-compat/luasrc/view/cbi/nsection.htm:25
  359. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:189
  360. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:197
  361. #: modules/luci-compat/luasrc/view/cbi/tsection.htm:39
  362. #: modules/luci-compat/luasrc/view/cbi/tsection.htm:47
  363. #: modules/luci-compat/luasrc/view/cbi/ucisection.htm:54
  364. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:884
  365. msgid "Add"
  366. msgstr ""
  367. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1497
  368. msgid "Add ATM Bridge"
  369. msgstr ""
  370. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:92
  371. msgid "Add IPv4 address…"
  372. msgstr ""
  373. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:185
  374. msgid "Add IPv6 address…"
  375. msgstr ""
  376. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:65
  377. msgid "Add LED action"
  378. msgstr ""
  379. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:219
  380. msgid "Add VLAN"
  381. msgstr ""
  382. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1287
  383. msgid "Add device configuration"
  384. msgstr ""
  385. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1227
  386. msgid "Add device configuration…"
  387. msgstr ""
  388. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:15
  389. msgid "Add instance"
  390. msgstr ""
  391. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:165
  392. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:171
  393. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:268
  394. msgid "Add key"
  395. msgstr ""
  396. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:248
  397. msgid "Add local domain suffix to names served from hosts files"
  398. msgstr ""
  399. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:465
  400. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1114
  401. msgid "Add new interface..."
  402. msgstr ""
  403. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:120
  404. msgid "Add peer"
  405. msgstr ""
  406. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:331
  407. msgid "Add to Blacklist"
  408. msgstr ""
  409. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:331
  410. msgid "Add to Whitelist"
  411. msgstr ""
  412. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:200
  413. msgid "Additional Hosts files"
  414. msgstr ""
  415. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:255
  416. msgid "Additional servers file"
  417. msgstr ""
  418. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:34
  419. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:35
  420. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:36
  421. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:37
  422. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:38
  423. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:39
  424. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:40
  425. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:41
  426. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:42
  427. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:43
  428. msgid "Address"
  429. msgstr ""
  430. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:151
  431. msgid "Address to access local relay bridge"
  432. msgstr ""
  433. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:285
  434. msgid "Addresses"
  435. msgstr ""
  436. #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:3
  437. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:15
  438. msgid "Administration"
  439. msgstr ""
  440. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:164
  441. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:478
  442. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:633
  443. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1523
  444. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:25
  445. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:923
  446. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:987
  447. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:241
  448. msgid "Advanced Settings"
  449. msgstr ""
  450. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:337
  451. msgid "Advanced device options"
  452. msgstr ""
  453. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:513
  454. msgid "Ageing time"
  455. msgstr ""
  456. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:27
  457. msgid "Aggregate Transmit Power (ACTATP)"
  458. msgstr ""
  459. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:258
  460. msgid "Aggregation Selection Logic"
  461. msgstr ""
  462. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:261
  463. msgid "Aggregator: All slaves down or has no slaves (stable, 0)"
  464. msgstr ""
  465. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:263
  466. msgid ""
  467. "Aggregator: Chosen by the largest number of ports + slave added/removed or "
  468. "state changes (count, 2)"
  469. msgstr ""
  470. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:262
  471. msgid "Aggregator: Slave added/removed or state changes (bandwidth, 1)"
  472. msgstr ""
  473. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:178
  474. msgid "Alert"
  475. msgstr ""
  476. #: modules/luci-base/htdocs/luci-static/resources/network.js:2985
  477. #: modules/luci-compat/luasrc/model/network.lua:1417
  478. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:62
  479. msgid "Alias Interface"
  480. msgstr ""
  481. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:146
  482. msgid "Alias of \"%s\""
  483. msgstr ""
  484. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:263
  485. msgid "All Servers"
  486. msgstr ""
  487. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:209
  488. msgid ""
  489. "Allocate IP addresses sequentially, starting from the lowest available "
  490. "address"
  491. msgstr ""
  492. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:208
  493. msgid "Allocate IP sequentially"
  494. msgstr ""
  495. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:25
  496. msgid "Allow <abbr title=\"Secure Shell\">SSH</abbr> password authentication"
  497. msgstr ""
  498. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1184
  499. msgid "Allow AP mode to disconnect STAs based on low ACK condition"
  500. msgstr ""
  501. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1088
  502. msgid "Allow all except listed"
  503. msgstr ""
  504. #: modules/luci-compat/root/usr/share/rpcd/acl.d/luci-compat.json:3
  505. msgid "Allow full UCI access for legacy applications"
  506. msgstr ""
  507. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:943
  508. msgid "Allow legacy 802.11b rates"
  509. msgstr ""
  510. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1087
  511. msgid "Allow listed only"
  512. msgstr ""
  513. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:300
  514. msgid "Allow localhost"
  515. msgstr ""
  516. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:157
  517. msgid "Allow rebooting the device"
  518. msgstr ""
  519. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:36
  520. msgid "Allow remote hosts to connect to local SSH forwarded ports"
  521. msgstr ""
  522. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:31
  523. msgid "Allow root logins with password"
  524. msgstr ""
  525. #: modules/luci-base/root/usr/share/rpcd/acl.d/luci-base.json:3
  526. msgid "Allow system feature probing"
  527. msgstr ""
  528. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:31
  529. msgid "Allow the <em>root</em> user to login with password"
  530. msgstr ""
  531. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301
  532. msgid ""
  533. "Allow upstream responses in the 127.0.0.0/8 range, e.g. for RBL services"
  534. msgstr ""
  535. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:143
  536. msgid "Allowed IPs"
  537. msgstr ""
  538. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:708
  539. msgid "Always"
  540. msgstr ""
  541. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/none.js:5
  542. msgid "Always off (kernel: none)"
  543. msgstr ""
  544. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/default-on.js:6
  545. msgid "Always on (kernel: default-on)"
  546. msgstr ""
  547. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:970
  548. msgid ""
  549. "Always use 40MHz channels even if the secondary channel overlaps. Using this "
  550. "option does not comply with IEEE 802.11n-2009!"
  551. msgstr ""
  552. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:673
  553. msgid "Amount of Duplicate Address Detection probes to send"
  554. msgstr ""
  555. #: modules/luci-base/htdocs/luci-static/resources/form.js:603
  556. msgid "An error occurred while saving the form:"
  557. msgstr ""
  558. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:125
  559. msgid "An optional, short description for this device"
  560. msgstr ""
  561. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1445
  562. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:20
  563. msgid "Annex"
  564. msgstr ""
  565. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1446
  566. msgid "Annex A + L + M (all)"
  567. msgstr ""
  568. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1454
  569. msgid "Annex A G.992.1"
  570. msgstr ""
  571. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1455
  572. msgid "Annex A G.992.2"
  573. msgstr ""
  574. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1456
  575. msgid "Annex A G.992.3"
  576. msgstr ""
  577. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1457
  578. msgid "Annex A G.992.5"
  579. msgstr ""
  580. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1447
  581. msgid "Annex B (all)"
  582. msgstr ""
  583. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1450
  584. msgid "Annex B G.992.1"
  585. msgstr ""
  586. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1451
  587. msgid "Annex B G.992.3"
  588. msgstr ""
  589. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1452
  590. msgid "Annex B G.992.5"
  591. msgstr ""
  592. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1448
  593. msgid "Annex J (all)"
  594. msgstr ""
  595. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1458
  596. msgid "Annex L G.992.3 POTS 1"
  597. msgstr ""
  598. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1449
  599. msgid "Annex M (all)"
  600. msgstr ""
  601. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1459
  602. msgid "Annex M G.992.3"
  603. msgstr ""
  604. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1460
  605. msgid "Annex M G.992.5"
  606. msgstr ""
  607. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:885
  608. msgid "Announce this device as IPv6 DNS server."
  609. msgstr ""
  610. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:777
  611. msgid ""
  612. "Announce this device as default router if a local IPv6 default route is "
  613. "present."
  614. msgstr ""
  615. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:779
  616. msgid ""
  617. "Announce this device as default router if a public IPv6 prefix is available, "
  618. "regardless of local default route availability."
  619. msgstr ""
  620. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:781
  621. msgid ""
  622. "Announce this device as default router regardless of whether a prefix or "
  623. "default route is present."
  624. msgstr ""
  625. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:890
  626. msgid "Announced DNS domains"
  627. msgstr ""
  628. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:878
  629. msgid "Announced IPv6 DNS servers"
  630. msgstr ""
  631. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1668
  632. msgid "Anonymous Identity"
  633. msgstr ""
  634. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:162
  635. msgid "Anonymous Mount"
  636. msgstr ""
  637. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:158
  638. msgid "Anonymous Swap"
  639. msgstr ""
  640. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:84
  641. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:174
  642. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:195
  643. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:60
  644. msgid "Any zone"
  645. msgstr ""
  646. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:119
  647. msgid "Apply backup?"
  648. msgstr ""
  649. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4299
  650. msgid "Apply request failed with status <code>%h</code>"
  651. msgstr ""
  652. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2182
  653. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4165
  654. msgid "Apply unchecked"
  655. msgstr ""
  656. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4238
  657. msgid "Applying configuration changes… %ds"
  658. msgstr ""
  659. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:56
  660. msgid "Architecture"
  661. msgstr ""
  662. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:958
  663. msgid ""
  664. "Assign a part of given length of every public IPv6-prefix to this interface"
  665. msgstr ""
  666. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:963
  667. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:27
  668. msgid ""
  669. "Assign prefix parts using this hexadecimal subprefix ID for this interface."
  670. msgstr ""
  671. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2158
  672. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:362
  673. msgid "Associated Stations"
  674. msgstr ""
  675. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:145
  676. msgid "Associations"
  677. msgstr ""
  678. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:154
  679. msgid "Attempt to enable configured mount points for attached devices"
  680. msgstr ""
  681. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:110
  682. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:64
  683. msgid "Auth Group"
  684. msgstr ""
  685. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1607
  686. msgid "Authentication"
  687. msgstr ""
  688. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:97
  689. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:71
  690. msgid "Authentication Type"
  691. msgstr ""
  692. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:172
  693. msgid "Authoritative"
  694. msgstr ""
  695. #: modules/luci-base/luasrc/view/sysauth.htm:17
  696. msgid "Authorization Required"
  697. msgstr ""
  698. #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:196
  699. #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:197
  700. msgid "Auto Refresh"
  701. msgstr ""
  702. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:108
  703. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:18
  704. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:24
  705. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:100
  706. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:51
  707. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:96
  708. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:82
  709. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:56
  710. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:69
  711. msgid "Automatic"
  712. msgstr ""
  713. #: modules/luci-compat/luasrc/model/network/proto_hnet.lua:7
  714. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:7
  715. msgid "Automatic Homenet (HNCP)"
  716. msgstr ""
  717. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:174
  718. msgid "Automatically check filesystem for errors before mounting"
  719. msgstr ""
  720. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:170
  721. msgid "Automatically mount filesystems on hotplug"
  722. msgstr ""
  723. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:166
  724. msgid "Automatically mount swap on hotplug"
  725. msgstr ""
  726. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:170
  727. msgid "Automount Filesystem"
  728. msgstr ""
  729. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:166
  730. msgid "Automount Swap"
  731. msgstr ""
  732. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:193
  733. msgid "Available"
  734. msgstr ""
  735. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:270
  736. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:280
  737. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:331
  738. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:341
  739. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:351
  740. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:236
  741. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:246
  742. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:256
  743. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:265
  744. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:275
  745. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:293
  746. msgid "Average:"
  747. msgstr ""
  748. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1466
  749. msgid "B43 + B43C"
  750. msgstr "B43 + B43C"
  751. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1467
  752. msgid "B43 + B43C + V43"
  753. msgstr "B43 + B43C + V43"
  754. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:48
  755. msgid "BR / DMR / AFTR"
  756. msgstr "BR / DMR / AFTR"
  757. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:158
  758. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:182
  759. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1735
  760. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:379
  761. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:143
  762. msgid "BSSID"
  763. msgstr "BSSID"
  764. #: modules/luci-compat/luasrc/view/cbi/footer.htm:14
  765. #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:48
  766. msgid "Back to Overview"
  767. msgstr ""
  768. #: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:48
  769. msgid "Back to configuration"
  770. msgstr ""
  771. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:361
  772. msgid "Backup"
  773. msgstr ""
  774. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:114
  775. msgid "Backup / Flash Firmware"
  776. msgstr ""
  777. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:321
  778. #: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:12
  779. msgid "Backup file list"
  780. msgstr ""
  781. #: modules/luci-compat/luasrc/view/cbi/wireless_modefreq.htm:158
  782. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:501
  783. msgid "Band"
  784. msgstr ""
  785. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:377
  786. msgid "Base device"
  787. msgstr ""
  788. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:973
  789. msgid "Beacon Interval"
  790. msgstr ""
  791. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:322
  792. #: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:46
  793. msgid ""
  794. "Below is the determined list of files to backup. It consists of changed "
  795. "configuration files marked by opkg, essential base files and the user "
  796. "defined backup patterns."
  797. msgstr ""
  798. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:395
  799. msgid ""
  800. "Bind dynamically to interfaces rather than wildcard address (recommended as "
  801. "linux default)"
  802. msgstr ""
  803. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:59
  804. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64
  805. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64
  806. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:69
  807. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:48
  808. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:55
  809. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:57
  810. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:52
  811. msgid "Bind interface"
  812. msgstr ""
  813. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:59
  814. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64
  815. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64
  816. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:69
  817. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:48
  818. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:55
  819. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:57
  820. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:52
  821. msgid "Bind the tunnel to this interface (optional)."
  822. msgstr ""
  823. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:129
  824. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:188
  825. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:165
  826. msgid "Bitrate"
  827. msgstr ""
  828. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:266
  829. msgid "Bogus NX Domain Override"
  830. msgstr ""
  831. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:199
  832. msgid "Bonding Policy"
  833. msgstr ""
  834. #: modules/luci-base/htdocs/luci-static/resources/network.js:2991
  835. #: modules/luci-compat/luasrc/model/network.lua:1421
  836. msgid "Bridge"
  837. msgstr ""
  838. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:437
  839. msgctxt "MACVLAN mode"
  840. msgid "Bridge (Support direct communication between MAC VLANs)"
  841. msgstr ""
  842. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:339
  843. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:481
  844. msgid "Bridge VLAN filtering"
  845. msgstr ""
  846. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:344
  847. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1368
  848. msgid "Bridge device"
  849. msgstr ""
  850. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:338
  851. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:480
  852. msgid "Bridge port specific options"
  853. msgstr ""
  854. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:468
  855. msgid "Bridge ports"
  856. msgstr ""
  857. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1533
  858. msgid "Bridge unit number"
  859. msgstr ""
  860. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:504
  861. msgid "Bring up empty bridge"
  862. msgstr ""
  863. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:575
  864. msgid "Bring up on boot"
  865. msgstr ""
  866. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:504
  867. msgid "Bring up the bridge interface even if no ports are attached"
  868. msgstr ""
  869. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:205
  870. msgid "Broadcast policy (broadcast, 3)"
  871. msgstr ""
  872. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2831
  873. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3822
  874. msgid "Browse…"
  875. msgstr ""
  876. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:37
  877. msgid "Buffered"
  878. msgstr ""
  879. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:144
  880. msgid "CA certificate; if empty it will be saved after the first connection."
  881. msgstr ""
  882. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:7
  883. msgid "CLAT configuration failed"
  884. msgstr ""
  885. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:72
  886. msgid "CPU usage (%)"
  887. msgstr ""
  888. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:41
  889. msgid "Cached"
  890. msgstr ""
  891. #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:53
  892. #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:53
  893. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:21
  894. msgid "Call failed"
  895. msgstr ""
  896. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2924
  897. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3831
  898. #: modules/luci-compat/luasrc/view/cbi/delegator.htm:14
  899. #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:52
  900. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:188
  901. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1120
  902. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2032
  903. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:128
  904. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:270
  905. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:203
  906. msgid "Cancel"
  907. msgstr "Отмени"
  908. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:17
  909. msgid "Category"
  910. msgstr ""
  911. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1591
  912. msgid "Certificate constraint (Domain)"
  913. msgstr ""
  914. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1588
  915. msgid "Certificate constraint (SAN)"
  916. msgstr ""
  917. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1585
  918. msgid "Certificate constraint (Subject)"
  919. msgstr ""
  920. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1594
  921. msgid "Certificate constraint (Wildcard)"
  922. msgstr ""
  923. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1585
  924. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1643
  925. msgid ""
  926. "Certificate constraint substring - e.g. /CN=wifi.mycompany.com<br />See "
  927. "`logread -f` during handshake for actual values"
  928. msgstr ""
  929. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1591
  930. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1649
  931. msgid ""
  932. "Certificate constraint(s) against DNS SAN values (if available)<br />or "
  933. "Subject CN (exact match)"
  934. msgstr ""
  935. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1594
  936. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1652
  937. msgid ""
  938. "Certificate constraint(s) against DNS SAN values (if available)<br />or "
  939. "Subject CN (suffix match)"
  940. msgstr ""
  941. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1588
  942. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1646
  943. msgid ""
  944. "Certificate constraint(s) via Subject Alternate Name values<br />(supported "
  945. "attributes: EMAIL, DNS, URI) - e.g. DNS:wifi.mycompany.com"
  946. msgstr ""
  947. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:54
  948. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:57
  949. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:212
  950. msgid "Chain"
  951. msgstr ""
  952. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4051
  953. msgid "Changes"
  954. msgstr ""
  955. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4334
  956. msgid "Changes have been reverted."
  957. msgstr ""
  958. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:46
  959. msgid "Changes the administrator password for accessing the device"
  960. msgstr ""
  961. #: modules/luci-compat/luasrc/view/cbi/wireless_modefreq.htm:162
  962. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:128
  963. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:184
  964. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:510
  965. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1733
  966. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:376
  967. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:164
  968. msgid "Channel"
  969. msgstr ""
  970. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:75
  971. msgid "Channel Analysis"
  972. msgstr ""
  973. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:377
  974. msgid "Channel Width"
  975. msgstr ""
  976. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:174
  977. msgid "Check filesystems before mount"
  978. msgstr ""
  979. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1994
  980. msgid "Check this option to delete the existing networks from this radio."
  981. msgstr ""
  982. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:110
  983. msgid "Checking archive…"
  984. msgstr ""
  985. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:193
  986. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:195
  987. msgid "Checking image…"
  988. msgstr ""
  989. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:397
  990. msgid "Choose mtdblock"
  991. msgstr ""
  992. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:580
  993. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2022
  994. msgid ""
  995. "Choose the firewall zone you want to assign to this interface. Select "
  996. "<em>unspecified</em> to remove the interface from the associated zone or "
  997. "fill out the <em>custom</em> field to define a new zone and attach the "
  998. "interface to it."
  999. msgstr ""
  1000. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1022
  1001. msgid ""
  1002. "Choose the network(s) you want to attach to this wireless interface or fill "
  1003. "out the <em>custom</em> field to define a new network."
  1004. msgstr ""
  1005. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1220
  1006. msgid "Cipher"
  1007. msgstr ""
  1008. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:91
  1009. msgid "Cisco UDP encapsulation"
  1010. msgstr ""
  1011. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:361
  1012. msgid ""
  1013. "Click \"Generate archive\" to download a tar archive of the current "
  1014. "configuration files."
  1015. msgstr ""
  1016. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:394
  1017. msgid ""
  1018. "Click \"Save mtdblock\" to download specified mtdblock file. (NOTE: THIS "
  1019. "FEATURE IS FOR PROFESSIONALS! )"
  1020. msgstr ""
  1021. #: modules/luci-base/htdocs/luci-static/resources/network.js:3863
  1022. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:991
  1023. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1105
  1024. msgid "Client"
  1025. msgstr ""
  1026. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37
  1027. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:33
  1028. msgid "Client ID to send when requesting DHCP"
  1029. msgstr ""
  1030. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4068
  1031. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:167
  1032. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:173
  1033. msgid "Close"
  1034. msgstr ""
  1035. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:144
  1036. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:128
  1037. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:114
  1038. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:92
  1039. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:101
  1040. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:124
  1041. msgid ""
  1042. "Close inactive connection after the given amount of seconds, use 0 to "
  1043. "persist connection"
  1044. msgstr ""
  1045. #: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:49
  1046. msgid "Close list..."
  1047. msgstr ""
  1048. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:42
  1049. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:61
  1050. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2156
  1051. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:391
  1052. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:352
  1053. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:355
  1054. #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:204
  1055. msgid "Collecting data..."
  1056. msgstr ""
  1057. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:71
  1058. msgid "Command"
  1059. msgstr ""
  1060. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:401
  1061. msgid "Command OK"
  1062. msgstr ""
  1063. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:33
  1064. msgid "Command failed"
  1065. msgstr ""
  1066. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:73
  1067. msgid "Comment"
  1068. msgstr ""
  1069. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1704
  1070. msgid ""
  1071. "Complicates key reinstallation attacks on the client side by disabling "
  1072. "retransmission of EAPOL-Key frames that are used to install keys. This "
  1073. "workaround might cause interoperability issues and reduced robustness of key "
  1074. "negotiation especially in environments with heavy traffic load."
  1075. msgstr ""
  1076. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:101
  1077. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:106
  1078. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:103
  1079. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:108
  1080. msgid "Compute outgoing checksum (optional)."
  1081. msgstr ""
  1082. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4051
  1083. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:424
  1084. msgid "Configuration"
  1085. msgstr ""
  1086. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4213
  1087. msgid "Configuration changes applied."
  1088. msgstr ""
  1089. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4151
  1090. msgid "Configuration changes have been rolled back!"
  1091. msgstr ""
  1092. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:63
  1093. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:21
  1094. msgid "Configuration failed"
  1095. msgstr ""
  1096. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:952
  1097. msgid ""
  1098. "Configures data rates based on the coverage cell density. Normal configures "
  1099. "basic rates to 6, 12, 24 Mbps if legacy 802.11b rates are not used else to "
  1100. "5.5, 11 Mbps. High configures basic rates to 12, 24 Mbps if legacy 802.11b "
  1101. "rates are not used else to the 11 Mbps rate. Very High configures 24 Mbps as "
  1102. "the basic rate. Supported rates lower than the minimum basic rate are not "
  1103. "offered."
  1104. msgstr ""
  1105. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:775
  1106. msgid ""
  1107. "Configures the default router advertisement in <abbr title=\"Router "
  1108. "Advertisement\">RA</abbr> messages."
  1109. msgstr ""
  1110. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:764
  1111. msgid ""
  1112. "Configures the operation mode of the <abbr title=\"Router Advertisement"
  1113. "\">RA</abbr> service on this interface."
  1114. msgstr ""
  1115. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:868
  1116. msgid "Configures the operation mode of the DHCPv6 service on this interface."
  1117. msgstr ""
  1118. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:898
  1119. msgid ""
  1120. "Configures the operation mode of the NDP proxy service on this interface."
  1121. msgstr ""
  1122. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1273
  1123. msgid "Configure…"
  1124. msgstr ""
  1125. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:176
  1126. msgid "Confirm disconnect"
  1127. msgstr ""
  1128. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:55
  1129. msgid "Confirmation"
  1130. msgstr ""
  1131. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:97
  1132. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:100
  1133. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:47
  1134. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:51
  1135. msgid "Connected"
  1136. msgstr ""
  1137. #: modules/luci-base/htdocs/luci-static/resources/network.js:9
  1138. #: modules/luci-compat/luasrc/model/network.lua:27
  1139. msgid "Connection attempt failed"
  1140. msgstr ""
  1141. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:40
  1142. msgid "Connection attempt failed."
  1143. msgstr ""
  1144. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:411
  1145. msgid "Connection lost"
  1146. msgstr ""
  1147. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:130
  1148. msgid "Connections"
  1149. msgstr ""
  1150. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:377
  1151. msgid "Consider the slave up when all ARP IP targets are reachable (all, 1)"
  1152. msgstr ""
  1153. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:376
  1154. msgid "Consider the slave up when any ARP IP target is reachable (any, 0)"
  1155. msgstr ""
  1156. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/crontab.js:18
  1157. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:338
  1158. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:55
  1159. msgid "Contents have been saved."
  1160. msgstr ""
  1161. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:399
  1162. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:433
  1163. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:799
  1164. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:132
  1165. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:262
  1166. msgid "Continue"
  1167. msgstr ""
  1168. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4187
  1169. msgid ""
  1170. "Could not regain access to the device after applying the configuration "
  1171. "changes. You might need to reconnect if you modified network related "
  1172. "settings such as the IP address or wireless security credentials."
  1173. msgstr ""
  1174. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:189
  1175. msgid "Country"
  1176. msgstr ""
  1177. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:949
  1178. msgid "Country Code"
  1179. msgstr ""
  1180. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:952
  1181. msgid "Coverage cell density"
  1182. msgstr ""
  1183. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:580
  1184. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2022
  1185. msgid "Create / Assign firewall-zone"
  1186. msgstr ""
  1187. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1149
  1188. msgid "Create interface"
  1189. msgstr ""
  1190. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:177
  1191. msgid "Critical"
  1192. msgstr ""
  1193. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:181
  1194. msgid "Cron Log Level"
  1195. msgstr ""
  1196. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:590
  1197. msgid "Current power"
  1198. msgstr ""
  1199. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:569
  1200. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:571
  1201. #: modules/luci-compat/luasrc/view/cbi/network_ifacelist.htm:51
  1202. #: modules/luci-compat/luasrc/view/cbi/network_ifacelist.htm:53
  1203. #: modules/luci-compat/luasrc/view/cbi/network_ifacelist.htm:82
  1204. #: modules/luci-compat/luasrc/view/cbi/network_ifacelist.htm:83
  1205. msgid "Custom Interface"
  1206. msgstr ""
  1207. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:380
  1208. msgid ""
  1209. "Custom files (certificates, scripts) may remain on the system. To prevent "
  1210. "this, perform a factory-reset first."
  1211. msgstr ""
  1212. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/timer.js:6
  1213. msgid "Custom flash interval (kernel: timer)"
  1214. msgstr ""
  1215. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:59
  1216. msgid ""
  1217. "Customizes the behaviour of the device <abbr title=\"Light Emitting Diode"
  1218. "\">LED</abbr>s if possible."
  1219. msgstr ""
  1220. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:673
  1221. msgid "DAD transmits"
  1222. msgstr ""
  1223. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1425
  1224. msgid "DAE-Client"
  1225. msgstr ""
  1226. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1430
  1227. msgid "DAE-Port"
  1228. msgstr ""
  1229. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1435
  1230. msgid "DAE-Secret"
  1231. msgstr ""
  1232. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:483
  1233. msgid "DHCP Server"
  1234. msgstr ""
  1235. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:155
  1236. #: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:50
  1237. msgid "DHCP and DNS"
  1238. msgstr ""
  1239. #: modules/luci-base/htdocs/luci-static/resources/network.js:2100
  1240. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:16
  1241. #: modules/luci-compat/luasrc/model/network.lua:969
  1242. msgid "DHCP client"
  1243. msgstr ""
  1244. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:707
  1245. msgid "DHCP-Options"
  1246. msgstr ""
  1247. #: modules/luci-compat/luasrc/model/network/proto_dhcpv6.lua:7
  1248. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:7
  1249. msgid "DHCPv6 client"
  1250. msgstr ""
  1251. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:867
  1252. msgid "DHCPv6-Service"
  1253. msgstr ""
  1254. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:45
  1255. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:46
  1256. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:47
  1257. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:48
  1258. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:49
  1259. msgid "DNS"
  1260. msgstr ""
  1261. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:277
  1262. msgid "DNS forwardings"
  1263. msgstr ""
  1264. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:932
  1265. msgid "DNS search domains"
  1266. msgstr ""
  1267. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:937
  1268. msgid "DNS weight"
  1269. msgstr ""
  1270. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:33
  1271. msgid "DNS-Label / FQDN"
  1272. msgstr ""
  1273. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:228
  1274. msgid "DNSSEC"
  1275. msgstr ""
  1276. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:232
  1277. msgid "DNSSEC check unsigned"
  1278. msgstr ""
  1279. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:99
  1280. msgid "DPD Idle Timeout"
  1281. msgstr ""
  1282. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:41
  1283. msgid "DS-Lite AFTR address"
  1284. msgstr ""
  1285. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1442
  1286. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:44
  1287. msgid "DSL"
  1288. msgstr "DSL"
  1289. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:14
  1290. msgid "DSL Status"
  1291. msgstr ""
  1292. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1475
  1293. msgid "DSL line mode"
  1294. msgstr ""
  1295. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1160
  1296. msgid "DTIM Interval"
  1297. msgstr ""
  1298. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:57
  1299. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:127
  1300. msgid "DUID"
  1301. msgstr "DUID"
  1302. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:21
  1303. msgid "Data Rate"
  1304. msgstr ""
  1305. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:172
  1306. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:183
  1307. msgid "Debug"
  1308. msgstr ""
  1309. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1400
  1310. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1415
  1311. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1430
  1312. msgid "Default %d"
  1313. msgstr ""
  1314. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:774
  1315. msgid "Default router"
  1316. msgstr ""
  1317. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/default-on.js:11
  1318. msgid "Default state"
  1319. msgstr ""
  1320. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:707
  1321. msgid ""
  1322. "Define additional DHCP options, for example "
  1323. "\"<code>6,192.168.2.1,192.168.2.2</code>\" which advertises different DNS "
  1324. "servers to clients."
  1325. msgstr ""
  1326. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:462
  1327. msgid ""
  1328. "Defines a mapping of Linux internal packet priority to VLAN header priority "
  1329. "but for outgoing frames"
  1330. msgstr ""
  1331. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:456
  1332. msgid ""
  1333. "Defines a mapping of VLAN header priority to the Linux internal packet "
  1334. "priority on incoming frames"
  1335. msgstr ""
  1336. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:955
  1337. msgid "Delegate IPv6 prefixes"
  1338. msgstr ""
  1339. #: modules/luci-base/htdocs/luci-static/resources/form.js:2262
  1340. #: modules/luci-base/htdocs/luci-static/resources/form.js:2687
  1341. #: modules/luci-base/htdocs/luci-static/resources/form.js:2691
  1342. #: modules/luci-base/htdocs/luci-static/resources/form.js:3179
  1343. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2893
  1344. #: modules/luci-compat/luasrc/view/cbi/nsection.htm:11
  1345. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:162
  1346. #: modules/luci-compat/luasrc/view/cbi/tsection.htm:16
  1347. msgid "Delete"
  1348. msgstr ""
  1349. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:199
  1350. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:205
  1351. msgid "Delete key"
  1352. msgstr ""
  1353. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2790
  1354. msgid "Delete request failed: %s"
  1355. msgstr ""
  1356. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:904
  1357. msgid "Delete this network"
  1358. msgstr ""
  1359. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1160
  1360. msgid "Delivery Traffic Indication Message Interval"
  1361. msgstr ""
  1362. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:340
  1363. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:125
  1364. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:129
  1365. msgid "Description"
  1366. msgstr "Описание"
  1367. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2889
  1368. msgid "Deselect"
  1369. msgstr ""
  1370. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:222
  1371. msgid "Design"
  1372. msgstr ""
  1373. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:715
  1374. msgid "Designated master"
  1375. msgstr ""
  1376. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:386
  1377. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:71
  1378. msgid "Destination"
  1379. msgstr ""
  1380. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:48
  1381. msgid "Destination port"
  1382. msgstr ""
  1383. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:59
  1384. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:165
  1385. msgid "Destination zone"
  1386. msgstr ""
  1387. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:67
  1388. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:191
  1389. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:43
  1390. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:46
  1391. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:81
  1392. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:569
  1393. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1102
  1394. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1384
  1395. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:55
  1396. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:12
  1397. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:247
  1398. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:280
  1399. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:356
  1400. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:392
  1401. msgid "Device"
  1402. msgstr ""
  1403. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:918
  1404. msgid "Device Configuration"
  1405. msgstr ""
  1406. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:132
  1407. msgid "Device is not active"
  1408. msgstr ""
  1409. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:233
  1410. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:656
  1411. msgid "Device is restarting…"
  1412. msgstr ""
  1413. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:441
  1414. msgid "Device name"
  1415. msgstr ""
  1416. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:45
  1417. msgid "Device not managed by ModemManager."
  1418. msgstr ""
  1419. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1359
  1420. msgid "Device not present"
  1421. msgstr ""
  1422. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:341
  1423. msgid "Device type"
  1424. msgstr ""
  1425. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4186
  1426. msgid "Device unreachable!"
  1427. msgstr ""
  1428. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:53
  1429. msgid "Device unreachable! Still waiting for device..."
  1430. msgstr "Недостъпно устройство! Все още се изчаква устройството..."
  1431. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1224
  1432. msgid "Devices"
  1433. msgstr ""
  1434. #: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:88
  1435. msgid "Diagnostics"
  1436. msgstr ""
  1437. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:102
  1438. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:94
  1439. msgid "Dial number"
  1440. msgstr ""
  1441. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2686
  1442. msgid "Directory"
  1443. msgstr ""
  1444. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:896
  1445. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:936
  1446. msgid "Disable"
  1447. msgstr ""
  1448. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:666
  1449. msgid ""
  1450. "Disable <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</abbr> for "
  1451. "this interface."
  1452. msgstr ""
  1453. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:174
  1454. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:375
  1455. msgid "Disable DNS lookups"
  1456. msgstr ""
  1457. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:93
  1458. msgid "Disable Encryption"
  1459. msgstr ""
  1460. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1170
  1461. msgid "Disable Inactivity Polling"
  1462. msgstr ""
  1463. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:894
  1464. msgid "Disable this network"
  1465. msgstr ""
  1466. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:953
  1467. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1679
  1468. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:13
  1469. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:66
  1470. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:109
  1471. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:101
  1472. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:52
  1473. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:97
  1474. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:83
  1475. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:57
  1476. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:70
  1477. msgid "Disabled"
  1478. msgstr ""
  1479. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1184
  1480. msgid "Disassociate On Low Acknowledgement"
  1481. msgstr ""
  1482. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:294
  1483. msgid "Discard upstream RFC1918 responses"
  1484. msgstr ""
  1485. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:198
  1486. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:722
  1487. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:332
  1488. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:347
  1489. msgid "Disconnect"
  1490. msgstr ""
  1491. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:64
  1492. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:22
  1493. msgid "Disconnection attempt failed"
  1494. msgstr ""
  1495. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:48
  1496. msgid "Disconnection attempt failed."
  1497. msgstr ""
  1498. #: modules/luci-base/htdocs/luci-static/resources/form.js:606
  1499. #: modules/luci-base/htdocs/luci-static/resources/form.js:2886
  1500. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3330
  1501. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4157
  1502. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1758
  1503. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:328
  1504. msgid "Dismiss"
  1505. msgstr "Откажи"
  1506. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:958
  1507. msgid "Distance Optimization"
  1508. msgstr ""
  1509. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:958
  1510. msgid "Distance to farthest network member in meters."
  1511. msgstr ""
  1512. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:155
  1513. msgid ""
  1514. "Dnsmasq is a combined <abbr title=\"Dynamic Host Configuration Protocol"
  1515. "\">DHCP</abbr>-Server and <abbr title=\"Domain Name System\">DNS</abbr>-"
  1516. "Forwarder for <abbr title=\"Network Address Translation\">NAT</abbr> "
  1517. "firewalls"
  1518. msgstr ""
  1519. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:252
  1520. msgid "Do not cache negative replies, e.g. for not existing domains"
  1521. msgstr ""
  1522. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:86
  1523. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:91
  1524. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:88
  1525. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:93
  1526. msgid "Do not create host route to peer (optional)."
  1527. msgstr ""
  1528. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:219
  1529. msgid "Do not forward requests that cannot be answered by public name servers"
  1530. msgstr ""
  1531. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:214
  1532. msgid "Do not forward reverse lookups for local networks"
  1533. msgstr ""
  1534. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:870
  1535. msgid "Do not offer DHCPv6 service on this interface."
  1536. msgstr ""
  1537. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:158
  1538. msgctxt "VLAN port state"
  1539. msgid "Do not participate"
  1540. msgstr ""
  1541. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:900
  1542. msgid ""
  1543. "Do not proxy any <abbr title=\"Neighbour Discovery Protocol\">NDP</abbr> "
  1544. "packets."
  1545. msgstr ""
  1546. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:25
  1547. msgid "Do not send a hostname"
  1548. msgstr ""
  1549. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:766
  1550. msgid ""
  1551. "Do not send any <abbr title=\"Router Advertisement, ICMPv6 Type 134\">RA</"
  1552. "abbr> messages on this interface."
  1553. msgstr ""
  1554. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2776
  1555. msgid "Do you really want to delete \"%s\" ?"
  1556. msgstr ""
  1557. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:200
  1558. msgid "Do you really want to delete the following SSH key?"
  1559. msgstr ""
  1560. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:94
  1561. msgid "Do you really want to erase all settings?"
  1562. msgstr ""
  1563. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2774
  1564. msgid "Do you really want to recursively delete the directory \"%s\" ?"
  1565. msgstr ""
  1566. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:168
  1567. msgid "Domain required"
  1568. msgstr ""
  1569. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:307
  1570. msgid "Domain whitelist"
  1571. msgstr ""
  1572. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:83
  1573. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:88
  1574. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:67
  1575. msgid "Don't Fragment"
  1576. msgstr ""
  1577. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:169
  1578. msgid ""
  1579. "Don't forward <abbr title=\"Domain Name System\">DNS</abbr>-Requests without "
  1580. "<abbr title=\"Domain Name System\">DNS</abbr>-Name"
  1581. msgstr ""
  1582. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:152
  1583. msgid "Down"
  1584. msgstr ""
  1585. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:402
  1586. msgid "Down Delay"
  1587. msgstr ""
  1588. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:364
  1589. msgid "Download backup"
  1590. msgstr ""
  1591. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:402
  1592. msgid "Download mtdblock"
  1593. msgstr ""
  1594. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1480
  1595. msgid "Downstream SNR offset"
  1596. msgstr ""
  1597. #: modules/luci-base/htdocs/luci-static/resources/form.js:2645
  1598. msgid "Drag to reorder"
  1599. msgstr ""
  1600. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:341
  1601. msgid "Drop Duplicate Frames"
  1602. msgstr ""
  1603. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:12
  1604. msgid "Dropbear Instance"
  1605. msgstr ""
  1606. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:10
  1607. msgid ""
  1608. "Dropbear offers <abbr title=\"Secure Shell\">SSH</abbr> network shell access "
  1609. "and an integrated <abbr title=\"Secure Copy\">SCP</abbr> server"
  1610. msgstr ""
  1611. #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:14
  1612. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:11
  1613. msgid "Dual-Stack Lite (RFC6333)"
  1614. msgstr ""
  1615. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:683
  1616. msgid "Dynamic <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</abbr>"
  1617. msgstr ""
  1618. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:60
  1619. msgid "Dynamic tunnel"
  1620. msgstr ""
  1621. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:683
  1622. msgid ""
  1623. "Dynamically allocate DHCP addresses for clients. If disabled, only clients "
  1624. "having static leases will be served."
  1625. msgstr ""
  1626. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:67
  1627. msgid "EA-bits length"
  1628. msgstr ""
  1629. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1563
  1630. msgid "EAP-Method"
  1631. msgstr ""
  1632. #: modules/luci-base/htdocs/luci-static/resources/form.js:2665
  1633. #: modules/luci-base/htdocs/luci-static/resources/form.js:2668
  1634. #: modules/luci-base/htdocs/luci-static/resources/form.js:3042
  1635. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:154
  1636. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:160
  1637. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:495
  1638. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:901
  1639. msgid "Edit"
  1640. msgstr ""
  1641. #: modules/luci-compat/luasrc/view/cbi/error.htm:13
  1642. msgid ""
  1643. "Edit the raw configuration data above to fix any error and hit \"Save\" to "
  1644. "reload the page."
  1645. msgstr ""
  1646. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:899
  1647. msgid "Edit this network"
  1648. msgstr ""
  1649. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:850
  1650. msgid "Edit wireless network"
  1651. msgstr ""
  1652. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:462
  1653. msgid "Egress QoS mapping"
  1654. msgstr ""
  1655. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:166
  1656. msgctxt "VLAN port state"
  1657. msgid "Egress tagged"
  1658. msgstr ""
  1659. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:162
  1660. msgctxt "VLAN port state"
  1661. msgid "Egress untagged"
  1662. msgstr ""
  1663. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:179
  1664. msgid "Emergency"
  1665. msgstr ""
  1666. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:896
  1667. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:936
  1668. msgid "Enable"
  1669. msgstr ""
  1670. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:538
  1671. msgid ""
  1672. "Enable <abbr title=\"Internet Group Management Protocol\">IGMP</abbr> "
  1673. "snooping"
  1674. msgstr ""
  1675. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:518
  1676. msgid "Enable <abbr title=\"Spanning Tree Protocol\">STP</abbr>"
  1677. msgstr ""
  1678. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:785
  1679. msgid "Enable <abbr title=\"Stateless Address Auto Config\">SLAAC</abbr>"
  1680. msgstr ""
  1681. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:174
  1682. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:369
  1683. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:375
  1684. msgid "Enable DNS lookups"
  1685. msgstr ""
  1686. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:292
  1687. msgid "Enable Dynamic Shuffling Of Flows"
  1688. msgstr ""
  1689. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:60
  1690. msgid "Enable HE.net dynamic endpoint update"
  1691. msgstr ""
  1692. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:665
  1693. msgid "Enable IPv6"
  1694. msgstr ""
  1695. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:90
  1696. msgid "Enable IPv6 negotiation"
  1697. msgstr ""
  1698. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:49
  1699. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:94
  1700. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:80
  1701. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:54
  1702. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:67
  1703. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:93
  1704. msgid "Enable IPv6 negotiation on the PPP link"
  1705. msgstr ""
  1706. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:192
  1707. msgid "Enable Jumbo Frame passthrough"
  1708. msgstr ""
  1709. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:696
  1710. msgid "Enable MAC address learning"
  1711. msgstr ""
  1712. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:242
  1713. msgid "Enable NTP client"
  1714. msgstr ""
  1715. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:96
  1716. msgid "Enable Single DES"
  1717. msgstr ""
  1718. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:368
  1719. msgid "Enable TFTP server"
  1720. msgstr ""
  1721. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:720
  1722. msgid "Enable VLAN filtering"
  1723. msgstr ""
  1724. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:184
  1725. msgid "Enable VLAN functionality"
  1726. msgstr ""
  1727. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1708
  1728. msgid "Enable WPS pushbutton, requires WPA(2)-PSK/WPA3-SAE"
  1729. msgstr ""
  1730. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:955
  1731. msgid ""
  1732. "Enable downstream delegation of IPv6 prefixes available on this interface"
  1733. msgstr ""
  1734. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1704
  1735. msgid "Enable key reinstallation (KRACK) countermeasures"
  1736. msgstr ""
  1737. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:187
  1738. msgid "Enable learning and aging"
  1739. msgstr ""
  1740. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:198
  1741. msgid "Enable mirroring of incoming packets"
  1742. msgstr ""
  1743. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:199
  1744. msgid "Enable mirroring of outgoing packets"
  1745. msgstr ""
  1746. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:715
  1747. msgid "Enable multicast fast leave"
  1748. msgstr ""
  1749. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:547
  1750. msgid "Enable multicast querier"
  1751. msgstr ""
  1752. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:679
  1753. msgid "Enable multicast support"
  1754. msgstr ""
  1755. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1437
  1756. msgid ""
  1757. "Enable packet steering across all CPUs. May help or hinder network speed."
  1758. msgstr ""
  1759. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:622
  1760. msgid "Enable promiscuous mode"
  1761. msgstr ""
  1762. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:71
  1763. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:66
  1764. msgid "Enable rx checksum"
  1765. msgstr ""
  1766. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:89
  1767. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:94
  1768. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:91
  1769. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:96
  1770. msgid "Enable support for multicast traffic (optional)."
  1771. msgstr ""
  1772. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:83
  1773. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:88
  1774. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:67
  1775. msgid "Enable the DF (Don't Fragment) flag of the encapsulating packets."
  1776. msgstr ""
  1777. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:894
  1778. msgid "Enable this network"
  1779. msgstr ""
  1780. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:75
  1781. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:70
  1782. msgid "Enable tx checksum"
  1783. msgstr ""
  1784. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:699
  1785. msgid "Enable unicast flooding"
  1786. msgstr ""
  1787. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:243
  1788. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:352
  1789. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:66
  1790. msgid "Enabled"
  1791. msgstr ""
  1792. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:538
  1793. msgid "Enables IGMP snooping on this bridge"
  1794. msgstr ""
  1795. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1503
  1796. msgid ""
  1797. "Enables fast roaming among access points that belong to the same Mobility "
  1798. "Domain"
  1799. msgstr ""
  1800. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:518
  1801. msgid "Enables the Spanning Tree Protocol on this bridge"
  1802. msgstr ""
  1803. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:59
  1804. msgid "Encapsulation limit"
  1805. msgstr ""
  1806. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1470
  1807. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1528
  1808. msgid "Encapsulation mode"
  1809. msgstr ""
  1810. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:159
  1811. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:183
  1812. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1189
  1813. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1736
  1814. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:144
  1815. msgid "Encryption"
  1816. msgstr ""
  1817. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:156
  1818. msgid "Endpoint Host"
  1819. msgstr ""
  1820. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:160
  1821. msgid "Endpoint Port"
  1822. msgstr ""
  1823. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:684
  1824. msgid "Enforce IGMPv1"
  1825. msgstr ""
  1826. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:685
  1827. msgid "Enforce IGMPv2"
  1828. msgstr ""
  1829. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:686
  1830. msgid "Enforce IGMPv3"
  1831. msgstr ""
  1832. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:691
  1833. msgid "Enforce MLD version 1"
  1834. msgstr ""
  1835. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:692
  1836. msgid "Enforce MLD version 2"
  1837. msgstr ""
  1838. #: modules/luci-compat/luasrc/view/cbi/dropdown.htm:16
  1839. msgid "Enter custom value"
  1840. msgstr ""
  1841. #: modules/luci-compat/luasrc/view/cbi/dropdown.htm:16
  1842. msgid "Enter custom values"
  1843. msgstr ""
  1844. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:97
  1845. msgid "Erasing..."
  1846. msgstr ""
  1847. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:103
  1848. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:104
  1849. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:105
  1850. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:106
  1851. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:107
  1852. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:176
  1853. msgid "Error"
  1854. msgstr ""
  1855. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:29
  1856. msgid "Errored seconds (ES)"
  1857. msgstr ""
  1858. #: modules/luci-base/htdocs/luci-static/resources/network.js:3004
  1859. #: modules/luci-compat/luasrc/model/network.lua:1433
  1860. msgid "Ethernet Adapter"
  1861. msgstr ""
  1862. #: modules/luci-base/htdocs/luci-static/resources/network.js:2995
  1863. #: modules/luci-compat/luasrc/model/network.lua:1423
  1864. msgid "Ethernet Switch"
  1865. msgstr ""
  1866. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:270
  1867. msgid "Every 30 seconds (slow, 0)"
  1868. msgstr ""
  1869. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:271
  1870. msgid "Every second (fast, 1)"
  1871. msgstr ""
  1872. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:406
  1873. msgid "Exclude interfaces"
  1874. msgstr ""
  1875. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:356
  1876. msgid "Existing device"
  1877. msgstr ""
  1878. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:247
  1879. msgid "Expand hosts"
  1880. msgstr ""
  1881. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:972
  1882. msgid "Expecting a hexadecimal assignment hint"
  1883. msgstr ""
  1884. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:18
  1885. msgid "Expecting a valid IPv4 address"
  1886. msgstr ""
  1887. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:18
  1888. msgid "Expecting a valid IPv6 address"
  1889. msgstr ""
  1890. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:28
  1891. msgid "Expecting two priority values separated by a colon"
  1892. msgstr ""
  1893. #: modules/luci-base/htdocs/luci-static/resources/validation.js:64
  1894. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:73
  1895. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:79
  1896. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:107
  1897. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:121
  1898. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:125
  1899. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:129
  1900. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:132
  1901. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:136
  1902. msgid "Expecting: %s"
  1903. msgstr ""
  1904. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:48
  1905. msgid "Expecting: non-empty value"
  1906. msgstr ""
  1907. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:50
  1908. msgid "Expires"
  1909. msgstr ""
  1910. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:679
  1911. msgid ""
  1912. "Expiry time of leased addresses, minimum is 2 minutes (<code>2m</code>)."
  1913. msgstr ""
  1914. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:19
  1915. msgid "External"
  1916. msgstr ""
  1917. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1554
  1918. msgid "External R0 Key Holder List"
  1919. msgstr ""
  1920. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1558
  1921. msgid "External R1 Key Holder List"
  1922. msgstr ""
  1923. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:153
  1924. msgid "External system log server"
  1925. msgstr ""
  1926. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:158
  1927. msgid "External system log server port"
  1928. msgstr ""
  1929. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:163
  1930. msgid "External system log server protocol"
  1931. msgstr ""
  1932. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:79
  1933. msgid "Extra SSH command options"
  1934. msgstr ""
  1935. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:68
  1936. msgid "Extra pppd options"
  1937. msgstr ""
  1938. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:66
  1939. msgid "Extra sstpc options"
  1940. msgstr ""
  1941. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1528
  1942. msgid "FT over DS"
  1943. msgstr ""
  1944. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1529
  1945. msgid "FT over the Air"
  1946. msgstr ""
  1947. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1526
  1948. msgid "FT protocol"
  1949. msgstr ""
  1950. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:87
  1951. msgid "Failed to change the system password."
  1952. msgstr ""
  1953. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4145
  1954. msgid "Failed to confirm apply within %ds, waiting for rollback…"
  1955. msgstr ""
  1956. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:37
  1957. msgid "Failed to execute \"/etc/init.d/%s %s\" action: %s"
  1958. msgstr ""
  1959. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2694
  1960. msgid "File"
  1961. msgstr ""
  1962. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2641
  1963. msgid "File not accessible"
  1964. msgstr ""
  1965. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2832
  1966. msgid "Filename"
  1967. msgstr ""
  1968. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:381
  1969. msgid "Filename of the boot image advertised to clients"
  1970. msgstr ""
  1971. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:191
  1972. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:314
  1973. msgid "Filesystem"
  1974. msgstr ""
  1975. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:213
  1976. msgid "Filter private"
  1977. msgstr ""
  1978. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:218
  1979. msgid "Filter useless"
  1980. msgstr ""
  1981. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:388
  1982. msgid "Filtering for all slaves, no validation"
  1983. msgstr ""
  1984. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:389
  1985. msgid "Filtering for all slaves, validation only for active slave"
  1986. msgstr ""
  1987. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:390
  1988. msgid "Filtering for all slaves, validation only for backup slaves"
  1989. msgstr ""
  1990. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:65
  1991. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:23
  1992. msgid "Finalizing failed"
  1993. msgstr ""
  1994. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:150
  1995. msgid ""
  1996. "Find all currently attached filesystems and swap and replace configuration "
  1997. "with defaults based on what was detected"
  1998. msgstr ""
  1999. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:877
  2000. msgid "Find and join network"
  2001. msgstr ""
  2002. #: modules/luci-compat/luasrc/view/cbi/delegator.htm:9
  2003. msgid "Finish"
  2004. msgstr ""
  2005. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:15
  2006. msgid "Firewall"
  2007. msgstr ""
  2008. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:97
  2009. msgid "Firewall Mark"
  2010. msgstr ""
  2011. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:482
  2012. msgid "Firewall Settings"
  2013. msgstr ""
  2014. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:326
  2015. msgid "Firewall Status"
  2016. msgstr ""
  2017. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1487
  2018. msgid "Firmware File"
  2019. msgstr ""
  2020. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:57
  2021. msgid "Firmware Version"
  2022. msgstr ""
  2023. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:327
  2024. msgid "Fixed source port for outbound DNS queries"
  2025. msgstr ""
  2026. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:281
  2027. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:419
  2028. msgid "Flash image..."
  2029. msgstr ""
  2030. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:277
  2031. msgid "Flash image?"
  2032. msgstr ""
  2033. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:409
  2034. msgid "Flash new firmware image"
  2035. msgstr ""
  2036. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:354
  2037. msgid "Flash operations"
  2038. msgstr ""
  2039. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:286
  2040. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:288
  2041. msgid "Flashing…"
  2042. msgstr ""
  2043. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:686
  2044. msgid "Force"
  2045. msgstr ""
  2046. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:970
  2047. msgid "Force 40MHz mode"
  2048. msgstr ""
  2049. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1230
  2050. msgid "Force CCMP (AES)"
  2051. msgstr ""
  2052. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:686
  2053. msgid "Force DHCP on this network even if another server is detected."
  2054. msgstr ""
  2055. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:682
  2056. msgid "Force IGMP version"
  2057. msgstr ""
  2058. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:689
  2059. msgid "Force MLD version"
  2060. msgstr ""
  2061. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1231
  2062. msgid "Force TKIP"
  2063. msgstr ""
  2064. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1232
  2065. msgid "Force TKIP and CCMP (AES)"
  2066. msgstr ""
  2067. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1215
  2068. msgid "Force link"
  2069. msgstr ""
  2070. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:255
  2071. msgid ""
  2072. "Force upgrade: Select 'Force upgrade' to flash the image even if the image "
  2073. "format check fails. Use only if you are sure that the firmware is correct "
  2074. "and meant for your device!"
  2075. msgstr ""
  2076. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:90
  2077. msgid "Force use of NAT-T"
  2078. msgstr ""
  2079. #: modules/luci-base/luasrc/view/csrftoken.htm:8
  2080. msgid "Form token mismatch"
  2081. msgstr ""
  2082. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:902
  2083. msgid ""
  2084. "Forward <abbr title=\"Neighbour Discovery Protocol\">NDP</abbr> <abbr title="
  2085. "\"Neighbour Solicitation, Type 135\">NS</abbr> and <abbr title=\"Neighbour "
  2086. "Advertisement, Type 136\">NA</abbr> messages between the designated master "
  2087. "interface and downstream interfaces."
  2088. msgstr ""
  2089. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:770
  2090. msgid ""
  2091. "Forward <abbr title=\"Router Advertisement, ICMPv6 Type 134\">RA</abbr> "
  2092. "messages received on the designated master interface to downstream "
  2093. "interfaces."
  2094. msgstr ""
  2095. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:164
  2096. msgid "Forward DHCP traffic"
  2097. msgstr ""
  2098. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:874
  2099. msgid ""
  2100. "Forward DHCPv6 messages between the designated master interface and "
  2101. "downstream interfaces."
  2102. msgstr ""
  2103. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:28
  2104. msgid "Forward Error Correction Seconds (FECS)"
  2105. msgstr ""
  2106. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:161
  2107. msgid "Forward broadcast traffic"
  2108. msgstr ""
  2109. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:527
  2110. msgid "Forward delay"
  2111. msgstr ""
  2112. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:997
  2113. msgid "Forward mesh peer traffic"
  2114. msgstr ""
  2115. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:711
  2116. msgid "Forward multicast packets as unicast packets on this device."
  2117. msgstr ""
  2118. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1535
  2119. msgid "Forwarding mode"
  2120. msgstr ""
  2121. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:962
  2122. msgid "Fragmentation Threshold"
  2123. msgstr ""
  2124. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:110
  2125. msgid ""
  2126. "Further information about WireGuard interfaces and peers at <a href='http://"
  2127. "wireguard.com'>wireguard.com</a>."
  2128. msgstr ""
  2129. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:128
  2130. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:184
  2131. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:164
  2132. msgid "GHz"
  2133. msgstr "GHz"
  2134. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:92
  2135. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:78
  2136. msgid "GPRS only"
  2137. msgstr ""
  2138. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:10
  2139. msgid "GRE tunnel over IPv4"
  2140. msgstr ""
  2141. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:10
  2142. msgid "GRE tunnel over IPv6"
  2143. msgstr ""
  2144. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:10
  2145. msgid "GRETAP tunnel over IPv4"
  2146. msgstr ""
  2147. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:10
  2148. msgid "GRETAP tunnel over IPv6"
  2149. msgstr ""
  2150. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:44
  2151. msgid "Gateway"
  2152. msgstr ""
  2153. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:36
  2154. msgid "Gateway Ports"
  2155. msgstr ""
  2156. #: modules/luci-base/htdocs/luci-static/resources/network.js:11
  2157. #: modules/luci-compat/luasrc/model/network.lua:29
  2158. msgid "Gateway address is invalid"
  2159. msgstr ""
  2160. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:161
  2161. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:477
  2162. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:24
  2163. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:240
  2164. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:108
  2165. msgid "General Settings"
  2166. msgstr ""
  2167. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:632
  2168. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1522
  2169. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:922
  2170. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:984
  2171. msgid "General Setup"
  2172. msgstr ""
  2173. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:336
  2174. msgid "General device options"
  2175. msgstr ""
  2176. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:150
  2177. msgid "Generate Config"
  2178. msgstr ""
  2179. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:66
  2180. msgid "Generate Key"
  2181. msgstr ""
  2182. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1532
  2183. msgid "Generate PMK locally"
  2184. msgstr ""
  2185. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:366
  2186. msgid "Generate archive"
  2187. msgstr ""
  2188. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:79
  2189. msgid "Given password confirmation did not match, password not changed!"
  2190. msgstr ""
  2191. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:146
  2192. msgid "Global Settings"
  2193. msgstr ""
  2194. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1430
  2195. msgid "Global network options"
  2196. msgstr ""
  2197. #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:57
  2198. #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215
  2199. #: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:62
  2200. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:82
  2201. msgid "Go to password configuration..."
  2202. msgstr ""
  2203. #: modules/luci-base/htdocs/luci-static/resources/form.js:2587
  2204. #: modules/luci-base/htdocs/luci-static/resources/form.js:3361
  2205. #: modules/luci-compat/luasrc/view/cbi/full_valueheader.htm:4
  2206. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:58
  2207. msgid "Go to relevant configuration page"
  2208. msgstr ""
  2209. #: modules/luci-mod-network/root/usr/share/rpcd/acl.d/luci-mod-network.json:37
  2210. msgid "Grant access to DHCP configuration"
  2211. msgstr ""
  2212. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:111
  2213. msgid "Grant access to DHCP status display"
  2214. msgstr ""
  2215. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:120
  2216. msgid "Grant access to DSL status display"
  2217. msgstr ""
  2218. #: protocols/luci-proto-openconnect/root/usr/share/rpcd/acl.d/luci-openconnect.json:3
  2219. msgid "Grant access to LuCI OpenConnect procedures"
  2220. msgstr ""
  2221. #: protocols/luci-proto-wireguard/root/usr/share/rpcd/acl.d/luci-wireguard.json:3
  2222. msgid "Grant access to LuCI Wireguard procedures"
  2223. msgstr ""
  2224. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:19
  2225. msgid "Grant access to SSH configuration"
  2226. msgstr ""
  2227. #: modules/luci-base/root/usr/share/rpcd/acl.d/luci-base.json:12
  2228. msgid "Grant access to basic LuCI procedures"
  2229. msgstr ""
  2230. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:64
  2231. msgid "Grant access to crontab configuration"
  2232. msgstr ""
  2233. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:69
  2234. msgid "Grant access to firewall status"
  2235. msgstr ""
  2236. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:116
  2237. msgid "Grant access to flash operations"
  2238. msgstr ""
  2239. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:95
  2240. msgid "Grant access to main status display"
  2241. msgstr ""
  2242. #: protocols/luci-proto-modemmanager/root/usr/share/rpcd/acl.d/luci-proto-modemmanager.json:3
  2243. msgid "Grant access to mmcli"
  2244. msgstr ""
  2245. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:84
  2246. msgid "Grant access to mount configuration"
  2247. msgstr ""
  2248. #: modules/luci-mod-network/root/usr/share/rpcd/acl.d/luci-mod-network.json:3
  2249. msgid "Grant access to network configuration"
  2250. msgstr ""
  2251. #: modules/luci-mod-network/root/usr/share/rpcd/acl.d/luci-mod-network.json:50
  2252. msgid "Grant access to network diagnostic tools"
  2253. msgstr ""
  2254. #: modules/luci-base/root/usr/share/rpcd/acl.d/luci-base.json:36
  2255. msgid "Grant access to network status information"
  2256. msgstr ""
  2257. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:13
  2258. msgid "Grant access to process status"
  2259. msgstr ""
  2260. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:3
  2261. msgid "Grant access to realtime statistics"
  2262. msgstr ""
  2263. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:42
  2264. msgid "Grant access to startup configuration"
  2265. msgstr ""
  2266. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:3
  2267. msgid "Grant access to system configuration"
  2268. msgstr ""
  2269. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:30
  2270. msgid "Grant access to system logs"
  2271. msgstr ""
  2272. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:47
  2273. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:60
  2274. msgid "Grant access to the system route status"
  2275. msgstr ""
  2276. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:129
  2277. msgid "Grant access to wireless status display"
  2278. msgstr ""
  2279. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:66
  2280. msgid "Group Password"
  2281. msgstr ""
  2282. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:22
  2283. msgid "Guest"
  2284. msgstr ""
  2285. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:81
  2286. msgid "HE.net password"
  2287. msgstr ""
  2288. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:73
  2289. msgid "HE.net username"
  2290. msgstr ""
  2291. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:46
  2292. msgid "Hang Up"
  2293. msgstr ""
  2294. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:33
  2295. msgid "Header Error Code Errors (HEC)"
  2296. msgstr ""
  2297. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/heartbeat.js:5
  2298. msgid "Heartbeat interval (kernel: heartbeat)"
  2299. msgstr ""
  2300. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:522
  2301. msgid "Hello interval"
  2302. msgstr ""
  2303. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:100
  2304. msgid ""
  2305. "Here you can configure the basic aspects of your device like its hostname or "
  2306. "the timezone."
  2307. msgstr ""
  2308. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1138
  2309. msgid "Hide <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>"
  2310. msgstr ""
  2311. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:293
  2312. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:332
  2313. msgid "Hide empty chains"
  2314. msgstr ""
  2315. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:955
  2316. msgid "High"
  2317. msgstr ""
  2318. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:55
  2319. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2150
  2320. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:125
  2321. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:230
  2322. msgid "Host"
  2323. msgstr ""
  2324. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/hosts.js:22
  2325. msgid "Host entries"
  2326. msgstr ""
  2327. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:171
  2328. msgid "Host expiry timeout"
  2329. msgstr ""
  2330. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:31
  2331. msgid "Host-<abbr title=\"Internet Protocol Address\">IP</abbr> or Network"
  2332. msgstr ""
  2333. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:88
  2334. msgid "Host-Uniq tag content"
  2335. msgstr ""
  2336. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:36
  2337. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:419
  2338. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/hosts.js:27
  2339. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:54
  2340. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:86
  2341. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:121
  2342. msgid "Hostname"
  2343. msgstr ""
  2344. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:22
  2345. msgid "Hostname to send when requesting DHCP"
  2346. msgstr ""
  2347. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/hosts.js:20
  2348. #: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:63
  2349. msgid "Hostnames"
  2350. msgstr ""
  2351. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:276
  2352. msgid "Human-readable counters"
  2353. msgstr ""
  2354. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:24
  2355. msgid "Hybrid"
  2356. msgstr ""
  2357. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:53
  2358. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:48
  2359. msgid "ID used to uniquely identify the VXLAN"
  2360. msgstr ""
  2361. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:206
  2362. msgid "IEEE 802.3ad Dynamic link aggregation (802.3ad, 4)"
  2363. msgstr ""
  2364. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:75
  2365. msgid "IKE DH Group"
  2366. msgstr ""
  2367. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:83
  2368. msgid "IP Addresses"
  2369. msgstr ""
  2370. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:81
  2371. msgid "IP Protocol"
  2372. msgstr ""
  2373. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:115
  2374. msgid "IP Type"
  2375. msgstr ""
  2376. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/hosts.js:31
  2377. msgid "IP address"
  2378. msgstr ""
  2379. #: modules/luci-base/htdocs/luci-static/resources/network.js:10
  2380. #: modules/luci-compat/luasrc/model/network.lua:28
  2381. msgid "IP address is invalid"
  2382. msgstr ""
  2383. #: modules/luci-base/htdocs/luci-static/resources/network.js:13
  2384. #: modules/luci-compat/luasrc/model/network.lua:31
  2385. msgid "IP address is missing"
  2386. msgstr ""
  2387. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:79
  2388. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:102
  2389. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:86
  2390. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:87
  2391. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:88
  2392. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:89
  2393. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:90
  2394. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:83
  2395. msgid "IPv4"
  2396. msgstr "IPv4"
  2397. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:351
  2398. msgid "IPv4 Firewall"
  2399. msgstr ""
  2400. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:29
  2401. msgid "IPv4 Upstream"
  2402. msgstr ""
  2403. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:178
  2404. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:37
  2405. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:87
  2406. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:155
  2407. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:162
  2408. msgid "IPv4 address"
  2409. msgstr ""
  2410. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:29
  2411. msgid "IPv4 assignment length"
  2412. msgstr ""
  2413. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:181
  2414. msgid "IPv4 broadcast"
  2415. msgstr ""
  2416. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:180
  2417. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:165
  2418. msgid "IPv4 gateway"
  2419. msgstr ""
  2420. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:179
  2421. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:168
  2422. msgid "IPv4 netmask"
  2423. msgstr ""
  2424. #: modules/luci-base/htdocs/luci-static/resources/validation.js:294
  2425. msgid "IPv4 network in address/netmask notation"
  2426. msgstr ""
  2427. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:117
  2428. msgid "IPv4 only"
  2429. msgstr ""
  2430. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:52
  2431. msgid "IPv4 prefix"
  2432. msgstr ""
  2433. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:61
  2434. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:55
  2435. msgid "IPv4 prefix length"
  2436. msgstr ""
  2437. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:84
  2438. msgid "IPv4+IPv6"
  2439. msgstr ""
  2440. #: modules/luci-compat/luasrc/model/network/proto_ipip.lua:9
  2441. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:10
  2442. msgid "IPv4-in-IPv4 (RFC2003)"
  2443. msgstr ""
  2444. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:116
  2445. msgid "IPv4/IPv6 (both - defaults to IPv4)"
  2446. msgstr ""
  2447. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:80
  2448. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:103
  2449. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:91
  2450. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:92
  2451. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:93
  2452. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:94
  2453. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:95
  2454. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:96
  2455. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:97
  2456. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:98
  2457. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:99
  2458. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:100
  2459. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:85
  2460. msgid "IPv6"
  2461. msgstr ""
  2462. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:354
  2463. msgid "IPv6 Firewall"
  2464. msgstr ""
  2465. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:669
  2466. msgid "IPv6 MTU"
  2467. msgstr ""
  2468. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:206
  2469. msgid "IPv6 Neighbours"
  2470. msgstr ""
  2471. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:635
  2472. msgid "IPv6 RA Settings"
  2473. msgstr ""
  2474. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:634
  2475. msgid "IPv6 Settings"
  2476. msgstr ""
  2477. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1434
  2478. msgid "IPv6 ULA-Prefix"
  2479. msgstr ""
  2480. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:29
  2481. msgid "IPv6 Upstream"
  2482. msgstr ""
  2483. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:183
  2484. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:56
  2485. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:126
  2486. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:174
  2487. msgid "IPv6 address"
  2488. msgstr ""
  2489. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:963
  2490. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:27
  2491. msgid "IPv6 assignment hint"
  2492. msgstr ""
  2493. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:958
  2494. msgid "IPv6 assignment length"
  2495. msgstr ""
  2496. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:188
  2497. msgid "IPv6 gateway"
  2498. msgstr ""
  2499. #: modules/luci-base/htdocs/luci-static/resources/validation.js:299
  2500. msgid "IPv6 network in address/netmask notation"
  2501. msgstr ""
  2502. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:118
  2503. msgid "IPv6 only"
  2504. msgstr ""
  2505. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1007
  2506. msgid "IPv6 preference"
  2507. msgstr ""
  2508. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:53
  2509. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:59
  2510. msgid "IPv6 prefix"
  2511. msgstr ""
  2512. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:980
  2513. msgid "IPv6 prefix filter"
  2514. msgstr ""
  2515. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:57
  2516. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:63
  2517. msgid "IPv6 prefix length"
  2518. msgstr ""
  2519. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:192
  2520. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:57
  2521. msgid "IPv6 routed prefix"
  2522. msgstr ""
  2523. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1003
  2524. msgid "IPv6 suffix"
  2525. msgstr ""
  2526. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:51
  2527. msgid "IPv6 support"
  2528. msgstr ""
  2529. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:101
  2530. msgid "IPv6-PD"
  2531. msgstr ""
  2532. #: modules/luci-compat/luasrc/model/network/proto_6x4.lua:13
  2533. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:10
  2534. msgid "IPv6-in-IPv4 (RFC4213)"
  2535. msgstr ""
  2536. #: modules/luci-compat/luasrc/model/network/proto_6x4.lua:17
  2537. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:9
  2538. msgid "IPv6-over-IPv4 (6rd)"
  2539. msgstr ""
  2540. #: modules/luci-compat/luasrc/model/network/proto_6x4.lua:15
  2541. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6to4.js:9
  2542. msgid "IPv6-over-IPv4 (6to4)"
  2543. msgstr ""
  2544. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1665
  2545. msgid "Identity"
  2546. msgstr ""
  2547. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:96
  2548. msgid "If checked, 1DES is enabled"
  2549. msgstr ""
  2550. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:51
  2551. msgid "If checked, adds \"+ipv6\" to the pppd options"
  2552. msgstr ""
  2553. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:93
  2554. msgid "If checked, encryption is disabled"
  2555. msgstr ""
  2556. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:980
  2557. msgid ""
  2558. "If set, downstream subnets are only allocated from the given IPv6 prefix "
  2559. "classes."
  2560. msgstr ""
  2561. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:254
  2562. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:360
  2563. msgid ""
  2564. "If specified, mount the device by its UUID instead of a fixed device node"
  2565. msgstr ""
  2566. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:267
  2567. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:376
  2568. msgid ""
  2569. "If specified, mount the device by the partition label instead of a fixed "
  2570. "device node"
  2571. msgstr ""
  2572. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:919
  2573. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:64
  2574. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:111
  2575. msgid "If unchecked, no default route is configured"
  2576. msgstr ""
  2577. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:923
  2578. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:68
  2579. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:122
  2580. msgid "If unchecked, the advertised DNS server addresses are ignored"
  2581. msgstr ""
  2582. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:339
  2583. msgid ""
  2584. "If your physical memory is insufficient unused data can be temporarily "
  2585. "swapped to a swap-device resulting in a higher amount of usable <abbr title="
  2586. "\"Random Access Memory\">RAM</abbr>. Be aware that swapping data is a very "
  2587. "slow process as the swap-device cannot be accessed with the high datarates "
  2588. "of the <abbr title=\"Random Access Memory\">RAM</abbr>."
  2589. msgstr ""
  2590. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:197
  2591. msgid "Ignore <code>/etc/hosts</code>"
  2592. msgstr ""
  2593. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:666
  2594. msgid "Ignore interface"
  2595. msgstr ""
  2596. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:185
  2597. msgid "Ignore resolve file"
  2598. msgstr ""
  2599. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:417
  2600. msgid "Image"
  2601. msgstr ""
  2602. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:68
  2603. msgid "In"
  2604. msgstr ""
  2605. #: modules/luci-base/luasrc/view/csrftoken.htm:13
  2606. msgid ""
  2607. "In order to prevent unauthorized access to the system, your request has been "
  2608. "blocked. Click \"Continue »\" below to return to the previous page."
  2609. msgstr ""
  2610. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:125
  2611. msgid "In seconds"
  2612. msgstr ""
  2613. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:144
  2614. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:128
  2615. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:114
  2616. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:92
  2617. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:101
  2618. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:124
  2619. msgid "Inactivity timeout"
  2620. msgstr ""
  2621. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:267
  2622. msgid "Inbound:"
  2623. msgstr ""
  2624. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:100
  2625. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:105
  2626. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:102
  2627. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:107
  2628. msgid "Incoming checksum"
  2629. msgstr ""
  2630. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:92
  2631. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:97
  2632. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:94
  2633. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:99
  2634. msgid "Incoming key"
  2635. msgstr ""
  2636. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:102
  2637. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:107
  2638. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:104
  2639. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:109
  2640. msgid "Incoming serialization"
  2641. msgstr ""
  2642. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:173
  2643. msgid "Info"
  2644. msgstr ""
  2645. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:102
  2646. msgid "Information"
  2647. msgstr ""
  2648. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:456
  2649. msgid "Ingress QoS mapping"
  2650. msgstr ""
  2651. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:67
  2652. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:25
  2653. msgid "Initialization failure"
  2654. msgstr ""
  2655. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:77
  2656. msgid "Initscript"
  2657. msgstr ""
  2658. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:111
  2659. msgid "Initscripts"
  2660. msgstr ""
  2661. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1649
  2662. msgid "Inner certificate constraint (Domain)"
  2663. msgstr ""
  2664. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1646
  2665. msgid "Inner certificate constraint (SAN)"
  2666. msgstr ""
  2667. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1643
  2668. msgid "Inner certificate constraint (Subject)"
  2669. msgstr ""
  2670. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1652
  2671. msgid "Inner certificate constraint (Wildcard)"
  2672. msgstr ""
  2673. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:300
  2674. msgid "Install protocol extensions..."
  2675. msgstr ""
  2676. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2018
  2677. msgid ""
  2678. "Instead of joining any network with a matching SSID, only connect to the "
  2679. "BSSID <code>%h</code>."
  2680. msgstr ""
  2681. #: modules/luci-compat/luasrc/view/cbi/map.htm:43
  2682. msgid "Insufficient permissions to read UCI configuration."
  2683. msgstr ""
  2684. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:27
  2685. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:157
  2686. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:176
  2687. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:17
  2688. msgid "Interface"
  2689. msgstr ""
  2690. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:718
  2691. msgid "Interface \"%h\" is already marked as designated master."
  2692. msgstr ""
  2693. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:62
  2694. msgid "Interface %q device auto-migrated from %q to %q."
  2695. msgstr ""
  2696. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:980
  2697. msgid "Interface Configuration"
  2698. msgstr ""
  2699. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:111
  2700. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:151
  2701. msgid "Interface has %d pending changes"
  2702. msgstr ""
  2703. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:92
  2704. msgid "Interface is disabled"
  2705. msgstr ""
  2706. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:65
  2707. msgid "Interface is marked for deletion"
  2708. msgstr ""
  2709. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:210
  2710. msgid "Interface is reconnecting..."
  2711. msgstr ""
  2712. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:194
  2713. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:204
  2714. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:210
  2715. msgid "Interface is shutting down..."
  2716. msgstr ""
  2717. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:285
  2718. msgid "Interface is starting..."
  2719. msgstr ""
  2720. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:288
  2721. msgid "Interface is stopping..."
  2722. msgstr ""
  2723. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1151
  2724. msgid "Interface name"
  2725. msgstr ""
  2726. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:123
  2727. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:304
  2728. msgid "Interface not present or not connected yet."
  2729. msgstr ""
  2730. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:462
  2731. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:491
  2732. #: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:38
  2733. msgid "Interfaces"
  2734. msgstr ""
  2735. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:20
  2736. msgid "Internal"
  2737. msgstr ""
  2738. #: modules/luci-base/luasrc/view/error500.htm:8
  2739. msgid "Internal Server Error"
  2740. msgstr ""
  2741. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:283
  2742. msgid "Interval For Sending Learning Packets"
  2743. msgstr ""
  2744. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:556
  2745. msgid ""
  2746. "Interval in centiseconds between multicast general queries. By varying the "
  2747. "value, an administrator may tune the number of IGMP messages on the subnet; "
  2748. "larger values cause IGMP Queries to be sent less often"
  2749. msgstr ""
  2750. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:522
  2751. msgid "Interval in seconds for STP hello packets"
  2752. msgstr ""
  2753. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:192
  2754. #: modules/luci-compat/luasrc/view/cbi/tsection.htm:42
  2755. msgid "Invalid"
  2756. msgstr ""
  2757. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:19
  2758. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:22
  2759. msgid "Invalid Base64 key string"
  2760. msgstr ""
  2761. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:78
  2762. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:83
  2763. msgid "Invalid TOS value, expected 00..FF or inherit"
  2764. msgstr ""
  2765. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:83
  2766. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:88
  2767. msgid "Invalid Traffic Class value, expected 00..FF or inherit"
  2768. msgstr ""
  2769. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:285
  2770. msgid "Invalid VLAN ID given! Only IDs between %d and %d are allowed."
  2771. msgstr ""
  2772. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:294
  2773. msgid "Invalid VLAN ID given! Only unique IDs are allowed"
  2774. msgstr ""
  2775. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:403
  2776. msgid "Invalid argument"
  2777. msgstr ""
  2778. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:46
  2779. msgid ""
  2780. "Invalid bearer list. Possibly too many bearers created. This protocol "
  2781. "supports one and only one bearer."
  2782. msgstr ""
  2783. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:402
  2784. msgid "Invalid command"
  2785. msgstr ""
  2786. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:101
  2787. msgid "Invalid hexadecimal value"
  2788. msgstr ""
  2789. #: modules/luci-base/luasrc/view/sysauth.htm:12
  2790. msgid "Invalid username and/or password! Please try again."
  2791. msgstr ""
  2792. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1147
  2793. msgid "Isolate Clients"
  2794. msgstr ""
  2795. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:231
  2796. msgid ""
  2797. "It appears that you are trying to flash an image that does not fit into the "
  2798. "flash memory, please verify the image file!"
  2799. msgstr ""
  2800. #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:64
  2801. #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:222
  2802. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:72
  2803. msgid "JavaScript required!"
  2804. msgstr ""
  2805. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1816
  2806. msgid "Join Network"
  2807. msgstr ""
  2808. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1750
  2809. msgid "Join Network: Wireless Scan"
  2810. msgstr ""
  2811. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2026
  2812. msgid "Joining Network: %q"
  2813. msgstr ""
  2814. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:223
  2815. msgid "Keep settings and retain the current configuration"
  2816. msgstr ""
  2817. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/dmesg.js:20
  2818. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:51
  2819. msgid "Kernel Log"
  2820. msgstr ""
  2821. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:58
  2822. msgid "Kernel Version"
  2823. msgstr ""
  2824. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1441
  2825. msgid "Key"
  2826. msgstr ""
  2827. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1469
  2828. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1470
  2829. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1471
  2830. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1472
  2831. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1484
  2832. msgid "Key #%d"
  2833. msgstr ""
  2834. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:92
  2835. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:97
  2836. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:94
  2837. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:99
  2838. msgid "Key for incoming packets (optional)."
  2839. msgstr ""
  2840. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:96
  2841. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:101
  2842. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:98
  2843. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:103
  2844. msgid "Key for outgoing packets (optional)."
  2845. msgstr ""
  2846. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:54
  2847. msgid "Kill"
  2848. msgstr ""
  2849. #: modules/luci-compat/luasrc/model/network/proto_ppp.lua:21
  2850. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:10
  2851. msgid "L2TP"
  2852. msgstr ""
  2853. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:40
  2854. msgid "L2TP Server"
  2855. msgstr ""
  2856. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:267
  2857. msgid "LACPDU Packets"
  2858. msgstr ""
  2859. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:118
  2860. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:102
  2861. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:88
  2862. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:62
  2863. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:75
  2864. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:98
  2865. msgid "LCP echo failure threshold"
  2866. msgstr ""
  2867. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:131
  2868. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:115
  2869. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:101
  2870. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:75
  2871. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:88
  2872. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:111
  2873. msgid "LCP echo interval"
  2874. msgstr ""
  2875. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:101
  2876. msgid "LED Configuration"
  2877. msgstr ""
  2878. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1529
  2879. msgid "LLC"
  2880. msgstr ""
  2881. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:267
  2882. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:376
  2883. msgid "Label"
  2884. msgstr ""
  2885. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:211
  2886. msgid "Language"
  2887. msgstr ""
  2888. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:111
  2889. msgid "Language and Style"
  2890. msgstr ""
  2891. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:575
  2892. msgid "Last member interval"
  2893. msgstr ""
  2894. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:23
  2895. msgid "Latency"
  2896. msgstr ""
  2897. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:21
  2898. msgid "Leaf"
  2899. msgstr ""
  2900. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:707
  2901. msgid "Learn"
  2902. msgstr ""
  2903. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:906
  2904. msgid "Learn routes"
  2905. msgstr ""
  2906. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:522
  2907. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:679
  2908. msgid "Lease time"
  2909. msgstr ""
  2910. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:39
  2911. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:58
  2912. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:89
  2913. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:128
  2914. msgid "Lease time remaining"
  2915. msgstr ""
  2916. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:181
  2917. msgid "Leasefile"
  2918. msgstr ""
  2919. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:41
  2920. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:47
  2921. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:50
  2922. msgid "Leave empty to autodetect"
  2923. msgstr ""
  2924. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:40
  2925. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:39
  2926. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6to4.js:39
  2927. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:45
  2928. msgid "Leave empty to use the current WAN address"
  2929. msgstr ""
  2930. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:943
  2931. msgid ""
  2932. "Legacy or badly behaving devices may require legacy 802.11b rates to "
  2933. "interoperate. Airtime efficiency may be significantly reduced where these "
  2934. "are used. It is recommended to not allow 802.11b rates where possible."
  2935. msgstr ""
  2936. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4053
  2937. msgid "Legend:"
  2938. msgstr ""
  2939. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:674
  2940. msgid "Limit"
  2941. msgstr ""
  2942. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:389
  2943. msgid "Limit DNS service to subnets interfaces on which we are serving DNS."
  2944. msgstr ""
  2945. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:402
  2946. msgid "Limit listening to these interfaces, and loopback."
  2947. msgstr ""
  2948. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:24
  2949. msgid "Line Attenuation (LATN)"
  2950. msgstr ""
  2951. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:18
  2952. msgid "Line Mode"
  2953. msgstr ""
  2954. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:17
  2955. msgid "Line State"
  2956. msgstr ""
  2957. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:19
  2958. msgid "Line Uptime"
  2959. msgstr ""
  2960. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:123
  2961. msgid "Link Aggregation (Channel Bonding)"
  2962. msgstr ""
  2963. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:348
  2964. msgid "Link Monitoring"
  2965. msgstr ""
  2966. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:23
  2967. msgid "Link On"
  2968. msgstr ""
  2969. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:278
  2970. msgid ""
  2971. "List of <abbr title=\"Domain Name System\">DNS</abbr> servers to forward "
  2972. "requests to"
  2973. msgstr ""
  2974. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1554
  2975. msgid ""
  2976. "List of R0KHs in the same Mobility Domain. <br />Format: MAC-address,NAS-"
  2977. "Identifier,128-bit key as hex string. <br />This list is used to map R0KH-ID "
  2978. "(NAS Identifier) to a destination MAC address when requesting PMK-R1 key "
  2979. "from the R0KH that the STA used during the Initial Mobility Domain "
  2980. "Association."
  2981. msgstr ""
  2982. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1558
  2983. msgid ""
  2984. "List of R1KHs in the same Mobility Domain. <br />Format: MAC-address,R1KH-ID "
  2985. "as 6 octets with colons,128-bit key as hex string. <br />This list is used "
  2986. "to map R1KH-ID to a destination MAC address when sending PMK-R1 key from the "
  2987. "R0KH. This is also the list of authorized R1KHs in the MD that can request "
  2988. "PMK-R1 keys."
  2989. msgstr ""
  2990. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:82
  2991. msgid "List of SSH key files for auth"
  2992. msgstr ""
  2993. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:308
  2994. msgid "List of domains to allow RFC1918 responses for"
  2995. msgstr ""
  2996. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:286
  2997. msgid "List of domains to force to an IP address."
  2998. msgstr ""
  2999. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:267
  3000. msgid "List of hosts that supply bogus NX domain results"
  3001. msgstr ""
  3002. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:401
  3003. msgid "Listen Interfaces"
  3004. msgstr ""
  3005. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:78
  3006. msgid "Listen Port"
  3007. msgstr ""
  3008. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:17
  3009. msgid "Listen only on the given interface or, if unspecified, on all"
  3010. msgstr ""
  3011. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:318
  3012. msgid "Listening port for inbound DNS queries"
  3013. msgstr ""
  3014. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:100
  3015. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:54
  3016. msgid "Load"
  3017. msgstr ""
  3018. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:61
  3019. msgid "Load Average"
  3020. msgstr ""
  3021. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2959
  3022. msgid "Loading directory contents…"
  3023. msgstr ""
  3024. #: modules/luci-base/htdocs/luci-static/resources/luci.js:1949
  3025. #: modules/luci-base/luasrc/view/view.htm:4
  3026. #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:12
  3027. msgid "Loading view…"
  3028. msgstr ""
  3029. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:870
  3030. msgid "Local"
  3031. msgstr ""
  3032. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:77
  3033. msgid "Local IP address"
  3034. msgstr ""
  3035. #: modules/luci-base/htdocs/luci-static/resources/network.js:12
  3036. #: modules/luci-compat/luasrc/model/network.lua:30
  3037. msgid "Local IP address is invalid"
  3038. msgstr ""
  3039. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:86
  3040. msgid "Local IP address to assign"
  3041. msgstr ""
  3042. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:46
  3043. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:46
  3044. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:44
  3045. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:40
  3046. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:39
  3047. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6to4.js:39
  3048. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:151
  3049. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:44
  3050. msgid "Local IPv4 address"
  3051. msgstr ""
  3052. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:884
  3053. msgid "Local IPv6 DNS server"
  3054. msgstr ""
  3055. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:46
  3056. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:53
  3057. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:54
  3058. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:45
  3059. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:44
  3060. msgid "Local IPv6 address"
  3061. msgstr ""
  3062. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388
  3063. msgid "Local Service Only"
  3064. msgstr ""
  3065. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:115
  3066. msgid "Local Startup"
  3067. msgstr ""
  3068. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:59
  3069. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:117
  3070. msgid "Local Time"
  3071. msgstr ""
  3072. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:981
  3073. msgid "Local ULA"
  3074. msgstr ""
  3075. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:243
  3076. msgid "Local domain"
  3077. msgstr ""
  3078. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:240
  3079. msgid ""
  3080. "Local domain specification. Names matching this domain are never forwarded "
  3081. "and are resolved from DHCP or hosts files only"
  3082. msgstr ""
  3083. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:244
  3084. msgid "Local domain suffix appended to DHCP names and hosts file entries"
  3085. msgstr ""
  3086. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:239
  3087. msgid "Local server"
  3088. msgstr ""
  3089. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:224
  3090. msgid ""
  3091. "Localise hostname depending on the requesting subnet if multiple IPs are "
  3092. "available"
  3093. msgstr ""
  3094. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:223
  3095. msgid "Localise queries"
  3096. msgstr ""
  3097. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2018
  3098. msgid "Lock to BSSID"
  3099. msgstr ""
  3100. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:171
  3101. msgid "Log output level"
  3102. msgstr ""
  3103. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:274
  3104. msgid "Log queries"
  3105. msgstr ""
  3106. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:109
  3107. msgid "Logging"
  3108. msgstr ""
  3109. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57
  3110. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:57
  3111. msgid ""
  3112. "Logical network from which to select the local endpoint if local IPv6 "
  3113. "address is empty and no WAN IPv6 is available (optional)."
  3114. msgstr ""
  3115. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:57
  3116. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62
  3117. msgid "Logical network to which the tunnel will be added (bridged) (optional)."
  3118. msgstr ""
  3119. #: modules/luci-base/luasrc/view/sysauth.htm:38
  3120. msgid "Login"
  3121. msgstr ""
  3122. #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:81
  3123. msgid "Logout"
  3124. msgstr ""
  3125. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:628
  3126. msgid "Loose filtering"
  3127. msgstr ""
  3128. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:31
  3129. msgid "Loss of Signal Seconds (LOSS)"
  3130. msgstr ""
  3131. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:669
  3132. msgid "Lowest leased address as offset from the network address."
  3133. msgstr ""
  3134. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:48
  3135. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:83
  3136. msgid "MAC"
  3137. msgstr "MAC"
  3138. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1406
  3139. msgid "MAC Address"
  3140. msgstr ""
  3141. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1083
  3142. msgid "MAC Address Filter"
  3143. msgstr ""
  3144. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:251
  3145. msgid "MAC Address For The Actor"
  3146. msgstr ""
  3147. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:347
  3148. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1374
  3149. msgid "MAC VLAN"
  3150. msgstr ""
  3151. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:591
  3152. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:38
  3153. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2149
  3154. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:56
  3155. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:88
  3156. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:229
  3157. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:156
  3158. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:175
  3159. msgid "MAC address"
  3160. msgstr ""
  3161. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:986
  3162. msgid "MAC-Filter"
  3163. msgstr ""
  3164. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1090
  3165. msgid "MAC-List"
  3166. msgstr ""
  3167. #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:16
  3168. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:13
  3169. msgid "MAP / LW4over6"
  3170. msgstr ""
  3171. #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:62
  3172. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:7
  3173. msgid "MAP rule is invalid"
  3174. msgstr ""
  3175. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:218
  3176. msgid "MD5"
  3177. msgstr "MD5"
  3178. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:199
  3179. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:28
  3180. msgid "MHz"
  3181. msgstr "MHz"
  3182. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:353
  3183. msgid "MII"
  3184. msgstr ""
  3185. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:421
  3186. msgid "MII / ETHTOOL ioctls"
  3187. msgstr ""
  3188. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:394
  3189. msgid "MII Interval"
  3190. msgstr ""
  3191. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:580
  3192. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1418
  3193. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:54
  3194. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:53
  3195. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:92
  3196. msgid "MTU"
  3197. msgstr "MTU"
  3198. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:302
  3199. msgid ""
  3200. "Make sure to clone the root filesystem using something like the commands "
  3201. "below:"
  3202. msgstr ""
  3203. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:110
  3204. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:102
  3205. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:53
  3206. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:98
  3207. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:84
  3208. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:58
  3209. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:71
  3210. msgid "Manual"
  3211. msgstr ""
  3212. #: modules/luci-base/htdocs/luci-static/resources/network.js:3862
  3213. msgid "Master"
  3214. msgstr ""
  3215. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:811
  3216. msgid "Max <abbr title=\"Router Advertisement\">RA</abbr> interval"
  3217. msgstr ""
  3218. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:22
  3219. msgid "Max. Attainable Data Rate (ATTNDR)"
  3220. msgstr ""
  3221. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:532
  3222. msgid "Maximum age"
  3223. msgstr ""
  3224. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1179
  3225. msgid "Maximum allowed Listen Interval"
  3226. msgstr ""
  3227. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:336
  3228. msgid "Maximum allowed number of active DHCP leases"
  3229. msgstr ""
  3230. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:354
  3231. msgid "Maximum allowed number of concurrent DNS queries"
  3232. msgstr ""
  3233. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:345
  3234. msgid "Maximum allowed size of EDNS.0 UDP packets"
  3235. msgstr ""
  3236. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:114
  3237. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:106
  3238. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:95
  3239. msgid "Maximum amount of seconds to wait for the modem to become ready"
  3240. msgstr ""
  3241. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:674
  3242. msgid "Maximum number of leased addresses."
  3243. msgstr ""
  3244. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:542
  3245. msgid "Maximum snooping table size"
  3246. msgstr ""
  3247. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:811
  3248. msgid ""
  3249. "Maximum time allowed between sending unsolicited <abbr title=\"Router "
  3250. "Advertisement, ICMPv6 Type 134\">RA</abbr>. Default is 600 seconds."
  3251. msgstr ""
  3252. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:946
  3253. msgid "Maximum transmit power"
  3254. msgstr ""
  3255. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:129
  3256. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:188
  3257. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:199
  3258. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:28
  3259. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:165
  3260. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:323
  3261. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:324
  3262. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:325
  3263. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:329
  3264. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:330
  3265. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:331
  3266. msgid "Mbit/s"
  3267. msgstr ""
  3268. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:35
  3269. msgid "Medium"
  3270. msgstr ""
  3271. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:24
  3272. msgid "Memory"
  3273. msgstr ""
  3274. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:73
  3275. msgid "Memory usage (%)"
  3276. msgstr ""
  3277. #: modules/luci-base/htdocs/luci-static/resources/network.js:3865
  3278. msgid "Mesh"
  3279. msgstr ""
  3280. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:156
  3281. msgid "Mesh ID"
  3282. msgstr ""
  3283. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:994
  3284. msgid "Mesh Id"
  3285. msgstr ""
  3286. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:404
  3287. msgid "Method not found"
  3288. msgstr ""
  3289. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:349
  3290. msgid "Method of link monitoring"
  3291. msgstr ""
  3292. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:418
  3293. msgid "Method to determine link status"
  3294. msgstr ""
  3295. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:46
  3296. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:166
  3297. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:185
  3298. msgid "Metric"
  3299. msgstr ""
  3300. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:818
  3301. msgid "Min <abbr title=\"Router Advertisement\">RA</abbr> interval"
  3302. msgstr ""
  3303. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:661
  3304. msgid "Minimum ARP validity time"
  3305. msgstr ""
  3306. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:235
  3307. msgid "Minimum Number of Links"
  3308. msgstr ""
  3309. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:661
  3310. msgid ""
  3311. "Minimum required time in seconds before an ARP entry may be replaced. "
  3312. "Prevents ARP cache thrashing."
  3313. msgstr ""
  3314. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:818
  3315. msgid ""
  3316. "Minimum time allowed between sending unsolicited <abbr title=\"Router "
  3317. "Advertisement, ICMPv6 Type 134\">RA</abbr>. Default is 200 seconds."
  3318. msgstr ""
  3319. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:202
  3320. msgid "Mirror monitor port"
  3321. msgstr ""
  3322. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:201
  3323. msgid "Mirror source port"
  3324. msgstr ""
  3325. #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:9
  3326. msgid "Mobile Data"
  3327. msgstr ""
  3328. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1514
  3329. msgid "Mobility Domain"
  3330. msgstr ""
  3331. #: modules/luci-compat/luasrc/view/cbi/wireless_modefreq.htm:154
  3332. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:434
  3333. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:157
  3334. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:180
  3335. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:492
  3336. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:989
  3337. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1734
  3338. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:378
  3339. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:142
  3340. msgid "Mode"
  3341. msgstr ""
  3342. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:55
  3343. msgid "Model"
  3344. msgstr ""
  3345. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:43
  3346. msgid "Modem bearer teardown in progress."
  3347. msgstr ""
  3348. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:42
  3349. msgid ""
  3350. "Modem connection in progress. Please wait. This process will timeout after 2 "
  3351. "minutes."
  3352. msgstr ""
  3353. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:73
  3354. msgid "Modem default"
  3355. msgstr ""
  3356. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:73
  3357. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:82
  3358. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:61
  3359. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:73
  3360. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:57
  3361. msgid "Modem device"
  3362. msgstr ""
  3363. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:41
  3364. msgid "Modem disconnection in progress. Please wait."
  3365. msgstr ""
  3366. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:66
  3367. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:24
  3368. msgid "Modem information query failed"
  3369. msgstr ""
  3370. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:114
  3371. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:106
  3372. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:95
  3373. msgid "Modem init timeout"
  3374. msgstr ""
  3375. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:44
  3376. msgid "Modem is disabled."
  3377. msgstr ""
  3378. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:52
  3379. msgid "ModemManager"
  3380. msgstr ""
  3381. #: modules/luci-base/htdocs/luci-static/resources/network.js:3866
  3382. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1077
  3383. msgid "Monitor"
  3384. msgstr ""
  3385. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:31
  3386. msgid "More Characters"
  3387. msgstr ""
  3388. #: modules/luci-base/htdocs/luci-static/resources/form.js:2529
  3389. msgid "More…"
  3390. msgstr ""
  3391. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:192
  3392. msgid "Mount Point"
  3393. msgstr ""
  3394. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:144
  3395. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:228
  3396. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:88
  3397. msgid "Mount Points"
  3398. msgstr ""
  3399. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:229
  3400. msgid "Mount Points - Mount Entry"
  3401. msgstr ""
  3402. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:340
  3403. msgid "Mount Points - Swap Entry"
  3404. msgstr ""
  3405. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:228
  3406. msgid ""
  3407. "Mount Points define at which point a memory device will be attached to the "
  3408. "filesystem"
  3409. msgstr ""
  3410. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:154
  3411. msgid "Mount attached devices"
  3412. msgstr ""
  3413. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:162
  3414. msgid "Mount filesystems not specifically configured"
  3415. msgstr ""
  3416. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:331
  3417. msgid "Mount options"
  3418. msgstr ""
  3419. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:292
  3420. msgid "Mount point"
  3421. msgstr ""
  3422. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:158
  3423. msgid "Mount swap not specifically configured"
  3424. msgstr ""
  3425. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:223
  3426. msgid "Mounted file systems"
  3427. msgstr ""
  3428. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:152
  3429. msgid "Move down"
  3430. msgstr ""
  3431. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:151
  3432. msgid "Move up"
  3433. msgstr ""
  3434. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:89
  3435. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:94
  3436. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:91
  3437. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:96
  3438. msgid "Multicast"
  3439. msgstr ""
  3440. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:705
  3441. msgid "Multicast routing"
  3442. msgstr ""
  3443. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:711
  3444. msgid "Multicast to unicast"
  3445. msgstr ""
  3446. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1509
  3447. msgid "NAS ID"
  3448. msgstr ""
  3449. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:87
  3450. msgid "NAT-T Mode"
  3451. msgstr ""
  3452. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:41
  3453. msgid "NAT64 Prefix"
  3454. msgstr ""
  3455. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:26
  3456. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:31
  3457. msgid "NCM"
  3458. msgstr "NCM"
  3459. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:911
  3460. msgid "NDP-Proxy slave"
  3461. msgstr ""
  3462. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:72
  3463. msgid "NT Domain"
  3464. msgstr ""
  3465. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:276
  3466. msgid "NTP server candidates"
  3467. msgstr ""
  3468. #: modules/luci-base/htdocs/luci-static/resources/form.js:2567
  3469. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3808
  3470. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:27
  3471. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1082
  3472. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:67
  3473. msgid "Name"
  3474. msgstr ""
  3475. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1996
  3476. msgid "Name of the new network"
  3477. msgstr ""
  3478. #: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:44
  3479. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:50
  3480. msgid "Navigation"
  3481. msgstr ""
  3482. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:653
  3483. msgid "Neighbour cache validity"
  3484. msgstr ""
  3485. #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:45
  3486. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1022
  3487. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2148
  3488. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:383
  3489. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:63
  3490. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:228
  3491. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:163
  3492. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:182
  3493. msgid "Network"
  3494. msgstr ""
  3495. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1990
  3496. msgid "Network SSID"
  3497. msgstr ""
  3498. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:68
  3499. msgid "Network Utilities"
  3500. msgstr ""
  3501. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:380
  3502. msgid "Network boot image"
  3503. msgstr ""
  3504. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:392
  3505. msgid "Network bridge configuration migration"
  3506. msgstr ""
  3507. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:343
  3508. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1380
  3509. msgid "Network device"
  3510. msgstr ""
  3511. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:7
  3512. msgid "Network device activity (kernel: netdev)"
  3513. msgstr ""
  3514. #: modules/luci-base/htdocs/luci-static/resources/network.js:15
  3515. #: modules/luci-compat/luasrc/model/network.lua:33
  3516. msgid "Network device is not present"
  3517. msgstr ""
  3518. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:426
  3519. msgid "Network ifname configuration migration"
  3520. msgstr ""
  3521. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:57
  3522. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62
  3523. msgid "Network interface"
  3524. msgstr ""
  3525. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:706
  3526. msgid "Never"
  3527. msgstr ""
  3528. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1134
  3529. msgid "New interface for \"%s\" can not be created: %s"
  3530. msgstr ""
  3531. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1085
  3532. msgid "New interface name…"
  3533. msgstr ""
  3534. #: modules/luci-compat/luasrc/view/cbi/delegator.htm:11
  3535. msgid "Next »"
  3536. msgstr ""
  3537. #: modules/luci-base/htdocs/luci-static/resources/form.js:3702
  3538. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:296
  3539. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:345
  3540. msgid "No"
  3541. msgstr ""
  3542. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:643
  3543. msgid "No DHCP Server configured for this interface"
  3544. msgstr ""
  3545. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:196
  3546. msgid "No Data"
  3547. msgstr ""
  3548. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1382
  3549. msgid "No Encryption"
  3550. msgstr ""
  3551. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:87
  3552. msgid "No Host Routes"
  3553. msgstr ""
  3554. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:89
  3555. msgid "No NAT-T"
  3556. msgstr ""
  3557. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:79
  3558. msgid "No RX signal"
  3559. msgstr ""
  3560. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69
  3561. msgid "No client associated"
  3562. msgstr ""
  3563. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:406
  3564. msgid "No data received"
  3565. msgstr ""
  3566. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:683
  3567. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:690
  3568. msgid "No enforcement"
  3569. msgstr ""
  3570. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2899
  3571. msgid "No entries in this directory"
  3572. msgstr ""
  3573. #: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:82
  3574. msgid "No files found"
  3575. msgstr ""
  3576. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:86
  3577. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:91
  3578. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:88
  3579. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:93
  3580. msgid "No host route"
  3581. msgstr ""
  3582. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:731
  3583. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:142
  3584. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:358
  3585. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:59
  3586. msgid "No information available"
  3587. msgstr ""
  3588. #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:63
  3589. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:8
  3590. msgid "No matching prefix delegation"
  3591. msgstr ""
  3592. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:140
  3593. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:143
  3594. msgid "No more slaves available"
  3595. msgstr ""
  3596. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:187
  3597. msgid "No more slaves available, can not save interface"
  3598. msgstr ""
  3599. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:251
  3600. msgid "No negative cache"
  3601. msgstr ""
  3602. #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:54
  3603. #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:212
  3604. #: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:59
  3605. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:79
  3606. msgid "No password set!"
  3607. msgstr ""
  3608. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:125
  3609. msgid "No peers defined yet"
  3610. msgstr ""
  3611. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:140
  3612. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:277
  3613. msgid "No public keys present yet."
  3614. msgstr ""
  3615. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:91
  3616. msgid "No rules in this chain."
  3617. msgstr ""
  3618. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:384
  3619. msgid "No validation or filtering"
  3620. msgstr ""
  3621. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:153
  3622. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1176
  3623. msgid "No zone assigned"
  3624. msgstr ""
  3625. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:58
  3626. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:84
  3627. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:187
  3628. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:231
  3629. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:275
  3630. msgid "Noise"
  3631. msgstr ""
  3632. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:26
  3633. msgid "Noise Margin (SNR)"
  3634. msgstr ""
  3635. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:272
  3636. msgid "Noise:"
  3637. msgstr ""
  3638. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:34
  3639. msgid "Non Pre-emptive CRC errors (CRC_P)"
  3640. msgstr ""
  3641. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:394
  3642. msgid "Non-wildcard"
  3643. msgstr ""
  3644. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:159
  3645. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:183
  3646. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:101
  3647. msgid "None"
  3648. msgstr ""
  3649. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:954
  3650. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:184
  3651. msgid "Normal"
  3652. msgstr ""
  3653. #: modules/luci-base/luasrc/view/error404.htm:8
  3654. msgid "Not Found"
  3655. msgstr ""
  3656. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:75
  3657. msgid "Not associated"
  3658. msgstr ""
  3659. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:32
  3660. msgid "Not connected"
  3661. msgstr ""
  3662. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:46
  3663. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:81
  3664. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:121
  3665. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:147
  3666. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:312
  3667. msgid "Not present"
  3668. msgstr ""
  3669. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:102
  3670. msgid "Not started on boot"
  3671. msgstr ""
  3672. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:409
  3673. msgid "Not supported"
  3674. msgstr ""
  3675. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1678
  3676. msgid ""
  3677. "Note: Some wireless drivers do not fully support 802.11w. E.g. mwlwifi may "
  3678. "have problems"
  3679. msgstr ""
  3680. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:128
  3681. msgid "Notes"
  3682. msgstr ""
  3683. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:174
  3684. msgid "Notice"
  3685. msgstr ""
  3686. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:127
  3687. msgid "Nslookup"
  3688. msgstr ""
  3689. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:332
  3690. msgid "Number of IGMP membership reports"
  3691. msgstr ""
  3692. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:362
  3693. msgid "Number of cached DNS entries (max is 10000, 0 is no caching)"
  3694. msgstr ""
  3695. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:309
  3696. msgid "Number of peer notifications after failover event"
  3697. msgstr ""
  3698. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:69
  3699. msgid "Obfuscated Group Password"
  3700. msgstr ""
  3701. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:61
  3702. msgid "Obfuscated Password"
  3703. msgstr ""
  3704. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:106
  3705. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:98
  3706. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:49
  3707. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:94
  3708. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:80
  3709. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:54
  3710. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:67
  3711. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:93
  3712. msgid "Obtain IPv6 address"
  3713. msgstr ""
  3714. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/default-on.js:18
  3715. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:351
  3716. msgid "Off"
  3717. msgstr ""
  3718. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/timer.js:15
  3719. msgid "Off-State Delay"
  3720. msgstr ""
  3721. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/default-on.js:18
  3722. msgid "On"
  3723. msgstr ""
  3724. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:96
  3725. msgid "On-Link route"
  3726. msgstr ""
  3727. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/timer.js:11
  3728. msgid "On-State Delay"
  3729. msgstr ""
  3730. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:504
  3731. msgid "One of hostname or mac address must be specified!"
  3732. msgstr ""
  3733. #: modules/luci-base/htdocs/luci-static/resources/validation.js:469
  3734. msgid "One of the following: %s"
  3735. msgstr ""
  3736. #: modules/luci-compat/luasrc/view/cbi/nullsection.htm:17
  3737. #: modules/luci-compat/luasrc/view/cbi/ucisection.htm:22
  3738. msgid "One or more fields contain invalid values!"
  3739. msgstr ""
  3740. #: modules/luci-compat/luasrc/view/cbi/map.htm:32
  3741. msgid "One or more invalid/required values on tab"
  3742. msgstr ""
  3743. #: modules/luci-compat/luasrc/view/cbi/nullsection.htm:19
  3744. #: modules/luci-compat/luasrc/view/cbi/ucisection.htm:24
  3745. msgid "One or more required fields have no value!"
  3746. msgstr ""
  3747. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:702
  3748. msgid "Only allow communication with non-isolated bridge ports when enabled"
  3749. msgstr ""
  3750. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:229
  3751. msgid ""
  3752. "Only if current active slave fails and the primary slave is up (failure, 2)"
  3753. msgstr ""
  3754. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:442
  3755. #: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:19
  3756. msgid "Open list..."
  3757. msgstr ""
  3758. #: modules/luci-compat/luasrc/model/network/proto_openconnect.lua:9
  3759. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:64
  3760. msgid "OpenConnect (CISCO AnyConnect)"
  3761. msgstr ""
  3762. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:12
  3763. msgid "OpenFortivpn"
  3764. msgstr ""
  3765. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:724
  3766. msgid ""
  3767. "Operate in <em>relay mode</em> if a designated master interface is "
  3768. "configured and active, otherwise disable <abbr title=\"Neighbour Discovery "
  3769. "Protocol\">NDP</abbr> proxying."
  3770. msgstr ""
  3771. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:723
  3772. msgid ""
  3773. "Operate in <em>relay mode</em> if a designated master interface is "
  3774. "configured and active, otherwise fall back to <em>server mode</em>."
  3775. msgstr ""
  3776. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:725
  3777. msgid ""
  3778. "Operate in <em>relay mode</em> if an upstream IPv6 prefix is present, "
  3779. "otherwise disable service."
  3780. msgstr ""
  3781. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:939
  3782. msgid "Operating frequency"
  3783. msgstr ""
  3784. #: modules/luci-base/htdocs/luci-static/resources/form.js:1974
  3785. #: modules/luci-base/htdocs/luci-static/resources/form.js:3712
  3786. msgid "Option \"%s\" contains an invalid input value."
  3787. msgstr ""
  3788. #: modules/luci-base/htdocs/luci-static/resources/form.js:1987
  3789. msgid "Option \"%s\" must not be empty."
  3790. msgstr ""
  3791. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4060
  3792. msgid "Option changed"
  3793. msgstr ""
  3794. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4062
  3795. msgid "Option removed"
  3796. msgstr ""
  3797. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1680
  3798. msgid "Optional"
  3799. msgstr ""
  3800. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:128
  3801. msgid "Optional, free-form notes about this device"
  3802. msgstr ""
  3803. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:97
  3804. msgid ""
  3805. "Optional. 32-bit mark for outgoing encrypted packets. Enter value in hex, "
  3806. "starting with <code>0x</code>."
  3807. msgstr ""
  3808. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1003
  3809. msgid ""
  3810. "Optional. Allowed values: 'eui64', 'random', fixed value like '::1' or "
  3811. "'::1:2'. When IPv6 prefix (like 'a:b:c:d::') is received from a delegating "
  3812. "server, use the suffix (like '::1') to form the IPv6 address ('a:b:c:d::1') "
  3813. "for the interface."
  3814. msgstr ""
  3815. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:138
  3816. msgid ""
  3817. "Optional. Base64-encoded preshared key. Adds in an additional layer of "
  3818. "symmetric-key cryptography for post-quantum resistance."
  3819. msgstr ""
  3820. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
  3821. msgid "Optional. Create routes for Allowed IPs for this peer."
  3822. msgstr ""
  3823. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:129
  3824. msgid "Optional. Description of peer."
  3825. msgstr ""
  3826. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:87
  3827. msgid "Optional. Do not create host routes to peers."
  3828. msgstr ""
  3829. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:156
  3830. msgid ""
  3831. "Optional. Host of peer. Names are resolved prior to bringing up the "
  3832. "interface."
  3833. msgstr ""
  3834. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:92
  3835. msgid "Optional. Maximum Transmission Unit of tunnel interface."
  3836. msgstr ""
  3837. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:160
  3838. msgid "Optional. Port of peer."
  3839. msgstr ""
  3840. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:164
  3841. msgid ""
  3842. "Optional. Seconds between keep alive messages. Default is 0 (disabled). "
  3843. "Recommended value if this device is behind a NAT is 25."
  3844. msgstr ""
  3845. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:78
  3846. msgid "Optional. UDP port used for outgoing and incoming packets."
  3847. msgstr ""
  3848. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:72
  3849. msgid "Options"
  3850. msgstr ""
  3851. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:119
  3852. msgid "Options:"
  3853. msgstr ""
  3854. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:348
  3855. msgid "Other:"
  3856. msgstr ""
  3857. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:69
  3858. msgid "Out"
  3859. msgstr ""
  3860. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:277
  3861. msgid "Outbound:"
  3862. msgstr ""
  3863. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:101
  3864. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:106
  3865. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:103
  3866. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:108
  3867. msgid "Outgoing checksum"
  3868. msgstr ""
  3869. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:96
  3870. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:101
  3871. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:98
  3872. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:103
  3873. msgid "Outgoing key"
  3874. msgstr ""
  3875. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:103
  3876. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:108
  3877. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:105
  3878. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:110
  3879. msgid "Outgoing serialization"
  3880. msgstr ""
  3881. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:50
  3882. msgid "Output Interface"
  3883. msgstr ""
  3884. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:59
  3885. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:165
  3886. msgid "Output zone"
  3887. msgstr ""
  3888. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:16
  3889. msgid "Overlap"
  3890. msgstr ""
  3891. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:945
  3892. msgid "Override IPv4 routing table"
  3893. msgstr ""
  3894. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:950
  3895. msgid "Override IPv6 routing table"
  3896. msgstr ""
  3897. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:64
  3898. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:69
  3899. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:69
  3900. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:74
  3901. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:53
  3902. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:121
  3903. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:156
  3904. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:57
  3905. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:132
  3906. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:118
  3907. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:96
  3908. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:105
  3909. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:99
  3910. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:62
  3911. msgid "Override MTU"
  3912. msgstr ""
  3913. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:74
  3914. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:79
  3915. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:63
  3916. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:67
  3917. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:62
  3918. msgid "Override TOS"
  3919. msgstr ""
  3920. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:69
  3921. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:74
  3922. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:74
  3923. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:79
  3924. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:58
  3925. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:62
  3926. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:57
  3927. msgid "Override TTL"
  3928. msgstr ""
  3929. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1151
  3930. msgid "Override default interface name"
  3931. msgstr ""
  3932. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:167
  3933. msgid "Override the gateway in DHCP responses"
  3934. msgstr ""
  3935. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:691
  3936. msgid ""
  3937. "Override the netmask sent to clients. Normally it is calculated from the "
  3938. "subnet that is served."
  3939. msgstr ""
  3940. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:179
  3941. msgid "Override the table used for internal routes"
  3942. msgstr ""
  3943. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:3
  3944. msgid "Overview"
  3945. msgstr ""
  3946. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2742
  3947. msgid "Overwrite existing file \"%s\" ?"
  3948. msgstr ""
  3949. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:70
  3950. msgid "Owner"
  3951. msgstr ""
  3952. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:98
  3953. msgid "PAP/CHAP (both)"
  3954. msgstr ""
  3955. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:99
  3956. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:109
  3957. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:91
  3958. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:45
  3959. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:90
  3960. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:76
  3961. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:44
  3962. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:63
  3963. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:83
  3964. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:46
  3965. msgid "PAP/CHAP password"
  3966. msgstr ""
  3967. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:97
  3968. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:104
  3969. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:89
  3970. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:43
  3971. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:88
  3972. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:74
  3973. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:42
  3974. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:61
  3975. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:78
  3976. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:44
  3977. msgid "PAP/CHAP username"
  3978. msgstr ""
  3979. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:103
  3980. msgid "PDP Type"
  3981. msgstr ""
  3982. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:69
  3983. msgid "PID"
  3984. msgstr ""
  3985. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:96
  3986. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:95
  3987. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:88
  3988. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:69
  3989. msgid "PIN"
  3990. msgstr ""
  3991. #: modules/luci-base/htdocs/luci-static/resources/network.js:21
  3992. #: modules/luci-compat/luasrc/model/network.lua:39
  3993. msgid "PIN code rejected"
  3994. msgstr ""
  3995. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1549
  3996. msgid "PMK R1 Push"
  3997. msgstr ""
  3998. #: modules/luci-compat/luasrc/model/network/proto_ppp.lua:13
  3999. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:43
  4000. msgid "PPP"
  4001. msgstr "PPP"
  4002. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:58
  4003. msgid "PPPoA Encapsulation"
  4004. msgstr ""
  4005. #: modules/luci-compat/luasrc/model/network/proto_ppp.lua:19
  4006. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:28
  4007. msgid "PPPoATM"
  4008. msgstr "PPPoATM"
  4009. #: modules/luci-compat/luasrc/model/network/proto_ppp.lua:17
  4010. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:28
  4011. msgid "PPPoE"
  4012. msgstr "PPPoE"
  4013. #: modules/luci-compat/luasrc/model/network/proto_pppossh.lua:9
  4014. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:28
  4015. msgid "PPPoSSH"
  4016. msgstr "PPPoSSH"
  4017. #: modules/luci-compat/luasrc/model/network/proto_ppp.lua:15
  4018. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:28
  4019. msgid "PPtP"
  4020. msgstr ""
  4021. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:73
  4022. msgid "PSID offset"
  4023. msgstr ""
  4024. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:70
  4025. msgid "PSID-bits length"
  4026. msgstr ""
  4027. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1473
  4028. msgid "PTM/EFM (Packet Transfer Mode)"
  4029. msgstr ""
  4030. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1437
  4031. msgid "Packet Steering"
  4032. msgstr ""
  4033. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:54
  4034. msgid "Packets"
  4035. msgstr ""
  4036. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:275
  4037. msgid "Packets To Transmit Before Moving To Next Slave"
  4038. msgstr ""
  4039. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:153
  4040. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1176
  4041. msgid "Part of zone %q"
  4042. msgstr ""
  4043. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:438
  4044. msgctxt "MACVLAN mode"
  4045. msgid "Pass-through (Mirror physical device to single MAC VLAN)"
  4046. msgstr ""
  4047. #: modules/luci-base/luasrc/view/sysauth.htm:29
  4048. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1671
  4049. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:51
  4050. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:114
  4051. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:52
  4052. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:58
  4053. msgid "Password"
  4054. msgstr ""
  4055. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:25
  4056. msgid "Password authentication"
  4057. msgstr ""
  4058. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1603
  4059. msgid "Password of Private Key"
  4060. msgstr ""
  4061. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1661
  4062. msgid "Password of inner Private Key"
  4063. msgstr ""
  4064. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:31
  4065. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:33
  4066. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:35
  4067. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:37
  4068. msgid "Password strength"
  4069. msgstr ""
  4070. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:117
  4071. msgid "Password2"
  4072. msgstr ""
  4073. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:260
  4074. msgid "Paste or drag SSH key file…"
  4075. msgstr ""
  4076. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1582
  4077. msgid "Path to CA-Certificate"
  4078. msgstr ""
  4079. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1597
  4080. msgid "Path to Client-Certificate"
  4081. msgstr ""
  4082. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1600
  4083. msgid "Path to Private Key"
  4084. msgstr ""
  4085. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1640
  4086. msgid "Path to inner CA-Certificate"
  4087. msgstr ""
  4088. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1655
  4089. msgid "Path to inner Client-Certificate"
  4090. msgstr ""
  4091. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1658
  4092. msgid "Path to inner Private Key"
  4093. msgstr ""
  4094. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2732
  4095. msgid "Paused"
  4096. msgstr ""
  4097. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:273
  4098. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:283
  4099. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:334
  4100. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:344
  4101. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:354
  4102. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:239
  4103. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:249
  4104. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:259
  4105. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:268
  4106. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:278
  4107. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:296
  4108. msgid "Peak:"
  4109. msgstr ""
  4110. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:89
  4111. msgid "Peer IP address to assign"
  4112. msgstr ""
  4113. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:613
  4114. msgid "Peer MAC address"
  4115. msgstr ""
  4116. #: modules/luci-base/htdocs/luci-static/resources/network.js:14
  4117. #: modules/luci-compat/luasrc/model/network.lua:32
  4118. msgid "Peer address is missing"
  4119. msgstr ""
  4120. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:594
  4121. msgid "Peer device name"
  4122. msgstr ""
  4123. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:110
  4124. msgid "Peers"
  4125. msgstr ""
  4126. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:80
  4127. msgid "Perfect Forward Secrecy"
  4128. msgstr ""
  4129. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:103
  4130. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:108
  4131. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:105
  4132. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:110
  4133. msgid "Perform outgoing packets serialization (optional)."
  4134. msgstr ""
  4135. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:34
  4136. msgid "Perform reboot"
  4137. msgstr ""
  4138. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:376
  4139. msgid "Perform reset"
  4140. msgstr ""
  4141. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:407
  4142. msgid "Permission denied"
  4143. msgstr ""
  4144. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:164
  4145. msgid "Persistent Keep Alive"
  4146. msgstr ""
  4147. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:290
  4148. msgid "Phy Rate:"
  4149. msgstr ""
  4150. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:479
  4151. msgid "Physical Settings"
  4152. msgstr ""
  4153. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:79
  4154. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:80
  4155. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:90
  4156. msgid "Ping"
  4157. msgstr ""
  4158. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:49
  4159. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:50
  4160. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:84
  4161. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:85
  4162. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:138
  4163. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:64
  4164. msgid "Pkts."
  4165. msgstr ""
  4166. #: modules/luci-base/luasrc/view/sysauth.htm:19
  4167. msgid "Please enter your username and password."
  4168. msgstr ""
  4169. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3791
  4170. msgid "Please select the file to upload."
  4171. msgstr ""
  4172. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:54
  4173. msgid "Policy"
  4174. msgstr ""
  4175. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:21
  4176. msgid "Port"
  4177. msgstr ""
  4178. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:702
  4179. msgid "Port isolation"
  4180. msgstr ""
  4181. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:278
  4182. msgid "Port status:"
  4183. msgstr ""
  4184. #: modules/luci-base/htdocs/luci-static/resources/validation.js:495
  4185. msgid "Potential negation of: %s"
  4186. msgstr ""
  4187. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:37
  4188. msgid "Power Management Mode"
  4189. msgstr ""
  4190. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:35
  4191. msgid "Pre-emptive CRC errors (CRCP_P)"
  4192. msgstr ""
  4193. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:74
  4194. msgid "Prefer LTE"
  4195. msgstr ""
  4196. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:75
  4197. msgid "Prefer UMTS"
  4198. msgstr ""
  4199. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:33
  4200. msgid "Prefix Delegated"
  4201. msgstr ""
  4202. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:138
  4203. msgid "Preshared Key"
  4204. msgstr ""
  4205. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:118
  4206. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:102
  4207. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:88
  4208. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:62
  4209. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:75
  4210. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:98
  4211. msgid ""
  4212. "Presume peer to be dead after given amount of LCP echo failures, use 0 to "
  4213. "ignore failures"
  4214. msgstr ""
  4215. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:407
  4216. msgid "Prevent listening on these interfaces."
  4217. msgstr ""
  4218. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1147
  4219. msgid "Prevents client-to-client communication"
  4220. msgstr ""
  4221. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:211
  4222. msgid "Primary Slave"
  4223. msgstr ""
  4224. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:170
  4225. msgctxt "VLAN port state"
  4226. msgid "Primary VLAN ID"
  4227. msgstr ""
  4228. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:228
  4229. msgid ""
  4230. "Primary becomes active slave when it comes back up if speed and duplex "
  4231. "better than current slave (better, 1)"
  4232. msgstr ""
  4233. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:227
  4234. msgid "Primary becomes active slave whenever it comes back up (always, 0)"
  4235. msgstr ""
  4236. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:508
  4237. msgid "Priority"
  4238. msgstr ""
  4239. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:436
  4240. msgctxt "MACVLAN mode"
  4241. msgid "Private (Prevent communication between MAC VLANs)"
  4242. msgstr ""
  4243. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:61
  4244. msgid "Private Key"
  4245. msgstr ""
  4246. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:64
  4247. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:63
  4248. msgid "Processes"
  4249. msgstr ""
  4250. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:67
  4251. msgid "Prot."
  4252. msgstr ""
  4253. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:80
  4254. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:554
  4255. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1099
  4256. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:384
  4257. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:32
  4258. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:168
  4259. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:187
  4260. msgid "Protocol"
  4261. msgstr ""
  4262. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:267
  4263. msgid "Provide NTP server"
  4264. msgstr ""
  4265. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:872
  4266. msgid ""
  4267. "Provide a DHCPv6 server on this interface and reply to DHCPv6 solicitations "
  4268. "and requests."
  4269. msgstr ""
  4270. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:882
  4271. msgid "Provide new network"
  4272. msgstr ""
  4273. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1076
  4274. msgid "Pseudo Ad-Hoc (ahdemo)"
  4275. msgstr ""
  4276. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:134
  4277. msgid "Public Key"
  4278. msgstr ""
  4279. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:284
  4280. msgid ""
  4281. "Public keys allow for the passwordless SSH logins with a higher security "
  4282. "compared to the use of plain passwords. In order to upload a new key to the "
  4283. "device, paste an OpenSSH compatible public key line or drag a <code>.pub</"
  4284. "code> file into the input field."
  4285. msgstr ""
  4286. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:192
  4287. msgid "Public prefix routed to this device for distribution to clients."
  4288. msgstr ""
  4289. #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:9
  4290. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:27
  4291. msgid "QMI Cellular"
  4292. msgstr ""
  4293. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:140
  4294. msgid "Quality"
  4295. msgstr ""
  4296. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:264
  4297. msgid ""
  4298. "Query all available upstream <abbr title=\"Domain Name System\">DNS</abbr> "
  4299. "servers"
  4300. msgstr ""
  4301. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:556
  4302. msgid "Query interval"
  4303. msgstr ""
  4304. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:561
  4305. msgid "Query response interval"
  4306. msgstr ""
  4307. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1537
  4308. msgid "R0 Key Lifetime"
  4309. msgstr ""
  4310. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1543
  4311. msgid "R1 Key Holder"
  4312. msgstr ""
  4313. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:88
  4314. msgid "RFC3947 NAT-T mode"
  4315. msgstr ""
  4316. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1002
  4317. msgid "RSSI threshold for joining"
  4318. msgstr ""
  4319. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:966
  4320. msgid "RTS/CTS Threshold"
  4321. msgstr ""
  4322. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:49
  4323. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:84
  4324. msgid "RX"
  4325. msgstr ""
  4326. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:232
  4327. msgid "RX Rate"
  4328. msgstr ""
  4329. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2152
  4330. msgid "RX Rate / TX Rate"
  4331. msgstr ""
  4332. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1415
  4333. msgid "Radius-Accounting-Port"
  4334. msgstr ""
  4335. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1420
  4336. msgid "Radius-Accounting-Secret"
  4337. msgstr ""
  4338. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1410
  4339. msgid "Radius-Accounting-Server"
  4340. msgstr ""
  4341. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1400
  4342. msgid "Radius-Authentication-Port"
  4343. msgstr ""
  4344. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1405
  4345. msgid "Radius-Authentication-Secret"
  4346. msgstr ""
  4347. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1395
  4348. msgid "Radius-Authentication-Server"
  4349. msgstr ""
  4350. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:88
  4351. msgid "Raw hex-encoded bytes. Leave empty unless your ISP require this"
  4352. msgstr ""
  4353. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:178
  4354. msgid ""
  4355. "Read <code>/etc/ethers</code> to configure the <abbr title=\"Dynamic Host "
  4356. "Configuration Protocol\">DHCP</abbr>-Server"
  4357. msgstr ""
  4358. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:559
  4359. msgid "Really switch protocol?"
  4360. msgstr ""
  4361. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:88
  4362. msgid "Realtime Graphs"
  4363. msgstr ""
  4364. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1520
  4365. msgid "Reassociation Deadline"
  4366. msgstr ""
  4367. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:293
  4368. msgid "Rebind protection"
  4369. msgstr ""
  4370. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:20
  4371. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:126
  4372. msgid "Reboot"
  4373. msgstr ""
  4374. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:153
  4375. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:162
  4376. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:46
  4377. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:51
  4378. msgid "Rebooting…"
  4379. msgstr ""
  4380. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:21
  4381. msgid "Reboots the operating system of your device"
  4382. msgstr ""
  4383. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:25
  4384. msgid "Receive"
  4385. msgstr ""
  4386. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:83
  4387. msgid "Recommended. IP addresses of the WireGuard interface."
  4388. msgstr ""
  4389. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:504
  4390. msgid "Reconnect this interface"
  4391. msgstr ""
  4392. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:57
  4393. msgid "References"
  4394. msgstr ""
  4395. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2726
  4396. msgid "Refreshing"
  4397. msgstr ""
  4398. #: modules/luci-compat/luasrc/model/network/proto_relay.lua:153
  4399. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:39
  4400. msgid "Relay"
  4401. msgstr ""
  4402. #: modules/luci-compat/luasrc/model/network/proto_relay.lua:157
  4403. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:36
  4404. msgid "Relay Bridge"
  4405. msgstr ""
  4406. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:154
  4407. msgid "Relay between networks"
  4408. msgstr ""
  4409. #: modules/luci-compat/luasrc/model/network/proto_relay.lua:12
  4410. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:64
  4411. msgid "Relay bridge"
  4412. msgstr ""
  4413. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:50
  4414. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:49
  4415. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:40
  4416. msgid "Remote IPv4 address"
  4417. msgstr ""
  4418. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:42
  4419. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:42
  4420. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:40
  4421. msgid "Remote IPv4 address or FQDN"
  4422. msgstr ""
  4423. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:40
  4424. msgid "Remote IPv6 address"
  4425. msgstr ""
  4426. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:42
  4427. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:42
  4428. msgid "Remote IPv6 address or FQDN"
  4429. msgstr ""
  4430. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:906
  4431. msgid "Remove"
  4432. msgstr ""
  4433. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1277
  4434. msgid "Remove related device settings from the configuration"
  4435. msgstr ""
  4436. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1994
  4437. msgid "Replace wireless configuration"
  4438. msgstr ""
  4439. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:17
  4440. msgid "Request IPv6-address"
  4441. msgstr ""
  4442. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:23
  4443. msgid "Request IPv6-prefix of length"
  4444. msgstr ""
  4445. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:408
  4446. msgid "Request timeout"
  4447. msgstr ""
  4448. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:100
  4449. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:105
  4450. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:102
  4451. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:107
  4452. msgid "Require incoming checksum (optional)."
  4453. msgstr ""
  4454. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:102
  4455. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:107
  4456. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:104
  4457. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:109
  4458. msgid "Require incoming packets serialization (optional)."
  4459. msgstr ""
  4460. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1681
  4461. msgid "Required"
  4462. msgstr ""
  4463. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34
  4464. msgid "Required for certain ISPs, e.g. Charter with DOCSIS 3"
  4465. msgstr ""
  4466. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:61
  4467. msgid "Required. Base64-encoded private key for this interface."
  4468. msgstr ""
  4469. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:134
  4470. msgid "Required. Base64-encoded public key of peer."
  4471. msgstr ""
  4472. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:143
  4473. msgid ""
  4474. "Required. IP addresses and prefixes that this peer is allowed to use inside "
  4475. "the tunnel. Usually the peer's tunnel IP addresses and the networks the peer "
  4476. "routes through the tunnel."
  4477. msgstr ""
  4478. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1311
  4479. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1312
  4480. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1313
  4481. msgid "Requires hostapd"
  4482. msgstr ""
  4483. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1318
  4484. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1319
  4485. msgid "Requires hostapd with EAP Suite-B support"
  4486. msgstr ""
  4487. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1316
  4488. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1317
  4489. msgid "Requires hostapd with EAP support"
  4490. msgstr ""
  4491. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1320
  4492. msgid "Requires hostapd with OWE support"
  4493. msgstr ""
  4494. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1314
  4495. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1315
  4496. msgid "Requires hostapd with SAE support"
  4497. msgstr ""
  4498. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1309
  4499. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1310
  4500. msgid "Requires hostapd with WEP support"
  4501. msgstr ""
  4502. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:233
  4503. msgid ""
  4504. "Requires upstream supports DNSSEC; verify unsigned domain responses really "
  4505. "come from unsigned domains"
  4506. msgstr ""
  4507. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1325
  4508. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1326
  4509. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1327
  4510. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1339
  4511. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1340
  4512. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1341
  4513. msgid "Requires wpa-supplicant"
  4514. msgstr ""
  4515. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1332
  4516. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1333
  4517. msgid "Requires wpa-supplicant with EAP Suite-B support"
  4518. msgstr ""
  4519. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1330
  4520. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1331
  4521. msgid "Requires wpa-supplicant with EAP support"
  4522. msgstr ""
  4523. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1334
  4524. msgid "Requires wpa-supplicant with OWE support"
  4525. msgstr ""
  4526. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1328
  4527. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1329
  4528. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1344
  4529. msgid "Requires wpa-supplicant with SAE support"
  4530. msgstr ""
  4531. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1323
  4532. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1324
  4533. msgid "Requires wpa-supplicant with WEP support"
  4534. msgstr ""
  4535. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:224
  4536. msgid "Reselection policy for primary slave"
  4537. msgstr ""
  4538. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2204
  4539. #: modules/luci-base/luasrc/view/sysauth.htm:39
  4540. #: modules/luci-compat/luasrc/view/cbi/delegator.htm:17
  4541. #: modules/luci-compat/luasrc/view/cbi/footer.htm:30
  4542. #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:66
  4543. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1276
  4544. msgid "Reset"
  4545. msgstr ""
  4546. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:343
  4547. msgid "Reset Counters"
  4548. msgstr ""
  4549. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:374
  4550. msgid "Reset to defaults"
  4551. msgstr ""
  4552. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:162
  4553. msgid "Resolv and Hosts Files"
  4554. msgstr ""
  4555. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:188
  4556. msgid "Resolve file"
  4557. msgstr ""
  4558. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:405
  4559. msgid "Resource not found"
  4560. msgstr ""
  4561. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:506
  4562. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:874
  4563. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:100
  4564. msgid "Restart"
  4565. msgstr ""
  4566. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:348
  4567. msgid "Restart Firewall"
  4568. msgstr ""
  4569. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:872
  4570. msgid "Restart radio interface"
  4571. msgstr ""
  4572. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:370
  4573. msgid "Restore"
  4574. msgstr ""
  4575. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:380
  4576. msgid "Restore backup"
  4577. msgstr ""
  4578. #: modules/luci-base/htdocs/luci-static/resources/ui.js:371
  4579. #: modules/luci-base/htdocs/luci-static/resources/ui.js:372
  4580. msgid "Reveal/hide password"
  4581. msgstr ""
  4582. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:625
  4583. msgid "Reverse path filter"
  4584. msgstr ""
  4585. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4076
  4586. msgid "Revert"
  4587. msgstr ""
  4588. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4161
  4589. msgid "Revert changes"
  4590. msgstr ""
  4591. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4343
  4592. msgid "Revert request failed with status <code>%h</code>"
  4593. msgstr ""
  4594. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4323
  4595. msgid "Reverting configuration…"
  4596. msgstr ""
  4597. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:551
  4598. msgid "Robustness"
  4599. msgstr ""
  4600. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:372
  4601. msgid "Root directory for files served via TFTP"
  4602. msgstr ""
  4603. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:297
  4604. msgid "Root preparation"
  4605. msgstr ""
  4606. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:202
  4607. msgid "Round-Robin policy (balance-rr, 0)"
  4608. msgstr ""
  4609. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
  4610. msgid "Route Allowed IPs"
  4611. msgstr ""
  4612. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:73
  4613. msgid "Route table"
  4614. msgstr ""
  4615. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:60
  4616. msgid "Route type"
  4617. msgstr ""
  4618. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:825
  4619. msgid ""
  4620. "Router Lifetime published in <abbr title=\"Router Advertisement, ICMPv6 Type "
  4621. "134\">RA</abbr> messages. Maximum is 9000 seconds."
  4622. msgstr ""
  4623. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:46
  4624. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:26
  4625. msgid "Router Password"
  4626. msgstr ""
  4627. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:15
  4628. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:197
  4629. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:27
  4630. msgid "Routes"
  4631. msgstr ""
  4632. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:15
  4633. msgid ""
  4634. "Routes specify over which interface and gateway a certain host or network "
  4635. "can be reached."
  4636. msgstr ""
  4637. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:218
  4638. msgid "Rule"
  4639. msgstr ""
  4640. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:335
  4641. msgid "Run a filesystem check before mounting the device"
  4642. msgstr ""
  4643. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:335
  4644. msgid "Run filesystem check"
  4645. msgstr ""
  4646. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2365
  4647. msgid "Runtime error"
  4648. msgstr ""
  4649. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:219
  4650. msgid "SHA256"
  4651. msgstr ""
  4652. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:59
  4653. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:276
  4654. msgid "SNR"
  4655. msgstr ""
  4656. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:10
  4657. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:38
  4658. msgid "SSH Access"
  4659. msgstr ""
  4660. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:70
  4661. msgid "SSH server address"
  4662. msgstr ""
  4663. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:74
  4664. msgid "SSH server port"
  4665. msgstr ""
  4666. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:58
  4667. msgid "SSH username"
  4668. msgstr ""
  4669. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:283
  4670. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:51
  4671. msgid "SSH-Keys"
  4672. msgstr ""
  4673. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:156
  4674. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:181
  4675. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1732
  4676. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:375
  4677. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:141
  4678. msgid "SSID"
  4679. msgstr "SSID"
  4680. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:9
  4681. msgid "SSTP"
  4682. msgstr ""
  4683. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:41
  4684. msgid "SSTP Server"
  4685. msgstr ""
  4686. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:339
  4687. msgid "SWAP"
  4688. msgstr ""
  4689. #: modules/luci-base/htdocs/luci-static/resources/form.js:2891
  4690. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2199
  4691. #: modules/luci-compat/luasrc/view/cbi/error.htm:17
  4692. #: modules/luci-compat/luasrc/view/cbi/footer.htm:26
  4693. #: modules/luci-compat/luasrc/view/cbi/header.htm:20
  4694. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:433
  4695. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:123
  4696. msgid "Save"
  4697. msgstr ""
  4698. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2181
  4699. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4072
  4700. #: modules/luci-compat/luasrc/view/cbi/footer.htm:22
  4701. msgid "Save & Apply"
  4702. msgstr ""
  4703. #: modules/luci-base/htdocs/luci-static/resources/form.js:602
  4704. msgid "Save error"
  4705. msgstr ""
  4706. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:404
  4707. msgid "Save mtdblock"
  4708. msgstr ""
  4709. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:394
  4710. msgid "Save mtdblock contents"
  4711. msgstr ""
  4712. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:879
  4713. msgid "Scan"
  4714. msgstr ""
  4715. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/crontab.js:26
  4716. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:76
  4717. msgid "Scheduled Tasks"
  4718. msgstr ""
  4719. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4056
  4720. msgid "Section added"
  4721. msgstr ""
  4722. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4058
  4723. msgid "Section removed"
  4724. msgstr ""
  4725. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:331
  4726. msgid "See \"mount\" manpage for details"
  4727. msgstr ""
  4728. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2643
  4729. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2783
  4730. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2948
  4731. msgid "Select file…"
  4732. msgstr ""
  4733. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:318
  4734. msgid "Selects the transmit hash policy to use for slave selection"
  4735. msgstr ""
  4736. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:768
  4737. msgid ""
  4738. "Send <abbr title=\"Router Advertisement, ICMPv6 Type 134\">RA</abbr> "
  4739. "messages advertising this device as IPv6 router."
  4740. msgstr ""
  4741. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:650
  4742. msgid "Send ICMP redirects"
  4743. msgstr ""
  4744. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:131
  4745. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:115
  4746. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:101
  4747. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:75
  4748. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:88
  4749. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:111
  4750. msgid ""
  4751. "Send LCP echo requests at the given interval in seconds, only effective in "
  4752. "conjunction with failure threshold"
  4753. msgstr ""
  4754. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:24
  4755. msgid "Send the hostname of this device"
  4756. msgstr ""
  4757. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:157
  4758. msgid "Server Settings"
  4759. msgstr ""
  4760. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:50
  4761. msgid "Service Name"
  4762. msgstr ""
  4763. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:88
  4764. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:72
  4765. msgid "Service Type"
  4766. msgstr ""
  4767. #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:36
  4768. msgid "Services"
  4769. msgstr ""
  4770. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2669
  4771. msgid "Session expired"
  4772. msgstr ""
  4773. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:117
  4774. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:166
  4775. msgid "Set Static"
  4776. msgstr ""
  4777. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:911
  4778. msgid "Set interface as NDP-Proxy external slave. Default is off."
  4779. msgstr ""
  4780. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1215
  4781. msgid ""
  4782. "Set interface properties regardless of the link carrier (If set, carrier "
  4783. "sense events do not invoke hotplug handlers)."
  4784. msgstr ""
  4785. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:300
  4786. msgid "Set same MAC Address to all slaves"
  4787. msgstr ""
  4788. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:786
  4789. msgid ""
  4790. "Set the autonomous address-configuration flag in the prefix information "
  4791. "options of sent <abbr title=\"Router Advertisement\">RA</abbr> messages. "
  4792. "When enabled, clients will perform stateless IPv6 address autoconfiguration."
  4793. msgstr ""
  4794. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:719
  4795. msgid ""
  4796. "Set this interface as master for RA and DHCPv6 relaying as well as NDP "
  4797. "proxying."
  4798. msgstr ""
  4799. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:304
  4800. msgid "Set to currently active slave (active, 1)"
  4801. msgstr ""
  4802. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:305
  4803. msgid "Set to first slave added to the bond (follow, 2)"
  4804. msgstr ""
  4805. #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:55
  4806. #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:55
  4807. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:23
  4808. msgid "Setting PLMN failed"
  4809. msgstr ""
  4810. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:68
  4811. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:26
  4812. msgid "Setting operation mode failed"
  4813. msgstr ""
  4814. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:646
  4815. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:662
  4816. msgid "Setup DHCP Server"
  4817. msgstr ""
  4818. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:906
  4819. msgid "Setup routes for proxied IPv6 neighbours."
  4820. msgstr ""
  4821. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:30
  4822. msgid "Severely Errored Seconds (SES)"
  4823. msgstr ""
  4824. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:210
  4825. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:37
  4826. msgid "Short GI"
  4827. msgstr ""
  4828. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1157
  4829. msgid "Short Preamble"
  4830. msgstr ""
  4831. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:440
  4832. #: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:18
  4833. msgid "Show current backup file list"
  4834. msgstr ""
  4835. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:293
  4836. msgid "Show empty chains"
  4837. msgstr ""
  4838. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:276
  4839. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:338
  4840. msgid "Show raw counters"
  4841. msgstr ""
  4842. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:510
  4843. msgid "Shutdown this interface"
  4844. msgstr ""
  4845. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:57
  4846. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:63
  4847. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:186
  4848. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1731
  4849. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:42
  4850. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:374
  4851. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:140
  4852. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:231
  4853. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:274
  4854. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:280
  4855. msgid "Signal"
  4856. msgstr ""
  4857. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2151
  4858. msgid "Signal / Noise"
  4859. msgstr ""
  4860. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:25
  4861. msgid "Signal Attenuation (SATN)"
  4862. msgstr ""
  4863. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:125
  4864. msgid "Signal Refresh Rate"
  4865. msgstr ""
  4866. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:262
  4867. msgid "Signal:"
  4868. msgstr ""
  4869. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3809
  4870. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:217
  4871. msgid "Size"
  4872. msgstr ""
  4873. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:361
  4874. msgid "Size of DNS query cache"
  4875. msgstr ""
  4876. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:194
  4877. msgid "Size of the ZRam device in megabytes"
  4878. msgstr ""
  4879. #: modules/luci-compat/luasrc/view/cbi/footer.htm:18
  4880. #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:57
  4881. msgid "Skip"
  4882. msgstr ""
  4883. #: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:40
  4884. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:46
  4885. msgid "Skip to content"
  4886. msgstr ""
  4887. #: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:39
  4888. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:45
  4889. msgid "Skip to navigation"
  4890. msgstr ""
  4891. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:178
  4892. msgid "Slave Interfaces"
  4893. msgstr ""
  4894. #: modules/luci-base/htdocs/luci-static/resources/network.js:2998
  4895. #: modules/luci-compat/luasrc/model/network.lua:1428
  4896. msgid "Software VLAN"
  4897. msgstr ""
  4898. #: modules/luci-compat/luasrc/view/cbi/header.htm:5
  4899. msgid "Some fields are invalid, cannot save values!"
  4900. msgstr ""
  4901. #: modules/luci-base/luasrc/view/error404.htm:9
  4902. msgid "Sorry, the object you requested was not found."
  4903. msgstr ""
  4904. #: modules/luci-base/luasrc/view/error500.htm:9
  4905. msgid "Sorry, the server encountered an unexpected error."
  4906. msgstr ""
  4907. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:412
  4908. msgid ""
  4909. "Sorry, there is no sysupgrade support present; a new firmware image must be "
  4910. "flashed manually. Please refer to the wiki for device specific install "
  4911. "instructions."
  4912. msgstr ""
  4913. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:385
  4914. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:70
  4915. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:184
  4916. msgid "Source"
  4917. msgstr ""
  4918. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:84
  4919. msgid "Source Address"
  4920. msgstr ""
  4921. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57
  4922. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:57
  4923. msgid "Source interface"
  4924. msgstr ""
  4925. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:891
  4926. msgid ""
  4927. "Specifies a fixed list of DNS search domains to announce via DHCPv6. If left "
  4928. "unspecified, the local device DNS search domain will be announced."
  4929. msgstr ""
  4930. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:879
  4931. msgid ""
  4932. "Specifies a fixed list of IPv6 DNS server addresses to announce via DHCPv6. "
  4933. "If left unspecified, the device will announce itself as IPv6 DNS server "
  4934. "unless the <em>Local IPv6 DNS server</em> option is disabled."
  4935. msgstr ""
  4936. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:342
  4937. msgid ""
  4938. "Specifies that duplicate frames (received on inactive ports) should be "
  4939. "dropped or delivered"
  4940. msgstr ""
  4941. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:358
  4942. msgid "Specifies the ARP link monitoring frequency in milliseconds"
  4943. msgstr ""
  4944. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:366
  4945. msgid "Specifies the IP addresses to use for ARP monitoring"
  4946. msgstr ""
  4947. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:395
  4948. msgid "Specifies the MII link monitoring frequency in milliseconds"
  4949. msgstr ""
  4950. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:259
  4951. msgid "Specifies the aggregation selection logic to use"
  4952. msgstr ""
  4953. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:292
  4954. msgid "Specifies the directory the device is attached to"
  4955. msgstr ""
  4956. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:792
  4957. msgid ""
  4958. "Specifies the flags sent in <abbr title=\"Router Advertisement\">RA</abbr> "
  4959. "messages, for example to instruct clients to request further information via "
  4960. "stateful DHCPv6."
  4961. msgstr ""
  4962. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:252
  4963. msgid ""
  4964. "Specifies the mac-address for the actor in protocol packet exchanges "
  4965. "(LACPDUs). If empty, masters' mac address defaults to system default"
  4966. msgstr ""
  4967. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:175
  4968. msgid ""
  4969. "Specifies the maximum amount of failed ARP requests until hosts are presumed "
  4970. "to be dead"
  4971. msgstr ""
  4972. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:171
  4973. msgid ""
  4974. "Specifies the maximum amount of seconds after which hosts are presumed to be "
  4975. "dead"
  4976. msgstr ""
  4977. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:946
  4978. msgid ""
  4979. "Specifies the maximum transmit power the wireless radio may use. Depending "
  4980. "on regulatory requirements and wireless usage, the actual transmit power may "
  4981. "be reduced by the driver."
  4982. msgstr ""
  4983. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:236
  4984. msgid ""
  4985. "Specifies the minimum number of links that must be active before asserting "
  4986. "carrier"
  4987. msgstr ""
  4988. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:200
  4989. msgid "Specifies the mode to be used for this bonding interface"
  4990. msgstr ""
  4991. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:333
  4992. msgid ""
  4993. "Specifies the number of IGMP membership reports to be issued after a "
  4994. "failover event in 200ms intervals"
  4995. msgstr ""
  4996. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:276
  4997. msgid ""
  4998. "Specifies the number of packets to transmit through a slave before moving to "
  4999. "the next one"
  5000. msgstr ""
  5001. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:310
  5002. msgid ""
  5003. "Specifies the number of peer notifications (gratuitous ARPs and unsolicited "
  5004. "IPv6 Neighbor Advertisements) to be issued after a failover event"
  5005. msgstr ""
  5006. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:284
  5007. msgid ""
  5008. "Specifies the number of seconds between instances where the bonding driver "
  5009. "sends learning packets to each slaves peer switch"
  5010. msgstr ""
  5011. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:374
  5012. msgid "Specifies the quantity of ARP IP targets that must be reachable"
  5013. msgstr ""
  5014. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:268
  5015. msgid ""
  5016. "Specifies the rate in which the link partner will be asked to transmit "
  5017. "LACPDU packets"
  5018. msgstr ""
  5019. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:225
  5020. msgid ""
  5021. "Specifies the reselection policy for the primary slave when failure of the "
  5022. "active slave or recovery of the primary slave occurs"
  5023. msgstr ""
  5024. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:244
  5025. msgid "Specifies the system priority"
  5026. msgstr ""
  5027. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:403
  5028. msgid ""
  5029. "Specifies the time in milliseconds to wait before disabling a slave after a "
  5030. "link failure detection"
  5031. msgstr ""
  5032. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:411
  5033. msgid ""
  5034. "Specifies the time in milliseconds to wait before enabling a slave after a "
  5035. "link recovery detection"
  5036. msgstr ""
  5037. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:494
  5038. msgid ""
  5039. "Specifies the wired ports to attach to this bridge. In order to attach "
  5040. "wireless networks, choose the associated interface as network in the "
  5041. "wireless settings."
  5042. msgstr ""
  5043. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:382
  5044. msgid ""
  5045. "Specifies whether ARP probes and replies should be validated or non-ARP "
  5046. "traffic should be filtered for link monitoring"
  5047. msgstr ""
  5048. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:301
  5049. msgid ""
  5050. "Specifies whether active-backup mode should set all slaves to the same MAC "
  5051. "address at enslavement"
  5052. msgstr ""
  5053. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:419
  5054. msgid ""
  5055. "Specifies whether or not miimon should use MII or ETHTOOL ioctls vs. "
  5056. "netif_carrier_ok()"
  5057. msgstr ""
  5058. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:293
  5059. msgid ""
  5060. "Specifies whether to shuffle active flows across slaves based on the load"
  5061. msgstr ""
  5062. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:179
  5063. msgid ""
  5064. "Specifies which slave interfaces should be attached to this bonding interface"
  5065. msgstr ""
  5066. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:212
  5067. msgid ""
  5068. "Specifies which slave is the primary device. It will always be the active "
  5069. "slave while it is available"
  5070. msgstr ""
  5071. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:63
  5072. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:67
  5073. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:62
  5074. msgid "Specify a TOS (Type of Service)."
  5075. msgstr ""
  5076. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:74
  5077. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:79
  5078. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:79
  5079. msgid ""
  5080. "Specify a TOS (Type of Service). Can be <code>inherit</code> (the outer "
  5081. "header inherits the value of the inner header) or an hexadecimal value "
  5082. "<code>00..FF</code> (optional)."
  5083. msgstr ""
  5084. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:74
  5085. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:74
  5086. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:79
  5087. msgid ""
  5088. "Specify a TTL (Time to Live) for the encapsulating packet other than the "
  5089. "default (64) (optional)."
  5090. msgstr ""
  5091. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:69
  5092. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:58
  5093. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:62
  5094. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:57
  5095. msgid ""
  5096. "Specify a TTL (Time to Live) for the encapsulating packet other than the "
  5097. "default (64)."
  5098. msgstr ""
  5099. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:84
  5100. msgid ""
  5101. "Specify a Traffic Class. Can be <code>inherit</code> (the outer header "
  5102. "inherits the value of the inner header) or an hexadecimal value <code>00.."
  5103. "FF</code> (optional)."
  5104. msgstr ""
  5105. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:64
  5106. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:69
  5107. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:69
  5108. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:74
  5109. msgid ""
  5110. "Specify an MTU (Maximum Transmission Unit) other than the default (1280 "
  5111. "bytes) (optional)."
  5112. msgstr ""
  5113. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:53
  5114. msgid ""
  5115. "Specify an MTU (Maximum Transmission Unit) other than the default (1280 "
  5116. "bytes)."
  5117. msgstr ""
  5118. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2011
  5119. msgid "Specify the secret encryption key here."
  5120. msgstr ""
  5121. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:657
  5122. msgid "Stale neighbour cache timeout"
  5123. msgstr ""
  5124. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:669
  5125. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:99
  5126. msgid "Start"
  5127. msgstr ""
  5128. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:134
  5129. msgid "Start WPS"
  5130. msgstr ""
  5131. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:76
  5132. msgid "Start priority"
  5133. msgstr ""
  5134. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1835
  5135. msgid "Start refresh"
  5136. msgstr ""
  5137. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4276
  5138. msgid "Starting configuration apply…"
  5139. msgstr ""
  5140. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1748
  5141. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:398
  5142. msgid "Starting wireless scan..."
  5143. msgstr ""
  5144. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:109
  5145. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:64
  5146. msgid "Startup"
  5147. msgstr ""
  5148. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:19
  5149. msgid "Static IPv4 Routes"
  5150. msgstr ""
  5151. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:19
  5152. msgid "Static IPv6 Routes"
  5153. msgstr ""
  5154. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:90
  5155. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:129
  5156. msgid "Static Lease"
  5157. msgstr ""
  5158. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:165
  5159. msgid "Static Leases"
  5160. msgstr ""
  5161. #: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:76
  5162. msgid "Static Routes"
  5163. msgstr ""
  5164. #: modules/luci-base/htdocs/luci-static/resources/network.js:2099
  5165. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:172
  5166. #: modules/luci-compat/luasrc/model/network.lua:967
  5167. msgid "Static address"
  5168. msgstr ""
  5169. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:411
  5170. msgid ""
  5171. "Static leases are used to assign fixed IP addresses and symbolic hostnames "
  5172. "to DHCP clients. They are also required for non-dynamic interface "
  5173. "configurations where only hosts with a corresponding lease are served."
  5174. msgstr ""
  5175. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1174
  5176. msgid "Station inactivity limit"
  5177. msgstr ""
  5178. #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:16
  5179. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:541
  5180. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:928
  5181. #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:9
  5182. msgid "Status"
  5183. msgstr ""
  5184. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:512
  5185. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:101
  5186. msgid "Stop"
  5187. msgstr ""
  5188. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:129
  5189. msgid "Stop WPS"
  5190. msgstr ""
  5191. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1746
  5192. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1840
  5193. msgid "Stop refresh"
  5194. msgstr ""
  5195. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:629
  5196. msgid "Strict filtering"
  5197. msgstr ""
  5198. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:259
  5199. msgid "Strict order"
  5200. msgstr ""
  5201. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:33
  5202. msgid "Strong"
  5203. msgstr ""
  5204. #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:61
  5205. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2036
  5206. msgid "Submit"
  5207. msgstr ""
  5208. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:203
  5209. msgid "Suppress logging"
  5210. msgstr ""
  5211. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:204
  5212. msgid "Suppress logging of the routine operation of these protocols"
  5213. msgstr ""
  5214. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:44
  5215. msgid "Swap free"
  5216. msgstr ""
  5217. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:139
  5218. #: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:3
  5219. msgid "Switch"
  5220. msgstr ""
  5221. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:172
  5222. msgid "Switch %q"
  5223. msgstr ""
  5224. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:150
  5225. msgid ""
  5226. "Switch %q has an unknown topology - the VLAN settings might not be accurate."
  5227. msgstr ""
  5228. #: modules/luci-base/htdocs/luci-static/resources/network.js:2998
  5229. #: modules/luci-compat/luasrc/model/network.lua:1426
  5230. msgid "Switch VLAN"
  5231. msgstr ""
  5232. #: modules/luci-base/htdocs/luci-static/resources/network.js:2995
  5233. msgid "Switch port"
  5234. msgstr ""
  5235. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:560
  5236. msgid "Switch protocol"
  5237. msgstr ""
  5238. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:103
  5239. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:104
  5240. #: modules/luci-compat/luasrc/view/cbi/ipaddr.htm:26
  5241. msgid "Switch to CIDR list notation"
  5242. msgstr ""
  5243. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2678
  5244. msgid "Symbolic link"
  5245. msgstr ""
  5246. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:75
  5247. msgid "Sync with NTP-Server"
  5248. msgstr ""
  5249. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:67
  5250. msgid "Sync with browser"
  5251. msgstr ""
  5252. #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:26
  5253. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:17
  5254. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:99
  5255. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:3
  5256. msgid "System"
  5257. msgstr ""
  5258. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/syslog.js:25
  5259. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:39
  5260. msgid "System Log"
  5261. msgstr ""
  5262. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:243
  5263. msgid "System Priority"
  5264. msgstr ""
  5265. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:104
  5266. msgid "System Properties"
  5267. msgstr ""
  5268. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:148
  5269. msgid "System log buffer size"
  5270. msgstr ""
  5271. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:338
  5272. msgid "TCP:"
  5273. msgstr ""
  5274. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:163
  5275. msgid "TFTP Settings"
  5276. msgstr ""
  5277. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:371
  5278. msgid "TFTP server root"
  5279. msgstr ""
  5280. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:50
  5281. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:85
  5282. msgid "TX"
  5283. msgstr ""
  5284. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:232
  5285. msgid "TX Rate"
  5286. msgstr ""
  5287. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:618
  5288. msgid "TX queue length"
  5289. msgstr ""
  5290. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:18
  5291. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:167
  5292. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:186
  5293. msgid "Table"
  5294. msgstr ""
  5295. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:31
  5296. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:66
  5297. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:164
  5298. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:183
  5299. msgid "Target"
  5300. msgstr ""
  5301. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:103
  5302. msgid "Target network"
  5303. msgstr ""
  5304. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:50
  5305. msgid "Terminate"
  5306. msgstr ""
  5307. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:832
  5308. msgid ""
  5309. "The <abbr title=\"Maximum Transmission Unit\">MTU</abbr> to be published in "
  5310. "<abbr title=\"Router Advertisement, ICMPv6 Type 134\">RA</abbr> messages. "
  5311. "Minimum is 1280 bytes."
  5312. msgstr ""
  5313. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:794
  5314. msgid ""
  5315. "The <em>Managed address configuration</em> (M) flag indicates that IPv6 "
  5316. "addresses are available via DHCPv6."
  5317. msgstr ""
  5318. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:798
  5319. msgid ""
  5320. "The <em>Mobile IPv6 Home Agent</em> (H) flag indicates that the device is "
  5321. "also acting as Mobile IPv6 home agent on this link."
  5322. msgstr ""
  5323. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:796
  5324. msgid ""
  5325. "The <em>Other configuration</em> (O) flag indicates that other information, "
  5326. "such as DNS servers, is available via DHCPv6."
  5327. msgstr ""
  5328. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:84
  5329. msgid "The <em>block mount</em> command failed with code %d"
  5330. msgstr ""
  5331. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:937
  5332. msgid ""
  5333. "The DNS server entries in the local resolv.conf are primarily sorted by the "
  5334. "weight specified here"
  5335. msgstr ""
  5336. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:77
  5337. msgid ""
  5338. "The HE.net endpoint update configuration changed, you must now use the plain "
  5339. "username instead of the user ID!"
  5340. msgstr ""
  5341. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:40
  5342. msgid "The IPv4 address or the fully-qualified domain name of the remote end."
  5343. msgstr ""
  5344. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:42
  5345. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:42
  5346. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:40
  5347. msgid ""
  5348. "The IPv4 address or the fully-qualified domain name of the remote tunnel end."
  5349. msgstr ""
  5350. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:40
  5351. msgid "The IPv6 address or the fully-qualified domain name of the remote end."
  5352. msgstr ""
  5353. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:42
  5354. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:42
  5355. msgid ""
  5356. "The IPv6 address or the fully-qualified domain name of the remote tunnel end."
  5357. msgstr ""
  5358. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:53
  5359. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:59
  5360. msgid ""
  5361. "The IPv6 prefix assigned to the provider, usually ends with <code>::</code>"
  5362. msgstr ""
  5363. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:586
  5364. msgid "The MTU must not exceed the parent device MTU of %d bytes"
  5365. msgstr ""
  5366. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:864
  5367. msgid "The VLAN ID must be unique"
  5368. msgstr ""
  5369. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1996
  5370. msgid ""
  5371. "The allowed characters are: <code>A-Z</code>, <code>a-z</code>, <code>0-9</"
  5372. "code> and <code>_</code>"
  5373. msgstr ""
  5374. #: modules/luci-compat/luasrc/view/cbi/error.htm:6
  5375. msgid "The configuration file could not be loaded due to the following error:"
  5376. msgstr ""
  5377. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1990
  5378. msgid ""
  5379. "The correct SSID must be manually specified when joining a hidden wireless "
  5380. "network"
  5381. msgstr ""
  5382. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4152
  5383. msgid ""
  5384. "The device could not be reached within %d seconds after applying the pending "
  5385. "changes, which caused the configuration to be rolled back for safety "
  5386. "reasons. If you believe that the configuration changes are correct "
  5387. "nonetheless, perform an unchecked configuration apply. Alternatively, you "
  5388. "can dismiss this warning and edit changes before attempting to apply again, "
  5389. "or revert all pending changes to keep the currently working configuration "
  5390. "state."
  5391. msgstr ""
  5392. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:280
  5393. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:392
  5394. msgid ""
  5395. "The device file of the memory or partition (<abbr title=\"for example\">e.g."
  5396. "</abbr> <code>/dev/sda1</code>)"
  5397. msgstr ""
  5398. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:450
  5399. msgid "The device name \"%s\" is already taken"
  5400. msgstr ""
  5401. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:393
  5402. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:427
  5403. msgid ""
  5404. "The existing network configuration needs to be changed for LuCI to function "
  5405. "properly."
  5406. msgstr ""
  5407. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:793
  5408. msgid ""
  5409. "The existing wireless configuration needs to be changed for LuCI to function "
  5410. "properly."
  5411. msgstr ""
  5412. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:215
  5413. msgid ""
  5414. "The flash image was uploaded. Below is the checksum and file size listed, "
  5415. "compare them with the original file to ensure data integrity. <br /> Click "
  5416. "'Continue' below to start the flash procedure."
  5417. msgstr ""
  5418. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:198
  5419. msgid "The following rules are currently active on this system."
  5420. msgstr ""
  5421. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:154
  5422. msgid "The gateway address must not be a local IP address"
  5423. msgstr ""
  5424. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:166
  5425. msgid "The given SSH public key has already been added."
  5426. msgstr ""
  5427. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:172
  5428. msgid ""
  5429. "The given SSH public key is invalid. Please supply proper public RSA or "
  5430. "ECDSA keys."
  5431. msgstr ""
  5432. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1088
  5433. msgid "The interface name is already used"
  5434. msgstr ""
  5435. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1094
  5436. msgid "The interface name is too long"
  5437. msgstr ""
  5438. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:61
  5439. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:55
  5440. msgid ""
  5441. "The length of the IPv4 prefix in bits, the remainder is used in the IPv6 "
  5442. "addresses."
  5443. msgstr ""
  5444. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:57
  5445. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:63
  5446. msgid "The length of the IPv6 prefix in bits"
  5447. msgstr ""
  5448. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:163
  5449. msgid "The local IPv4 address"
  5450. msgstr ""
  5451. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:46
  5452. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:46
  5453. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:44
  5454. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:44
  5455. msgid "The local IPv4 address over which the tunnel is created (optional)."
  5456. msgstr ""
  5457. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:169
  5458. msgid "The local IPv4 netmask"
  5459. msgstr ""
  5460. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:46
  5461. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:53
  5462. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:44
  5463. msgid "The local IPv6 address over which the tunnel is created (optional)."
  5464. msgstr ""
  5465. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:575
  5466. msgid ""
  5467. "The max response time in centiseconds inserted into group-specific queries "
  5468. "sent in response to leave group messages. It is also the amount of time "
  5469. "between group-specific query messages. This value may be tuned to modify the "
  5470. "\"leave latency\" of the network. A reduced value results in reduced time to "
  5471. "detect the loss of the last member of a group"
  5472. msgstr ""
  5473. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:561
  5474. msgid ""
  5475. "The max response time in centiseconds inserted into the periodic general "
  5476. "queries. By varying the value, an administrator may tune the burstiness of "
  5477. "IGMP messages on the subnet; larger values make the traffic less bursty, as "
  5478. "host responses are spread out over a larger interval"
  5479. msgstr ""
  5480. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:849
  5481. msgid ""
  5482. "The maximum hops to be published in <abbr title=\"Router Advertisement\">RA</"
  5483. "abbr> messages. Maximum is 255 hops."
  5484. msgstr ""
  5485. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2002
  5486. msgid "The network name is already used"
  5487. msgstr ""
  5488. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:139
  5489. msgid ""
  5490. "The network ports on this device can be combined to several <abbr title="
  5491. "\"Virtual Local Area Network\">VLAN</abbr>s in which computers can "
  5492. "communicate directly with each other. <abbr title=\"Virtual Local Area "
  5493. "Network\">VLAN</abbr>s are often used to separate different network "
  5494. "segments. Often there is by default one Uplink port for a connection to the "
  5495. "next greater network like the internet and other ports for a local network."
  5496. msgstr ""
  5497. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:569
  5498. msgid "The query response interval must be lower than the query interval value"
  5499. msgstr ""
  5500. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:158
  5501. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:42
  5502. msgid "The reboot command failed with code %d"
  5503. msgstr ""
  5504. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:147
  5505. msgid "The restore command failed with code %d"
  5506. msgstr ""
  5507. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:551
  5508. msgid ""
  5509. "The robustness value allows tuning for the expected packet loss on the "
  5510. "network. If a network is expected to be lossy, the robustness value may be "
  5511. "increased. IGMP is robust to (Robustness-1) packet losses"
  5512. msgstr ""
  5513. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1369
  5514. msgid "The selected %s mode is incompatible with %s encryption"
  5515. msgstr ""
  5516. #: modules/luci-base/luasrc/view/csrftoken.htm:11
  5517. msgid "The submitted security token is invalid or already expired!"
  5518. msgstr ""
  5519. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:98
  5520. msgid ""
  5521. "The system is erasing the configuration partition now and will reboot itself "
  5522. "when finished."
  5523. msgstr ""
  5524. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:289
  5525. msgid ""
  5526. "The system is flashing now.<br /> DO NOT POWER OFF THE DEVICE!<br /> Wait a "
  5527. "few minutes before you try to reconnect. It might be necessary to renew the "
  5528. "address of your computer to reach the device again, depending on your "
  5529. "settings."
  5530. msgstr ""
  5531. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:163
  5532. msgid ""
  5533. "The system is rebooting now. If the restored configuration changed the "
  5534. "current LAN IP address, you might need to reconnect manually."
  5535. msgstr ""
  5536. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:85
  5537. msgid "The system password has been successfully changed."
  5538. msgstr ""
  5539. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:315
  5540. msgid "The sysupgrade command failed with code %d"
  5541. msgstr ""
  5542. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:120
  5543. msgid ""
  5544. "The uploaded backup archive appears to be valid and contains the files "
  5545. "listed below. Press \"Continue\" to restore the backup and reboot, or "
  5546. "\"Cancel\" to abort the operation."
  5547. msgstr ""
  5548. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:115
  5549. msgid "The uploaded backup archive is not readable"
  5550. msgstr ""
  5551. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:244
  5552. msgid "The uploaded firmware does not allow keeping current configuration."
  5553. msgstr ""
  5554. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:239
  5555. msgid ""
  5556. "The uploaded image file does not contain a supported format. Make sure that "
  5557. "you choose the generic image format for your platform."
  5558. msgstr ""
  5559. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1414
  5560. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1426
  5561. msgid "The value is overridden by configuration. Original: %s"
  5562. msgstr ""
  5563. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:562
  5564. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:594
  5565. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:121
  5566. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:170
  5567. msgid "There are no active leases"
  5568. msgstr ""
  5569. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4291
  5570. msgid "There are no changes to apply"
  5571. msgstr ""
  5572. #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:55
  5573. #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:213
  5574. #: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:60
  5575. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:80
  5576. msgid ""
  5577. "There is no password set on this router. Please configure a root password to "
  5578. "protect the web interface."
  5579. msgstr ""
  5580. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:49
  5581. msgid "This IPv4 address of the relay"
  5582. msgstr ""
  5583. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1623
  5584. msgid "This authentication type is not applicable to the selected EAP method."
  5585. msgstr ""
  5586. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:57
  5587. msgid "This does not look like a valid PEM file"
  5588. msgstr ""
  5589. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:256
  5590. msgid ""
  5591. "This file may contain lines like 'server=/domain/1.2.3.4' or "
  5592. "'server=1.2.3.4' for domain-specific or full upstream <abbr title=\"Domain "
  5593. "Name System\">DNS</abbr> servers."
  5594. msgstr ""
  5595. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:424
  5596. #: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:16
  5597. msgid ""
  5598. "This is a list of shell glob patterns for matching files and directories to "
  5599. "include during sysupgrade. Modified files in /etc/config/ and certain other "
  5600. "configurations are automatically preserved."
  5601. msgstr ""
  5602. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:81
  5603. msgid ""
  5604. "This is either the \"Update Key\" configured for the tunnel or the account "
  5605. "password if no update key has been configured"
  5606. msgstr ""
  5607. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:116
  5608. msgid ""
  5609. "This is the content of /etc/rc.local. Insert your own commands here (in "
  5610. "front of 'exit 0') to execute them at the end of the boot process."
  5611. msgstr ""
  5612. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:54
  5613. msgid ""
  5614. "This is the local endpoint address assigned by the tunnel broker, it usually "
  5615. "ends with <code>...:2/64</code>"
  5616. msgstr ""
  5617. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:173
  5618. msgid ""
  5619. "This is the only <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</"
  5620. "abbr> in the local network"
  5621. msgstr ""
  5622. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:73
  5623. msgid "This is the plain username for logging into the account"
  5624. msgstr ""
  5625. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:57
  5626. msgid ""
  5627. "This is the prefix routed to you by the tunnel broker for use by clients"
  5628. msgstr ""
  5629. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/crontab.js:28
  5630. msgid "This is the system crontab in which scheduled tasks can be defined."
  5631. msgstr ""
  5632. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:50
  5633. msgid ""
  5634. "This is usually the address of the nearest PoP operated by the tunnel broker"
  5635. msgstr ""
  5636. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:65
  5637. msgid ""
  5638. "This list gives an overview over currently running system processes and "
  5639. "their status."
  5640. msgstr ""
  5641. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1577
  5642. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1635
  5643. msgid ""
  5644. "This option cannot be used because the ca-bundle package is not installed."
  5645. msgstr ""
  5646. #: modules/luci-base/htdocs/luci-static/resources/form.js:2230
  5647. #: modules/luci-base/htdocs/luci-static/resources/form.js:2536
  5648. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:172
  5649. #: modules/luci-compat/luasrc/view/cbi/tsection.htm:32
  5650. msgid "This section contains no values yet"
  5651. msgstr ""
  5652. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:110
  5653. msgid "Time Synchronization"
  5654. msgstr ""
  5655. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:653
  5656. msgid "Time in milliseconds"
  5657. msgstr ""
  5658. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:527
  5659. msgid "Time in seconds to spend in listening and learning states"
  5660. msgstr ""
  5661. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1165
  5662. msgid "Time interval for rekeying GTK"
  5663. msgstr ""
  5664. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:15
  5665. msgid "Timed-out"
  5666. msgstr ""
  5667. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:657
  5668. msgid "Timeout in seconds"
  5669. msgstr ""
  5670. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:513
  5671. msgid "Timeout in seconds for learned MAC addresses in the forwarding database"
  5672. msgstr ""
  5673. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:532
  5674. msgid "Timeout in seconds until topology updates on link loss"
  5675. msgstr ""
  5676. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:131
  5677. msgid "Timezone"
  5678. msgstr ""
  5679. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2679
  5680. msgid "To login…"
  5681. msgstr ""
  5682. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:370
  5683. msgid ""
  5684. "To restore configuration files, you can upload a previously generated backup "
  5685. "archive here. To reset the firmware to its initial state, click \"Perform "
  5686. "reset\" (only possible with squashfs images)."
  5687. msgstr ""
  5688. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1462
  5689. msgid "Tone"
  5690. msgstr ""
  5691. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:35
  5692. msgid "Total Available"
  5693. msgstr ""
  5694. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:102
  5695. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:103
  5696. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:113
  5697. msgid "Traceroute"
  5698. msgstr ""
  5699. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:54
  5700. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:65
  5701. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:109
  5702. msgid "Traffic"
  5703. msgstr ""
  5704. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:79
  5705. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:84
  5706. msgid "Traffic Class"
  5707. msgstr ""
  5708. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:387
  5709. msgid "Transfer"
  5710. msgstr ""
  5711. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:24
  5712. msgid "Transmit"
  5713. msgstr ""
  5714. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:317
  5715. msgid "Transmit Hash Policy"
  5716. msgstr ""
  5717. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:74
  5718. msgid "Trigger"
  5719. msgstr ""
  5720. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:19
  5721. msgid "Trigger Mode"
  5722. msgstr ""
  5723. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:69
  5724. msgid "Tunnel ID"
  5725. msgstr ""
  5726. #: modules/luci-base/htdocs/luci-static/resources/network.js:3001
  5727. #: modules/luci-compat/luasrc/model/network.lua:1431
  5728. msgid "Tunnel Interface"
  5729. msgstr ""
  5730. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:44
  5731. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:55
  5732. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:76
  5733. msgid "Tunnel Link"
  5734. msgstr ""
  5735. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1371
  5736. msgid "Tunnel device"
  5737. msgstr ""
  5738. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:185
  5739. msgid "Tx-Power"
  5740. msgstr ""
  5741. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:45
  5742. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1402
  5743. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:163
  5744. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:43
  5745. msgid "Type"
  5746. msgstr ""
  5747. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:328
  5748. msgid "UDP:"
  5749. msgstr ""
  5750. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:91
  5751. msgid "UMTS only"
  5752. msgstr ""
  5753. #: modules/luci-compat/luasrc/model/network/proto_3g.lua:10
  5754. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:43
  5755. msgid "UMTS/GPRS/EV-DO"
  5756. msgstr ""
  5757. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:254
  5758. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:360
  5759. msgid "UUID"
  5760. msgstr ""
  5761. #: modules/luci-base/htdocs/luci-static/resources/network.js:16
  5762. #: modules/luci-base/htdocs/luci-static/resources/network.js:17
  5763. #: modules/luci-compat/luasrc/model/network.lua:34
  5764. #: modules/luci-compat/luasrc/model/network.lua:35
  5765. msgid "Unable to determine device name"
  5766. msgstr ""
  5767. #: modules/luci-base/htdocs/luci-static/resources/network.js:18
  5768. #: modules/luci-compat/luasrc/model/network.lua:36
  5769. msgid "Unable to determine external IP address"
  5770. msgstr ""
  5771. #: modules/luci-base/htdocs/luci-static/resources/network.js:19
  5772. #: modules/luci-compat/luasrc/model/network.lua:37
  5773. msgid "Unable to determine upstream interface"
  5774. msgstr ""
  5775. #: modules/luci-base/luasrc/view/error404.htm:11
  5776. msgid "Unable to dispatch"
  5777. msgstr ""
  5778. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/dmesg.js:9
  5779. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/syslog.js:15
  5780. msgid "Unable to load log data:"
  5781. msgstr ""
  5782. #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:54
  5783. #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:54
  5784. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:22
  5785. msgid "Unable to obtain client ID"
  5786. msgstr ""
  5787. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:221
  5788. msgid "Unable to obtain mount information"
  5789. msgstr ""
  5790. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:307
  5791. msgid "Unable to reset ip6tables counters: %s"
  5792. msgstr ""
  5793. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:305
  5794. msgid "Unable to reset iptables counters: %s"
  5795. msgstr ""
  5796. #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:61
  5797. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:7
  5798. msgid "Unable to resolve AFTR host name"
  5799. msgstr ""
  5800. #: modules/luci-base/htdocs/luci-static/resources/network.js:20
  5801. #: modules/luci-compat/luasrc/model/network.lua:38
  5802. msgid "Unable to resolve peer host name"
  5803. msgstr ""
  5804. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:313
  5805. msgid "Unable to restart firewall: %s"
  5806. msgstr ""
  5807. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/crontab.js:20
  5808. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:340
  5809. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:57
  5810. msgid "Unable to save contents: %s"
  5811. msgstr ""
  5812. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:32
  5813. msgid "Unavailable Seconds (UAS)"
  5814. msgstr ""
  5815. #: modules/luci-base/htdocs/luci-static/resources/fs.js:102
  5816. msgid "Unexpected reply data format"
  5817. msgstr ""
  5818. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1434
  5819. msgid ""
  5820. "Unique Local Address - in the range <code>fc00::/7</code>. Typically only "
  5821. "within the &#8216;local&#8217; half <code>fd00::/8</code>. ULA for IPv6 is "
  5822. "analogous to IPv4 private network addressing. This prefix is randomly "
  5823. "generated at first install."
  5824. msgstr ""
  5825. #: modules/luci-base/htdocs/luci-static/resources/network.js:2101
  5826. #: modules/luci-compat/luasrc/model/network.lua:971
  5827. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:17
  5828. msgid "Unknown"
  5829. msgstr ""
  5830. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:47
  5831. msgid "Unknown and unsupported connection method."
  5832. msgstr ""
  5833. #: modules/luci-base/htdocs/luci-static/resources/network.js:2410
  5834. #: modules/luci-compat/luasrc/model/network.lua:1138
  5835. msgid "Unknown error (%s)"
  5836. msgstr ""
  5837. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:412
  5838. msgid "Unknown error code"
  5839. msgstr ""
  5840. #: modules/luci-base/htdocs/luci-static/resources/network.js:2098
  5841. #: modules/luci-base/htdocs/luci-static/resources/protocol/none.js:6
  5842. #: modules/luci-compat/luasrc/model/network.lua:965
  5843. msgid "Unmanaged"
  5844. msgstr ""
  5845. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:195
  5846. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:217
  5847. msgid "Unmount"
  5848. msgstr ""
  5849. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:115
  5850. msgid "Unnamed key"
  5851. msgstr ""
  5852. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3996
  5853. msgid "Unsaved Changes"
  5854. msgstr ""
  5855. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:410
  5856. msgid "Unspecified error"
  5857. msgstr ""
  5858. #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:64
  5859. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:9
  5860. msgid "Unsupported MAP type"
  5861. msgstr ""
  5862. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:69
  5863. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:27
  5864. msgid "Unsupported modem"
  5865. msgstr ""
  5866. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:299
  5867. msgid "Unsupported protocol type."
  5868. msgstr ""
  5869. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:151
  5870. msgid "Up"
  5871. msgstr ""
  5872. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:410
  5873. msgid "Up Delay"
  5874. msgstr ""
  5875. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3883
  5876. msgid "Upload"
  5877. msgstr ""
  5878. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:411
  5879. msgid ""
  5880. "Upload a sysupgrade-compatible image here to replace the running firmware."
  5881. msgstr ""
  5882. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:138
  5883. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:169
  5884. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:382
  5885. msgid "Upload archive..."
  5886. msgstr ""
  5887. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2837
  5888. msgid "Upload file"
  5889. msgstr ""
  5890. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2812
  5891. msgid "Upload file…"
  5892. msgstr ""
  5893. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2759
  5894. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3871
  5895. msgid "Upload request failed: %s"
  5896. msgstr ""
  5897. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3790
  5898. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3844
  5899. msgid "Uploading file…"
  5900. msgstr ""
  5901. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:794
  5902. msgid ""
  5903. "Upon pressing \"Continue\", anonymous \"wifi-iface\" sections will be "
  5904. "assigned with a name in the form <em>wifinet#</em> and the network will be "
  5905. "restarted to apply the updated configuration."
  5906. msgstr ""
  5907. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:394
  5908. msgid ""
  5909. "Upon pressing \"Continue\", bridges configuration will be updated and the "
  5910. "network will be restarted to apply the updated configuration."
  5911. msgstr ""
  5912. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:428
  5913. msgid ""
  5914. "Upon pressing \"Continue\", ifname options will get renamed and the network "
  5915. "will be restarted to apply the updated configuration."
  5916. msgstr ""
  5917. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:82
  5918. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:60
  5919. msgid "Uptime"
  5920. msgstr ""
  5921. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:177
  5922. msgid "Use <code>/etc/ethers</code>"
  5923. msgstr ""
  5924. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:271
  5925. msgid "Use DHCP advertised servers"
  5926. msgstr ""
  5927. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:167
  5928. msgid "Use DHCP gateway"
  5929. msgstr ""
  5930. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:923
  5931. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:68
  5932. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:121
  5933. msgid "Use DNS servers advertised by peer"
  5934. msgstr ""
  5935. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:622
  5936. msgid "Use ISO/IEC 3166 alpha2 country codes."
  5937. msgstr ""
  5938. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:48
  5939. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:89
  5940. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:69
  5941. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6to4.js:53
  5942. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:67
  5943. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:84
  5944. msgid "Use MTU on tunnel interface"
  5945. msgstr ""
  5946. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:85
  5947. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:65
  5948. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6to4.js:49
  5949. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:80
  5950. msgid "Use TTL on tunnel interface"
  5951. msgstr ""
  5952. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:320
  5953. msgid "Use XOR of hardware MAC addresses (layer2)"
  5954. msgstr ""
  5955. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:321
  5956. msgid "Use XOR of hardware MAC addresses and IP addresses (layer2+3)"
  5957. msgstr ""
  5958. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:323
  5959. msgid ""
  5960. "Use XOR of hardware MAC addresses and IP addresses, rely on skb_flow_dissect "
  5961. "(encap2+3)"
  5962. msgstr ""
  5963. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:294
  5964. msgid "Use as external overlay (/overlay)"
  5965. msgstr ""
  5966. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:293
  5967. msgid "Use as root filesystem (/)"
  5968. msgstr ""
  5969. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34
  5970. msgid "Use broadcast flag"
  5971. msgstr ""
  5972. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1211
  5973. msgid "Use builtin IPv6-management"
  5974. msgstr ""
  5975. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:927
  5976. msgid "Use custom DNS servers"
  5977. msgstr ""
  5978. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:919
  5979. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:64
  5980. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:110
  5981. msgid "Use default gateway"
  5982. msgstr ""
  5983. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:941
  5984. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:72
  5985. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:115
  5986. msgid "Use gateway metric"
  5987. msgstr ""
  5988. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:88
  5989. msgid "Use legacy MAP"
  5990. msgstr ""
  5991. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:88
  5992. msgid ""
  5993. "Use legacy MAP interface identifier format (draft-ietf-softwire-map-00) "
  5994. "instead of RFC7597"
  5995. msgstr ""
  5996. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:179
  5997. msgid "Use routing table"
  5998. msgstr ""
  5999. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1570
  6000. msgid "Use system certificates"
  6001. msgstr ""
  6002. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1628
  6003. msgid "Use system certificates for inner-tunnel"
  6004. msgstr ""
  6005. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:412
  6006. msgid ""
  6007. "Use the <em>Add</em> Button to add a new lease entry. The <em>MAC address</"
  6008. "em> identifies the host, the <em>IPv4 address</em> specifies the fixed "
  6009. "address to use, and the <em>Hostname</em> is assigned as a symbolic name to "
  6010. "the requesting host. The optional <em>Lease time</em> can be used to set non-"
  6011. "standard host-specific lease time, e.g. 12h, 3d or infinite."
  6012. msgstr ""
  6013. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:322
  6014. msgid "Use upper layer protocol information (layer3+4)"
  6015. msgstr ""
  6016. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:324
  6017. msgid ""
  6018. "Use upper layer protocol information, rely on skb_flow_dissect (encap3+4)"
  6019. msgstr ""
  6020. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:36
  6021. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:194
  6022. msgid "Used"
  6023. msgstr ""
  6024. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1466
  6025. msgid "Used Key Slot"
  6026. msgstr ""
  6027. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1509
  6028. msgid ""
  6029. "Used for two different purposes: RADIUS NAS ID and 802.11r R0KH-ID. Not "
  6030. "needed with normal WPA(2)-PSK."
  6031. msgstr ""
  6032. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:111
  6033. msgid "User Group"
  6034. msgstr ""
  6035. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:120
  6036. msgid "User certificate (PEM encoded)"
  6037. msgstr ""
  6038. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:132
  6039. msgid "User key (PEM encoded)"
  6040. msgstr ""
  6041. #: modules/luci-base/luasrc/view/sysauth.htm:23
  6042. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:112
  6043. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:50
  6044. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:56
  6045. msgid "Username"
  6046. msgstr ""
  6047. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1530
  6048. msgid "VC-Mux"
  6049. msgstr ""
  6050. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1478
  6051. msgid "VDSL"
  6052. msgstr ""
  6053. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:435
  6054. msgctxt "MACVLAN mode"
  6055. msgid "VEPA (Virtual Ethernet Port Aggregator)"
  6056. msgstr ""
  6057. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:346
  6058. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1365
  6059. msgid "VLAN (802.1ad)"
  6060. msgstr ""
  6061. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:345
  6062. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1362
  6063. msgid "VLAN (802.1q)"
  6064. msgstr ""
  6065. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:414
  6066. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:845
  6067. msgid "VLAN ID"
  6068. msgstr ""
  6069. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:173
  6070. msgid "VLANs on %q"
  6071. msgstr ""
  6072. #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:54
  6073. msgid "VPN"
  6074. msgstr "VPN"
  6075. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:42
  6076. msgid "VPN Local address"
  6077. msgstr ""
  6078. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:46
  6079. msgid "VPN Local port"
  6080. msgstr ""
  6081. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:96
  6082. msgid "VPN Protocol"
  6083. msgstr ""
  6084. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:102
  6085. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:42
  6086. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:58
  6087. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:39
  6088. msgid "VPN Server"
  6089. msgstr ""
  6090. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:105
  6091. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:45
  6092. msgid "VPN Server port"
  6093. msgstr ""
  6094. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:109
  6095. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:60
  6096. msgid "VPN Server's certificate SHA1 hash"
  6097. msgstr ""
  6098. #: modules/luci-compat/luasrc/model/network/proto_vpnc.lua:9
  6099. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:9
  6100. msgid "VPNC (CISCO 3000 (and others) VPN)"
  6101. msgstr ""
  6102. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:10
  6103. msgid "VXLAN (RFC7348)"
  6104. msgstr ""
  6105. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:53
  6106. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:48
  6107. msgid "VXLAN network identifier"
  6108. msgstr ""
  6109. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:10
  6110. msgid "VXLANv6 (RFC7348)"
  6111. msgstr ""
  6112. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1570
  6113. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1628
  6114. msgid ""
  6115. "Validate server certificate using built-in system CA bundle,<br />requires "
  6116. "the \"ca-bundle\" package"
  6117. msgstr ""
  6118. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:387
  6119. msgid "Validation for all slaves"
  6120. msgstr ""
  6121. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:385
  6122. msgid "Validation only for active slave"
  6123. msgstr ""
  6124. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:386
  6125. msgid "Validation only for backup slaves"
  6126. msgstr ""
  6127. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:149
  6128. msgid "Value must not be empty"
  6129. msgstr ""
  6130. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:73
  6131. msgid "Vendor"
  6132. msgstr ""
  6133. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:40
  6134. msgid "Vendor Class to send when requesting DHCP"
  6135. msgstr ""
  6136. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:196
  6137. msgid "Verifying the uploaded image file."
  6138. msgstr ""
  6139. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:956
  6140. msgid "Very High"
  6141. msgstr ""
  6142. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:348
  6143. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1377
  6144. msgid "Virtual Ethernet"
  6145. msgstr ""
  6146. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:60
  6147. msgid "Virtual dynamic interface"
  6148. msgstr ""
  6149. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1104
  6150. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1105
  6151. msgid "WDS"
  6152. msgstr "WDS"
  6153. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1289
  6154. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1378
  6155. msgid "WEP Open System"
  6156. msgstr ""
  6157. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1290
  6158. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1379
  6159. msgid "WEP Shared Key"
  6160. msgstr ""
  6161. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2011
  6162. msgid "WEP passphrase"
  6163. msgstr ""
  6164. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1142
  6165. msgid "WMM Mode"
  6166. msgstr ""
  6167. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2011
  6168. msgid "WPA passphrase"
  6169. msgstr ""
  6170. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1280
  6171. msgid ""
  6172. "WPA-Encryption requires wpa_supplicant (for client mode) or hostapd (for AP "
  6173. "and ad-hoc mode) to be installed."
  6174. msgstr ""
  6175. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:147
  6176. msgid "WPS status"
  6177. msgstr ""
  6178. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:47
  6179. msgid "Waiting for device..."
  6180. msgstr ""
  6181. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:175
  6182. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:185
  6183. msgid "Warning"
  6184. msgstr ""
  6185. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:26
  6186. msgid "Warning: There are unsaved changes that will get lost on reboot!"
  6187. msgstr ""
  6188. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:37
  6189. msgid "Weak"
  6190. msgstr ""
  6191. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1007
  6192. msgid ""
  6193. "When delegating prefixes to multiple downstreams, interfaces with a higher "
  6194. "preference value are considered first when allocating subnets."
  6195. msgstr ""
  6196. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1532
  6197. msgid ""
  6198. "When using a PSK, the PMK can be automatically generated. When enabled, the "
  6199. "R0/R1 key options below are not applied. Disable this to use the R0 and R1 "
  6200. "key options."
  6201. msgstr ""
  6202. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1142
  6203. msgid ""
  6204. "Where Wi-Fi Multimedia (WMM) Mode QoS is disabled, clients may be limited to "
  6205. "802.11a/802.11g rates."
  6206. msgstr ""
  6207. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1138
  6208. msgid ""
  6209. "Where the ESSID is hidden, clients may fail to roam and airtime efficiency "
  6210. "may be significantly reduced."
  6211. msgstr ""
  6212. #: modules/luci-compat/luasrc/view/cbi/wireless_modefreq.htm:166
  6213. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:519
  6214. msgid "Width"
  6215. msgstr ""
  6216. #: modules/luci-compat/luasrc/model/network/proto_wireguard.lua:9
  6217. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:29
  6218. msgid "WireGuard VPN"
  6219. msgstr ""
  6220. #: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:17
  6221. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:10
  6222. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:118
  6223. msgid "Wireless"
  6224. msgstr ""
  6225. #: modules/luci-base/htdocs/luci-static/resources/network.js:2988
  6226. #: modules/luci-compat/luasrc/model/network.lua:1419
  6227. msgid "Wireless Adapter"
  6228. msgstr ""
  6229. #: modules/luci-base/htdocs/luci-static/resources/network.js:2967
  6230. #: modules/luci-base/htdocs/luci-static/resources/network.js:4274
  6231. #: modules/luci-compat/luasrc/model/network.lua:1405
  6232. #: modules/luci-compat/luasrc/model/network.lua:1868
  6233. msgid "Wireless Network"
  6234. msgstr ""
  6235. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:810
  6236. msgid "Wireless Overview"
  6237. msgstr ""
  6238. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:985
  6239. msgid "Wireless Security"
  6240. msgstr ""
  6241. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:792
  6242. msgid "Wireless configuration migration"
  6243. msgstr ""
  6244. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:153
  6245. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:193
  6246. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:146
  6247. msgid "Wireless is disabled"
  6248. msgstr ""
  6249. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:153
  6250. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:193
  6251. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:146
  6252. msgid "Wireless is not associated"
  6253. msgstr ""
  6254. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:934
  6255. msgid "Wireless network is disabled"
  6256. msgstr ""
  6257. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:934
  6258. msgid "Wireless network is enabled"
  6259. msgstr ""
  6260. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:275
  6261. msgid "Write received DNS requests to syslog"
  6262. msgstr ""
  6263. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:167
  6264. msgid "Write system log to file"
  6265. msgstr ""
  6266. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:204
  6267. msgid "XOR policy (balance-xor, 2)"
  6268. msgstr ""
  6269. #: modules/luci-base/htdocs/luci-static/resources/form.js:3702
  6270. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:295
  6271. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:344
  6272. msgid "Yes"
  6273. msgstr ""
  6274. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:303
  6275. msgid "Yes (none, 0)"
  6276. msgstr ""
  6277. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:177
  6278. msgid ""
  6279. "You appear to be currently connected to the device via the \"%h\" interface. "
  6280. "Do you really want to shut down the interface?"
  6281. msgstr ""
  6282. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:112
  6283. msgid ""
  6284. "You can enable or disable installed init scripts here. Changes will applied "
  6285. "after a device reboot.<br /><strong>Warning: If you disable essential init "
  6286. "scripts like \"network\", your device might become inaccessible!</strong>"
  6287. msgstr ""
  6288. #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:65
  6289. #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:223
  6290. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:73
  6291. msgid ""
  6292. "You must enable JavaScript in your browser or LuCI will not work properly."
  6293. msgstr ""
  6294. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:115
  6295. msgid ""
  6296. "You must select a primary interface which is included in selected slave "
  6297. "interfaces!"
  6298. msgstr ""
  6299. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:96
  6300. msgid ""
  6301. "You must select at least one ARP IP target if ARP monitoring is selected!"
  6302. msgstr ""
  6303. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:199
  6304. msgid "ZRam Compression Algorithm"
  6305. msgstr ""
  6306. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:192
  6307. msgid "ZRam Settings"
  6308. msgstr ""
  6309. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:194
  6310. msgid "ZRam Size"
  6311. msgstr ""
  6312. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:331
  6313. msgid "any"
  6314. msgstr ""
  6315. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1463
  6316. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1471
  6317. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1476
  6318. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1229
  6319. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:79
  6320. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:48
  6321. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:51
  6322. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:89
  6323. msgid "auto"
  6324. msgstr ""
  6325. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:776
  6326. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:85
  6327. msgid "automatic"
  6328. msgstr ""
  6329. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:82
  6330. msgid "baseT"
  6331. msgstr ""
  6332. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1536
  6333. msgid "bridged"
  6334. msgstr ""
  6335. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:146
  6336. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:402
  6337. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:35
  6338. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:99
  6339. #: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:31
  6340. msgid "create"
  6341. msgstr ""
  6342. #: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:69
  6343. msgid "create:"
  6344. msgstr ""
  6345. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:55
  6346. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:57
  6347. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:58
  6348. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:62
  6349. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:63
  6350. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:83
  6351. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:84
  6352. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:87
  6353. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:185
  6354. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:186
  6355. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:187
  6356. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:41
  6357. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:42
  6358. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:272
  6359. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:274
  6360. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:275
  6361. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:279
  6362. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:280
  6363. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:263
  6364. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:266
  6365. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:269
  6366. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:273
  6367. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:276
  6368. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:279
  6369. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:305
  6370. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:306
  6371. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:307
  6372. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:311
  6373. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:312
  6374. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:313
  6375. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:315
  6376. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:316
  6377. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:317
  6378. msgid "dBm"
  6379. msgstr "dBm"
  6380. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1086
  6381. msgid "disable"
  6382. msgstr ""
  6383. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:627
  6384. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:765
  6385. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:869
  6386. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:899
  6387. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:959
  6388. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:91
  6389. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:25
  6390. msgid "disabled"
  6391. msgstr ""
  6392. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:576
  6393. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:610
  6394. msgid "driver default"
  6395. msgstr ""
  6396. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:66
  6397. msgid "e.g: --proxy 10.10.10.10"
  6398. msgstr ""
  6399. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:68
  6400. msgid "e.g: dump"
  6401. msgstr ""
  6402. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:551
  6403. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:572
  6404. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:100
  6405. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:139
  6406. msgid "expired"
  6407. msgstr ""
  6408. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:182
  6409. msgid ""
  6410. "file where given <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</"
  6411. "abbr>-leases will be stored"
  6412. msgstr ""
  6413. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:780
  6414. msgid "forced"
  6415. msgstr ""
  6416. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:85
  6417. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:195
  6418. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:61
  6419. msgid "forward"
  6420. msgstr ""
  6421. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:97
  6422. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:84
  6423. msgid "full-duplex"
  6424. msgstr ""
  6425. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:97
  6426. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:84
  6427. msgid "half-duplex"
  6428. msgstr ""
  6429. #: modules/luci-base/htdocs/luci-static/resources/validation.js:572
  6430. msgid "hexadecimal encoded value"
  6431. msgstr ""
  6432. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1808
  6433. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:297
  6434. msgid "hidden"
  6435. msgstr ""
  6436. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:771
  6437. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:875
  6438. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:903
  6439. msgid "hybrid mode"
  6440. msgstr ""
  6441. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:36
  6442. msgid "if target is a network"
  6443. msgstr ""
  6444. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:63
  6445. msgid "ignore"
  6446. msgstr ""
  6447. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:69
  6448. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:191
  6449. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:46
  6450. msgid "input"
  6451. msgstr ""
  6452. #: modules/luci-base/htdocs/luci-static/resources/validation.js:398
  6453. msgid "key between 8 and 63 characters"
  6454. msgstr ""
  6455. #: modules/luci-base/htdocs/luci-static/resources/validation.js:410
  6456. msgid "key with either 5 or 13 characters"
  6457. msgstr ""
  6458. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:189
  6459. msgid "local <abbr title=\"Domain Name System\">DNS</abbr> file"
  6460. msgstr ""
  6461. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:793
  6462. msgid "managed config (M)"
  6463. msgstr ""
  6464. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1388
  6465. msgid "medium security"
  6466. msgstr ""
  6467. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1537
  6468. msgid "minutes"
  6469. msgstr ""
  6470. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:797
  6471. msgid "mobile home agent (H)"
  6472. msgstr ""
  6473. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:422
  6474. msgid "netif_carrier_ok()"
  6475. msgstr ""
  6476. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:47
  6477. msgid "no"
  6478. msgstr ""
  6479. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:103
  6480. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:76
  6481. msgid "no link"
  6482. msgstr ""
  6483. #: modules/luci-base/htdocs/luci-static/resources/validation.js:59
  6484. msgid "non-empty value"
  6485. msgstr ""
  6486. #: modules/luci-base/htdocs/luci-static/resources/form.js:3032
  6487. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:800
  6488. msgid "none"
  6489. msgstr ""
  6490. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:41
  6491. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:55
  6492. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:69
  6493. msgid "not present"
  6494. msgstr ""
  6495. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:347
  6496. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:964
  6497. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:968
  6498. #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:197
  6499. msgid "off"
  6500. msgstr ""
  6501. #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:196
  6502. msgid "on"
  6503. msgstr ""
  6504. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:778
  6505. msgid "on available prefix"
  6506. msgstr ""
  6507. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1389
  6508. msgid "open network"
  6509. msgstr ""
  6510. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:795
  6511. msgid "other config (O)"
  6512. msgstr ""
  6513. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:69
  6514. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:46
  6515. msgid "output"
  6516. msgstr ""
  6517. #: modules/luci-base/htdocs/luci-static/resources/validation.js:241
  6518. msgid "positive decimal value"
  6519. msgstr ""
  6520. #: modules/luci-base/htdocs/luci-static/resources/validation.js:233
  6521. msgid "positive integer value"
  6522. msgstr ""
  6523. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:80
  6524. msgid "random"
  6525. msgstr ""
  6526. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:769
  6527. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:873
  6528. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:901
  6529. msgid "relay mode"
  6530. msgstr ""
  6531. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1537
  6532. msgid "routed"
  6533. msgstr ""
  6534. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1165
  6535. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1174
  6536. msgid "sec"
  6537. msgstr ""
  6538. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:767
  6539. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:871
  6540. msgid "server mode"
  6541. msgstr ""
  6542. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:54
  6543. msgid "sstpc Log-level"
  6544. msgstr ""
  6545. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1387
  6546. msgid "strong security"
  6547. msgstr ""
  6548. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:352
  6549. msgid "tagged"
  6550. msgstr ""
  6551. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1520
  6552. msgid "time units (TUs / 1.024 ms) [1000-65535]"
  6553. msgstr ""
  6554. #: modules/luci-base/htdocs/luci-static/resources/validation.js:562
  6555. msgid "unique value"
  6556. msgstr ""
  6557. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1414
  6558. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1426
  6559. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:591
  6560. msgid "unknown"
  6561. msgstr ""
  6562. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:340
  6563. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:549
  6564. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:570
  6565. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:98
  6566. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:137
  6567. msgid "unlimited"
  6568. msgstr ""
  6569. #: modules/luci-base/htdocs/luci-static/resources/form.js:3397
  6570. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:76
  6571. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:138
  6572. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:369
  6573. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:393
  6574. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:429
  6575. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:466
  6576. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:562
  6577. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:53
  6578. #: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:38
  6579. msgid "unspecified"
  6580. msgstr ""
  6581. #: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:71
  6582. msgid "unspecified -or- create:"
  6583. msgstr ""
  6584. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:350
  6585. msgid "untagged"
  6586. msgstr ""
  6587. #: modules/luci-base/htdocs/luci-static/resources/validation.js:246
  6588. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:121
  6589. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:132
  6590. msgid "valid IP address"
  6591. msgstr ""
  6592. #: modules/luci-base/htdocs/luci-static/resources/validation.js:246
  6593. msgid "valid IP address or prefix"
  6594. msgstr ""
  6595. #: modules/luci-base/htdocs/luci-static/resources/validation.js:283
  6596. msgid "valid IPv4 CIDR"
  6597. msgstr ""
  6598. #: modules/luci-base/htdocs/luci-static/resources/validation.js:254
  6599. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:125
  6600. msgid "valid IPv4 address"
  6601. msgstr ""
  6602. #: modules/luci-base/htdocs/luci-static/resources/validation.js:254
  6603. msgid "valid IPv4 address or network"
  6604. msgstr ""
  6605. #: modules/luci-base/htdocs/luci-static/resources/validation.js:377
  6606. msgid "valid IPv4 address:port"
  6607. msgstr ""
  6608. #: modules/luci-base/htdocs/luci-static/resources/validation.js:317
  6609. msgid "valid IPv4 network"
  6610. msgstr ""
  6611. #: modules/luci-base/htdocs/luci-static/resources/validation.js:277
  6612. msgid "valid IPv4 or IPv6 CIDR"
  6613. msgstr ""
  6614. #: modules/luci-base/htdocs/luci-static/resources/validation.js:267
  6615. msgid "valid IPv4 prefix value (0-32)"
  6616. msgstr ""
  6617. #: modules/luci-base/htdocs/luci-static/resources/validation.js:289
  6618. msgid "valid IPv6 CIDR"
  6619. msgstr ""
  6620. #: modules/luci-base/htdocs/luci-static/resources/validation.js:262
  6621. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:129
  6622. msgid "valid IPv6 address"
  6623. msgstr ""
  6624. #: modules/luci-base/htdocs/luci-static/resources/validation.js:262
  6625. msgid "valid IPv6 address or prefix"
  6626. msgstr ""
  6627. #: modules/luci-base/htdocs/luci-static/resources/validation.js:307
  6628. msgid "valid IPv6 host id"
  6629. msgstr ""
  6630. #: modules/luci-base/htdocs/luci-static/resources/validation.js:322
  6631. msgid "valid IPv6 network"
  6632. msgstr ""
  6633. #: modules/luci-base/htdocs/luci-static/resources/validation.js:272
  6634. msgid "valid IPv6 prefix value (0-128)"
  6635. msgstr ""
  6636. #: modules/luci-base/htdocs/luci-static/resources/validation.js:343
  6637. msgid "valid MAC address"
  6638. msgstr ""
  6639. #: modules/luci-base/htdocs/luci-static/resources/validation.js:414
  6640. msgid "valid UCI identifier"
  6641. msgstr ""
  6642. #: modules/luci-base/htdocs/luci-static/resources/validation.js:365
  6643. msgid "valid UCI identifier, hostname or IP address range"
  6644. msgstr ""
  6645. #: modules/luci-base/htdocs/luci-static/resources/validation.js:386
  6646. #: modules/luci-base/htdocs/luci-static/resources/validation.js:389
  6647. msgid "valid address:port"
  6648. msgstr ""
  6649. #: modules/luci-base/htdocs/luci-static/resources/validation.js:536
  6650. #: modules/luci-base/htdocs/luci-static/resources/validation.js:540
  6651. msgid "valid date (YYYY-MM-DD)"
  6652. msgstr ""
  6653. #: modules/luci-base/htdocs/luci-static/resources/validation.js:237
  6654. msgid "valid decimal value"
  6655. msgstr ""
  6656. #: modules/luci-base/htdocs/luci-static/resources/validation.js:408
  6657. msgid "valid hexadecimal WEP key"
  6658. msgstr ""
  6659. #: modules/luci-base/htdocs/luci-static/resources/validation.js:396
  6660. msgid "valid hexadecimal WPA key"
  6661. msgstr ""
  6662. #: modules/luci-base/htdocs/luci-static/resources/validation.js:371
  6663. msgid "valid host:port"
  6664. msgstr ""
  6665. #: modules/luci-base/htdocs/luci-static/resources/validation.js:358
  6666. #: modules/luci-base/htdocs/luci-static/resources/validation.js:360
  6667. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:73
  6668. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:79
  6669. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:107
  6670. msgid "valid hostname"
  6671. msgstr ""
  6672. #: modules/luci-base/htdocs/luci-static/resources/validation.js:348
  6673. msgid "valid hostname or IP address"
  6674. msgstr ""
  6675. #: modules/luci-base/htdocs/luci-static/resources/validation.js:229
  6676. msgid "valid integer value"
  6677. msgstr ""
  6678. #: modules/luci-base/htdocs/luci-static/resources/validation.js:312
  6679. msgid "valid network in address/netmask notation"
  6680. msgstr ""
  6681. #: modules/luci-base/htdocs/luci-static/resources/validation.js:511
  6682. msgid "valid phone digit (0-9, \"*\", \"#\", \"!\" or \".\")"
  6683. msgstr ""
  6684. #: modules/luci-base/htdocs/luci-static/resources/validation.js:335
  6685. #: modules/luci-base/htdocs/luci-static/resources/validation.js:338
  6686. msgid "valid port or port range (port1-port2)"
  6687. msgstr ""
  6688. #: modules/luci-base/htdocs/luci-static/resources/validation.js:327
  6689. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:136
  6690. msgid "valid port value"
  6691. msgstr ""
  6692. #: modules/luci-base/htdocs/luci-static/resources/validation.js:516
  6693. msgid "valid time (HH:MM:SS)"
  6694. msgstr ""
  6695. #: modules/luci-base/htdocs/luci-static/resources/validation.js:438
  6696. msgid "value between %d and %d characters"
  6697. msgstr ""
  6698. #: modules/luci-base/htdocs/luci-static/resources/validation.js:419
  6699. msgid "value between %f and %f"
  6700. msgstr ""
  6701. #: modules/luci-base/htdocs/luci-static/resources/validation.js:423
  6702. msgid "value greater or equal to %f"
  6703. msgstr ""
  6704. #: modules/luci-base/htdocs/luci-static/resources/validation.js:427
  6705. msgid "value smaller or equal to %f"
  6706. msgstr ""
  6707. #: modules/luci-base/htdocs/luci-static/resources/validation.js:432
  6708. msgid "value with %d characters"
  6709. msgstr ""
  6710. #: modules/luci-base/htdocs/luci-static/resources/validation.js:443
  6711. msgid "value with at least %d characters"
  6712. msgstr ""
  6713. #: modules/luci-base/htdocs/luci-static/resources/validation.js:448
  6714. msgid "value with at most %d characters"
  6715. msgstr ""
  6716. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1389
  6717. msgid "weak security"
  6718. msgstr ""
  6719. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:47
  6720. msgid "yes"
  6721. msgstr ""
  6722. #: modules/luci-compat/luasrc/view/cbi/delegator.htm:20
  6723. msgid "« Back"
  6724. msgstr ""