base.po 402 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964
  1. msgid ""
  2. msgstr ""
  3. "PO-Revision-Date: 2020-10-15 00:31+0000\n"
  4. "Last-Translator: Prachi Joshi <josprachi@yahoo.com>\n"
  5. "Language-Team: Marathi <https://hosted.weblate.org/projects/librecmc/luci/mr/"
  6. ">\n"
  7. "Language: mr\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.3-dev\n"
  12. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:925
  13. msgid "!known (not known)"
  14. msgstr ""
  15. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:649
  16. msgctxt "Yet unknown nftables table family (\"family\" table \"name\")"
  17. msgid "\"%h\" table \"%h\""
  18. msgstr ""
  19. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1591
  20. msgid "%.1f dB"
  21. msgstr ""
  22. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:123
  23. msgid "%d Bit"
  24. msgstr ""
  25. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4097
  26. msgid "%d invalid field(s)"
  27. msgstr ""
  28. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:26
  29. msgid "%dh ago"
  30. msgstr ""
  31. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:24
  32. msgid "%dm ago"
  33. msgstr ""
  34. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:22
  35. msgid "%ds ago"
  36. msgstr ""
  37. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:35
  38. msgid "%s is untagged in multiple VLANs!"
  39. msgstr ""
  40. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:296
  41. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:405
  42. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:272
  43. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:309
  44. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:327
  45. msgid "(%d minute window, %d second interval)"
  46. msgstr ""
  47. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:118
  48. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:124
  49. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:259
  50. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:283
  51. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:88
  52. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:91
  53. msgid "(empty)"
  54. msgstr ""
  55. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:352
  56. #: modules/luci-compat/luasrc/view/cbi/network_netinfo.htm:23
  57. #: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:58
  58. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:271
  59. msgid "(no interfaces attached)"
  60. msgstr ""
  61. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:635
  62. msgctxt "Label indicating further amount of allowed ips"
  63. msgid "+ %d more"
  64. msgstr ""
  65. #: modules/luci-compat/luasrc/view/cbi/ucisection.htm:48
  66. msgid "-- Additional Field --"
  67. msgstr ""
  68. #: modules/luci-base/htdocs/luci-static/resources/cbi.js:275
  69. #: modules/luci-base/htdocs/luci-static/resources/form.js:3789
  70. #: modules/luci-base/htdocs/luci-static/resources/form.js:4157
  71. #: modules/luci-base/htdocs/luci-static/resources/ui.js:799
  72. #: modules/luci-base/htdocs/luci-static/resources/ui.js:1037
  73. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2033
  74. #: modules/luci-compat/luasrc/view/cbi/header.htm:8
  75. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:89
  76. msgid "-- Please choose --"
  77. msgstr ""
  78. #: modules/luci-base/htdocs/luci-static/resources/cbi.js:276
  79. #: modules/luci-base/htdocs/luci-static/resources/ui.js:1038
  80. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2034
  81. #: modules/luci-compat/luasrc/view/cbi/header.htm:9
  82. msgid "-- custom --"
  83. msgstr ""
  84. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:271
  85. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:380
  86. msgid "-- match by label --"
  87. msgstr ""
  88. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:257
  89. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:363
  90. msgid "-- match by uuid --"
  91. msgstr ""
  92. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:27
  93. #: modules/luci-compat/luasrc/view/cbi/network_ifacelist.htm:44
  94. #: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:23
  95. msgid "-- please select --"
  96. msgstr ""
  97. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:55
  98. msgctxt "sstp log level value"
  99. msgid "0"
  100. msgstr ""
  101. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:998
  102. msgid "0 = not using RSSI threshold, 1 = do not change driver default"
  103. msgstr ""
  104. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:56
  105. msgctxt "sstp log level value"
  106. msgid "1"
  107. msgstr ""
  108. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:233
  109. msgid "1 Minute Load:"
  110. msgstr ""
  111. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:323
  112. msgctxt "nft amount of flags"
  113. msgid "1 flag"
  114. msgid_plural "%d flags"
  115. msgstr[0] ""
  116. msgstr[1] ""
  117. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:898
  118. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:984
  119. msgid "12h (12 hours - default)"
  120. msgstr ""
  121. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:253
  122. msgid "15 Minute Load:"
  123. msgstr ""
  124. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:57
  125. msgctxt "sstp log level value"
  126. msgid "2"
  127. msgstr ""
  128. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:58
  129. msgctxt "sstp log level value"
  130. msgid "3"
  131. msgstr ""
  132. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:897
  133. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:983
  134. msgid "3h (3 hours)"
  135. msgstr ""
  136. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:59
  137. msgctxt "sstp log level value"
  138. msgid "4"
  139. msgstr ""
  140. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1562
  141. msgid "4-character hexadecimal ID"
  142. msgstr ""
  143. #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:18
  144. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:11
  145. msgid "464XLAT (CLAT)"
  146. msgstr ""
  147. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:243
  148. msgid "5 Minute Load:"
  149. msgstr ""
  150. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:896
  151. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:982
  152. msgid "5m (5 minutes)"
  153. msgstr ""
  154. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1591
  155. msgid "6-octet identifier as a hex string - no colons"
  156. msgstr ""
  157. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:899
  158. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:985
  159. msgid "7d (7 days)"
  160. msgstr ""
  161. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1614
  162. msgid "802.11k RRM"
  163. msgstr ""
  164. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1623
  165. msgid "802.11k: Enable beacon report via radio measurements."
  166. msgstr ""
  167. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1619
  168. msgid "802.11k: Enable neighbor report via radio measurements."
  169. msgstr ""
  170. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1551
  171. msgid "802.11r Fast Transition"
  172. msgstr ""
  173. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1183
  174. msgid "802.11v: BSS Max Idle. Units: seconds."
  175. msgstr ""
  176. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1649
  177. msgid "802.11v: Basic Service Set (BSS) transition management."
  178. msgstr ""
  179. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1638
  180. msgid "802.11v: Local Time Zone Advertisement in management frames."
  181. msgstr ""
  182. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1653
  183. msgid ""
  184. "802.11v: Proxy ARP enables non-AP STA to remain in power-save for longer."
  185. msgstr ""
  186. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1629
  187. msgid "802.11v: Time Advertisement in management frames."
  188. msgstr ""
  189. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1642
  190. msgid ""
  191. "802.11v: Wireless Network Management (WNM) Sleep Mode (extended sleep mode "
  192. "for stations)."
  193. msgstr ""
  194. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1646
  195. msgid ""
  196. "802.11v: Wireless Network Management (WNM) Sleep Mode Fixes: Prevents "
  197. "reinstallation attacks."
  198. msgstr ""
  199. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1796
  200. msgid "802.11w Association SA Query maximum timeout"
  201. msgstr ""
  202. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1803
  203. msgid "802.11w Association SA Query retry timeout"
  204. msgstr ""
  205. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1777
  206. msgid "802.11w Management Frame Protection"
  207. msgstr ""
  208. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1796
  209. msgid "802.11w maximum timeout"
  210. msgstr ""
  211. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1803
  212. msgid "802.11w retry timeout"
  213. msgstr ""
  214. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1015
  215. msgid "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>"
  216. msgstr "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>"
  217. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1004
  218. msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>"
  219. msgstr "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>"
  220. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:708
  221. msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Netmask"
  222. msgstr ""
  223. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:58
  224. msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Configuration"
  225. msgstr ""
  226. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:70
  227. msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Name"
  228. msgstr ""
  229. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:961
  230. msgid "<abbr title=\"Neighbour Discovery Protocol\">NDP</abbr>-Proxy"
  231. msgstr ""
  232. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:831
  233. msgid "<abbr title=\"Router Advertisement\">RA</abbr> Flags"
  234. msgstr ""
  235. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:905
  236. msgid "<abbr title=\"Router Advertisement\">RA</abbr> Hop Limit"
  237. msgstr ""
  238. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:879
  239. msgid "<abbr title=\"Router Advertisement\">RA</abbr> Lifetime"
  240. msgstr ""
  241. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:886
  242. msgid "<abbr title=\"Router Advertisement\">RA</abbr> MTU"
  243. msgstr ""
  244. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:803
  245. msgid "<abbr title=\"Router Advertisement\">RA</abbr>-Service"
  246. msgstr ""
  247. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:300
  248. msgid ""
  249. "<code>/#/</code> matches any domain. <code>/example.com/</code> returns "
  250. "NXDOMAIN."
  251. msgstr ""
  252. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301
  253. msgid ""
  254. "<code>/example.com/#</code> returns NULL addresses (<code>0.0.0.0</code> and "
  255. "<code>::</code>) for example.com and its subdomains."
  256. msgstr ""
  257. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:87
  258. msgctxt "nft relational \">\" operator expression"
  259. msgid "<var>%s</var> greater than <strong>%s</strong>"
  260. msgstr ""
  261. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:85
  262. msgctxt "nft relational \">=\" operator expression"
  263. msgid "<var>%s</var> greater than or equal to <strong>%s</strong>"
  264. msgstr ""
  265. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:90
  266. msgctxt "nft set match expression"
  267. msgid "<var>%s</var> in set <strong>%s</strong>"
  268. msgstr ""
  269. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:83
  270. msgctxt "nft relational \"==\" operator expression"
  271. msgid "<var>%s</var> is <strong>%s</strong>"
  272. msgstr ""
  273. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:89
  274. msgctxt "nft relational \"in\" operator expression"
  275. msgid "<var>%s</var> is one of <strong>%s</strong>"
  276. msgstr ""
  277. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:88
  278. msgctxt "nft relational \"<\" operator expression"
  279. msgid "<var>%s</var> lower than <strong>%s</strong>"
  280. msgstr ""
  281. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:86
  282. msgctxt "nft relational \"<=\" operator expression"
  283. msgid "<var>%s</var> lower than or equal to <strong>%s</strong>"
  284. msgstr ""
  285. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:84
  286. msgctxt "nft relational \"!=\" operator expression"
  287. msgid "<var>%s</var> not <strong>%s</strong>"
  288. msgstr ""
  289. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:91
  290. msgctxt "nft not in set match expression"
  291. msgid "<var>%s</var> not in set <strong>%s</strong>"
  292. msgstr ""
  293. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:86
  294. msgid ""
  295. "A batman-adv node can either run in server mode (sharing its internet "
  296. "connection with the mesh) or in client mode (searching for the most suitable "
  297. "internet connection in the mesh) or having the gateway support turned off "
  298. "entirely (which is the default setting)."
  299. msgstr ""
  300. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:424
  301. msgid "A configuration for the device \"%s\" already exists"
  302. msgstr ""
  303. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2779
  304. msgid "A directory with the same name already exists."
  305. msgstr ""
  306. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2666
  307. msgid "A new login is required since the authentication session expired."
  308. msgstr ""
  309. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1571
  310. msgid "A43C + J43 + A43"
  311. msgstr ""
  312. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1572
  313. msgid "A43C + J43 + A43 + V43"
  314. msgstr ""
  315. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1584
  316. msgid "ADSL"
  317. msgstr "ADSL"
  318. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1558
  319. msgid "ADSL (G.992.1) Annex A"
  320. msgstr ""
  321. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1559
  322. msgid "ADSL (G.992.1) Annex B"
  323. msgstr ""
  324. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1552
  325. msgid "ADSL (all variants) Annex A/L/M"
  326. msgstr ""
  327. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1548
  328. msgid "ADSL (all variants) Annex A/L/M + VDSL2 Annex A/B/C"
  329. msgstr ""
  330. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1553
  331. msgid "ADSL (all variants) Annex B"
  332. msgstr ""
  333. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1549
  334. msgid "ADSL (all variants) Annex B + VDSL2 Annex A/B/C"
  335. msgstr ""
  336. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1554
  337. msgid "ADSL (all variants) Annex B/J"
  338. msgstr ""
  339. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1550
  340. msgid "ADSL (all variants) Annex B/J + VDSL2 Annex A/B/C"
  341. msgstr ""
  342. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1556
  343. msgid "ADSL (all variants) Annex M"
  344. msgstr ""
  345. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1561
  346. msgid "ADSL2 (G.992.3) Annex A"
  347. msgstr ""
  348. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1562
  349. msgid "ADSL2 (G.992.3) Annex B"
  350. msgstr ""
  351. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1563
  352. msgid "ADSL2 (G.992.3) Annex L"
  353. msgstr ""
  354. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1564
  355. msgid "ADSL2 (G.992.3) Annex M"
  356. msgstr ""
  357. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1565
  358. msgid "ADSL2+ (G.992.5) Annex A"
  359. msgstr ""
  360. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1566
  361. msgid "ADSL2+ (G.992.5) Annex B"
  362. msgstr ""
  363. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1567
  364. msgid "ADSL2+ (G.992.5) Annex M"
  365. msgstr ""
  366. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1557
  367. msgid "ANSI T1.413"
  368. msgstr "ANSI T1.413"
  369. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:95
  370. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:65
  371. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:65
  372. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:91
  373. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:68
  374. msgid "APN"
  375. msgstr "APN"
  376. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:353
  377. msgid "ARP"
  378. msgstr "ARP"
  379. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:366
  380. msgid "ARP IP Targets"
  381. msgstr ""
  382. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:358
  383. msgid "ARP Interval"
  384. msgstr ""
  385. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:382
  386. msgid "ARP Validation"
  387. msgstr ""
  388. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:374
  389. msgid "ARP mode to consider a slave as being up"
  390. msgstr ""
  391. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:79
  392. msgid "ARP monitoring is not supported for the selected policy!"
  393. msgstr ""
  394. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:175
  395. msgid "ARP retry threshold"
  396. msgstr ""
  397. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:637
  398. msgid "ARP traffic table \"%h\""
  399. msgstr ""
  400. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1146
  401. msgid ""
  402. "ARP, IPv4 and IPv6 (even 802.1Q) with multicast destination MACs are unicast "
  403. "to the STA MAC address. Note: This is not Directed Multicast Service (DMS) "
  404. "in 802.11v. Note: might break receiver STA multicast expectations."
  405. msgstr ""
  406. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1579
  407. msgid "ATM (Asynchronous Transfer Mode)"
  408. msgstr ""
  409. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1600
  410. msgid "ATM Bridges"
  411. msgstr ""
  412. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1632
  413. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:66
  414. msgid "ATM Virtual Channel Identifier (VCI)"
  415. msgstr ""
  416. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1633
  417. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:70
  418. msgid "ATM Virtual Path Identifier (VPI)"
  419. msgstr ""
  420. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1600
  421. msgid ""
  422. "ATM bridges expose encapsulated ethernet in AAL5 connections as virtual "
  423. "Linux network interfaces which can be used in conjunction with DHCP or PPP "
  424. "to dial into the provider network."
  425. msgstr ""
  426. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1639
  427. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:62
  428. msgid "ATM device number"
  429. msgstr ""
  430. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:266
  431. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:548
  432. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:552
  433. msgid "Absent Interface"
  434. msgstr ""
  435. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:331
  436. msgid "Accept DNS queries only from hosts whose address is on a local subnet."
  437. msgstr ""
  438. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:701
  439. msgid "Accept local"
  440. msgstr ""
  441. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:95
  442. msgctxt "nft accept action"
  443. msgid "Accept packet"
  444. msgstr ""
  445. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:701
  446. msgid "Accept packets with local source addresses"
  447. msgstr ""
  448. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:47
  449. msgid "Access Concentrator"
  450. msgstr ""
  451. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:986
  452. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1101
  453. msgid "Access Point"
  454. msgstr ""
  455. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:60
  456. msgid "Access Point Isolation"
  457. msgstr ""
  458. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:99
  459. msgid "Access Technologies"
  460. msgstr ""
  461. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:388
  462. msgid "Actions"
  463. msgstr "क्रिया"
  464. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:14
  465. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:134
  466. msgid "Active"
  467. msgstr ""
  468. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:81
  469. msgid "Active Connections"
  470. msgstr ""
  471. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:35
  472. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:182
  473. msgid "Active DHCP Leases"
  474. msgstr ""
  475. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:54
  476. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:184
  477. msgid "Active DHCPv6 Leases"
  478. msgstr ""
  479. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:255
  480. msgid "Active IPv4 Routes"
  481. msgstr ""
  482. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:258
  483. msgid "Active IPv4 Rules"
  484. msgstr ""
  485. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:265
  486. msgid "Active IPv6 Routes"
  487. msgstr ""
  488. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:268
  489. msgid "Active IPv6 Rules"
  490. msgstr ""
  491. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:205
  492. msgid "Active-Backup policy (active-backup, 1)"
  493. msgstr ""
  494. #: modules/luci-base/htdocs/luci-static/resources/network.js:3866
  495. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:988
  496. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:23
  497. msgid "Ad-Hoc"
  498. msgstr "Ad-Hoc"
  499. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:210
  500. msgid "Adaptive load balancing (balance-alb, 6)"
  501. msgstr ""
  502. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:209
  503. msgid "Adaptive transmit load balancing (balance-tlb, 5)"
  504. msgstr ""
  505. #: modules/luci-base/htdocs/luci-static/resources/form.js:2233
  506. #: modules/luci-base/htdocs/luci-static/resources/form.js:2236
  507. #: modules/luci-base/htdocs/luci-static/resources/form.js:2249
  508. #: modules/luci-base/htdocs/luci-static/resources/form.js:2257
  509. #: modules/luci-base/htdocs/luci-static/resources/form.js:3587
  510. #: modules/luci-compat/luasrc/view/cbi/nsection.htm:25
  511. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:189
  512. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:197
  513. #: modules/luci-compat/luasrc/view/cbi/tsection.htm:39
  514. #: modules/luci-compat/luasrc/view/cbi/tsection.htm:47
  515. #: modules/luci-compat/luasrc/view/cbi/ucisection.htm:54
  516. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:879
  517. msgid "Add"
  518. msgstr ""
  519. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1604
  520. msgid "Add ATM Bridge"
  521. msgstr ""
  522. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:92
  523. msgid "Add IPv4 address…"
  524. msgstr ""
  525. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:185
  526. msgid "Add IPv6 address…"
  527. msgstr ""
  528. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:65
  529. msgid "Add LED action"
  530. msgstr ""
  531. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:221
  532. msgid "Add VLAN"
  533. msgstr ""
  534. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1371
  535. msgid "Add device configuration"
  536. msgstr ""
  537. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1311
  538. msgid "Add device configuration…"
  539. msgstr ""
  540. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:15
  541. msgid "Add instance"
  542. msgstr "उदाहरण जोडा"
  543. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:171
  544. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:177
  545. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:274
  546. msgid "Add key"
  547. msgstr ""
  548. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:496
  549. msgid "Add local domain suffix to names served from hosts files."
  550. msgstr ""
  551. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:482
  552. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1195
  553. msgid "Add new interface..."
  554. msgstr ""
  555. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:224
  556. msgid "Add peer"
  557. msgstr ""
  558. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:945
  559. msgid "Add static forward and reverse DNS entries for this host."
  560. msgstr ""
  561. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:335
  562. msgid "Add to Blacklist"
  563. msgstr ""
  564. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:335
  565. msgid "Add to Whitelist"
  566. msgstr ""
  567. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:442
  568. msgid "Additional hosts files"
  569. msgstr ""
  570. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:503
  571. msgid "Additional servers file"
  572. msgstr ""
  573. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:34
  574. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:35
  575. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:36
  576. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:37
  577. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:38
  578. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:39
  579. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:40
  580. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:41
  581. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:42
  582. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:43
  583. msgid "Address"
  584. msgstr "पत्ता"
  585. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:410
  586. msgid "Address families of \"Relay from\" and \"Relay to address\" must match."
  587. msgstr ""
  588. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:21
  589. msgctxt "nft meta nfproto"
  590. msgid "Address family"
  591. msgstr ""
  592. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:284
  593. msgid "Address setting is invalid"
  594. msgstr ""
  595. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:151
  596. msgid "Address to access local relay bridge"
  597. msgstr ""
  598. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:297
  599. msgid "Addresses"
  600. msgstr ""
  601. #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:3
  602. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:15
  603. msgid "Administration"
  604. msgstr ""
  605. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:257
  606. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:495
  607. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:650
  608. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1630
  609. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:39
  610. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:128
  611. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:918
  612. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:982
  613. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:241
  614. msgid "Advanced Settings"
  615. msgstr "प्रगत सेटिंग्ज"
  616. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:391
  617. msgid "Advanced device options"
  618. msgstr ""
  619. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:567
  620. msgid "Ageing time"
  621. msgstr ""
  622. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:50
  623. msgid "Aggregate Originator Messages"
  624. msgstr ""
  625. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:260
  626. msgid "Aggregation Selection Logic"
  627. msgstr ""
  628. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:263
  629. msgid "Aggregator: All slaves down or has no slaves (stable, 0)"
  630. msgstr ""
  631. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:265
  632. msgid ""
  633. "Aggregator: Chosen by the largest number of ports + slave added/removed or "
  634. "state changes (count, 2)"
  635. msgstr ""
  636. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:264
  637. msgid "Aggregator: Slave added/removed or state changes (bandwidth, 1)"
  638. msgstr ""
  639. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:192
  640. msgid "Alert"
  641. msgstr ""
  642. #: modules/luci-base/htdocs/luci-static/resources/network.js:2989
  643. #: modules/luci-compat/luasrc/model/network.lua:1417
  644. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:62
  645. msgid "Alias Interface"
  646. msgstr ""
  647. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:146
  648. msgid "Alias of \"%s\""
  649. msgstr ""
  650. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:513
  651. msgid "All servers"
  652. msgstr ""
  653. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:453
  654. msgid ""
  655. "Allocate IP addresses sequentially, starting from the lowest available "
  656. "address."
  657. msgstr ""
  658. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:452
  659. msgid "Allocate IPs sequentially"
  660. msgstr ""
  661. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:25
  662. msgid "Allow <abbr title=\"Secure Shell\">SSH</abbr> password authentication"
  663. msgstr ""
  664. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1193
  665. msgid "Allow AP mode to disconnect STAs based on low ACK condition"
  666. msgstr ""
  667. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1084
  668. msgid "Allow all except listed"
  669. msgstr ""
  670. #: modules/luci-compat/root/usr/share/rpcd/acl.d/luci-compat.json:3
  671. msgid "Allow full UCI access for legacy applications"
  672. msgstr ""
  673. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:938
  674. msgid "Allow legacy 802.11b rates"
  675. msgstr ""
  676. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1083
  677. msgid "Allow listed only"
  678. msgstr ""
  679. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:317
  680. msgid "Allow localhost"
  681. msgstr ""
  682. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:179
  683. msgid "Allow rebooting the device"
  684. msgstr ""
  685. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:36
  686. msgid "Allow remote hosts to connect to local SSH forwarded ports"
  687. msgstr ""
  688. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:31
  689. msgid "Allow root logins with password"
  690. msgstr ""
  691. #: modules/luci-base/root/usr/share/rpcd/acl.d/luci-base.json:3
  692. msgid "Allow system feature probing"
  693. msgstr ""
  694. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:31
  695. msgid "Allow the <em>root</em> user to log in with password"
  696. msgstr ""
  697. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:624
  698. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:781
  699. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:56
  700. msgid "Allowed IPs"
  701. msgstr ""
  702. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:86
  703. msgid "Allowed network technology"
  704. msgstr ""
  705. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:315
  706. msgid "AllowedIPs setting is invalid"
  707. msgstr ""
  708. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:776
  709. msgid "Always"
  710. msgstr ""
  711. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/none.js:6
  712. msgid "Always off (kernel: none)"
  713. msgstr ""
  714. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/default-on.js:5
  715. msgid "Always on (kernel: default-on)"
  716. msgstr ""
  717. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:624
  718. msgid "Always send DHCP Options. Sometimes needed, with e.g. PXELinux."
  719. msgstr ""
  720. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:965
  721. msgid ""
  722. "Always use 40MHz channels even if the secondary channel overlaps. Using this "
  723. "option does not comply with IEEE 802.11n-2009!"
  724. msgstr ""
  725. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:741
  726. msgid "Amount of Duplicate Address Detection probes to send"
  727. msgstr ""
  728. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:119
  729. msgid "Amount of seconds to wait for the modem to become ready"
  730. msgstr ""
  731. #: modules/luci-base/htdocs/luci-static/resources/form.js:608
  732. msgid "An error occurred while saving the form:"
  733. msgstr ""
  734. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:139
  735. msgid "An optional, short description for this device"
  736. msgstr ""
  737. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1546
  738. msgid "Annex"
  739. msgstr ""
  740. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:858
  741. msgid ""
  742. "Announce NAT64 prefix in <abbr title=\"Router Advertisement\">RA</abbr> "
  743. "messages."
  744. msgstr ""
  745. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:945
  746. msgid "Announce this device as IPv6 DNS server."
  747. msgstr ""
  748. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:817
  749. msgid ""
  750. "Announce this device as default router if a local IPv6 default route is "
  751. "present."
  752. msgstr ""
  753. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:819
  754. msgid ""
  755. "Announce this device as default router if a public IPv6 prefix is available, "
  756. "regardless of local default route availability."
  757. msgstr ""
  758. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:821
  759. msgid ""
  760. "Announce this device as default router regardless of whether a prefix or "
  761. "default route is present."
  762. msgstr ""
  763. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:952
  764. msgid "Announced DNS domains"
  765. msgstr ""
  766. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:936
  767. msgid "Announced IPv6 DNS servers"
  768. msgstr ""
  769. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1767
  770. msgid "Anonymous Identity"
  771. msgstr ""
  772. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:162
  773. msgid "Anonymous Mount"
  774. msgstr ""
  775. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:158
  776. msgid "Anonymous Swap"
  777. msgstr ""
  778. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:518
  779. msgctxt "nft match any traffic"
  780. msgid "Any packet"
  781. msgstr ""
  782. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:84
  783. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:174
  784. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:196
  785. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:60
  786. msgid "Any zone"
  787. msgstr ""
  788. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:618
  789. msgid "Apply DHCP Options to this net. (Empty = all clients)."
  790. msgstr ""
  791. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4713
  792. msgid "Apply and keep settings"
  793. msgstr ""
  794. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:119
  795. msgid "Apply backup?"
  796. msgstr ""
  797. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4739
  798. msgid "Apply request failed with status <code>%h</code>"
  799. msgstr ""
  800. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2175
  801. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4456
  802. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4576
  803. msgid "Apply unchecked"
  804. msgstr ""
  805. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4709
  806. msgid "Apply with revert after connectivity loss"
  807. msgstr ""
  808. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4649
  809. msgid "Applying configuration changes… %ds"
  810. msgstr ""
  811. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:57
  812. msgid "Architecture"
  813. msgstr ""
  814. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:152
  815. msgid "Arp-scan"
  816. msgstr ""
  817. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1039
  818. msgid ""
  819. "Assign a part of given length of every public IPv6-prefix to this interface"
  820. msgstr ""
  821. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:917
  822. msgid "Assign new, freeform tags to this entry."
  823. msgstr ""
  824. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1044
  825. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:27
  826. msgid ""
  827. "Assign prefix parts using this hexadecimal subprefix ID for this interface."
  828. msgstr ""
  829. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2266
  830. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:366
  831. msgid "Associated Stations"
  832. msgstr ""
  833. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:151
  834. msgid "Associations"
  835. msgstr ""
  836. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:126
  837. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:127
  838. msgid ""
  839. "At least <strong>%h</strong> per <strong>%h</strong>, burst of <strong>%h</"
  840. "strong>"
  841. msgstr ""
  842. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:124
  843. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:125
  844. msgid ""
  845. "At most <strong>%h</strong> per <strong>%h</strong>, burst of <strong>%h</"
  846. "strong>"
  847. msgstr ""
  848. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:154
  849. msgid "Attempt to enable configured mount points for attached devices"
  850. msgstr ""
  851. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:145
  852. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:64
  853. msgid "Auth Group"
  854. msgstr ""
  855. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1706
  856. msgid "Authentication"
  857. msgstr ""
  858. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:76
  859. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:79
  860. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:82
  861. msgid "Authentication Type"
  862. msgstr ""
  863. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:273
  864. msgid "Authoritative"
  865. msgstr ""
  866. #: modules/luci-base/ucode/template/sysauth.ut:17
  867. #: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:11
  868. msgid "Authorization Required"
  869. msgstr ""
  870. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:120
  871. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:18
  872. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:24
  873. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:107
  874. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:116
  875. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:113
  876. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:51
  877. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:96
  878. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:82
  879. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:56
  880. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:69
  881. msgid "Automatic"
  882. msgstr ""
  883. #: modules/luci-compat/luasrc/model/network/proto_hnet.lua:7
  884. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:7
  885. msgid "Automatic Homenet (HNCP)"
  886. msgstr ""
  887. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:174
  888. msgid "Automatically check filesystem for errors before mounting"
  889. msgstr ""
  890. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1032
  891. msgid ""
  892. "Automatically handle multiple uplink interfaces using source-based policy "
  893. "routing."
  894. msgstr ""
  895. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:170
  896. msgid "Automatically mount filesystems on hotplug"
  897. msgstr ""
  898. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:166
  899. msgid "Automatically mount swap on hotplug"
  900. msgstr ""
  901. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:170
  902. msgid "Automount Filesystem"
  903. msgstr ""
  904. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:166
  905. msgid "Automount Swap"
  906. msgstr ""
  907. #: protocols/luci-proto-autoip/htdocs/luci-static/resources/protocol/autoip.js:6
  908. msgid "Avahi IPv4LL"
  909. msgstr ""
  910. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:193
  911. msgid "Available"
  912. msgstr ""
  913. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:270
  914. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:280
  915. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:331
  916. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:341
  917. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:351
  918. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:236
  919. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:246
  920. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:256
  921. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:265
  922. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:275
  923. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:293
  924. msgid "Average:"
  925. msgstr ""
  926. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:70
  927. msgid "Avoid Bridge Loops"
  928. msgstr ""
  929. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1573
  930. msgid "B43 + B43C"
  931. msgstr "B43 + B43C"
  932. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1574
  933. msgid "B43 + B43C + V43"
  934. msgstr "B43 + B43C + V43"
  935. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:48
  936. msgid "BR / DMR / AFTR"
  937. msgstr "BR / DMR / AFTR"
  938. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1649
  939. msgid "BSS Transition"
  940. msgstr ""
  941. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:158
  942. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:182
  943. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1841
  944. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:405
  945. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:149
  946. msgid "BSSID"
  947. msgstr ""
  948. #: modules/luci-base/htdocs/luci-static/resources/form.js:3255
  949. msgid "Back"
  950. msgstr ""
  951. #: modules/luci-compat/luasrc/view/cbi/footer.htm:14
  952. #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:48
  953. msgid "Back to Overview"
  954. msgstr ""
  955. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:839
  956. msgid "Back to peer configuration"
  957. msgstr ""
  958. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:391
  959. msgid "Backup"
  960. msgstr ""
  961. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:128
  962. msgid "Backup / Flash Firmware"
  963. msgstr ""
  964. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:351
  965. msgid "Backup file list"
  966. msgstr ""
  967. #: modules/luci-compat/luasrc/view/cbi/wireless_modefreq.htm:158
  968. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:495
  969. msgid "Band"
  970. msgstr ""
  971. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:431
  972. msgid "Base device"
  973. msgstr ""
  974. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:158
  975. msgid "Base64-encoded public key of this interface for sharing."
  976. msgstr ""
  977. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:10
  978. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv_hardif.js:41
  979. msgid "Batman Device"
  980. msgstr ""
  981. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv_hardif.js:10
  982. msgid "Batman Interface"
  983. msgstr ""
  984. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:81
  985. msgid ""
  986. "Batman-adv has a built-in layer 2 fragmentation for unicast data flowing "
  987. "through the mesh which will allow to run batman-adv over interfaces / "
  988. "connections that don't allow to increase the MTU beyond the standard "
  989. "Ethernet packet size of 1500 bytes. When the fragmentation is enabled batman-"
  990. "adv will automatically fragment over-sized packets and defragment them on "
  991. "the other end. Per default fragmentation is enabled and inactive if the "
  992. "packet fits but it is possible to deactivate the fragmentation entirely."
  993. msgstr ""
  994. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:968
  995. msgid "Beacon Interval"
  996. msgstr ""
  997. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1623
  998. msgid "Beacon Report"
  999. msgstr ""
  1000. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:352
  1001. msgid ""
  1002. "Below is the determined list of files to backup. It consists of changed "
  1003. "configuration files marked by opkg, essential base files and the user "
  1004. "defined backup patterns."
  1005. msgstr ""
  1006. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:287
  1007. msgid "Bind NTP server"
  1008. msgstr ""
  1009. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:337
  1010. msgid "Bind dynamically to interfaces rather than wildcard address."
  1011. msgstr ""
  1012. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:59
  1013. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64
  1014. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64
  1015. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:69
  1016. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:48
  1017. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:142
  1018. #: protocols/luci-proto-vti/htdocs/luci-static/resources/protocol/vti.js:59
  1019. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:57
  1020. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:52
  1021. msgid "Bind interface"
  1022. msgstr ""
  1023. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:676
  1024. msgid ""
  1025. "Bind service records to a domain name: specify the location of services."
  1026. msgstr ""
  1027. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:637
  1028. msgid ""
  1029. "Bind service records to a domain name: specify the location of services. See "
  1030. "<a href=\"%s\">RFC2782</a>."
  1031. msgstr ""
  1032. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:59
  1033. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64
  1034. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64
  1035. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:69
  1036. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:48
  1037. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:142
  1038. #: protocols/luci-proto-vti/htdocs/luci-static/resources/protocol/vti.js:59
  1039. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:57
  1040. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:52
  1041. msgid "Bind the tunnel to this interface (optional)."
  1042. msgstr ""
  1043. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:129
  1044. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:188
  1045. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:171
  1046. msgid "Bitrate"
  1047. msgstr ""
  1048. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:65
  1049. msgid "Bonding Mode"
  1050. msgstr ""
  1051. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:201
  1052. msgid "Bonding Policy"
  1053. msgstr ""
  1054. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:404
  1055. msgid "Both \"Relay from\" and \"Relay to address\" must be specified."
  1056. msgstr ""
  1057. #: modules/luci-base/htdocs/luci-static/resources/network.js:2995
  1058. #: modules/luci-compat/luasrc/model/network.lua:1421
  1059. msgid "Bridge"
  1060. msgstr "ब्रिज"
  1061. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:491
  1062. msgctxt "MACVLAN mode"
  1063. msgid "Bridge (Support direct communication between MAC VLANs)"
  1064. msgstr ""
  1065. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:393
  1066. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:498
  1067. msgid "Bridge VLAN filtering"
  1068. msgstr ""
  1069. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:398
  1070. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1469
  1071. msgid "Bridge device"
  1072. msgstr ""
  1073. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:392
  1074. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:497
  1075. msgid "Bridge port specific options"
  1076. msgstr ""
  1077. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:522
  1078. msgid "Bridge ports"
  1079. msgstr ""
  1080. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:641
  1081. msgid "Bridge traffic table \"%h\""
  1082. msgstr ""
  1083. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1640
  1084. msgid "Bridge unit number"
  1085. msgstr ""
  1086. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:558
  1087. msgid "Bring up empty bridge"
  1088. msgstr ""
  1089. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:592
  1090. msgid "Bring up on boot"
  1091. msgstr ""
  1092. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:558
  1093. msgid "Bring up the bridge interface even if no ports are attached"
  1094. msgstr ""
  1095. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:940
  1096. msgid "Broadcast"
  1097. msgstr ""
  1098. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:207
  1099. msgid "Broadcast policy (broadcast, 3)"
  1100. msgstr ""
  1101. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2869
  1102. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4207
  1103. msgid "Browse…"
  1104. msgstr ""
  1105. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:40
  1106. msgid "Buffered"
  1107. msgstr ""
  1108. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:130
  1109. msgid ""
  1110. "CA certificate (PEM encoded; Use instead of system-wide store to verify the "
  1111. "gateway certificate."
  1112. msgstr ""
  1113. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:182
  1114. msgid "CA certificate; if empty it will be saved after the first connection."
  1115. msgstr ""
  1116. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:79
  1117. msgid "CHAP"
  1118. msgstr ""
  1119. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:7
  1120. msgid "CLAT configuration failed"
  1121. msgstr ""
  1122. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:265
  1123. msgid "CNAME"
  1124. msgstr ""
  1125. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:655
  1126. msgid "CNAME or fqdn"
  1127. msgstr ""
  1128. #: protocols/luci-proto-cni/htdocs/luci-static/resources/protocol/cni.js:6
  1129. msgid "CNI (Externally managed interface)"
  1130. msgstr ""
  1131. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:72
  1132. msgid "CPU usage (%)"
  1133. msgstr ""
  1134. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:43
  1135. msgid "Cached"
  1136. msgstr ""
  1137. #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:53
  1138. #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:53
  1139. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:21
  1140. msgid "Call failed"
  1141. msgstr ""
  1142. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:469
  1143. msgid ""
  1144. "Can be useful if ISP has IPv6 nameservers but does not provide IPv6 routing."
  1145. msgstr ""
  1146. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2957
  1147. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4216
  1148. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4705
  1149. #: modules/luci-compat/luasrc/view/cbi/delegator.htm:14
  1150. #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:52
  1151. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:188
  1152. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1201
  1153. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2140
  1154. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:128
  1155. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:295
  1156. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:209
  1157. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:485
  1158. msgid "Cancel"
  1159. msgstr "रद्द करा"
  1160. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:347
  1161. msgid "Cannot parse configuration: %s"
  1162. msgstr ""
  1163. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:568
  1164. msgctxt "Chain hook: forward"
  1165. msgid "Capture incoming packets addressed to other hosts"
  1166. msgstr ""
  1167. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:560
  1168. msgctxt "Chain hook: prerouting"
  1169. msgid "Capture incoming packets before any routing decision"
  1170. msgstr ""
  1171. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:564
  1172. msgctxt "Chain hook: input"
  1173. msgid "Capture incoming packets routed to the local system"
  1174. msgstr ""
  1175. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:576
  1176. msgctxt "Chain hook: postrouting"
  1177. msgid "Capture outgoing packets after any routing decision"
  1178. msgstr ""
  1179. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:572
  1180. msgctxt "Chain hook: output"
  1181. msgid "Capture outgoing packets originating from the local system"
  1182. msgstr ""
  1183. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:556
  1184. msgctxt "Chain hook: ingress"
  1185. msgid "Capture packets directly after the NIC received them"
  1186. msgstr ""
  1187. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:17
  1188. msgid "Category"
  1189. msgstr ""
  1190. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:114
  1191. msgid "Cell ID"
  1192. msgstr ""
  1193. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:113
  1194. msgid "Cell Location"
  1195. msgstr ""
  1196. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1690
  1197. msgid "Certificate constraint (Domain)"
  1198. msgstr ""
  1199. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1687
  1200. msgid "Certificate constraint (SAN)"
  1201. msgstr ""
  1202. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1684
  1203. msgid "Certificate constraint (Subject)"
  1204. msgstr ""
  1205. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1693
  1206. msgid "Certificate constraint (Wildcard)"
  1207. msgstr ""
  1208. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1684
  1209. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1742
  1210. msgid ""
  1211. "Certificate constraint substring - e.g. /CN=wifi.mycompany.com<br />See "
  1212. "`logread -f` during handshake for actual values"
  1213. msgstr ""
  1214. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1690
  1215. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1748
  1216. msgid ""
  1217. "Certificate constraint(s) against DNS SAN values (if available)<br />or "
  1218. "Subject CN (exact match)"
  1219. msgstr ""
  1220. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1693
  1221. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1751
  1222. msgid ""
  1223. "Certificate constraint(s) against DNS SAN values (if available)<br />or "
  1224. "Subject CN (suffix match)"
  1225. msgstr ""
  1226. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1687
  1227. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1745
  1228. msgid ""
  1229. "Certificate constraint(s) via Subject Alternate Name values<br />(supported "
  1230. "attributes: EMAIL, DNS, URI) - e.g. DNS:wifi.mycompany.com"
  1231. msgstr ""
  1232. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:54
  1233. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:57
  1234. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:212
  1235. msgid "Chain"
  1236. msgstr ""
  1237. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:580
  1238. msgctxt "Yet unknown nftables chain hook"
  1239. msgid "Chain hook \"%h\""
  1240. msgstr ""
  1241. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4436
  1242. msgid "Changes"
  1243. msgstr ""
  1244. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4775
  1245. msgid "Changes have been reverted."
  1246. msgstr ""
  1247. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:46
  1248. msgid "Changes the administrator password for accessing the device"
  1249. msgstr ""
  1250. #: modules/luci-compat/luasrc/view/cbi/wireless_modefreq.htm:162
  1251. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:128
  1252. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:184
  1253. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:504
  1254. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1839
  1255. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:402
  1256. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:170
  1257. msgid "Channel"
  1258. msgstr ""
  1259. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:368
  1260. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:105
  1261. msgid "Channel Analysis"
  1262. msgstr ""
  1263. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:403
  1264. msgid "Channel Width"
  1265. msgstr ""
  1266. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:174
  1267. msgid "Check filesystems before mount"
  1268. msgstr ""
  1269. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2102
  1270. msgid "Check this option to delete the existing networks from this radio."
  1271. msgstr ""
  1272. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:110
  1273. msgid "Checking archive…"
  1274. msgstr ""
  1275. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:193
  1276. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:195
  1277. msgid "Checking image…"
  1278. msgstr ""
  1279. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:427
  1280. msgid "Choose mtdblock"
  1281. msgstr ""
  1282. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:597
  1283. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2130
  1284. msgid ""
  1285. "Choose the firewall zone you want to assign to this interface. Select "
  1286. "<em>unspecified</em> to remove the interface from the associated zone or "
  1287. "fill out the <em>custom</em> field to define a new zone and attach the "
  1288. "interface to it."
  1289. msgstr ""
  1290. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1018
  1291. msgid ""
  1292. "Choose the network(s) you want to attach to this wireless interface or fill "
  1293. "out the <em>custom</em> field to define a new network."
  1294. msgstr ""
  1295. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1229
  1296. msgid "Cipher"
  1297. msgstr ""
  1298. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:91
  1299. msgid "Cisco UDP encapsulation"
  1300. msgstr ""
  1301. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:391
  1302. msgid ""
  1303. "Click \"Generate archive\" to download a tar archive of the current "
  1304. "configuration files."
  1305. msgstr ""
  1306. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:424
  1307. msgid ""
  1308. "Click \"Save mtdblock\" to download specified mtdblock file. (NOTE: THIS "
  1309. "FEATURE IS FOR PROFESSIONALS! )"
  1310. msgstr ""
  1311. #: modules/luci-base/htdocs/luci-static/resources/network.js:3865
  1312. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:987
  1313. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1102
  1314. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:88
  1315. msgid "Client"
  1316. msgstr ""
  1317. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37
  1318. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:33
  1319. msgid "Client ID to send when requesting DHCP"
  1320. msgstr ""
  1321. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4453
  1322. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:173
  1323. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:179
  1324. msgid "Close"
  1325. msgstr ""
  1326. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:156
  1327. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:128
  1328. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:114
  1329. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:92
  1330. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:101
  1331. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:124
  1332. msgid ""
  1333. "Close inactive connection after the given amount of seconds, use 0 to "
  1334. "persist connection"
  1335. msgstr ""
  1336. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:44
  1337. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:63
  1338. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2264
  1339. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:391
  1340. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:352
  1341. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:355
  1342. #: themes/luci-theme-material/ucode/template/themes/material/header.ut:66
  1343. msgid "Collecting data..."
  1344. msgstr "डेटा संकलित करीत आहे ..."
  1345. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:250
  1346. msgid "Collisions seen"
  1347. msgstr ""
  1348. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:71
  1349. msgid "Command"
  1350. msgstr "कमांड"
  1351. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:401
  1352. msgid "Command OK"
  1353. msgstr ""
  1354. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:33
  1355. msgid "Command failed"
  1356. msgstr "कमांड अयशस्वी"
  1357. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:73
  1358. msgid "Comment"
  1359. msgstr "टिप्पणी"
  1360. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1810
  1361. msgid ""
  1362. "Complicates key reinstallation attacks on the client side by disabling "
  1363. "retransmission of EAPOL-Key frames that are used to install keys. This "
  1364. "workaround might cause interoperability issues and reduced robustness of key "
  1365. "negotiation especially in environments with heavy traffic load."
  1366. msgstr ""
  1367. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:101
  1368. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:106
  1369. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:103
  1370. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:108
  1371. msgid "Compute outgoing checksum (optional)."
  1372. msgstr ""
  1373. #: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:40
  1374. msgid "Config File"
  1375. msgstr ""
  1376. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4436
  1377. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:454
  1378. msgid "Configuration"
  1379. msgstr "कॉन्फिगरेशन"
  1380. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:690
  1381. msgid "Configuration Export"
  1382. msgstr ""
  1383. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4624
  1384. msgid "Configuration changes applied."
  1385. msgstr ""
  1386. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4562
  1387. msgid "Configuration changes have been rolled back!"
  1388. msgstr ""
  1389. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:63
  1390. msgid "Configuration failed"
  1391. msgstr ""
  1392. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:947
  1393. msgid ""
  1394. "Configures data rates based on the coverage cell density. Normal configures "
  1395. "basic rates to 6, 12, 24 Mbps if legacy 802.11b rates are not used else to "
  1396. "5.5, 11 Mbps. High configures basic rates to 12, 24 Mbps if legacy 802.11b "
  1397. "rates are not used else to the 11 Mbps rate. Very High configures 24 Mbps as "
  1398. "the basic rate. Supported rates lower than the minimum basic rate are not "
  1399. "offered."
  1400. msgstr ""
  1401. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:815
  1402. msgid ""
  1403. "Configures the default router advertisement in <abbr title=\"Router "
  1404. "Advertisement\">RA</abbr> messages."
  1405. msgstr ""
  1406. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:804
  1407. msgid ""
  1408. "Configures the operation mode of the <abbr title=\"Router "
  1409. "Advertisement\">RA</abbr> service on this interface."
  1410. msgstr ""
  1411. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:926
  1412. msgid "Configures the operation mode of the DHCPv6 service on this interface."
  1413. msgstr ""
  1414. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:962
  1415. msgid ""
  1416. "Configures the operation mode of the NDP proxy service on this interface."
  1417. msgstr ""
  1418. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1357
  1419. msgid "Configure…"
  1420. msgstr ""
  1421. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:176
  1422. msgid "Confirm disconnect"
  1423. msgstr ""
  1424. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:55
  1425. msgid "Confirmation"
  1426. msgstr ""
  1427. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:98
  1428. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:101
  1429. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:47
  1430. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:232
  1431. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:51
  1432. msgid "Connected"
  1433. msgstr ""
  1434. #: modules/luci-base/htdocs/luci-static/resources/network.js:9
  1435. #: modules/luci-compat/luasrc/model/network.lua:27
  1436. msgid "Connection attempt failed"
  1437. msgstr ""
  1438. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:8
  1439. msgid "Connection attempt failed."
  1440. msgstr ""
  1441. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:776
  1442. msgid "Connection endpoint"
  1443. msgstr ""
  1444. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:411
  1445. msgid "Connection lost"
  1446. msgstr ""
  1447. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:160
  1448. msgid "Connections"
  1449. msgstr ""
  1450. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4698
  1451. msgid "Connectivity change"
  1452. msgstr ""
  1453. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:31
  1454. msgctxt "nft ct state"
  1455. msgid "Conntrack state"
  1456. msgstr ""
  1457. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:33
  1458. msgctxt "nft ct status"
  1459. msgid "Conntrack status"
  1460. msgstr ""
  1461. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:378
  1462. msgid "Consider the slave up when all ARP IP targets are reachable (all, 1)"
  1463. msgstr ""
  1464. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:377
  1465. msgid "Consider the slave up when any ARP IP target is reachable (any, 0)"
  1466. msgstr ""
  1467. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/crontab.js:18
  1468. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:368
  1469. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:55
  1470. msgid "Contents have been saved."
  1471. msgstr ""
  1472. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:416
  1473. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:450
  1474. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:794
  1475. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:132
  1476. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:269
  1477. msgid "Continue"
  1478. msgstr ""
  1479. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:97
  1480. msgctxt "nft jump action"
  1481. msgid "Continue in <strong><a href=\"#%q.%q\">%h</a></strong>"
  1482. msgstr ""
  1483. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:129
  1484. msgid "Continue in calling chain"
  1485. msgstr ""
  1486. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:550
  1487. msgctxt "Chain policy: accept"
  1488. msgid "Continue processing unmatched packets"
  1489. msgstr ""
  1490. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4598
  1491. msgid ""
  1492. "Could not regain access to the device after applying the configuration "
  1493. "changes. You might need to reconnect if you modified network related "
  1494. "settings such as the IP address or wireless security credentials."
  1495. msgstr ""
  1496. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:189
  1497. msgid "Country"
  1498. msgstr ""
  1499. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:944
  1500. msgid "Country Code"
  1501. msgstr ""
  1502. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:947
  1503. msgid "Coverage cell density"
  1504. msgstr ""
  1505. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:597
  1506. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2130
  1507. msgid "Create / Assign firewall-zone"
  1508. msgstr ""
  1509. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1233
  1510. msgid "Create interface"
  1511. msgstr ""
  1512. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:191
  1513. msgid "Critical"
  1514. msgstr ""
  1515. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:195
  1516. msgid "Cron Log Level"
  1517. msgstr ""
  1518. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:584
  1519. msgid "Current power"
  1520. msgstr ""
  1521. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:28
  1522. msgctxt "nft meta hour"
  1523. msgid "Current time"
  1524. msgstr ""
  1525. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:29
  1526. msgctxt "nft meta day"
  1527. msgid "Current weekday"
  1528. msgstr ""
  1529. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:573
  1530. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:575
  1531. #: modules/luci-compat/luasrc/view/cbi/network_ifacelist.htm:51
  1532. #: modules/luci-compat/luasrc/view/cbi/network_ifacelist.htm:53
  1533. #: modules/luci-compat/luasrc/view/cbi/network_ifacelist.htm:82
  1534. #: modules/luci-compat/luasrc/view/cbi/network_ifacelist.htm:83
  1535. msgid "Custom Interface"
  1536. msgstr ""
  1537. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:410
  1538. msgid ""
  1539. "Custom files (certificates, scripts) may remain on the system. To prevent "
  1540. "this, perform a factory-reset first."
  1541. msgstr ""
  1542. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/timer.js:6
  1543. msgid "Custom flash interval (kernel: timer)"
  1544. msgstr ""
  1545. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:59
  1546. msgid ""
  1547. "Customizes the behaviour of the device <abbr title=\"Light Emitting "
  1548. "Diode\">LED</abbr>s if possible."
  1549. msgstr ""
  1550. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:741
  1551. msgid "DAD transmits"
  1552. msgstr ""
  1553. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1468
  1554. msgid "DAE-Client"
  1555. msgstr ""
  1556. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1473
  1557. msgid "DAE-Port"
  1558. msgstr ""
  1559. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1479
  1560. msgid "DAE-Secret"
  1561. msgstr ""
  1562. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:611
  1563. msgid "DHCP Options"
  1564. msgstr ""
  1565. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:500
  1566. msgid "DHCP Server"
  1567. msgstr ""
  1568. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:249
  1569. #: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:62
  1570. msgid "DHCP and DNS"
  1571. msgstr "डीएचसीपी आणि डीएनएस"
  1572. #: modules/luci-base/htdocs/luci-static/resources/network.js:2091
  1573. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:16
  1574. #: modules/luci-compat/luasrc/model/network.lua:969
  1575. msgid "DHCP client"
  1576. msgstr ""
  1577. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:724
  1578. msgid "DHCP-Options"
  1579. msgstr ""
  1580. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:988
  1581. msgid ""
  1582. "DHCPv4 <code>leasetime</code> is used as limit and preferred lifetime of the "
  1583. "IPv6 prefix."
  1584. msgstr ""
  1585. #: modules/luci-compat/luasrc/model/network/proto_dhcpv6.lua:7
  1586. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:7
  1587. msgid "DHCPv6 client"
  1588. msgstr ""
  1589. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:925
  1590. msgid "DHCPv6-Service"
  1591. msgstr ""
  1592. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:45
  1593. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:46
  1594. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:47
  1595. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:48
  1596. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:49
  1597. msgid "DNS"
  1598. msgstr ""
  1599. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:290
  1600. msgid "DNS forwardings"
  1601. msgstr ""
  1602. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:531
  1603. msgid "DNS query port"
  1604. msgstr ""
  1605. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1008
  1606. msgid "DNS search domains"
  1607. msgstr ""
  1608. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:524
  1609. msgid "DNS server port"
  1610. msgstr ""
  1611. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:292
  1612. msgid "DNS setting is invalid"
  1613. msgstr ""
  1614. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1013
  1615. msgid "DNS weight"
  1616. msgstr ""
  1617. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:33
  1618. msgid "DNS-Label / FQDN"
  1619. msgstr ""
  1620. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:483
  1621. msgid "DNSSEC"
  1622. msgstr ""
  1623. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:488
  1624. msgid "DNSSEC check unsigned"
  1625. msgstr ""
  1626. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:99
  1627. msgid "DPD Idle Timeout"
  1628. msgstr ""
  1629. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:41
  1630. msgid "DS-Lite AFTR address"
  1631. msgstr ""
  1632. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1543
  1633. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:37
  1634. msgid "DSL"
  1635. msgstr "DSL"
  1636. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:21
  1637. msgid "DSL Status"
  1638. msgstr ""
  1639. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1582
  1640. msgid "DSL line mode"
  1641. msgstr ""
  1642. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1169
  1643. msgid "DTIM Interval"
  1644. msgstr ""
  1645. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:59
  1646. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:903
  1647. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:136
  1648. msgid "DUID"
  1649. msgstr "DUID"
  1650. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:29
  1651. msgid "Data Rate"
  1652. msgstr ""
  1653. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:76
  1654. msgid "Data Received"
  1655. msgstr ""
  1656. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:77
  1657. msgid "Data Transmitted"
  1658. msgstr ""
  1659. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:186
  1660. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:197
  1661. msgid "Debug"
  1662. msgstr ""
  1663. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:814
  1664. msgid "Default router"
  1665. msgstr ""
  1666. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/none.js:12
  1667. msgid "Default state"
  1668. msgstr ""
  1669. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:724
  1670. msgid ""
  1671. "Define additional DHCP options, for example "
  1672. "\"<code>6,192.168.2.1,192.168.2.2</code>\" which advertises different DNS "
  1673. "servers to clients."
  1674. msgstr ""
  1675. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:516
  1676. msgid ""
  1677. "Defines a mapping of Linux internal packet priority to VLAN header priority "
  1678. "but for outgoing frames"
  1679. msgstr ""
  1680. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:510
  1681. msgid ""
  1682. "Defines a mapping of VLAN header priority to the Linux internal packet "
  1683. "priority on incoming frames"
  1684. msgstr ""
  1685. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:87
  1686. msgid "Defines a specific MTU for this route"
  1687. msgstr ""
  1688. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1036
  1689. msgid "Delegate IPv6 prefixes"
  1690. msgstr ""
  1691. #: modules/luci-base/htdocs/luci-static/resources/form.js:2310
  1692. #: modules/luci-base/htdocs/luci-static/resources/form.js:2740
  1693. #: modules/luci-base/htdocs/luci-static/resources/form.js:2744
  1694. #: modules/luci-base/htdocs/luci-static/resources/form.js:3571
  1695. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2926
  1696. #: modules/luci-compat/luasrc/view/cbi/nsection.htm:11
  1697. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:162
  1698. #: modules/luci-compat/luasrc/view/cbi/tsection.htm:16
  1699. msgid "Delete"
  1700. msgstr "हटवा"
  1701. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:205
  1702. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:211
  1703. msgid "Delete key"
  1704. msgstr ""
  1705. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2828
  1706. msgid "Delete request failed: %s"
  1707. msgstr ""
  1708. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:899
  1709. msgid "Delete this network"
  1710. msgstr ""
  1711. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1169
  1712. msgid "Delivery Traffic Indication Message Interval"
  1713. msgstr ""
  1714. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:342
  1715. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:139
  1716. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:517
  1717. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:53
  1718. msgid "Description"
  1719. msgstr "वर्णन"
  1720. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2922
  1721. msgid "Deselect"
  1722. msgstr ""
  1723. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:237
  1724. msgid "Design"
  1725. msgstr ""
  1726. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:732
  1727. msgid "Designated master"
  1728. msgstr ""
  1729. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:160
  1730. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:386
  1731. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:71
  1732. msgid "Destination"
  1733. msgstr ""
  1734. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:44
  1735. msgctxt "nft ip daddr"
  1736. msgid "Destination IP"
  1737. msgstr ""
  1738. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:48
  1739. msgctxt "nft ip6 daddr"
  1740. msgid "Destination IPv6"
  1741. msgstr ""
  1742. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:48
  1743. msgid "Destination port"
  1744. msgstr ""
  1745. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:46
  1746. msgctxt "nft ip dport"
  1747. msgid "Destination port"
  1748. msgstr ""
  1749. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:59
  1750. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:165
  1751. msgid "Destination zone"
  1752. msgstr ""
  1753. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:67
  1754. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:192
  1755. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:43
  1756. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:46
  1757. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:81
  1758. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:586
  1759. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1183
  1760. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1485
  1761. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:55
  1762. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:13
  1763. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:248
  1764. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:281
  1765. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:357
  1766. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:393
  1767. msgid "Device"
  1768. msgstr "डिव्हाइस"
  1769. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:913
  1770. msgid "Device Configuration"
  1771. msgstr ""
  1772. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:88
  1773. msgid "Device Identifier"
  1774. msgstr ""
  1775. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:132
  1776. msgid "Device is not active"
  1777. msgstr ""
  1778. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:233
  1779. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:650
  1780. msgid "Device is restarting…"
  1781. msgstr ""
  1782. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:495
  1783. msgid "Device name"
  1784. msgstr ""
  1785. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:10
  1786. msgid "Device not managed by ModemManager."
  1787. msgstr ""
  1788. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1460
  1789. msgid "Device not present"
  1790. msgstr ""
  1791. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:395
  1792. msgid "Device type"
  1793. msgstr ""
  1794. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4597
  1795. msgid "Device unreachable!"
  1796. msgstr ""
  1797. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:53
  1798. msgid "Device unreachable! Still waiting for device..."
  1799. msgstr ""
  1800. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1308
  1801. msgid "Devices"
  1802. msgstr ""
  1803. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:159
  1804. #: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:76
  1805. msgid "Diagnostics"
  1806. msgstr ""
  1807. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:114
  1808. msgid "Dial number"
  1809. msgstr ""
  1810. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2724
  1811. msgid "Directory"
  1812. msgstr ""
  1813. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:114
  1814. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:201
  1815. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:891
  1816. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:931
  1817. msgid "Disable"
  1818. msgstr "अक्षम करा"
  1819. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:683
  1820. msgid ""
  1821. "Disable <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</abbr> for "
  1822. "this interface."
  1823. msgstr ""
  1824. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:174
  1825. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:375
  1826. msgid "Disable DNS lookups"
  1827. msgstr ""
  1828. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:93
  1829. msgid "Disable Encryption"
  1830. msgstr ""
  1831. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1179
  1832. msgid "Disable Inactivity Polling"
  1833. msgstr ""
  1834. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:889
  1835. msgid "Disable this network"
  1836. msgstr ""
  1837. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:948
  1838. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1439
  1839. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1630
  1840. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1778
  1841. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:13
  1842. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:66
  1843. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:121
  1844. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:108
  1845. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:117
  1846. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:114
  1847. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:52
  1848. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:97
  1849. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:83
  1850. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:57
  1851. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:70
  1852. msgid "Disabled"
  1853. msgstr "अक्षम"
  1854. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:541
  1855. msgctxt "Label indicating that WireGuard peer is disabled"
  1856. msgid "Disabled"
  1857. msgstr ""
  1858. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1193
  1859. msgid "Disassociate On Low Acknowledgement"
  1860. msgstr ""
  1861. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:313
  1862. msgid ""
  1863. "Discard upstream responses containing <a href=\"%s\">RFC1918</a> addresses."
  1864. msgstr ""
  1865. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:198
  1866. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:716
  1867. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:336
  1868. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:351
  1869. msgid "Disconnect"
  1870. msgstr ""
  1871. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:64
  1872. msgid "Disconnection attempt failed"
  1873. msgstr ""
  1874. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:13
  1875. msgid "Disconnection attempt failed."
  1876. msgstr ""
  1877. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:35
  1878. msgid "Disk space"
  1879. msgstr ""
  1880. #: modules/luci-base/htdocs/luci-static/resources/form.js:611
  1881. #: modules/luci-base/htdocs/luci-static/resources/form.js:3022
  1882. #: modules/luci-base/htdocs/luci-static/resources/form.js:3269
  1883. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3715
  1884. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4568
  1885. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1864
  1886. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:358
  1887. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:45
  1888. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:66
  1889. msgid "Dismiss"
  1890. msgstr "डिसमिस करा"
  1891. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:953
  1892. msgid "Distance Optimization"
  1893. msgstr ""
  1894. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:953
  1895. msgid "Distance to farthest network member in meters."
  1896. msgstr ""
  1897. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:75
  1898. msgid "Distributed ARP Table"
  1899. msgstr ""
  1900. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:931
  1901. msgid ""
  1902. "Dnsmasq instance to which this DHCP host section is bound. If unspecified, "
  1903. "the section is valid for all dnsmasq instances."
  1904. msgstr ""
  1905. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:629
  1906. msgid ""
  1907. "Dnsmasq instance to which this boot section is bound. If unspecified, the "
  1908. "section is valid for all dnsmasq instances."
  1909. msgstr ""
  1910. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:250
  1911. msgid ""
  1912. "Dnsmasq is a lightweight <abbr title=\"Dynamic Host Configuration "
  1913. "Protocol\">DHCP</abbr> server and <abbr title=\"Domain Name System\">DNS</"
  1914. "abbr> forwarder."
  1915. msgstr ""
  1916. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:500
  1917. msgid "Do not cache negative replies, e.g. for non-existent domains."
  1918. msgstr ""
  1919. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:86
  1920. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:91
  1921. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:88
  1922. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:93
  1923. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:70
  1924. msgid "Do not create host route to peer (optional)."
  1925. msgstr ""
  1926. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:270
  1927. msgid "Do not forward DNS queries without dots or domain parts."
  1928. msgstr ""
  1929. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:458
  1930. msgid "Do not forward reverse lookups for local networks."
  1931. msgstr ""
  1932. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:350
  1933. msgid "Do not listen on the specified interfaces."
  1934. msgstr ""
  1935. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:928
  1936. msgid "Do not offer DHCPv6 service on this interface."
  1937. msgstr ""
  1938. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:964
  1939. msgid ""
  1940. "Do not proxy any <abbr title=\"Neighbour Discovery Protocol\">NDP</abbr> "
  1941. "packets."
  1942. msgstr ""
  1943. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:25
  1944. msgid "Do not send a hostname"
  1945. msgstr ""
  1946. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:806
  1947. msgid ""
  1948. "Do not send any <abbr title=\"Router Advertisement, ICMPv6 Type 134\">RA</"
  1949. "abbr> messages on this interface."
  1950. msgstr ""
  1951. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2814
  1952. msgid "Do you really want to delete \"%s\" ?"
  1953. msgstr ""
  1954. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:206
  1955. msgid "Do you really want to delete the following SSH key?"
  1956. msgstr ""
  1957. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:94
  1958. msgid "Do you really want to erase all settings?"
  1959. msgstr ""
  1960. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2812
  1961. msgid "Do you really want to recursively delete the directory \"%s\" ?"
  1962. msgstr ""
  1963. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:613
  1964. msgid "Do you want to replace the current PSK?"
  1965. msgstr ""
  1966. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:100
  1967. msgid "Do you want to replace the current keys?"
  1968. msgstr ""
  1969. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:687
  1970. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:713
  1971. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:766
  1972. msgid "Domain"
  1973. msgstr ""
  1974. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:269
  1975. msgid "Domain required"
  1976. msgstr ""
  1977. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:322
  1978. msgid "Domain whitelist"
  1979. msgstr ""
  1980. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:83
  1981. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:88
  1982. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:67
  1983. msgid "Don't Fragment"
  1984. msgstr ""
  1985. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:152
  1986. msgid "Down"
  1987. msgstr ""
  1988. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:403
  1989. msgid "Down Delay"
  1990. msgstr ""
  1991. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:394
  1992. msgid "Download backup"
  1993. msgstr ""
  1994. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:432
  1995. msgid "Download mtdblock"
  1996. msgstr ""
  1997. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1587
  1998. msgid "Downstream SNR offset"
  1999. msgstr ""
  2000. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:435
  2001. msgid ""
  2002. "Drag or paste a valid <em>*.conf</em> file below to configure the local "
  2003. "WireGuard interface."
  2004. msgstr ""
  2005. #: modules/luci-base/htdocs/luci-static/resources/form.js:2698
  2006. msgid "Drag to reorder"
  2007. msgstr ""
  2008. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:342
  2009. msgid "Drop Duplicate Frames"
  2010. msgstr ""
  2011. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:710
  2012. msgid ""
  2013. "Drop all gratuitous ARP frames, for example if there’s a known good ARP "
  2014. "proxy on the network and such frames need not be used or in the case of "
  2015. "802.11, must not be used to prevent attacks."
  2016. msgstr ""
  2017. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:733
  2018. msgid ""
  2019. "Drop all unsolicited neighbor advertisements, for example if there’s a known "
  2020. "good NA proxy on the network and such frames need not be used or in the case "
  2021. "of 802.11, must not be used to prevent attacks."
  2022. msgstr ""
  2023. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:710
  2024. msgid "Drop gratuitous ARP"
  2025. msgstr ""
  2026. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:787
  2027. msgid "Drop layer 2 multicast frames containing IPv4 unicast packets."
  2028. msgstr ""
  2029. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:791
  2030. msgid "Drop layer 2 multicast frames containing IPv6 unicast packets."
  2031. msgstr ""
  2032. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:787
  2033. msgid "Drop nested IPv4 unicast"
  2034. msgstr ""
  2035. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:791
  2036. msgid "Drop nested IPv6 unicast"
  2037. msgstr ""
  2038. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:96
  2039. msgctxt "nft drop action"
  2040. msgid "Drop packet"
  2041. msgstr ""
  2042. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:546
  2043. msgctxt "Chain policy: drop"
  2044. msgid "Drop unmatched packets"
  2045. msgstr ""
  2046. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:733
  2047. msgid "Drop unsolicited NA"
  2048. msgstr ""
  2049. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:12
  2050. msgid "Dropbear Instance"
  2051. msgstr ""
  2052. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:10
  2053. msgid ""
  2054. "Dropbear offers <abbr title=\"Secure Shell\">SSH</abbr> network shell access "
  2055. "and an integrated <abbr title=\"Secure Copy\">SCP</abbr> server"
  2056. msgstr ""
  2057. #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:14
  2058. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:11
  2059. msgid "Dual-Stack Lite (RFC6333)"
  2060. msgstr ""
  2061. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:700
  2062. msgid "Dynamic <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</abbr>"
  2063. msgstr ""
  2064. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1468
  2065. msgid "Dynamic Authorization Extension client."
  2066. msgstr ""
  2067. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1473
  2068. msgid "Dynamic Authorization Extension port."
  2069. msgstr ""
  2070. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1479
  2071. msgid "Dynamic Authorization Extension secret."
  2072. msgstr ""
  2073. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:60
  2074. msgid "Dynamic tunnel"
  2075. msgstr ""
  2076. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:700
  2077. msgid ""
  2078. "Dynamically allocate DHCP addresses for clients. If disabled, only clients "
  2079. "having static leases will be served."
  2080. msgstr ""
  2081. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1463
  2082. msgid "E.g. <code>br-vlan</code> or <code>brvlan</code>."
  2083. msgstr ""
  2084. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1453
  2085. msgid "E.g. eth0, eth1"
  2086. msgstr ""
  2087. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:67
  2088. msgid "EA-bits length"
  2089. msgstr ""
  2090. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1662
  2091. msgid "EAP-Method"
  2092. msgstr ""
  2093. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1446
  2094. msgid "Each STA is assigned its own AP_VLAN interface."
  2095. msgstr ""
  2096. #: modules/luci-base/htdocs/luci-static/resources/form.js:2718
  2097. #: modules/luci-base/htdocs/luci-static/resources/form.js:2721
  2098. #: modules/luci-base/htdocs/luci-static/resources/form.js:3434
  2099. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:154
  2100. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:160
  2101. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:512
  2102. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:896
  2103. msgid "Edit"
  2104. msgstr ""
  2105. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:226
  2106. msgid "Edit peer"
  2107. msgstr ""
  2108. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:782
  2109. msgid "Edit static lease"
  2110. msgstr ""
  2111. #: modules/luci-compat/luasrc/view/cbi/error.htm:13
  2112. msgid ""
  2113. "Edit the raw configuration data above to fix any error and hit \"Save\" to "
  2114. "reload the page."
  2115. msgstr ""
  2116. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:894
  2117. msgid "Edit this network"
  2118. msgstr ""
  2119. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:845
  2120. msgid "Edit wireless network"
  2121. msgstr ""
  2122. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:65
  2123. msgctxt "nft rt mtu"
  2124. msgid "Effective route MTU"
  2125. msgstr ""
  2126. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:516
  2127. msgid "Egress QoS mapping"
  2128. msgstr ""
  2129. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:12
  2130. msgctxt "nft meta oif"
  2131. msgid "Egress device id"
  2132. msgstr ""
  2133. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:10
  2134. msgctxt "nft meta oifname"
  2135. msgid "Egress device name"
  2136. msgstr ""
  2137. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:193
  2138. msgid "Emergency"
  2139. msgstr ""
  2140. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:891
  2141. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:931
  2142. msgid "Enable"
  2143. msgstr "सक्षम करा"
  2144. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:513
  2145. msgid "Enable / Disable peer. Restart wireguard interface to apply changes."
  2146. msgstr ""
  2147. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:592
  2148. msgid ""
  2149. "Enable <abbr title=\"Internet Group Management Protocol\">IGMP</abbr> "
  2150. "snooping"
  2151. msgstr ""
  2152. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:572
  2153. msgid "Enable <abbr title=\"Spanning Tree Protocol\">STP</abbr>"
  2154. msgstr ""
  2155. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:825
  2156. msgid "Enable <abbr title=\"Stateless Address Auto Config\">SLAAC</abbr>"
  2157. msgstr ""
  2158. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:174
  2159. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:369
  2160. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:375
  2161. msgid "Enable DNS lookups"
  2162. msgstr ""
  2163. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:294
  2164. msgid "Enable Dynamic Shuffling Of Flows"
  2165. msgstr ""
  2166. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:60
  2167. msgid "Enable HE.net dynamic endpoint update"
  2168. msgstr ""
  2169. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:725
  2170. msgid "Enable IPv6"
  2171. msgstr ""
  2172. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:101
  2173. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:101
  2174. msgid "Enable IPv6 negotiation"
  2175. msgstr ""
  2176. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:49
  2177. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:94
  2178. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:80
  2179. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:54
  2180. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:67
  2181. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:93
  2182. msgid "Enable IPv6 negotiation on the PPP link"
  2183. msgstr ""
  2184. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:729
  2185. msgid "Enable IPv6 segment routing"
  2186. msgstr ""
  2187. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:194
  2188. msgid "Enable Jumbo Frame passthrough"
  2189. msgstr ""
  2190. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:764
  2191. msgid "Enable MAC address learning"
  2192. msgstr ""
  2193. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:257
  2194. msgid "Enable NTP client"
  2195. msgstr ""
  2196. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:96
  2197. msgid "Enable Single DES"
  2198. msgstr ""
  2199. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:566
  2200. msgid "Enable TFTP server"
  2201. msgstr ""
  2202. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:796
  2203. msgid "Enable VLAN filtering"
  2204. msgstr ""
  2205. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:184
  2206. msgid "Enable VLAN functionality"
  2207. msgstr ""
  2208. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1814
  2209. msgid "Enable WPS pushbutton, requires WPA(2)-PSK/WPA3-SAE"
  2210. msgstr ""
  2211. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/uhttpd.js:14
  2212. msgid ""
  2213. "Enable automatic redirection of <abbr title=\"Hypertext Transfer "
  2214. "Protocol\">HTTP</abbr> requests to <abbr title=\"Hypertext Transfer Protocol "
  2215. "Secure\">HTTPS</abbr> port."
  2216. msgstr ""
  2217. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1036
  2218. msgid ""
  2219. "Enable downstream delegation of IPv6 prefixes available on this interface"
  2220. msgstr ""
  2221. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1810
  2222. msgid "Enable key reinstallation (KRACK) countermeasures"
  2223. msgstr ""
  2224. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:189
  2225. msgid "Enable learning and aging"
  2226. msgstr ""
  2227. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:200
  2228. msgid "Enable mirroring of incoming packets"
  2229. msgstr ""
  2230. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:201
  2231. msgid "Enable mirroring of outgoing packets"
  2232. msgstr ""
  2233. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:783
  2234. msgid "Enable multicast fast leave"
  2235. msgstr ""
  2236. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:601
  2237. msgid "Enable multicast querier"
  2238. msgstr ""
  2239. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:747
  2240. msgid "Enable multicast support"
  2241. msgstr ""
  2242. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1538
  2243. msgid ""
  2244. "Enable packet steering across all CPUs. May help or hinder network speed."
  2245. msgstr ""
  2246. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:676
  2247. msgid "Enable promiscuous mode"
  2248. msgstr ""
  2249. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:71
  2250. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:66
  2251. msgid "Enable rx checksum"
  2252. msgstr ""
  2253. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:89
  2254. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:94
  2255. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:91
  2256. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:96
  2257. msgid "Enable support for multicast traffic (optional)."
  2258. msgstr ""
  2259. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:83
  2260. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:88
  2261. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:67
  2262. msgid "Enable the DF (Don't Fragment) flag of the encapsulating packets."
  2263. msgstr ""
  2264. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:567
  2265. msgid "Enable the built-in single-instance TFTP server."
  2266. msgstr ""
  2267. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:889
  2268. msgid "Enable this network"
  2269. msgstr ""
  2270. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:75
  2271. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:70
  2272. msgid "Enable tx checksum"
  2273. msgstr ""
  2274. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:767
  2275. msgid "Enable unicast flooding"
  2276. msgstr ""
  2277. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1631
  2278. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:243
  2279. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:353
  2280. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:66
  2281. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:109
  2282. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:118
  2283. msgid "Enabled"
  2284. msgstr "सक्षम केले"
  2285. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:592
  2286. msgid "Enables IGMP snooping on this bridge"
  2287. msgstr ""
  2288. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1551
  2289. msgid ""
  2290. "Enables fast roaming among access points that belong to the same Mobility "
  2291. "Domain"
  2292. msgstr ""
  2293. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:100
  2294. msgid ""
  2295. "Enables more efficient, group aware multicast forwarding infrastructure in "
  2296. "batman-adv."
  2297. msgstr ""
  2298. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:572
  2299. msgid "Enables the Spanning Tree Protocol on this bridge"
  2300. msgstr ""
  2301. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:59
  2302. msgid "Encapsulation limit"
  2303. msgstr ""
  2304. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1577
  2305. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1635
  2306. msgid "Encapsulation mode"
  2307. msgstr ""
  2308. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:159
  2309. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:183
  2310. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1198
  2311. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1842
  2312. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:150
  2313. msgid "Encryption"
  2314. msgstr ""
  2315. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:55
  2316. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:75
  2317. msgid "Endpoint"
  2318. msgstr ""
  2319. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:662
  2320. msgid "Endpoint Host"
  2321. msgstr ""
  2322. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:678
  2323. msgid "Endpoint Port"
  2324. msgstr ""
  2325. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:325
  2326. msgid "Endpoint setting is invalid"
  2327. msgstr ""
  2328. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:752
  2329. msgid "Enforce IGMPv1"
  2330. msgstr ""
  2331. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:753
  2332. msgid "Enforce IGMPv2"
  2333. msgstr ""
  2334. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:754
  2335. msgid "Enforce IGMPv3"
  2336. msgstr ""
  2337. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:759
  2338. msgid "Enforce MLD version 1"
  2339. msgstr ""
  2340. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:760
  2341. msgid "Enforce MLD version 2"
  2342. msgstr ""
  2343. #: modules/luci-compat/luasrc/view/cbi/dropdown.htm:16
  2344. msgid "Enter custom value"
  2345. msgstr ""
  2346. #: modules/luci-compat/luasrc/view/cbi/dropdown.htm:16
  2347. msgid "Enter custom values"
  2348. msgstr ""
  2349. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:97
  2350. msgid "Erasing..."
  2351. msgstr ""
  2352. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:103
  2353. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:104
  2354. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:105
  2355. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:106
  2356. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:107
  2357. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:190
  2358. msgid "Error"
  2359. msgstr ""
  2360. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:170
  2361. msgid "Error getting PublicKey"
  2362. msgstr ""
  2363. #: modules/luci-base/htdocs/luci-static/resources/network.js:3008
  2364. #: modules/luci-compat/luasrc/model/network.lua:1433
  2365. msgid "Ethernet Adapter"
  2366. msgstr ""
  2367. #: modules/luci-base/htdocs/luci-static/resources/network.js:2999
  2368. #: modules/luci-compat/luasrc/model/network.lua:1423
  2369. msgid "Ethernet Switch"
  2370. msgstr ""
  2371. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:272
  2372. msgid "Every 30 seconds (slow, 0)"
  2373. msgstr ""
  2374. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:273
  2375. msgid "Every second (fast, 1)"
  2376. msgstr ""
  2377. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:349
  2378. msgid "Exclude interfaces"
  2379. msgstr ""
  2380. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:160
  2381. msgid ""
  2382. "Execution of various network commands to check the connection and name "
  2383. "resolution to other systems."
  2384. msgstr ""
  2385. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:318
  2386. msgid ""
  2387. "Exempt <code>127.0.0.0/8</code> and <code>::1</code> from rebinding checks, "
  2388. "e.g. for RBL services."
  2389. msgstr ""
  2390. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:410
  2391. msgid "Existing device"
  2392. msgstr ""
  2393. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:495
  2394. msgid "Expand hosts"
  2395. msgstr ""
  2396. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:399
  2397. msgid "Expected port number."
  2398. msgstr ""
  2399. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1053
  2400. msgid "Expecting a hexadecimal assignment hint"
  2401. msgstr ""
  2402. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:19
  2403. msgid "Expecting a valid IPv4 address"
  2404. msgstr ""
  2405. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:19
  2406. msgid "Expecting a valid IPv6 address"
  2407. msgstr ""
  2408. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:808
  2409. msgid "Expecting a valid MAC address, optionally including wildcards"
  2410. msgstr ""
  2411. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:29
  2412. msgid "Expecting two priority values separated by a colon"
  2413. msgstr ""
  2414. #: modules/luci-base/htdocs/luci-static/resources/form.js:2269
  2415. #: modules/luci-base/htdocs/luci-static/resources/validation.js:64
  2416. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:127
  2417. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:133
  2418. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:161
  2419. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:177
  2420. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:181
  2421. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:185
  2422. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:188
  2423. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:192
  2424. msgid "Expecting: %s"
  2425. msgstr ""
  2426. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:50
  2427. msgid "Expecting: non-empty value"
  2428. msgstr ""
  2429. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:50
  2430. msgid "Expires"
  2431. msgstr ""
  2432. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:696
  2433. msgid ""
  2434. "Expiry time of leased addresses, minimum is 2 minutes (<code>2m</code>)."
  2435. msgstr ""
  2436. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:19
  2437. msgid "External"
  2438. msgstr ""
  2439. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1602
  2440. msgid "External R0 Key Holder List"
  2441. msgstr ""
  2442. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1606
  2443. msgid "External R1 Key Holder List"
  2444. msgstr ""
  2445. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:167
  2446. msgid "External system log server"
  2447. msgstr ""
  2448. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:172
  2449. msgid "External system log server port"
  2450. msgstr ""
  2451. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:177
  2452. msgid "External system log server protocol"
  2453. msgstr ""
  2454. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:79
  2455. msgid "Extra SSH command options"
  2456. msgstr ""
  2457. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:68
  2458. msgid "Extra pppd options"
  2459. msgstr ""
  2460. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:66
  2461. msgid "Extra sstpc options"
  2462. msgstr ""
  2463. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1577
  2464. msgid "FT over DS"
  2465. msgstr ""
  2466. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1576
  2467. msgid "FT over the Air"
  2468. msgstr ""
  2469. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1574
  2470. msgid "FT protocol"
  2471. msgstr ""
  2472. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:91
  2473. msgid "Failed Reason"
  2474. msgstr ""
  2475. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:87
  2476. msgid "Failed to change the system password."
  2477. msgstr ""
  2478. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:21
  2479. msgid "Failed to configure modem"
  2480. msgstr ""
  2481. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4556
  2482. msgid "Failed to confirm apply within %ds, waiting for rollback…"
  2483. msgstr ""
  2484. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:22
  2485. msgid "Failed to connect"
  2486. msgstr ""
  2487. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:23
  2488. msgid "Failed to disconnect"
  2489. msgstr ""
  2490. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:37
  2491. msgid "Failed to execute \"/etc/init.d/%s %s\" action: %s"
  2492. msgstr ""
  2493. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:25
  2494. msgid "Failed to get modem information"
  2495. msgstr ""
  2496. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:26
  2497. msgid "Failed to initialize modem"
  2498. msgstr ""
  2499. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:30
  2500. msgid "Failed to set operating mode"
  2501. msgstr ""
  2502. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2732
  2503. msgid "File"
  2504. msgstr ""
  2505. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:504
  2506. msgid ""
  2507. "File listing upstream resolvers, optionally domain-specific, e.g. "
  2508. "<code>server=1.2.3.4</code>, <code>server=/domain/1.2.3.4</code>."
  2509. msgstr ""
  2510. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2679
  2511. msgid "File not accessible"
  2512. msgstr ""
  2513. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:424
  2514. msgid "File to store DHCP lease information."
  2515. msgstr ""
  2516. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:432
  2517. msgid "File with upstream resolvers."
  2518. msgstr ""
  2519. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2870
  2520. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:593
  2521. msgid "Filename"
  2522. msgstr ""
  2523. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:579
  2524. msgid "Filename of the boot image advertised to clients."
  2525. msgstr ""
  2526. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:191
  2527. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:315
  2528. msgid "Filesystem"
  2529. msgstr ""
  2530. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:473
  2531. msgid "Filter IPv4 A records"
  2532. msgstr ""
  2533. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:467
  2534. msgid "Filter IPv6 AAAA records"
  2535. msgstr ""
  2536. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:462
  2537. msgid "Filter SRV/SOA service discovery"
  2538. msgstr ""
  2539. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:457
  2540. msgid "Filter private"
  2541. msgstr ""
  2542. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:389
  2543. msgid "Filtering for all slaves, no validation"
  2544. msgstr ""
  2545. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:390
  2546. msgid "Filtering for all slaves, validation only for active slave"
  2547. msgstr ""
  2548. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:391
  2549. msgid "Filtering for all slaves, validation only for backup slaves"
  2550. msgstr ""
  2551. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:463
  2552. msgid ""
  2553. "Filters SRV/SOA service discovery, to avoid triggering dial-on-demand links."
  2554. msgstr ""
  2555. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:65
  2556. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:24
  2557. msgid "Finalizing failed"
  2558. msgstr ""
  2559. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:150
  2560. msgid ""
  2561. "Find all currently attached filesystems and swap and replace configuration "
  2562. "with defaults based on what was detected"
  2563. msgstr ""
  2564. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:872
  2565. msgid "Find and join network"
  2566. msgstr ""
  2567. #: modules/luci-compat/luasrc/view/cbi/delegator.htm:9
  2568. msgid "Finish"
  2569. msgstr ""
  2570. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:27
  2571. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:43
  2572. msgid "Firewall"
  2573. msgstr ""
  2574. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:201
  2575. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:39
  2576. msgid "Firewall Mark"
  2577. msgstr ""
  2578. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:499
  2579. msgid "Firewall Settings"
  2580. msgstr ""
  2581. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:326
  2582. msgid "Firewall Status"
  2583. msgstr ""
  2584. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:177
  2585. msgid "Firewall mark"
  2586. msgstr ""
  2587. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1594
  2588. msgid "Firmware File"
  2589. msgstr ""
  2590. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:59
  2591. msgid "Firmware Version"
  2592. msgstr ""
  2593. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:532
  2594. msgid "Fixed source port for outbound DNS queries."
  2595. msgstr ""
  2596. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:312
  2597. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:449
  2598. msgid "Flash image..."
  2599. msgstr ""
  2600. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:308
  2601. msgid "Flash image?"
  2602. msgstr ""
  2603. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:439
  2604. msgid "Flash new firmware image"
  2605. msgstr ""
  2606. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:384
  2607. msgid "Flash operations"
  2608. msgstr ""
  2609. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:317
  2610. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:319
  2611. msgid "Flashing…"
  2612. msgstr ""
  2613. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:988
  2614. msgid "Follow IPv4 Lifetime"
  2615. msgstr ""
  2616. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:623
  2617. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:703
  2618. msgid "Force"
  2619. msgstr ""
  2620. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:965
  2621. msgid "Force 40MHz mode"
  2622. msgstr ""
  2623. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1239
  2624. msgid "Force CCMP (AES)"
  2625. msgstr ""
  2626. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:703
  2627. msgid "Force DHCP on this network even if another server is detected."
  2628. msgstr ""
  2629. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:750
  2630. msgid "Force IGMP version"
  2631. msgstr ""
  2632. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:757
  2633. msgid "Force MLD version"
  2634. msgstr ""
  2635. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1240
  2636. msgid "Force TKIP"
  2637. msgstr ""
  2638. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1241
  2639. msgid "Force TKIP and CCMP (AES)"
  2640. msgstr ""
  2641. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:941
  2642. msgid "Force broadcast DHCP response."
  2643. msgstr ""
  2644. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1299
  2645. msgid "Force link"
  2646. msgstr ""
  2647. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:281
  2648. msgid "Force upgrade"
  2649. msgstr ""
  2650. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:90
  2651. msgid "Force use of NAT-T"
  2652. msgstr ""
  2653. #: modules/luci-base/ucode/template/csrftoken.ut:8
  2654. msgid "Form token mismatch"
  2655. msgstr ""
  2656. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:966
  2657. msgid ""
  2658. "Forward <abbr title=\"Neighbour Discovery Protocol\">NDP</abbr> <abbr "
  2659. "title=\"Neighbour Solicitation, Type 135\">NS</abbr> and <abbr "
  2660. "title=\"Neighbour Advertisement, Type 136\">NA</abbr> messages between the "
  2661. "designated master interface and downstream interfaces."
  2662. msgstr ""
  2663. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:810
  2664. msgid ""
  2665. "Forward <abbr title=\"Router Advertisement, ICMPv6 Type 134\">RA</abbr> "
  2666. "messages received on the designated master interface to downstream "
  2667. "interfaces."
  2668. msgstr ""
  2669. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:164
  2670. msgid "Forward DHCP traffic"
  2671. msgstr ""
  2672. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:932
  2673. msgid ""
  2674. "Forward DHCPv6 messages between the designated master interface and "
  2675. "downstream interfaces."
  2676. msgstr ""
  2677. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:161
  2678. msgid "Forward broadcast traffic"
  2679. msgstr ""
  2680. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:581
  2681. msgid "Forward delay"
  2682. msgstr ""
  2683. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:993
  2684. msgid "Forward mesh peer traffic"
  2685. msgstr ""
  2686. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:779
  2687. msgid "Forward multicast packets as unicast packets on this device."
  2688. msgstr ""
  2689. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:944
  2690. msgid "Forward/reverse DNS"
  2691. msgstr ""
  2692. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1642
  2693. msgid "Forwarding mode"
  2694. msgstr ""
  2695. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:80
  2696. msgid "Fragmentation"
  2697. msgstr ""
  2698. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:957
  2699. msgid "Fragmentation Threshold"
  2700. msgstr ""
  2701. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:62
  2702. msgctxt "nft nat flag fully-random"
  2703. msgid "Full port randomization"
  2704. msgstr ""
  2705. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:214
  2706. msgid ""
  2707. "Further information about WireGuard interfaces and peers at <a href='http://"
  2708. "wireguard.com'>wireguard.com</a>."
  2709. msgstr ""
  2710. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:128
  2711. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:184
  2712. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:170
  2713. msgid "GHz"
  2714. msgstr "GHz"
  2715. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:92
  2716. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:82
  2717. msgid "GPRS only"
  2718. msgstr ""
  2719. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:10
  2720. msgid "GRE tunnel over IPv4"
  2721. msgstr ""
  2722. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:10
  2723. msgid "GRE tunnel over IPv6"
  2724. msgstr ""
  2725. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:10
  2726. msgid "GRETAP tunnel over IPv4"
  2727. msgstr ""
  2728. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:10
  2729. msgid "GRETAP tunnel over IPv6"
  2730. msgstr ""
  2731. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:76
  2732. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:44
  2733. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:188
  2734. msgid "Gateway"
  2735. msgstr ""
  2736. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:85
  2737. msgid "Gateway Mode"
  2738. msgstr ""
  2739. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:36
  2740. msgid "Gateway Ports"
  2741. msgstr ""
  2742. #: modules/luci-base/htdocs/luci-static/resources/network.js:11
  2743. #: modules/luci-compat/luasrc/model/network.lua:29
  2744. msgid "Gateway address is invalid"
  2745. msgstr ""
  2746. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:256
  2747. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:494
  2748. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:38
  2749. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:127
  2750. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:240
  2751. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:122
  2752. msgid "General Settings"
  2753. msgstr "सामान्य सेटिंग्ज"
  2754. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:649
  2755. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1629
  2756. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:917
  2757. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:979
  2758. msgid "General Setup"
  2759. msgstr "सामान्य सेटअप"
  2760. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:390
  2761. msgid "General device options"
  2762. msgstr ""
  2763. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:150
  2764. msgid "Generate Config"
  2765. msgstr ""
  2766. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1580
  2767. msgid "Generate PMK locally"
  2768. msgstr ""
  2769. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:396
  2770. msgid "Generate archive"
  2771. msgstr ""
  2772. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:824
  2773. msgid "Generate configuration"
  2774. msgstr ""
  2775. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:864
  2776. msgid "Generate configuration…"
  2777. msgstr ""
  2778. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:109
  2779. msgid "Generate new key pair"
  2780. msgstr ""
  2781. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:621
  2782. msgid "Generate preshared key"
  2783. msgstr ""
  2784. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:691
  2785. msgid "Generates a configuration suitable for import on a WireGuard peer"
  2786. msgstr ""
  2787. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:798
  2788. msgid "Generating QR code…"
  2789. msgstr ""
  2790. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:79
  2791. msgid "Given password confirmation did not match, password not changed!"
  2792. msgstr ""
  2793. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:146
  2794. msgid "Global Settings"
  2795. msgstr ""
  2796. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1531
  2797. msgid "Global network options"
  2798. msgstr ""
  2799. #: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:70
  2800. #: themes/luci-theme-material/ucode/template/themes/material/header.ut:90
  2801. #: themes/luci-theme-librecmc-2020/ucode/template/themes/librecmc2020/header.ut:67
  2802. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:92
  2803. msgid "Go to firmware upgrade..."
  2804. msgstr ""
  2805. #: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:60
  2806. #: themes/luci-theme-material/ucode/template/themes/material/header.ut:80
  2807. #: themes/luci-theme-librecmc-2020/ucode/template/themes/librecmc2020/header.ut:57
  2808. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:82
  2809. msgid "Go to password configuration..."
  2810. msgstr ""
  2811. #: modules/luci-base/htdocs/luci-static/resources/form.js:2640
  2812. #: modules/luci-base/htdocs/luci-static/resources/form.js:3753
  2813. #: modules/luci-compat/luasrc/view/cbi/full_valueheader.htm:4
  2814. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:58
  2815. msgid "Go to relevant configuration page"
  2816. msgstr ""
  2817. #: modules/luci-mod-network/root/usr/share/rpcd/acl.d/luci-mod-network.json:39
  2818. msgid "Grant access to DHCP configuration"
  2819. msgstr ""
  2820. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status-index.json:23
  2821. msgid "Grant access to DHCP status display"
  2822. msgstr ""
  2823. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status-index.json:32
  2824. msgid "Grant access to DSL status display"
  2825. msgstr ""
  2826. #: protocols/luci-proto-openconnect/root/usr/share/rpcd/acl.d/luci-openconnect.json:3
  2827. msgid "Grant access to LuCI OpenConnect procedures"
  2828. msgstr ""
  2829. #: protocols/luci-proto-wireguard/root/usr/share/rpcd/acl.d/luci-wireguard.json:3
  2830. msgid "Grant access to LuCI Wireguard procedures"
  2831. msgstr ""
  2832. #: protocols/luci-proto-openfortivpn/root/usr/share/rpcd/acl.d/luci-openfortivpn.json:3
  2833. msgid "Grant access to LuCI openfortivpn procedures"
  2834. msgstr ""
  2835. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:20
  2836. msgid "Grant access to SSH configuration"
  2837. msgstr ""
  2838. #: modules/luci-base/root/usr/share/rpcd/acl.d/luci-base.json:12
  2839. msgid "Grant access to basic LuCI procedures"
  2840. msgstr ""
  2841. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:79
  2842. msgid "Grant access to crontab configuration"
  2843. msgstr ""
  2844. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:70
  2845. msgid "Grant access to firewall status"
  2846. msgstr ""
  2847. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:132
  2848. msgid "Grant access to flash operations"
  2849. msgstr ""
  2850. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status-index.json:3
  2851. msgid "Grant access to main status display"
  2852. msgstr ""
  2853. #: protocols/luci-proto-modemmanager/root/usr/share/rpcd/acl.d/luci-proto-modemmanager.json:3
  2854. msgid "Grant access to mmcli"
  2855. msgstr ""
  2856. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:100
  2857. msgid "Grant access to mount configuration"
  2858. msgstr ""
  2859. #: modules/luci-mod-network/root/usr/share/rpcd/acl.d/luci-mod-network.json:3
  2860. msgid "Grant access to network configuration"
  2861. msgstr ""
  2862. #: modules/luci-mod-network/root/usr/share/rpcd/acl.d/luci-mod-network.json:52
  2863. msgid "Grant access to network diagnostic tools"
  2864. msgstr ""
  2865. #: modules/luci-base/root/usr/share/rpcd/acl.d/luci-base.json:36
  2866. msgid "Grant access to network status information"
  2867. msgstr ""
  2868. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status-index.json:41
  2869. msgid "Grant access to port status display"
  2870. msgstr ""
  2871. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:13
  2872. msgid "Grant access to process status"
  2873. msgstr ""
  2874. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:3
  2875. msgid "Grant access to realtime statistics"
  2876. msgstr ""
  2877. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:47
  2878. msgid "Grant access to routing status"
  2879. msgstr ""
  2880. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:57
  2881. msgid "Grant access to startup configuration"
  2882. msgstr ""
  2883. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:3
  2884. msgid "Grant access to system configuration"
  2885. msgstr ""
  2886. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:30
  2887. msgid "Grant access to system logs"
  2888. msgstr ""
  2889. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:43
  2890. msgid "Grant access to uHTTPd configuration"
  2891. msgstr ""
  2892. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:61
  2893. msgid "Grant access to wireless channel status"
  2894. msgstr ""
  2895. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status-index.json:50
  2896. msgid "Grant access to wireless status display"
  2897. msgstr ""
  2898. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:66
  2899. msgid "Group Password"
  2900. msgstr ""
  2901. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:22
  2902. msgid "Guest"
  2903. msgstr ""
  2904. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:81
  2905. msgid "HE.net password"
  2906. msgstr ""
  2907. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:73
  2908. msgid "HE.net username"
  2909. msgstr ""
  2910. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/uhttpd.js:9
  2911. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:64
  2912. msgid "HTTP(S) Access"
  2913. msgstr ""
  2914. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:46
  2915. msgid "Hang Up"
  2916. msgstr ""
  2917. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/heartbeat.js:6
  2918. msgid "Heartbeat interval (kernel: heartbeat)"
  2919. msgstr ""
  2920. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:576
  2921. msgid "Hello interval"
  2922. msgstr ""
  2923. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:114
  2924. msgid ""
  2925. "Here you can configure the basic aspects of your device like its hostname or "
  2926. "the timezone."
  2927. msgstr ""
  2928. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1135
  2929. msgid "Hide <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>"
  2930. msgstr ""
  2931. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:293
  2932. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:332
  2933. msgid "Hide empty chains"
  2934. msgstr ""
  2935. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:950
  2936. msgid "High"
  2937. msgstr ""
  2938. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:707
  2939. msgid "Honor gratuitous ARP"
  2940. msgstr ""
  2941. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:593
  2942. msgctxt "Chain hook description"
  2943. msgid "Hook: <strong>%h</strong> (%h), Priority: <strong>%d</strong>"
  2944. msgstr ""
  2945. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:92
  2946. msgid "Hop Penalty"
  2947. msgstr ""
  2948. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:57
  2949. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2258
  2950. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:134
  2951. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:234
  2952. msgid "Host"
  2953. msgstr ""
  2954. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:171
  2955. msgid "Host expiry timeout"
  2956. msgstr ""
  2957. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:594
  2958. msgid "Host requests this filename from the boot server."
  2959. msgstr ""
  2960. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:88
  2961. msgid "Host-Uniq tag content"
  2962. msgstr ""
  2963. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:894
  2964. msgid ""
  2965. "Host-specific lease time, e.g. <code>5m</code>, <code>3h</code>, <code>7d</"
  2966. "code>."
  2967. msgstr ""
  2968. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:38
  2969. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:732
  2970. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:785
  2971. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:55
  2972. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:87
  2973. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:135
  2974. msgid "Hostname"
  2975. msgstr "होस्टनाव"
  2976. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:22
  2977. msgid "Hostname to send when requesting DHCP"
  2978. msgstr ""
  2979. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:260
  2980. msgid "Hostnames"
  2981. msgstr ""
  2982. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:724
  2983. msgid ""
  2984. "Hostnames are used to bind a domain name to an IP address. This setting is "
  2985. "redundant for hostnames already configured with static leases, but it can be "
  2986. "useful to rebind an FQDN."
  2987. msgstr ""
  2988. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/timer.js:19
  2989. msgid "How long (in milliseconds) the LED should be off"
  2990. msgstr ""
  2991. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/timer.js:13
  2992. msgid "How long (in milliseconds) the LED should be on"
  2993. msgstr ""
  2994. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:276
  2995. msgid "Human-readable counters"
  2996. msgstr ""
  2997. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:24
  2998. msgid "Hybrid"
  2999. msgstr ""
  3000. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:49
  3001. msgctxt "nft icmp code"
  3002. msgid "ICMP code"
  3003. msgstr ""
  3004. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:50
  3005. msgctxt "nft icmp type"
  3006. msgid "ICMP type"
  3007. msgstr ""
  3008. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:51
  3009. msgctxt "nft icmpv6 code"
  3010. msgid "ICMPv6 code"
  3011. msgstr ""
  3012. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:52
  3013. msgctxt "nft icmpv6 type"
  3014. msgid "ICMPv6 type"
  3015. msgstr ""
  3016. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:53
  3017. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:48
  3018. msgid "ID used to uniquely identify the VXLAN"
  3019. msgstr ""
  3020. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:208
  3021. msgid "IEEE 802.3ad Dynamic link aggregation (802.3ad, 4)"
  3022. msgstr ""
  3023. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:75
  3024. msgid "IKE DH Group"
  3025. msgstr ""
  3026. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:86
  3027. msgid "IMEI"
  3028. msgstr ""
  3029. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:181
  3030. msgid "IP Addresses"
  3031. msgstr ""
  3032. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:85
  3033. msgid "IP Protocol"
  3034. msgstr ""
  3035. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:261
  3036. msgid "IP Sets"
  3037. msgstr ""
  3038. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:136
  3039. msgid "IP Type"
  3040. msgstr ""
  3041. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:736
  3042. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:178
  3043. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:204
  3044. msgid "IP address"
  3045. msgstr ""
  3046. #: modules/luci-base/htdocs/luci-static/resources/network.js:10
  3047. #: modules/luci-compat/luasrc/model/network.lua:28
  3048. msgid "IP address is invalid"
  3049. msgstr ""
  3050. #: modules/luci-base/htdocs/luci-static/resources/network.js:13
  3051. #: modules/luci-compat/luasrc/model/network.lua:31
  3052. msgid "IP address is missing"
  3053. msgstr ""
  3054. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:781
  3055. msgid ""
  3056. "IP addresses that are allowed inside the tunnel. The peer will accept "
  3057. "tunnelled packets with source IP addresses matching this list and route back "
  3058. "packets with matching destination IP."
  3059. msgstr ""
  3060. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:36
  3061. msgctxt "nft ip protocol"
  3062. msgid "IP protocol"
  3063. msgstr ""
  3064. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:14
  3065. msgctxt "nft meta l4proto"
  3066. msgid "IP protocol"
  3067. msgstr ""
  3068. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:762
  3069. msgid "IP set"
  3070. msgstr ""
  3071. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:306
  3072. msgid "IP sets"
  3073. msgstr ""
  3074. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:518
  3075. msgid "IPs to override with NXDOMAIN"
  3076. msgstr ""
  3077. #: protocols/luci-proto-xfrm/htdocs/luci-static/resources/protocol/xfrm.js:9
  3078. msgid "IPsec XFRM"
  3079. msgstr ""
  3080. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:87
  3081. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:110
  3082. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:86
  3083. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:87
  3084. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:88
  3085. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:89
  3086. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:90
  3087. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:96
  3088. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:87
  3089. msgid "IPv4"
  3090. msgstr "IPv4"
  3091. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:351
  3092. msgid "IPv4 Firewall"
  3093. msgstr ""
  3094. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:252
  3095. msgid "IPv4 Neighbours"
  3096. msgstr ""
  3097. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:251
  3098. msgid "IPv4 Routing"
  3099. msgstr ""
  3100. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:121
  3101. msgid "IPv4 Rules"
  3102. msgstr ""
  3103. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:29
  3104. msgid "IPv4 Upstream"
  3105. msgstr ""
  3106. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:178
  3107. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:39
  3108. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:859
  3109. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:88
  3110. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:164
  3111. msgid "IPv4 address"
  3112. msgstr ""
  3113. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:29
  3114. msgid "IPv4 assignment length"
  3115. msgstr ""
  3116. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:181
  3117. msgid "IPv4 broadcast"
  3118. msgstr ""
  3119. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:180
  3120. msgid "IPv4 gateway"
  3121. msgstr ""
  3122. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:179
  3123. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:170
  3124. msgid "IPv4 netmask"
  3125. msgstr ""
  3126. #: modules/luci-base/htdocs/luci-static/resources/validation.js:305
  3127. msgid "IPv4 network in address/netmask notation"
  3128. msgstr ""
  3129. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:138
  3130. msgid "IPv4 only"
  3131. msgstr "केवळ IPv4"
  3132. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:52
  3133. msgid "IPv4 prefix"
  3134. msgstr ""
  3135. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:61
  3136. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:55
  3137. msgid "IPv4 prefix length"
  3138. msgstr ""
  3139. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:625
  3140. msgid "IPv4 traffic table \"%h\""
  3141. msgstr ""
  3142. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:88
  3143. msgid "IPv4+IPv6"
  3144. msgstr ""
  3145. #: modules/luci-compat/luasrc/model/network/proto_ipip.lua:9
  3146. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:10
  3147. msgid "IPv4-in-IPv4 (RFC2003)"
  3148. msgstr ""
  3149. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:95
  3150. msgid "IPv4/IPv6"
  3151. msgstr ""
  3152. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:137
  3153. msgid "IPv4/IPv6 (both - defaults to IPv4)"
  3154. msgstr ""
  3155. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:633
  3156. msgid "IPv4/IPv6 traffic table \"%h\""
  3157. msgstr ""
  3158. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:88
  3159. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:111
  3160. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:91
  3161. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:92
  3162. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:93
  3163. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:94
  3164. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:95
  3165. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:96
  3166. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:97
  3167. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:98
  3168. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:99
  3169. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:100
  3170. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:97
  3171. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:89
  3172. msgid "IPv6"
  3173. msgstr ""
  3174. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:354
  3175. msgid "IPv6 Firewall"
  3176. msgstr ""
  3177. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:737
  3178. msgid "IPv6 MTU"
  3179. msgstr ""
  3180. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:262
  3181. msgid "IPv6 Neighbours"
  3182. msgstr ""
  3183. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:979
  3184. msgid "IPv6 Prefix Lifetime"
  3185. msgstr ""
  3186. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:652
  3187. msgid "IPv6 RA Settings"
  3188. msgstr ""
  3189. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:261
  3190. msgid "IPv6 Routing"
  3191. msgstr ""
  3192. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:121
  3193. msgid "IPv6 Rules"
  3194. msgstr ""
  3195. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:651
  3196. msgid "IPv6 Settings"
  3197. msgstr ""
  3198. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1535
  3199. msgid "IPv6 ULA-Prefix"
  3200. msgstr ""
  3201. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:29
  3202. msgid "IPv6 Upstream"
  3203. msgstr ""
  3204. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:183
  3205. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:58
  3206. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:135
  3207. msgid "IPv6 address"
  3208. msgstr ""
  3209. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1044
  3210. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:27
  3211. msgid "IPv6 assignment hint"
  3212. msgstr ""
  3213. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1039
  3214. msgid "IPv6 assignment length"
  3215. msgstr ""
  3216. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:188
  3217. msgid "IPv6 gateway"
  3218. msgstr ""
  3219. #: modules/luci-base/htdocs/luci-static/resources/validation.js:310
  3220. msgid "IPv6 network in address/netmask notation"
  3221. msgstr ""
  3222. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:139
  3223. msgid "IPv6 only"
  3224. msgstr "केवळ IPv6"
  3225. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1088
  3226. msgid "IPv6 preference"
  3227. msgstr ""
  3228. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:53
  3229. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:59
  3230. msgid "IPv6 prefix"
  3231. msgstr ""
  3232. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1061
  3233. msgid "IPv6 prefix filter"
  3234. msgstr ""
  3235. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:57
  3236. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:63
  3237. msgid "IPv6 prefix length"
  3238. msgstr ""
  3239. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:192
  3240. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:57
  3241. msgid "IPv6 routed prefix"
  3242. msgstr ""
  3243. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1032
  3244. msgid "IPv6 source routing"
  3245. msgstr ""
  3246. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1084
  3247. msgid "IPv6 suffix"
  3248. msgstr ""
  3249. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:51
  3250. msgid "IPv6 support"
  3251. msgstr ""
  3252. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:629
  3253. msgid "IPv6 traffic table \"%h\""
  3254. msgstr ""
  3255. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:101
  3256. msgid "IPv6-PD"
  3257. msgstr ""
  3258. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:911
  3259. msgid "IPv6-Suffix (hex)"
  3260. msgstr ""
  3261. #: modules/luci-compat/luasrc/model/network/proto_6x4.lua:13
  3262. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:10
  3263. msgid "IPv6-in-IPv4 (RFC4213)"
  3264. msgstr ""
  3265. #: modules/luci-compat/luasrc/model/network/proto_6x4.lua:17
  3266. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:9
  3267. msgid "IPv6-over-IPv4 (6rd)"
  3268. msgstr ""
  3269. #: modules/luci-compat/luasrc/model/network/proto_6x4.lua:15
  3270. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6to4.js:9
  3271. msgid "IPv6-over-IPv4 (6to4)"
  3272. msgstr ""
  3273. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1764
  3274. msgid "Identity"
  3275. msgstr ""
  3276. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:923
  3277. msgid ""
  3278. "If a host matches an entry which cannot be used because it specifies an "
  3279. "address on a different subnet, the tag <em>known-othernet</em> is set."
  3280. msgstr ""
  3281. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:96
  3282. msgid "If checked, 1DES is enabled"
  3283. msgstr ""
  3284. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:51
  3285. msgid "If checked, adds \"+ipv6\" to the pppd options"
  3286. msgstr ""
  3287. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:93
  3288. msgid "If checked, encryption is disabled"
  3289. msgstr ""
  3290. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1061
  3291. msgid ""
  3292. "If set, downstream subnets are only allocated from the given IPv6 prefix "
  3293. "classes."
  3294. msgstr ""
  3295. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:197
  3296. msgid "If set, the meaning of the match options is inverted"
  3297. msgstr ""
  3298. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:255
  3299. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:361
  3300. msgid ""
  3301. "If specified, mount the device by its UUID instead of a fixed device node"
  3302. msgstr ""
  3303. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:268
  3304. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:377
  3305. msgid ""
  3306. "If specified, mount the device by the partition label instead of a fixed "
  3307. "device node"
  3308. msgstr ""
  3309. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4700
  3310. msgid ""
  3311. "If the IP address used to access LuCI changes, a <strong>manual reconnect to "
  3312. "the new IP</strong> is required within %d seconds to confirm the settings, "
  3313. "otherwise modifications will be reverted."
  3314. msgstr ""
  3315. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:995
  3316. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:134
  3317. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:156
  3318. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:122
  3319. msgid "If unchecked, no default route is configured"
  3320. msgstr ""
  3321. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:999
  3322. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:145
  3323. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:160
  3324. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:133
  3325. msgid "If unchecked, the advertised DNS server addresses are ignored"
  3326. msgstr ""
  3327. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:340
  3328. msgid ""
  3329. "If your physical memory is insufficient unused data can be temporarily "
  3330. "swapped to a swap-device resulting in a higher amount of usable <abbr "
  3331. "title=\"Random Access Memory\">RAM</abbr>. Be aware that swapping data is a "
  3332. "very slow process as the swap-device cannot be accessed with the high "
  3333. "datarates of the <abbr title=\"Random Access Memory\">RAM</abbr>."
  3334. msgstr ""
  3335. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:860
  3336. msgid "Ignore"
  3337. msgstr ""
  3338. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:438
  3339. msgid "Ignore <code>/etc/hosts</code>"
  3340. msgstr ""
  3341. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:683
  3342. msgid "Ignore interface"
  3343. msgstr ""
  3344. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:922
  3345. msgid "Ignore requests from unknown machines using <em>!known</em>."
  3346. msgstr ""
  3347. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:427
  3348. msgid "Ignore resolv file"
  3349. msgstr ""
  3350. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:447
  3351. msgid "Image"
  3352. msgstr ""
  3353. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:273
  3354. msgid "Image check failed:"
  3355. msgstr ""
  3356. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:476
  3357. msgid "Import as peer"
  3358. msgstr ""
  3359. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:188
  3360. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:476
  3361. msgid "Import configuration"
  3362. msgstr ""
  3363. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:504
  3364. msgid "Import configuration as peer…"
  3365. msgstr ""
  3366. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:490
  3367. msgid "Import settings"
  3368. msgstr ""
  3369. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:376
  3370. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:403
  3371. msgid "Imported peer configuration"
  3372. msgstr ""
  3373. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:188
  3374. msgid "Imports settings from an existing WireGuard configuration file"
  3375. msgstr ""
  3376. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:68
  3377. msgid "In"
  3378. msgstr ""
  3379. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:801
  3380. msgid ""
  3381. "In DHCPv4, it is possible to include more than one mac address. This allows "
  3382. "an IP address to be associated with multiple macaddrs, and dnsmasq abandons "
  3383. "a DHCP lease to one of the macaddrs when another asks for a lease. It only "
  3384. "works reliably if only one of the macaddrs is active at any time."
  3385. msgstr ""
  3386. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:71
  3387. msgid ""
  3388. "In bridged LAN setups it is advisable to enable the bridge loop avoidance in "
  3389. "order to avoid broadcast loops that can bring the entire LAN to a standstill."
  3390. msgstr ""
  3391. #: modules/luci-base/ucode/template/csrftoken.ut:13
  3392. msgid ""
  3393. "In order to prevent unauthorized access to the system, your request has been "
  3394. "blocked. Click \"Continue »\" below to return to the previous page."
  3395. msgstr ""
  3396. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:146
  3397. msgid "In seconds"
  3398. msgstr ""
  3399. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:156
  3400. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:128
  3401. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:114
  3402. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:92
  3403. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:101
  3404. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:124
  3405. msgid "Inactivity timeout"
  3406. msgstr ""
  3407. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:267
  3408. msgid "Inbound:"
  3409. msgstr ""
  3410. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:262
  3411. msgid ""
  3412. "Include in backup a list of current installed packages at /etc/backup/"
  3413. "installed_packages.txt"
  3414. msgstr ""
  3415. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:100
  3416. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:105
  3417. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:102
  3418. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:107
  3419. msgid "Incoming checksum"
  3420. msgstr ""
  3421. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:145
  3422. msgid "Incoming interface"
  3423. msgstr ""
  3424. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:92
  3425. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:97
  3426. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:94
  3427. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:99
  3428. #: protocols/luci-proto-vti/htdocs/luci-static/resources/protocol/vti.js:64
  3429. msgid "Incoming key"
  3430. msgstr ""
  3431. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:102
  3432. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:107
  3433. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:104
  3434. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:109
  3435. msgid "Incoming serialization"
  3436. msgstr ""
  3437. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:187
  3438. msgid "Info"
  3439. msgstr ""
  3440. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:102
  3441. msgid "Information"
  3442. msgstr ""
  3443. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:510
  3444. msgid "Ingress QoS mapping"
  3445. msgstr ""
  3446. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:11
  3447. msgctxt "nft meta iif"
  3448. msgid "Ingress device id"
  3449. msgstr ""
  3450. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:9
  3451. msgctxt "nft meta iifname"
  3452. msgid "Ingress device name"
  3453. msgstr ""
  3454. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:67
  3455. msgid "Initialization failure"
  3456. msgstr ""
  3457. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:77
  3458. msgid "Initscript"
  3459. msgstr ""
  3460. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:111
  3461. msgid "Initscripts"
  3462. msgstr ""
  3463. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1748
  3464. msgid "Inner certificate constraint (Domain)"
  3465. msgstr ""
  3466. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1745
  3467. msgid "Inner certificate constraint (SAN)"
  3468. msgstr ""
  3469. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1742
  3470. msgid "Inner certificate constraint (Subject)"
  3471. msgstr ""
  3472. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1751
  3473. msgid "Inner certificate constraint (Wildcard)"
  3474. msgstr ""
  3475. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:317
  3476. msgid "Install protocol extensions..."
  3477. msgstr ""
  3478. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:628
  3479. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:930
  3480. msgid "Instance"
  3481. msgstr ""
  3482. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:125
  3483. msgctxt "WireGuard instance heading"
  3484. msgid "Instance \"%h\""
  3485. msgstr ""
  3486. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:34
  3487. msgid "Instance Details"
  3488. msgstr ""
  3489. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2126
  3490. msgid ""
  3491. "Instead of joining any network with a matching SSID, only connect to the "
  3492. "BSSID <code>%h</code>."
  3493. msgstr ""
  3494. #: modules/luci-compat/luasrc/view/cbi/map.htm:43
  3495. msgid "Insufficient permissions to read UCI configuration."
  3496. msgstr ""
  3497. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:136
  3498. msgid "Integrated Circuit Card Identifier"
  3499. msgstr ""
  3500. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:41
  3501. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:180
  3502. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:206
  3503. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:17
  3504. msgid "Interface"
  3505. msgstr "इंटरफेस"
  3506. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:735
  3507. msgid "Interface \"%h\" is already marked as designated master."
  3508. msgstr ""
  3509. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:62
  3510. msgid "Interface %q device auto-migrated from %q to %q."
  3511. msgstr ""
  3512. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:975
  3513. msgid "Interface Configuration"
  3514. msgstr ""
  3515. #: protocols/luci-proto-xfrm/htdocs/luci-static/resources/protocol/xfrm.js:39
  3516. msgid "Interface ID"
  3517. msgstr ""
  3518. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:111
  3519. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:151
  3520. msgid "Interface has %d pending changes"
  3521. msgstr ""
  3522. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:92
  3523. msgid "Interface is disabled"
  3524. msgstr ""
  3525. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:65
  3526. msgid "Interface is marked for deletion"
  3527. msgstr ""
  3528. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:210
  3529. msgid "Interface is reconnecting..."
  3530. msgstr ""
  3531. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:194
  3532. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:204
  3533. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:210
  3534. msgid "Interface is shutting down..."
  3535. msgstr ""
  3536. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:302
  3537. msgid "Interface is starting..."
  3538. msgstr ""
  3539. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:305
  3540. msgid "Interface is stopping..."
  3541. msgstr ""
  3542. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1153
  3543. msgid "Interface name"
  3544. msgstr "इंटरफेस नाव"
  3545. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:123
  3546. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:321
  3547. msgid "Interface not present or not connected yet."
  3548. msgstr ""
  3549. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:479
  3550. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:508
  3551. #: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:38
  3552. msgid "Interfaces"
  3553. msgstr "इंटरफेसेस"
  3554. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:20
  3555. msgid "Internal"
  3556. msgstr ""
  3557. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:85
  3558. msgid "International Mobile Station Equipment Identity"
  3559. msgstr ""
  3560. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:139
  3561. msgid "International Mobile Subscriber Identity"
  3562. msgstr ""
  3563. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:285
  3564. msgid "Interval For Sending Learning Packets"
  3565. msgstr ""
  3566. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:610
  3567. msgid ""
  3568. "Interval in centiseconds between multicast general queries. By varying the "
  3569. "value, an administrator may tune the number of IGMP messages on the subnet; "
  3570. "larger values cause IGMP Queries to be sent less often"
  3571. msgstr ""
  3572. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:576
  3573. msgid "Interval in seconds for STP hello packets"
  3574. msgstr ""
  3575. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:192
  3576. #: modules/luci-compat/luasrc/view/cbi/tsection.htm:42
  3577. msgid "Invalid"
  3578. msgstr ""
  3579. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:101
  3580. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:68
  3581. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:71
  3582. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:97
  3583. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:74
  3584. msgid "Invalid APN provided"
  3585. msgstr ""
  3586. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:37
  3587. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:40
  3588. msgid "Invalid Base64 key string"
  3589. msgstr ""
  3590. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:117
  3591. msgid "Invalid IPv6 address"
  3592. msgstr ""
  3593. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:78
  3594. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:83
  3595. msgid "Invalid TOS value, expected 00..FF or inherit"
  3596. msgstr ""
  3597. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:83
  3598. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:88
  3599. msgid "Invalid Traffic Class value, expected 00..FF or inherit"
  3600. msgstr ""
  3601. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:285
  3602. msgid "Invalid VLAN ID given! Only IDs between %d and %d are allowed."
  3603. msgstr ""
  3604. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:294
  3605. msgid "Invalid VLAN ID given! Only unique IDs are allowed"
  3606. msgstr ""
  3607. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:403
  3608. msgid "Invalid argument"
  3609. msgstr ""
  3610. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:11
  3611. msgid ""
  3612. "Invalid bearer list. Possibly too many bearers created. This protocol "
  3613. "supports one and only one bearer."
  3614. msgstr ""
  3615. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:402
  3616. msgid "Invalid command"
  3617. msgstr ""
  3618. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:205
  3619. msgid "Invalid hexadecimal value"
  3620. msgstr ""
  3621. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:126
  3622. msgid "Invalid hostname or IPv4 address"
  3623. msgstr ""
  3624. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:134
  3625. msgid "Invalid port"
  3626. msgstr ""
  3627. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:108
  3628. msgid "Invalid server URL"
  3629. msgstr ""
  3630. #: modules/luci-base/ucode/template/sysauth.ut:12
  3631. #: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:32
  3632. msgid "Invalid username and/or password! Please try again."
  3633. msgstr ""
  3634. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/heartbeat.js:13
  3635. msgid "Invert blinking"
  3636. msgstr ""
  3637. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:197
  3638. msgid "Invert match"
  3639. msgstr ""
  3640. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:223
  3641. msgctxt "VLAN port state"
  3642. msgid "Is Primary VLAN"
  3643. msgstr ""
  3644. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1149
  3645. msgid "Isolate Clients"
  3646. msgstr ""
  3647. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:236
  3648. msgid ""
  3649. "It appears that you are trying to flash an image that does not fit into the "
  3650. "flash memory, please verify the image file!"
  3651. msgstr ""
  3652. #: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:77
  3653. #: themes/luci-theme-material/ucode/template/themes/material/header.ut:97
  3654. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:72
  3655. msgid "JavaScript required!"
  3656. msgstr ""
  3657. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1922
  3658. msgid "Join Network"
  3659. msgstr ""
  3660. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1856
  3661. msgid "Join Network: Wireless Scan"
  3662. msgstr ""
  3663. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2134
  3664. msgid "Joining Network: %q"
  3665. msgstr ""
  3666. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:172
  3667. msgid "Jump to rule"
  3668. msgstr ""
  3669. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:228
  3670. msgid "Keep settings and retain the current configuration"
  3671. msgstr ""
  3672. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:60
  3673. msgid "Keep-Alive"
  3674. msgstr ""
  3675. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/dmesg.js:20
  3676. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:84
  3677. msgid "Kernel Log"
  3678. msgstr ""
  3679. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:60
  3680. msgid "Kernel Version"
  3681. msgstr ""
  3682. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1489
  3683. msgid "Key"
  3684. msgstr ""
  3685. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1517
  3686. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1518
  3687. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1519
  3688. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1520
  3689. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1532
  3690. msgid "Key #%d"
  3691. msgstr ""
  3692. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:92
  3693. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:97
  3694. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:94
  3695. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:99
  3696. #: protocols/luci-proto-vti/htdocs/luci-static/resources/protocol/vti.js:64
  3697. msgid "Key for incoming packets (optional)."
  3698. msgstr ""
  3699. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:96
  3700. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:101
  3701. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:98
  3702. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:103
  3703. #: protocols/luci-proto-vti/htdocs/luci-static/resources/protocol/vti.js:68
  3704. msgid "Key for outgoing packets (optional)."
  3705. msgstr ""
  3706. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:549
  3707. msgctxt "Label indicating that WireGuard peer lacks public key"
  3708. msgid "Key missing"
  3709. msgstr ""
  3710. #: protocols/luci-proto-unet/htdocs/luci-static/resources/protocol/unet.js:44
  3711. msgid "Key used to sign network config"
  3712. msgstr ""
  3713. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:71
  3714. msgctxt "nft unit"
  3715. msgid "KiB"
  3716. msgstr ""
  3717. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:54
  3718. msgid "Kill"
  3719. msgstr ""
  3720. #: modules/luci-compat/luasrc/model/network/proto_ppp.lua:21
  3721. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:10
  3722. msgid "L2TP"
  3723. msgstr ""
  3724. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:40
  3725. msgid "L2TP Server"
  3726. msgstr ""
  3727. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:269
  3728. msgid "LACPDU Packets"
  3729. msgstr ""
  3730. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:130
  3731. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:102
  3732. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:88
  3733. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:62
  3734. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:75
  3735. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:98
  3736. msgid "LCP echo failure threshold"
  3737. msgstr ""
  3738. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:143
  3739. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:115
  3740. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:101
  3741. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:75
  3742. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:88
  3743. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:111
  3744. msgid "LCP echo interval"
  3745. msgstr ""
  3746. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:115
  3747. msgid "LED Configuration"
  3748. msgstr ""
  3749. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1636
  3750. msgid "LLC"
  3751. msgstr ""
  3752. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:268
  3753. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:377
  3754. msgid "Label"
  3755. msgstr ""
  3756. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:225
  3757. msgid "Language"
  3758. msgstr ""
  3759. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:125
  3760. msgid "Language and Style"
  3761. msgstr ""
  3762. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:641
  3763. msgid ""
  3764. "Larger weights (of the same prio) are given a proportionately higher "
  3765. "probability of being selected."
  3766. msgstr ""
  3767. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:629
  3768. msgid "Last member interval"
  3769. msgstr ""
  3770. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:59
  3771. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:78
  3772. msgid "Latest Handshake"
  3773. msgstr ""
  3774. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:21
  3775. msgid "Leaf"
  3776. msgstr ""
  3777. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:775
  3778. msgid "Learn"
  3779. msgstr ""
  3780. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:970
  3781. msgid "Learn routes"
  3782. msgstr ""
  3783. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:423
  3784. msgid "Lease file"
  3785. msgstr ""
  3786. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:893
  3787. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:696
  3788. msgid "Lease time"
  3789. msgstr ""
  3790. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:41
  3791. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:60
  3792. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:90
  3793. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:137
  3794. msgid "Lease time remaining"
  3795. msgstr ""
  3796. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:41
  3797. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:47
  3798. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:50
  3799. msgid "Leave empty to autodetect"
  3800. msgstr ""
  3801. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:40
  3802. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:39
  3803. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6to4.js:39
  3804. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:45
  3805. msgid "Leave empty to use the current WAN address"
  3806. msgstr ""
  3807. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:938
  3808. msgid ""
  3809. "Legacy or badly behaving devices may require legacy 802.11b rates to "
  3810. "interoperate. Airtime efficiency may be significantly reduced where these "
  3811. "are used. It is recommended to not allow 802.11b rates where possible."
  3812. msgstr ""
  3813. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:677
  3814. msgid "Legacy rules detected"
  3815. msgstr ""
  3816. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4438
  3817. msgid "Legend:"
  3818. msgstr ""
  3819. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:691
  3820. msgid "Limit"
  3821. msgstr ""
  3822. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:25
  3823. msgid "Line Mode"
  3824. msgstr ""
  3825. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:24
  3826. msgid "Line State"
  3827. msgstr ""
  3828. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:26
  3829. msgid "Line Uptime"
  3830. msgstr ""
  3831. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:125
  3832. msgid "Link Aggregation (Channel Bonding)"
  3833. msgstr ""
  3834. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:349
  3835. msgid "Link Monitoring"
  3836. msgstr ""
  3837. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:24
  3838. msgid "Link On"
  3839. msgstr ""
  3840. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:77
  3841. msgctxt "nft @ll,off,len"
  3842. msgid "Link layer header bits %d-%d"
  3843. msgstr ""
  3844. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519
  3845. msgid "List of IP addresses to convert into NXDOMAIN responses."
  3846. msgstr ""
  3847. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:307
  3848. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:754
  3849. msgid ""
  3850. "List of IP sets to populate with the IPs of DNS lookup results of the FQDNs "
  3851. "also specified here."
  3852. msgstr ""
  3853. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1602
  3854. msgid ""
  3855. "List of R0KHs in the same Mobility Domain. <br />Format: MAC-address,NAS-"
  3856. "Identifier,128-bit key as hex string. <br />This list is used to map R0KH-ID "
  3857. "(NAS Identifier) to a destination MAC address when requesting PMK-R1 key "
  3858. "from the R0KH that the STA used during the Initial Mobility Domain "
  3859. "Association."
  3860. msgstr ""
  3861. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1606
  3862. msgid ""
  3863. "List of R1KHs in the same Mobility Domain. <br />Format: MAC-address,R1KH-ID "
  3864. "as 6 octets with colons,128-bit key as hex string. <br />This list is used "
  3865. "to map R1KH-ID to a destination MAC address when sending PMK-R1 key from the "
  3866. "R0KH. This is also the list of authorized R1KHs in the MD that can request "
  3867. "PMK-R1 keys."
  3868. msgstr ""
  3869. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:82
  3870. msgid "List of SSH key files for auth"
  3871. msgstr ""
  3872. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:323
  3873. msgid "List of domains to allow RFC1918 responses for."
  3874. msgstr ""
  3875. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:291
  3876. msgid "List of upstream resolvers to forward queries to."
  3877. msgstr ""
  3878. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:176
  3879. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:38
  3880. msgid "Listen Port"
  3881. msgstr ""
  3882. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:343
  3883. msgid "Listen interfaces"
  3884. msgstr ""
  3885. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:17
  3886. msgid "Listen only on the given interface or, if unspecified, on all"
  3887. msgstr ""
  3888. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:344
  3889. msgid ""
  3890. "Listen only on the specified interfaces, and loopback if not excluded "
  3891. "explicitly."
  3892. msgstr ""
  3893. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:299
  3894. msgid "ListenPort setting is invalid"
  3895. msgstr ""
  3896. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:525
  3897. msgid "Listening port for inbound DNS queries."
  3898. msgstr ""
  3899. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:130
  3900. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:54
  3901. msgid "Load"
  3902. msgstr ""
  3903. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:63
  3904. msgid "Load Average"
  3905. msgstr ""
  3906. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:189
  3907. msgid "Load configuration…"
  3908. msgstr ""
  3909. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1229
  3910. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2065
  3911. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:167
  3912. msgid "Loading data…"
  3913. msgstr ""
  3914. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2992
  3915. msgid "Loading directory contents…"
  3916. msgstr ""
  3917. #: modules/luci-base/htdocs/luci-static/resources/luci.js:1942
  3918. #: modules/luci-base/ucode/template/view.ut:4
  3919. #: modules/luci-mod-status/ucode/template/admin_status/index.ut:12
  3920. #: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:40
  3921. msgid "Loading view…"
  3922. msgstr ""
  3923. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:948
  3924. msgid "Local"
  3925. msgstr ""
  3926. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:169
  3927. msgid "Local IP address"
  3928. msgstr ""
  3929. #: modules/luci-base/htdocs/luci-static/resources/network.js:12
  3930. #: modules/luci-compat/luasrc/model/network.lua:30
  3931. msgid "Local IP address is invalid"
  3932. msgstr ""
  3933. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:86
  3934. msgid "Local IP address to assign"
  3935. msgstr ""
  3936. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:46
  3937. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:46
  3938. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:44
  3939. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:40
  3940. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:39
  3941. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6to4.js:39
  3942. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:151
  3943. #: protocols/luci-proto-vti/htdocs/luci-static/resources/protocol/vti.js:44
  3944. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:44
  3945. msgid "Local IPv4 address"
  3946. msgstr ""
  3947. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:944
  3948. msgid "Local IPv6 DNS server"
  3949. msgstr ""
  3950. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:46
  3951. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:53
  3952. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:54
  3953. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:45
  3954. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:44
  3955. msgid "Local IPv6 address"
  3956. msgstr ""
  3957. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:115
  3958. msgid "Local Startup"
  3959. msgstr ""
  3960. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:61
  3961. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:131
  3962. msgid "Local Time"
  3963. msgstr ""
  3964. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1062
  3965. msgid "Local ULA"
  3966. msgstr ""
  3967. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:281
  3968. msgid "Local domain"
  3969. msgstr ""
  3970. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:282
  3971. msgid "Local domain suffix appended to DHCP names and hosts file entries."
  3972. msgstr ""
  3973. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:277
  3974. msgid "Local server"
  3975. msgstr ""
  3976. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:330
  3977. msgid "Local service only"
  3978. msgstr ""
  3979. #: protocols/luci-proto-unet/htdocs/luci-static/resources/protocol/unet.js:41
  3980. msgid "Local wireguard key"
  3981. msgstr ""
  3982. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:478
  3983. msgid "Localise queries"
  3984. msgstr ""
  3985. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:117
  3986. msgid "Location Area Code"
  3987. msgstr ""
  3988. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2126
  3989. msgid "Lock to BSSID"
  3990. msgstr ""
  3991. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:98
  3992. msgctxt "nft log action"
  3993. msgid "Log event \"<strong>%h</strong>…\""
  3994. msgstr ""
  3995. #: modules/luci-base/ucode/template/sysauth.ut:38
  3996. #: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:36
  3997. msgid "Log in"
  3998. msgstr ""
  3999. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2674
  4000. msgid "Log in…"
  4001. msgstr ""
  4002. #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:81
  4003. msgid "Log out"
  4004. msgstr ""
  4005. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:185
  4006. msgid "Log output level"
  4007. msgstr ""
  4008. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:285
  4009. msgid "Log queries"
  4010. msgstr ""
  4011. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:123
  4012. msgid "Logging"
  4013. msgstr ""
  4014. #: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:23
  4015. msgid "Logging in…"
  4016. msgstr ""
  4017. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57
  4018. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:57
  4019. msgid ""
  4020. "Logical network from which to select the local endpoint if local IPv6 "
  4021. "address is empty and no WAN IPv6 is available (optional)."
  4022. msgstr ""
  4023. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:57
  4024. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62
  4025. msgid "Logical network to which the tunnel will be added (bridged) (optional)."
  4026. msgstr ""
  4027. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:682
  4028. msgid "Loose filtering"
  4029. msgstr ""
  4030. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:686
  4031. msgid "Lowest leased address as offset from the network address."
  4032. msgstr ""
  4033. #: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/footer.ut:12
  4034. msgid "Lua compatibility mode active"
  4035. msgstr ""
  4036. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:48
  4037. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:83
  4038. msgid "MAC"
  4039. msgstr "MAC"
  4040. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1507
  4041. msgid "MAC Address"
  4042. msgstr ""
  4043. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1079
  4044. msgid "MAC Address Filter"
  4045. msgstr ""
  4046. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:253
  4047. msgid "MAC Address For The Actor"
  4048. msgstr ""
  4049. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:401
  4050. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1475
  4051. msgid "MAC VLAN"
  4052. msgstr ""
  4053. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:645
  4054. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:40
  4055. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1161
  4056. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2257
  4057. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:56
  4058. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:89
  4059. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:233
  4060. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:179
  4061. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:205
  4062. msgid "MAC address"
  4063. msgstr ""
  4064. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:799
  4065. msgid "MAC address(es)"
  4066. msgstr ""
  4067. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:981
  4068. msgid "MAC-Filter"
  4069. msgstr ""
  4070. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1086
  4071. msgid "MAC-List"
  4072. msgstr ""
  4073. #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:16
  4074. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:13
  4075. msgid "MAP / LW4over6"
  4076. msgstr ""
  4077. #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:62
  4078. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:7
  4079. msgid "MAP rule is invalid"
  4080. msgstr ""
  4081. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:24
  4082. msgid "MBIM Cellular"
  4083. msgstr ""
  4084. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:223
  4085. msgid "MD5"
  4086. msgstr "MD5"
  4087. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:199
  4088. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:28
  4089. msgid "MHz"
  4090. msgstr "MHz"
  4091. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:354
  4092. msgid "MII"
  4093. msgstr ""
  4094. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:422
  4095. msgid "MII / ETHTOOL ioctls"
  4096. msgstr ""
  4097. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:395
  4098. msgid "MII Interval"
  4099. msgstr ""
  4100. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:634
  4101. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1519
  4102. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:87
  4103. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:53
  4104. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:196
  4105. #: protocols/luci-proto-xfrm/htdocs/luci-static/resources/protocol/xfrm.js:46
  4106. msgid "MTU"
  4107. msgstr "MTU"
  4108. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:264
  4109. msgid "MX"
  4110. msgstr ""
  4111. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:303
  4112. msgid ""
  4113. "Make sure to clone the root filesystem using something like the commands "
  4114. "below:"
  4115. msgstr ""
  4116. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:122
  4117. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:115
  4118. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:53
  4119. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:98
  4120. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:84
  4121. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:58
  4122. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:71
  4123. msgid "Manual"
  4124. msgstr ""
  4125. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:82
  4126. msgid "Manufacturer"
  4127. msgstr ""
  4128. #: modules/luci-base/htdocs/luci-static/resources/network.js:3864
  4129. msgid "Master"
  4130. msgstr ""
  4131. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:920
  4132. msgid "Match Tag"
  4133. msgstr ""
  4134. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:865
  4135. msgid "Max <abbr title=\"Router Advertisement\">RA</abbr> interval"
  4136. msgstr ""
  4137. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:538
  4138. msgid "Max. DHCP leases"
  4139. msgstr ""
  4140. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:545
  4141. msgid "Max. EDNS0 packet size"
  4142. msgstr ""
  4143. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:552
  4144. msgid "Max. concurrent queries"
  4145. msgstr ""
  4146. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:586
  4147. msgid "Maximum age"
  4148. msgstr ""
  4149. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1188
  4150. msgid "Maximum allowed Listen Interval"
  4151. msgstr ""
  4152. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:539
  4153. msgid "Maximum allowed number of active DHCP leases."
  4154. msgstr ""
  4155. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:553
  4156. msgid "Maximum allowed number of concurrent DNS queries."
  4157. msgstr ""
  4158. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:546
  4159. msgid "Maximum allowed size of EDNS0 UDP packets."
  4160. msgstr ""
  4161. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:126
  4162. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:124
  4163. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:106
  4164. msgid "Maximum amount of seconds to wait for the modem to become ready"
  4165. msgstr ""
  4166. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:691
  4167. msgid "Maximum number of leased addresses."
  4168. msgstr ""
  4169. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:596
  4170. msgid "Maximum snooping table size"
  4171. msgstr ""
  4172. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:865
  4173. msgid ""
  4174. "Maximum time allowed between sending unsolicited <abbr title=\"Router "
  4175. "Advertisement, ICMPv6 Type 134\">RA</abbr>. Default is 600 seconds."
  4176. msgstr ""
  4177. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:941
  4178. msgid "Maximum transmit power"
  4179. msgstr ""
  4180. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:464
  4181. msgid "May prevent VoIP or other services from working."
  4182. msgstr ""
  4183. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:129
  4184. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:188
  4185. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:199
  4186. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:28
  4187. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:171
  4188. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:323
  4189. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:324
  4190. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:325
  4191. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:329
  4192. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:330
  4193. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:331
  4194. msgid "Mbit/s"
  4195. msgstr ""
  4196. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:35
  4197. msgid "Medium"
  4198. msgstr ""
  4199. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:24
  4200. msgid "Memory"
  4201. msgstr ""
  4202. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:73
  4203. msgid "Memory usage (%)"
  4204. msgstr ""
  4205. #: modules/luci-base/htdocs/luci-static/resources/network.js:3867
  4206. msgid "Mesh"
  4207. msgstr ""
  4208. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:156
  4209. msgid "Mesh ID"
  4210. msgstr ""
  4211. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:990
  4212. msgid "Mesh Id"
  4213. msgstr ""
  4214. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:41
  4215. msgid "Mesh Routing"
  4216. msgstr ""
  4217. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:41
  4218. msgid "Mesh and routing related options"
  4219. msgstr ""
  4220. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:404
  4221. msgid "Method not found"
  4222. msgstr ""
  4223. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:350
  4224. msgid "Method of link monitoring"
  4225. msgstr ""
  4226. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:419
  4227. msgid "Method to determine link status"
  4228. msgstr ""
  4229. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:80
  4230. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:189
  4231. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:215
  4232. msgid "Metric"
  4233. msgstr ""
  4234. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:70
  4235. msgctxt "nft unit"
  4236. msgid "MiB"
  4237. msgstr ""
  4238. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:872
  4239. msgid "Min <abbr title=\"Router Advertisement\">RA</abbr> interval"
  4240. msgstr ""
  4241. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:721
  4242. msgid "Minimum ARP validity time"
  4243. msgstr ""
  4244. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:237
  4245. msgid "Minimum Number of Links"
  4246. msgstr ""
  4247. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:721
  4248. msgid ""
  4249. "Minimum required time in seconds before an ARP entry may be replaced. "
  4250. "Prevents ARP cache thrashing."
  4251. msgstr ""
  4252. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:872
  4253. msgid ""
  4254. "Minimum time allowed between sending unsolicited <abbr title=\"Router "
  4255. "Advertisement, ICMPv6 Type 134\">RA</abbr>. Default is 200 seconds."
  4256. msgstr ""
  4257. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:204
  4258. msgid "Mirror monitor port"
  4259. msgstr ""
  4260. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:203
  4261. msgid "Mirror source port"
  4262. msgstr ""
  4263. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:120
  4264. msgid "Mobile Country Code"
  4265. msgstr ""
  4266. #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:9
  4267. msgid "Mobile Data"
  4268. msgstr ""
  4269. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:123
  4270. msgid "Mobile Network Code"
  4271. msgstr ""
  4272. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:167
  4273. #: protocols/luci-proto-modemmanager/root/usr/share/luci/menu.d/luci-proto-modemmanager.json:3
  4274. msgid "Mobile Service"
  4275. msgstr ""
  4276. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1562
  4277. msgid "Mobility Domain"
  4278. msgstr ""
  4279. #: modules/luci-compat/luasrc/view/cbi/wireless_modefreq.htm:154
  4280. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:488
  4281. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:157
  4282. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:180
  4283. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:486
  4284. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:985
  4285. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1840
  4286. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:404
  4287. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:148
  4288. msgid "Mode"
  4289. msgstr "मोड"
  4290. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:56
  4291. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:83
  4292. msgid "Model"
  4293. msgstr "मॉडेल"
  4294. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:81
  4295. msgid "Modem Info"
  4296. msgstr ""
  4297. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:9
  4298. msgid ""
  4299. "Modem connection in progress. Please wait. This process will timeout after 2 "
  4300. "minutes."
  4301. msgstr ""
  4302. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:77
  4303. msgid "Modem default"
  4304. msgstr ""
  4305. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:73
  4306. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:54
  4307. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:51
  4308. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:65
  4309. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:73
  4310. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:57
  4311. msgid "Modem device"
  4312. msgstr ""
  4313. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:66
  4314. msgid "Modem information query failed"
  4315. msgstr ""
  4316. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:126
  4317. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:124
  4318. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:119
  4319. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:106
  4320. msgid "Modem init timeout"
  4321. msgstr ""
  4322. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:21
  4323. msgid "ModemManager"
  4324. msgstr ""
  4325. #: modules/luci-base/htdocs/luci-static/resources/network.js:3868
  4326. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1073
  4327. msgid "Monitor"
  4328. msgstr ""
  4329. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:31
  4330. msgid "More Characters"
  4331. msgstr ""
  4332. #: modules/luci-base/htdocs/luci-static/resources/form.js:2581
  4333. msgid "More…"
  4334. msgstr ""
  4335. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:192
  4336. msgid "Mount Point"
  4337. msgstr ""
  4338. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:144
  4339. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:228
  4340. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:102
  4341. msgid "Mount Points"
  4342. msgstr ""
  4343. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:229
  4344. msgid "Mount Points - Mount Entry"
  4345. msgstr ""
  4346. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:341
  4347. msgid "Mount Points - Swap Entry"
  4348. msgstr ""
  4349. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:228
  4350. msgid ""
  4351. "Mount Points define at which point a memory device will be attached to the "
  4352. "filesystem"
  4353. msgstr ""
  4354. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:154
  4355. msgid "Mount attached devices"
  4356. msgstr ""
  4357. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:162
  4358. msgid "Mount filesystems not specifically configured"
  4359. msgstr ""
  4360. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:332
  4361. msgid "Mount options"
  4362. msgstr ""
  4363. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:293
  4364. msgid "Mount point"
  4365. msgstr ""
  4366. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:158
  4367. msgid "Mount swap not specifically configured"
  4368. msgstr ""
  4369. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:223
  4370. msgid "Mounted file systems"
  4371. msgstr ""
  4372. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:152
  4373. msgid "Move down"
  4374. msgstr ""
  4375. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:151
  4376. msgid "Move up"
  4377. msgstr ""
  4378. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1146
  4379. msgid "Multi To Unicast"
  4380. msgstr ""
  4381. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:89
  4382. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:94
  4383. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:91
  4384. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:96
  4385. msgid "Multicast"
  4386. msgstr ""
  4387. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:99
  4388. msgid "Multicast Mode"
  4389. msgstr ""
  4390. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:773
  4391. msgid "Multicast routing"
  4392. msgstr ""
  4393. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:779
  4394. msgid "Multicast to unicast"
  4395. msgstr ""
  4396. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1557
  4397. msgid "NAS ID"
  4398. msgstr ""
  4399. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:536
  4400. msgid "NAT action chain \"%h\""
  4401. msgstr ""
  4402. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:87
  4403. msgid "NAT-T Mode"
  4404. msgstr ""
  4405. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:41
  4406. msgid "NAT64 Prefix"
  4407. msgstr ""
  4408. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:858
  4409. msgid "NAT64 prefix"
  4410. msgstr ""
  4411. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:26
  4412. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:35
  4413. msgid "NCM"
  4414. msgstr "NCM"
  4415. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:975
  4416. msgid "NDP-Proxy slave"
  4417. msgstr ""
  4418. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:72
  4419. msgid "NT Domain"
  4420. msgstr ""
  4421. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:300
  4422. msgid "NTP server candidates"
  4423. msgstr ""
  4424. #: modules/luci-base/htdocs/luci-static/resources/form.js:2618
  4425. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4193
  4426. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:27
  4427. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1163
  4428. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:68
  4429. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:36
  4430. msgid "Name"
  4431. msgstr "नाव"
  4432. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2104
  4433. msgid "Name of the new network"
  4434. msgstr ""
  4435. #: protocols/luci-proto-unet/htdocs/luci-static/resources/protocol/unet.js:38
  4436. msgid "Name of the tunnel device"
  4437. msgstr ""
  4438. #: themes/luci-theme-librecmc-2020/ucode/template/themes/librecmc2020/header.ut:39
  4439. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:50
  4440. msgid "Navigation"
  4441. msgstr ""
  4442. #: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:10
  4443. msgid "Nebula Network"
  4444. msgstr ""
  4445. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1619
  4446. msgid "Neighbour Report"
  4447. msgstr ""
  4448. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:713
  4449. msgid "Neighbour cache validity"
  4450. msgstr ""
  4451. #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:45
  4452. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1018
  4453. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2256
  4454. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:383
  4455. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:63
  4456. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:232
  4457. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:186
  4458. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:212
  4459. msgid "Network"
  4460. msgstr ""
  4461. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:104
  4462. msgid "Network Coding"
  4463. msgstr ""
  4464. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:76
  4465. msgid "Network Mode"
  4466. msgstr ""
  4467. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:97
  4468. msgid "Network Registration"
  4469. msgstr ""
  4470. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2098
  4471. msgid "Network SSID"
  4472. msgstr ""
  4473. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:57
  4474. msgid "Network address"
  4475. msgstr ""
  4476. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:578
  4477. msgid "Network boot image"
  4478. msgstr ""
  4479. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:409
  4480. msgid "Network bridge configuration migration"
  4481. msgstr ""
  4482. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:397
  4483. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1481
  4484. msgid "Network device"
  4485. msgstr ""
  4486. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:7
  4487. msgid "Network device activity (kernel: netdev)"
  4488. msgstr ""
  4489. #: modules/luci-base/htdocs/luci-static/resources/network.js:15
  4490. #: modules/luci-compat/luasrc/model/network.lua:33
  4491. msgid "Network device is not present"
  4492. msgstr ""
  4493. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:645
  4494. msgid "Network device table \"%h\""
  4495. msgstr ""
  4496. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:78
  4497. msgctxt "nft @nh,off,len"
  4498. msgid "Network header bits %d-%d"
  4499. msgstr ""
  4500. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:443
  4501. msgid "Network ifname configuration migration"
  4502. msgstr ""
  4503. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:57
  4504. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62
  4505. msgid "Network interface"
  4506. msgstr ""
  4507. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:617
  4508. msgid "Network-ID"
  4509. msgstr ""
  4510. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:774
  4511. msgid "Never"
  4512. msgstr ""
  4513. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:16
  4514. msgctxt "No WireGuard peer handshake yet"
  4515. msgid "Never"
  4516. msgstr ""
  4517. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:278
  4518. msgid ""
  4519. "Never forward matching domains and subdomains, resolve from DHCP or hosts "
  4520. "files only."
  4521. msgstr ""
  4522. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1215
  4523. msgid "New interface for \"%s\" can not be created: %s"
  4524. msgstr ""
  4525. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1166
  4526. msgid "New interface name…"
  4527. msgstr ""
  4528. #: modules/luci-compat/luasrc/view/cbi/delegator.htm:11
  4529. msgid "Next »"
  4530. msgstr ""
  4531. #: modules/luci-base/htdocs/luci-static/resources/form.js:4094
  4532. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:298
  4533. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:346
  4534. msgid "No"
  4535. msgstr "नाही"
  4536. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:660
  4537. msgid "No DHCP Server configured for this interface"
  4538. msgstr ""
  4539. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:202
  4540. msgid "No Data"
  4541. msgstr ""
  4542. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1391
  4543. msgid "No Encryption"
  4544. msgstr ""
  4545. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:185
  4546. msgid "No Host Routes"
  4547. msgstr ""
  4548. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:89
  4549. msgid "No NAT-T"
  4550. msgstr ""
  4551. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:79
  4552. msgid "No RX signal"
  4553. msgstr ""
  4554. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:148
  4555. msgid "No WireGuard interfaces configured."
  4556. msgstr ""
  4557. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:16
  4558. msgid "No allowed mode configuration found."
  4559. msgstr ""
  4560. #: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:68
  4561. #: themes/luci-theme-material/ucode/template/themes/material/header.ut:88
  4562. #: themes/luci-theme-librecmc-2020/ucode/template/themes/librecmc2020/header.ut:65
  4563. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:90
  4564. msgid ""
  4565. "No changes to settings will be stored and are lost after rebooting. This "
  4566. "mode should only be used to install a firmware upgrade"
  4567. msgstr ""
  4568. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69
  4569. msgid "No client associated"
  4570. msgstr ""
  4571. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:27
  4572. msgid "No control device specified"
  4573. msgstr ""
  4574. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3230
  4575. msgctxt "empty table placeholder"
  4576. msgid "No data"
  4577. msgstr ""
  4578. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:406
  4579. msgid "No data received"
  4580. msgstr ""
  4581. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:751
  4582. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:758
  4583. msgid "No enforcement"
  4584. msgstr ""
  4585. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:229
  4586. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:232
  4587. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:235
  4588. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:238
  4589. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:241
  4590. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:244
  4591. msgid "No entries available"
  4592. msgstr ""
  4593. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2932
  4594. msgid "No entries in this directory"
  4595. msgstr ""
  4596. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:846
  4597. msgid ""
  4598. "No fixed interface listening port defined, peers might not be able to "
  4599. "initiate connections to this WireGuard instance!"
  4600. msgstr ""
  4601. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:86
  4602. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:91
  4603. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:88
  4604. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:93
  4605. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:70
  4606. msgid "No host route"
  4607. msgstr ""
  4608. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:725
  4609. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:142
  4610. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:362
  4611. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:59
  4612. msgid "No information available"
  4613. msgstr ""
  4614. #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:63
  4615. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:8
  4616. msgid "No matching prefix delegation"
  4617. msgstr ""
  4618. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:142
  4619. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:145
  4620. msgid "No more slaves available"
  4621. msgstr ""
  4622. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:189
  4623. msgid "No more slaves available, can not save interface"
  4624. msgstr ""
  4625. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:499
  4626. msgid "No negative cache"
  4627. msgstr ""
  4628. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:696
  4629. msgid "No nftables ruleset loaded."
  4630. msgstr ""
  4631. #: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:57
  4632. #: themes/luci-theme-material/ucode/template/themes/material/header.ut:77
  4633. #: themes/luci-theme-librecmc-2020/ucode/template/themes/librecmc2020/header.ut:54
  4634. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:79
  4635. msgid "No password set!"
  4636. msgstr ""
  4637. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:84
  4638. msgid "No peers connected"
  4639. msgstr ""
  4640. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:510
  4641. msgid "No peers defined yet."
  4642. msgstr ""
  4643. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:15
  4644. msgid "No preferred mode configuration found."
  4645. msgstr ""
  4646. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:146
  4647. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:283
  4648. msgid "No public keys present yet."
  4649. msgstr ""
  4650. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:613
  4651. msgctxt "nft chain is empty"
  4652. msgid "No rules in this chain"
  4653. msgstr ""
  4654. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:91
  4655. msgid "No rules in this chain."
  4656. msgstr ""
  4657. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:385
  4658. msgid "No validation or filtering"
  4659. msgstr ""
  4660. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:153
  4661. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1260
  4662. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:259
  4663. msgid "No zone assigned"
  4664. msgstr ""
  4665. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:58
  4666. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:84
  4667. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:187
  4668. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:235
  4669. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:279
  4670. msgid "Noise"
  4671. msgstr ""
  4672. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:30
  4673. msgid "Noise Margin"
  4674. msgstr ""
  4675. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:272
  4676. msgid "Noise:"
  4677. msgstr ""
  4678. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:336
  4679. msgid "Non-wildcard"
  4680. msgstr ""
  4681. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:159
  4682. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:183
  4683. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:80
  4684. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:83
  4685. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:112
  4686. msgid "None"
  4687. msgstr "एकही नाही"
  4688. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:949
  4689. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:198
  4690. msgid "Normal"
  4691. msgstr ""
  4692. #: modules/luci-base/ucode/template/error404.ut:9
  4693. msgid "Not Found"
  4694. msgstr ""
  4695. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:211
  4696. msgctxt "VLAN port state"
  4697. msgid "Not Member"
  4698. msgstr ""
  4699. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:75
  4700. msgid "Not associated"
  4701. msgstr ""
  4702. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:32
  4703. msgid "Not connected"
  4704. msgstr ""
  4705. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:46
  4706. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:81
  4707. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:121
  4708. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:147
  4709. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:329
  4710. msgid "Not present"
  4711. msgstr ""
  4712. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:102
  4713. msgid "Not started on boot"
  4714. msgstr ""
  4715. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:409
  4716. msgid "Not supported"
  4717. msgstr ""
  4718. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1777
  4719. msgid ""
  4720. "Note: Some wireless drivers do not fully support 802.11w. E.g. mwlwifi may "
  4721. "have problems"
  4722. msgstr ""
  4723. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:356
  4724. msgid ""
  4725. "Note: you may also need a DHCP Proxy (currently unavailable) when specifying "
  4726. "a non-standard Relay To port(<code>addr#port</code>)."
  4727. msgstr ""
  4728. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:142
  4729. msgid "Notes"
  4730. msgstr ""
  4731. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:188
  4732. msgid "Notice"
  4733. msgstr ""
  4734. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:135
  4735. msgid "Nslookup"
  4736. msgstr ""
  4737. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:333
  4738. msgid "Number of IGMP membership reports"
  4739. msgstr ""
  4740. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:560
  4741. msgid "Number of cached DNS entries, 10000 is maximum, 0 is no caching."
  4742. msgstr ""
  4743. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:311
  4744. msgid "Number of peer notifications after failover event"
  4745. msgstr ""
  4746. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:69
  4747. msgid "Obfuscated Group Password"
  4748. msgstr ""
  4749. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:61
  4750. msgid "Obfuscated Password"
  4751. msgstr ""
  4752. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:118
  4753. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:111
  4754. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:49
  4755. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:94
  4756. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:80
  4757. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:54
  4758. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:67
  4759. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:93
  4760. msgid "Obtain IPv6 address"
  4761. msgstr ""
  4762. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/none.js:19
  4763. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:87
  4764. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:352
  4765. msgid "Off"
  4766. msgstr "बंद"
  4767. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/timer.js:18
  4768. msgid "Off-State Delay"
  4769. msgstr ""
  4770. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1450
  4771. msgid ""
  4772. "Off: <code>vlanXXX</code>, e.g., <code>vlan1</code>. On: "
  4773. "<code>vlan_tagged_interface.XXX</code>, e.g. <code>eth0.1</code>."
  4774. msgstr ""
  4775. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/none.js:19
  4776. msgid "On"
  4777. msgstr ""
  4778. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/timer.js:12
  4779. msgid "On-State Delay"
  4780. msgstr ""
  4781. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:110
  4782. msgid "On-link"
  4783. msgstr ""
  4784. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:867
  4785. msgid "One of hostname or MAC address must be specified!"
  4786. msgstr ""
  4787. #: modules/luci-base/htdocs/luci-static/resources/validation.js:490
  4788. msgid "One of the following: %s"
  4789. msgstr ""
  4790. #: modules/luci-compat/luasrc/view/cbi/nullsection.htm:17
  4791. #: modules/luci-compat/luasrc/view/cbi/ucisection.htm:22
  4792. msgid "One or more fields contain invalid values!"
  4793. msgstr ""
  4794. #: modules/luci-compat/luasrc/view/cbi/map.htm:32
  4795. msgid "One or more invalid/required values on tab"
  4796. msgstr ""
  4797. #: modules/luci-compat/luasrc/view/cbi/nullsection.htm:19
  4798. #: modules/luci-compat/luasrc/view/cbi/ucisection.htm:24
  4799. msgid "One or more required fields have no value!"
  4800. msgstr ""
  4801. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:413
  4802. msgid "Only accept replies via"
  4803. msgstr ""
  4804. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:770
  4805. msgid "Only allow communication with non-isolated bridge ports when enabled"
  4806. msgstr ""
  4807. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:231
  4808. msgid ""
  4809. "Only if current active slave fails and the primary slave is up (failure, 2)"
  4810. msgstr ""
  4811. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:682
  4812. msgid "Open iptables rules overview…"
  4813. msgstr ""
  4814. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:472
  4815. msgid "Open list..."
  4816. msgstr ""
  4817. #: modules/luci-compat/luasrc/model/network/proto_openconnect.lua:9
  4818. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:65
  4819. msgid "OpenConnect (CISCO AnyConnect)"
  4820. msgstr ""
  4821. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:63
  4822. msgid "OpenFortivpn"
  4823. msgstr ""
  4824. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:741
  4825. msgid ""
  4826. "Operate in <em>relay mode</em> if a designated master interface is "
  4827. "configured and active, otherwise disable <abbr title=\"Neighbour Discovery "
  4828. "Protocol\">NDP</abbr> proxying."
  4829. msgstr ""
  4830. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:740
  4831. msgid ""
  4832. "Operate in <em>relay mode</em> if a designated master interface is "
  4833. "configured and active, otherwise fall back to <em>server mode</em>."
  4834. msgstr ""
  4835. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:742
  4836. msgid ""
  4837. "Operate in <em>relay mode</em> if an upstream IPv6 prefix is present, "
  4838. "otherwise disable service."
  4839. msgstr ""
  4840. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:934
  4841. msgid "Operating frequency"
  4842. msgstr ""
  4843. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:100
  4844. msgid "Operator"
  4845. msgstr ""
  4846. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:101
  4847. msgid "Operator Code"
  4848. msgstr ""
  4849. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:135
  4850. msgid "Operator Name"
  4851. msgstr ""
  4852. #: modules/luci-base/htdocs/luci-static/resources/form.js:2006
  4853. #: modules/luci-base/htdocs/luci-static/resources/form.js:4106
  4854. msgid "Option \"%s\" contains an invalid input value."
  4855. msgstr ""
  4856. #: modules/luci-base/htdocs/luci-static/resources/form.js:2021
  4857. msgid "Option \"%s\" must not be empty."
  4858. msgstr ""
  4859. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4445
  4860. msgid "Option changed"
  4861. msgstr ""
  4862. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4447
  4863. msgid "Option removed"
  4864. msgstr ""
  4865. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1440
  4866. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1779
  4867. msgid "Optional"
  4868. msgstr ""
  4869. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:786
  4870. msgid "Optional hostname to assign"
  4871. msgstr ""
  4872. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:142
  4873. msgid "Optional, free-form notes about this device"
  4874. msgstr ""
  4875. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:147
  4876. msgid "Optional, in seconds. If set to '0', no reconnect is attempted."
  4877. msgstr ""
  4878. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:201
  4879. msgid ""
  4880. "Optional. 32-bit mark for outgoing encrypted packets. Enter value in hex, "
  4881. "starting with <code>0x</code>."
  4882. msgstr ""
  4883. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1084
  4884. msgid ""
  4885. "Optional. Allowed values: 'eui64', 'random', fixed value like '::1' or "
  4886. "'::1:2'. When IPv6 prefix (like 'a:b:c:d::') is received from a delegating "
  4887. "server, use the suffix (like '::1') to form the IPv6 address ('a:b:c:d::1') "
  4888. "for the interface."
  4889. msgstr ""
  4890. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:599
  4891. msgid ""
  4892. "Optional. Base64-encoded preshared key. Adds in an additional layer of "
  4893. "symmetric-key cryptography for post-quantum resistance."
  4894. msgstr ""
  4895. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:659
  4896. msgid "Optional. Create routes for Allowed IPs for this peer."
  4897. msgstr ""
  4898. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:517
  4899. msgid "Optional. Description of peer."
  4900. msgstr ""
  4901. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:185
  4902. msgid "Optional. Do not create host routes to peers."
  4903. msgstr ""
  4904. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:662
  4905. msgid ""
  4906. "Optional. Host of peer. Names are resolved prior to bringing up the "
  4907. "interface."
  4908. msgstr ""
  4909. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:624
  4910. msgid ""
  4911. "Optional. IP addresses and prefixes that this peer is allowed to use inside "
  4912. "the tunnel. Usually the peer's tunnel IP addresses and the networks the peer "
  4913. "routes through the tunnel."
  4914. msgstr ""
  4915. #: protocols/luci-proto-xfrm/htdocs/luci-static/resources/protocol/xfrm.js:46
  4916. msgid "Optional. Maximum Transmission Unit of the XFRM interface."
  4917. msgstr ""
  4918. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:196
  4919. msgid "Optional. Maximum Transmission Unit of tunnel interface."
  4920. msgstr ""
  4921. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:678
  4922. msgid "Optional. Port of peer."
  4923. msgstr ""
  4924. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:590
  4925. msgid ""
  4926. "Optional. Private key of the WireGuard peer. The key is not required for "
  4927. "establishing a connection but allows generating a peer configuration or QR "
  4928. "code if available. It can be removed after the configuration has been "
  4929. "exported."
  4930. msgstr ""
  4931. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:683
  4932. msgid ""
  4933. "Optional. Seconds between keep alive messages. Default is 0 (disabled). "
  4934. "Recommended value if this device is behind a NAT is 25."
  4935. msgstr ""
  4936. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:176
  4937. msgid "Optional. UDP port used for outgoing and incoming packets."
  4938. msgstr ""
  4939. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:72
  4940. msgid "Options"
  4941. msgstr "पर्याय"
  4942. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:612
  4943. msgid ""
  4944. "Options for the Network-ID. (Note: needs also Network-ID.) E.g. "
  4945. "\"<code>42,192.168.1.4</code>\" for NTP server, \"<code>3,192.168.4.4</"
  4946. "code>\" for default route. <code>0.0.0.0</code> means \"the address of the "
  4947. "system running dnsmasq\"."
  4948. msgstr ""
  4949. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:125
  4950. msgid "Options:"
  4951. msgstr ""
  4952. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:665
  4953. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:697
  4954. msgid "Ordinal: lower comes first."
  4955. msgstr ""
  4956. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:55
  4957. msgid "Originator Interval"
  4958. msgstr ""
  4959. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:348
  4960. msgid "Other:"
  4961. msgstr ""
  4962. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:69
  4963. msgid "Out"
  4964. msgstr ""
  4965. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:277
  4966. msgid "Outbound:"
  4967. msgstr ""
  4968. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:101
  4969. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:106
  4970. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:103
  4971. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:108
  4972. msgid "Outgoing checksum"
  4973. msgstr ""
  4974. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:156
  4975. msgid "Outgoing interface"
  4976. msgstr ""
  4977. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:96
  4978. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:101
  4979. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:98
  4980. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:103
  4981. #: protocols/luci-proto-vti/htdocs/luci-static/resources/protocol/vti.js:68
  4982. msgid "Outgoing key"
  4983. msgstr ""
  4984. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:103
  4985. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:108
  4986. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:105
  4987. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:110
  4988. msgid "Outgoing serialization"
  4989. msgstr ""
  4990. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:50
  4991. msgid "Output Interface"
  4992. msgstr ""
  4993. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:59
  4994. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:165
  4995. msgid "Output zone"
  4996. msgstr ""
  4997. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:16
  4998. msgid "Overlap"
  4999. msgstr ""
  5000. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1021
  5001. msgid "Override IPv4 routing table"
  5002. msgstr ""
  5003. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1026
  5004. msgid "Override IPv6 routing table"
  5005. msgstr ""
  5006. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv_hardif.js:54
  5007. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:64
  5008. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:69
  5009. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:69
  5010. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:74
  5011. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:53
  5012. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:128
  5013. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:142
  5014. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:194
  5015. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:57
  5016. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:132
  5017. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:118
  5018. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:96
  5019. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:105
  5020. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:110
  5021. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:62
  5022. #: protocols/luci-proto-vti/htdocs/luci-static/resources/protocol/vti.js:55
  5023. msgid "Override MTU"
  5024. msgstr ""
  5025. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:74
  5026. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:79
  5027. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:63
  5028. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:67
  5029. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:62
  5030. msgid "Override TOS"
  5031. msgstr ""
  5032. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:69
  5033. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:74
  5034. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:74
  5035. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:79
  5036. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:58
  5037. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:62
  5038. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:57
  5039. msgid "Override TTL"
  5040. msgstr ""
  5041. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1161
  5042. msgid ""
  5043. "Override default MAC address - the range of usable addresses might be "
  5044. "limited by the driver"
  5045. msgstr ""
  5046. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1153
  5047. msgid "Override default interface name"
  5048. msgstr ""
  5049. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:167
  5050. msgid "Override the gateway in DHCP responses"
  5051. msgstr ""
  5052. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:708
  5053. msgid ""
  5054. "Override the netmask sent to clients. Normally it is calculated from the "
  5055. "subnet that is served."
  5056. msgstr ""
  5057. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:179
  5058. msgid "Override the table used for internal routes"
  5059. msgstr ""
  5060. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:3
  5061. msgid "Overview"
  5062. msgstr "आढावा"
  5063. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2780
  5064. msgid "Overwrite existing file \"%s\" ?"
  5065. msgstr ""
  5066. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:355
  5067. msgid "Overwrite the current settings with the imported configuration?"
  5068. msgstr ""
  5069. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:98
  5070. msgid "Own Numbers"
  5071. msgstr ""
  5072. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:70
  5073. msgid "Owner"
  5074. msgstr ""
  5075. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:78
  5076. msgid "PAP"
  5077. msgstr ""
  5078. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:77
  5079. msgid "PAP/CHAP"
  5080. msgstr ""
  5081. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:80
  5082. msgid "PAP/CHAP (both)"
  5083. msgstr ""
  5084. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:111
  5085. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:88
  5086. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:130
  5087. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:107
  5088. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:45
  5089. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:90
  5090. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:76
  5091. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:44
  5092. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:63
  5093. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:94
  5094. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:46
  5095. msgid "PAP/CHAP password"
  5096. msgstr ""
  5097. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:109
  5098. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:83
  5099. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:125
  5100. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:105
  5101. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:43
  5102. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:88
  5103. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:74
  5104. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:42
  5105. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:61
  5106. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:89
  5107. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:44
  5108. msgid "PAP/CHAP username"
  5109. msgstr ""
  5110. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:94
  5111. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:114
  5112. msgid "PDP Type"
  5113. msgstr ""
  5114. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:69
  5115. msgid "PID"
  5116. msgstr ""
  5117. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:106
  5118. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:73
  5119. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:76
  5120. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:102
  5121. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:79
  5122. msgid "PIN"
  5123. msgstr ""
  5124. #: modules/luci-base/htdocs/luci-static/resources/network.js:21
  5125. #: modules/luci-compat/luasrc/model/network.lua:39
  5126. msgid "PIN code rejected"
  5127. msgstr ""
  5128. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1597
  5129. msgid "PMK R1 Push"
  5130. msgstr ""
  5131. #: modules/luci-compat/luasrc/model/network/proto_ppp.lua:13
  5132. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:43
  5133. msgid "PPP"
  5134. msgstr "PPP"
  5135. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:58
  5136. msgid "PPPoA Encapsulation"
  5137. msgstr ""
  5138. #: modules/luci-compat/luasrc/model/network/proto_ppp.lua:19
  5139. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:28
  5140. msgid "PPPoATM"
  5141. msgstr "PPPoATM"
  5142. #: modules/luci-compat/luasrc/model/network/proto_ppp.lua:17
  5143. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:28
  5144. msgid "PPPoE"
  5145. msgstr "PPPoE"
  5146. #: modules/luci-compat/luasrc/model/network/proto_pppossh.lua:9
  5147. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:28
  5148. msgid "PPPoSSH"
  5149. msgstr "PPPoSSH"
  5150. #: modules/luci-compat/luasrc/model/network/proto_ppp.lua:15
  5151. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:28
  5152. msgid "PPtP"
  5153. msgstr ""
  5154. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:73
  5155. msgid "PSID offset"
  5156. msgstr ""
  5157. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:70
  5158. msgid "PSID-bits length"
  5159. msgstr ""
  5160. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:571
  5161. msgctxt "Label indicating that WireGuard peer uses a PSK"
  5162. msgid "PSK"
  5163. msgstr ""
  5164. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1580
  5165. msgid "PTM/EFM (Packet Transfer Mode)"
  5166. msgstr ""
  5167. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:266
  5168. msgid "PXE/TFTP Settings"
  5169. msgstr ""
  5170. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:103
  5171. msgid "Packet Service State"
  5172. msgstr ""
  5173. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1538
  5174. msgid "Packet Steering"
  5175. msgstr ""
  5176. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:25
  5177. msgctxt "nft meta mark"
  5178. msgid "Packet mark"
  5179. msgstr ""
  5180. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:27
  5181. msgctxt "nft meta time"
  5182. msgid "Packet receive time"
  5183. msgstr ""
  5184. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:54
  5185. msgid "Packets"
  5186. msgstr ""
  5187. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:277
  5188. msgid "Packets To Transmit Before Moving To Next Slave"
  5189. msgstr ""
  5190. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:291
  5191. msgid "Part of network:"
  5192. msgid_plural "Part of networks:"
  5193. msgstr[0] ""
  5194. msgstr[1] ""
  5195. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:153
  5196. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1260
  5197. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:259
  5198. msgid "Part of zone %q"
  5199. msgstr ""
  5200. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:492
  5201. msgctxt "MACVLAN mode"
  5202. msgid "Pass-through (Mirror physical device to single MAC VLAN)"
  5203. msgstr ""
  5204. #: modules/luci-base/ucode/template/sysauth.ut:29
  5205. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1770
  5206. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:51
  5207. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:149
  5208. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:103
  5209. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:58
  5210. #: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:19
  5211. msgid "Password"
  5212. msgstr "संकेतशब्द"
  5213. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:25
  5214. msgid "Password authentication"
  5215. msgstr ""
  5216. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1702
  5217. msgid "Password of Private Key"
  5218. msgstr ""
  5219. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1760
  5220. msgid "Password of inner Private Key"
  5221. msgstr ""
  5222. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:31
  5223. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:33
  5224. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:35
  5225. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:37
  5226. msgid "Password strength"
  5227. msgstr ""
  5228. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:152
  5229. msgid "Password2"
  5230. msgstr ""
  5231. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:266
  5232. msgid "Paste or drag SSH key file…"
  5233. msgstr ""
  5234. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:444
  5235. msgid "Paste or drag WireGuard peer configuration (wg0.conf) file…"
  5236. msgstr ""
  5237. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:437
  5238. msgid ""
  5239. "Paste or drag a WireGuard configuration (commonly <em>wg0.conf</em>) from "
  5240. "another system below to create a matching peer entry allowing that system to "
  5241. "connect to the local WireGuard interface."
  5242. msgstr ""
  5243. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:443
  5244. msgid "Paste or drag supplied WireGuard configuration file…"
  5245. msgstr ""
  5246. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1681
  5247. msgid "Path to CA-Certificate"
  5248. msgstr ""
  5249. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1696
  5250. msgid "Path to Client-Certificate"
  5251. msgstr ""
  5252. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1699
  5253. msgid "Path to Private Key"
  5254. msgstr ""
  5255. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1739
  5256. msgid "Path to inner CA-Certificate"
  5257. msgstr ""
  5258. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1754
  5259. msgid "Path to inner Client-Certificate"
  5260. msgstr ""
  5261. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1757
  5262. msgid "Path to inner Private Key"
  5263. msgstr ""
  5264. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2727
  5265. msgid "Paused"
  5266. msgstr ""
  5267. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:273
  5268. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:283
  5269. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:334
  5270. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:344
  5271. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:354
  5272. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:239
  5273. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:249
  5274. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:259
  5275. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:268
  5276. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:278
  5277. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:296
  5278. msgid "Peak:"
  5279. msgstr ""
  5280. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:74
  5281. msgid "Peer"
  5282. msgstr ""
  5283. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:51
  5284. msgid "Peer Details"
  5285. msgstr ""
  5286. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:89
  5287. msgid "Peer IP address to assign"
  5288. msgstr ""
  5289. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:667
  5290. msgid "Peer MAC address"
  5291. msgstr ""
  5292. #: modules/luci-base/htdocs/luci-static/resources/network.js:14
  5293. #: modules/luci-compat/luasrc/model/network.lua:32
  5294. msgid "Peer address is missing"
  5295. msgstr ""
  5296. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:648
  5297. msgid "Peer device name"
  5298. msgstr ""
  5299. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:513
  5300. msgid "Peer disabled"
  5301. msgstr ""
  5302. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:214
  5303. msgid "Peers"
  5304. msgstr ""
  5305. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:80
  5306. msgid "Perfect Forward Secrecy"
  5307. msgstr ""
  5308. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:103
  5309. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:108
  5310. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:105
  5311. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:110
  5312. msgid "Perform outgoing packets serialization (optional)."
  5313. msgstr ""
  5314. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:34
  5315. msgid "Perform reboot"
  5316. msgstr ""
  5317. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:406
  5318. msgid "Perform reset"
  5319. msgstr ""
  5320. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:407
  5321. msgid "Permission denied"
  5322. msgstr ""
  5323. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:683
  5324. msgid "Persistent Keep Alive"
  5325. msgstr ""
  5326. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:147
  5327. msgid "Persistent reconnect interval"
  5328. msgstr ""
  5329. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:334
  5330. msgid "PersistentKeepAlive setting is invalid"
  5331. msgstr ""
  5332. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:290
  5333. msgid "Phy Rate:"
  5334. msgstr ""
  5335. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:496
  5336. msgid "Physical Settings"
  5337. msgstr ""
  5338. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:87
  5339. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:88
  5340. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:98
  5341. msgid "Ping"
  5342. msgstr ""
  5343. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:49
  5344. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:50
  5345. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:84
  5346. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:85
  5347. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:138
  5348. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:64
  5349. msgid "Pkts."
  5350. msgstr ""
  5351. #: modules/luci-base/ucode/template/sysauth.ut:19
  5352. msgid "Please enter your username and password."
  5353. msgstr ""
  5354. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4176
  5355. msgid "Please select the file to upload."
  5356. msgstr ""
  5357. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:54
  5358. msgid "Policy"
  5359. msgstr ""
  5360. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:594
  5361. msgctxt "Chain hook policy"
  5362. msgid "Policy: <strong>%h</strong> (%h)"
  5363. msgstr ""
  5364. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:660
  5365. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:21
  5366. msgid "Port"
  5367. msgstr "पोर्ट"
  5368. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:137
  5369. #, fuzzy
  5370. msgctxt "WireGuard listen port"
  5371. msgid "Port %d"
  5372. msgstr "पोर्ट"
  5373. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:293
  5374. msgid "Port is not part of any network"
  5375. msgstr ""
  5376. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:770
  5377. msgid "Port isolation"
  5378. msgstr ""
  5379. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:299
  5380. msgid "Port status"
  5381. msgstr ""
  5382. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:278
  5383. msgid "Port status:"
  5384. msgstr ""
  5385. #: modules/luci-base/htdocs/luci-static/resources/validation.js:516
  5386. msgid "Potential negation of: %s"
  5387. msgstr ""
  5388. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:89
  5389. msgid "Power State"
  5390. msgstr ""
  5391. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:78
  5392. msgid "Prefer LTE"
  5393. msgstr ""
  5394. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:79
  5395. msgid "Prefer UMTS"
  5396. msgstr ""
  5397. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:979
  5398. msgid "Preferred lifetime for a prefix."
  5399. msgstr ""
  5400. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:106
  5401. msgid "Preferred network technology"
  5402. msgstr ""
  5403. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:33
  5404. msgid "Prefix Delegated"
  5405. msgstr ""
  5406. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:192
  5407. msgid "Prefix suppressor"
  5408. msgstr ""
  5409. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:599
  5410. msgid "Preshared Key"
  5411. msgstr ""
  5412. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:570
  5413. msgid "Preshared key in use"
  5414. msgstr ""
  5415. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:308
  5416. msgid "PresharedKey setting is invalid"
  5417. msgstr ""
  5418. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:130
  5419. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:102
  5420. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:88
  5421. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:62
  5422. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:75
  5423. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:98
  5424. msgid ""
  5425. "Presume peer to be dead after given amount of LCP echo failures, use 0 to "
  5426. "ignore failures"
  5427. msgstr ""
  5428. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1149
  5429. msgid "Prevents client-to-client communication"
  5430. msgstr ""
  5431. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:61
  5432. msgid ""
  5433. "Prevents one wireless client to talk to another. This setting only affects "
  5434. "packets without any VLAN tag (untagged packets)."
  5435. msgstr ""
  5436. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:213
  5437. msgid "Primary Slave"
  5438. msgstr ""
  5439. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:230
  5440. msgid ""
  5441. "Primary becomes active slave when it comes back up if speed and duplex "
  5442. "better than current slave (better, 1)"
  5443. msgstr ""
  5444. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:229
  5445. msgid "Primary becomes active slave whenever it comes back up (always, 0)"
  5446. msgstr ""
  5447. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:562
  5448. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:665
  5449. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:697
  5450. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:130
  5451. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:197
  5452. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:223
  5453. msgid "Priority"
  5454. msgstr ""
  5455. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:565
  5456. msgctxt "Label indicating that WireGuard peer private key is stored"
  5457. msgid "Private"
  5458. msgstr ""
  5459. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:490
  5460. msgctxt "MACVLAN mode"
  5461. msgid "Private (Prevent communication between MAC VLANs)"
  5462. msgstr ""
  5463. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:151
  5464. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:590
  5465. msgid "Private Key"
  5466. msgstr ""
  5467. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:564
  5468. msgid "Private key present"
  5469. msgstr ""
  5470. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:296
  5471. msgid "PrivateKey setting is missing or invalid"
  5472. msgstr ""
  5473. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:64
  5474. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:93
  5475. msgid "Processes"
  5476. msgstr ""
  5477. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:67
  5478. msgid "Prot."
  5479. msgstr ""
  5480. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:80
  5481. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:571
  5482. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1180
  5483. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:384
  5484. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:32
  5485. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:191
  5486. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:217
  5487. msgid "Protocol"
  5488. msgstr "प्रोटोकॉल"
  5489. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:282
  5490. msgid "Provide NTP server"
  5491. msgstr ""
  5492. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:930
  5493. msgid ""
  5494. "Provide a DHCPv6 server on this interface and reply to DHCPv6 solicitations "
  5495. "and requests."
  5496. msgstr ""
  5497. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:877
  5498. msgid "Provide new network"
  5499. msgstr ""
  5500. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:288
  5501. msgid ""
  5502. "Provide the NTP server to the selected interface or, if unspecified, to all "
  5503. "interfaces"
  5504. msgstr ""
  5505. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:155
  5506. msgid "Proxy Server"
  5507. msgstr ""
  5508. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1653
  5509. msgid "ProxyARP"
  5510. msgstr ""
  5511. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1072
  5512. msgid "Pseudo Ad-Hoc (ahdemo)"
  5513. msgstr ""
  5514. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:158
  5515. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:585
  5516. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:37
  5517. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:54
  5518. msgid "Public Key"
  5519. msgstr ""
  5520. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:547
  5521. msgid "Public key is missing"
  5522. msgstr ""
  5523. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:556
  5524. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:101
  5525. msgctxt "Tooltip displaying full WireGuard peer public key"
  5526. msgid "Public key: %h"
  5527. msgstr ""
  5528. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:290
  5529. msgid ""
  5530. "Public keys allow for the passwordless SSH logins with a higher security "
  5531. "compared to the use of plain passwords. In order to upload a new key to the "
  5532. "device, paste an OpenSSH compatible public key line or drag a <code>.pub</"
  5533. "code> file into the input field."
  5534. msgstr ""
  5535. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:192
  5536. msgid "Public prefix routed to this device for distribution to clients."
  5537. msgstr ""
  5538. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:305
  5539. msgid "PublicKey setting is invalid"
  5540. msgstr ""
  5541. #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:9
  5542. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:27
  5543. msgid "QMI Cellular"
  5544. msgstr ""
  5545. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:146
  5546. msgid "Quality"
  5547. msgstr ""
  5548. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:514
  5549. msgid "Query all available upstream resolvers."
  5550. msgstr ""
  5551. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:610
  5552. msgid "Query interval"
  5553. msgstr ""
  5554. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:615
  5555. msgid "Query response interval"
  5556. msgstr ""
  5557. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1585
  5558. msgid "R0 Key Lifetime"
  5559. msgstr ""
  5560. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1591
  5561. msgid "R1 Key Holder"
  5562. msgstr ""
  5563. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1425
  5564. msgid "RADIUS Accounting Port"
  5565. msgstr ""
  5566. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1431
  5567. msgid "RADIUS Accounting Secret"
  5568. msgstr ""
  5569. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1420
  5570. msgid "RADIUS Accounting Server"
  5571. msgstr ""
  5572. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1409
  5573. msgid "RADIUS Authentication Port"
  5574. msgstr ""
  5575. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1415
  5576. msgid "RADIUS Authentication Secret"
  5577. msgstr ""
  5578. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1404
  5579. msgid "RADIUS Authentication Server"
  5580. msgstr ""
  5581. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1437
  5582. msgid "RADIUS Dynamic VLAN Assignment"
  5583. msgstr ""
  5584. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1446
  5585. msgid "RADIUS Per STA VLAN"
  5586. msgstr ""
  5587. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1463
  5588. msgid "RADIUS VLAN Bridge Naming Scheme"
  5589. msgstr ""
  5590. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1450
  5591. msgid "RADIUS VLAN Naming"
  5592. msgstr ""
  5593. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1453
  5594. msgid "RADIUS VLAN Tagged Interface"
  5595. msgstr ""
  5596. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:88
  5597. msgid "RFC3947 NAT-T mode"
  5598. msgstr ""
  5599. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1485
  5600. msgid "RSN Preauth"
  5601. msgstr ""
  5602. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:998
  5603. msgid "RSSI threshold for joining"
  5604. msgstr ""
  5605. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:961
  5606. msgid "RTS/CTS Threshold"
  5607. msgstr ""
  5608. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:49
  5609. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:84
  5610. msgid "RX"
  5611. msgstr ""
  5612. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:236
  5613. msgid "RX Rate"
  5614. msgstr ""
  5615. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2260
  5616. msgid "RX Rate / TX Rate"
  5617. msgstr ""
  5618. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1614
  5619. msgid ""
  5620. "Radio Resource Measurement - Sends beacons to assist roaming. Not all "
  5621. "clients support this."
  5622. msgstr ""
  5623. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:61
  5624. msgctxt "nft nat flag random"
  5625. msgid "Randomize source port mapping"
  5626. msgstr ""
  5627. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:88
  5628. msgid "Raw hex-encoded bytes. Leave empty unless your ISP require this"
  5629. msgstr ""
  5630. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:420
  5631. msgid "Read <code>/etc/ethers</code> to configure the DHCP server."
  5632. msgstr ""
  5633. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:576
  5634. msgid "Really switch protocol?"
  5635. msgstr ""
  5636. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:118
  5637. msgid "Realtime Graphs"
  5638. msgstr ""
  5639. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1568
  5640. msgid "Reassociation Deadline"
  5641. msgstr ""
  5642. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:312
  5643. msgid "Rebind protection"
  5644. msgstr ""
  5645. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:20
  5646. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:140
  5647. msgid "Reboot"
  5648. msgstr "रीबूट करा"
  5649. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:153
  5650. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:162
  5651. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:46
  5652. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:51
  5653. msgid "Rebooting…"
  5654. msgstr ""
  5655. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:21
  5656. msgid "Reboots the operating system of your device"
  5657. msgstr ""
  5658. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:26
  5659. msgid "Receive"
  5660. msgstr ""
  5661. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:243
  5662. msgid "Receive dropped"
  5663. msgstr ""
  5664. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:242
  5665. msgid "Receive errors"
  5666. msgstr ""
  5667. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:57
  5668. msgid "Received Data"
  5669. msgstr ""
  5670. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:239
  5671. msgid "Received bytes"
  5672. msgstr ""
  5673. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:241
  5674. msgid "Received multicast"
  5675. msgstr ""
  5676. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:240
  5677. msgid "Received packets"
  5678. msgstr ""
  5679. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:181
  5680. msgid "Recommended. IP addresses of the WireGuard interface."
  5681. msgstr ""
  5682. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:199
  5683. msgid "Reconnect Timeout"
  5684. msgstr ""
  5685. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:521
  5686. msgid "Reconnect this interface"
  5687. msgstr ""
  5688. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/uhttpd.js:14
  5689. msgid "Redirect to HTTPS"
  5690. msgstr ""
  5691. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:118
  5692. msgctxt "nft redirect to port"
  5693. msgid "Redirect to local port <strong>%h</strong>"
  5694. msgstr ""
  5695. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:117
  5696. msgctxt "nft redirect"
  5697. msgid "Redirect to local system"
  5698. msgstr ""
  5699. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:57
  5700. msgid "References"
  5701. msgstr ""
  5702. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:373
  5703. msgid "Refresh Channels"
  5704. msgstr ""
  5705. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2721
  5706. msgid "Refreshing"
  5707. msgstr ""
  5708. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:102
  5709. msgid "Registration State"
  5710. msgstr ""
  5711. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:101
  5712. msgctxt "nft reject with icmp type"
  5713. msgid "Reject IPv4 packet with <strong>ICMP type %h</strong>"
  5714. msgstr ""
  5715. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:103
  5716. msgctxt "nft reject with icmpx type"
  5717. msgid "Reject packet with <strong>ICMP type %h</strong>"
  5718. msgstr ""
  5719. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:102
  5720. msgctxt "nft reject with icmpv6 type"
  5721. msgid "Reject packet with <strong>ICMPv6 type %h</strong>"
  5722. msgstr ""
  5723. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:100
  5724. msgctxt "nft reject with tcp reset"
  5725. msgid "Reject packet with <strong>TCP reset</strong>"
  5726. msgstr ""
  5727. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:192
  5728. msgid ""
  5729. "Reject routing decisions that have a prefix length less than or equal to the "
  5730. "specified value"
  5731. msgstr ""
  5732. #: modules/luci-compat/luasrc/model/network/proto_relay.lua:153
  5733. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:262
  5734. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:692
  5735. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:39
  5736. msgid "Relay"
  5737. msgstr ""
  5738. #: modules/luci-compat/luasrc/model/network/proto_relay.lua:157
  5739. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:36
  5740. msgid "Relay Bridge"
  5741. msgstr ""
  5742. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:355
  5743. msgid "Relay DHCP requests elsewhere. OK: v4↔v4, v6↔v6. Not OK: v4↔v6, v6↔v4."
  5744. msgstr ""
  5745. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:154
  5746. msgid "Relay between networks"
  5747. msgstr ""
  5748. #: modules/luci-compat/luasrc/model/network/proto_relay.lua:12
  5749. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:64
  5750. msgid "Relay bridge"
  5751. msgstr ""
  5752. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:367
  5753. msgid "Relay from"
  5754. msgstr ""
  5755. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:387
  5756. msgid "Relay to address"
  5757. msgstr ""
  5758. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:50
  5759. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:49
  5760. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:40
  5761. msgid "Remote IPv4 address"
  5762. msgstr ""
  5763. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:42
  5764. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:42
  5765. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:40
  5766. #: protocols/luci-proto-vti/htdocs/luci-static/resources/protocol/vti.js:40
  5767. msgid "Remote IPv4 address or FQDN"
  5768. msgstr ""
  5769. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:40
  5770. msgid "Remote IPv6 address"
  5771. msgstr ""
  5772. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:42
  5773. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:42
  5774. msgid "Remote IPv6 address or FQDN"
  5775. msgstr ""
  5776. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:901
  5777. msgid "Remove"
  5778. msgstr ""
  5779. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:474
  5780. msgid "Remove IPv4 addresses from the results and only return IPv6 addresses."
  5781. msgstr ""
  5782. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:468
  5783. msgid "Remove IPv6 addresses from the results and only return IPv4 addresses."
  5784. msgstr ""
  5785. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1361
  5786. msgid "Remove related device settings from the configuration"
  5787. msgstr ""
  5788. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2102
  5789. msgid "Replace wireless configuration"
  5790. msgstr ""
  5791. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:17
  5792. msgid "Request IPv6-address"
  5793. msgstr ""
  5794. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:23
  5795. msgid "Request IPv6-prefix of length"
  5796. msgstr ""
  5797. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:408
  5798. msgid "Request timeout"
  5799. msgstr ""
  5800. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:100
  5801. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:105
  5802. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:102
  5803. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:107
  5804. msgid "Require incoming checksum (optional)."
  5805. msgstr ""
  5806. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:102
  5807. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:107
  5808. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:104
  5809. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:109
  5810. msgid "Require incoming packets serialization (optional)."
  5811. msgstr ""
  5812. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1441
  5813. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1780
  5814. msgid "Required"
  5815. msgstr ""
  5816. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34
  5817. msgid "Required for certain ISPs, e.g. Charter with DOCSIS 3"
  5818. msgstr ""
  5819. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:151
  5820. msgid "Required. Base64-encoded private key for this interface."
  5821. msgstr ""
  5822. #: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:40
  5823. msgid "Required. Path to the .yml config file for this interface."
  5824. msgstr ""
  5825. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:585
  5826. msgid "Required. Public key of the WireGuard peer."
  5827. msgstr ""
  5828. #: protocols/luci-proto-xfrm/htdocs/luci-static/resources/protocol/xfrm.js:42
  5829. msgid "Required. Underlying interface."
  5830. msgstr ""
  5831. #: protocols/luci-proto-xfrm/htdocs/luci-static/resources/protocol/xfrm.js:39
  5832. msgid "Required. XFRM interface ID to be used for SA."
  5833. msgstr ""
  5834. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1437
  5835. msgid ""
  5836. "Required: Rejects auth if RADIUS server does not provide appropriate VLAN "
  5837. "attributes."
  5838. msgstr ""
  5839. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1320
  5840. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1321
  5841. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1322
  5842. msgid "Requires hostapd"
  5843. msgstr ""
  5844. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1327
  5845. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1328
  5846. msgid "Requires hostapd with EAP Suite-B support"
  5847. msgstr ""
  5848. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1325
  5849. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1326
  5850. msgid "Requires hostapd with EAP support"
  5851. msgstr ""
  5852. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1329
  5853. msgid "Requires hostapd with OWE support"
  5854. msgstr ""
  5855. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1323
  5856. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1324
  5857. msgid "Requires hostapd with SAE support"
  5858. msgstr ""
  5859. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1318
  5860. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1319
  5861. msgid "Requires hostapd with WEP support"
  5862. msgstr ""
  5863. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1334
  5864. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1335
  5865. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1336
  5866. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1348
  5867. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1349
  5868. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1350
  5869. msgid "Requires wpa-supplicant"
  5870. msgstr ""
  5871. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1341
  5872. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1342
  5873. msgid "Requires wpa-supplicant with EAP Suite-B support"
  5874. msgstr ""
  5875. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1339
  5876. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1340
  5877. msgid "Requires wpa-supplicant with EAP support"
  5878. msgstr ""
  5879. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1343
  5880. msgid "Requires wpa-supplicant with OWE support"
  5881. msgstr ""
  5882. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1337
  5883. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1338
  5884. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1353
  5885. msgid "Requires wpa-supplicant with SAE support"
  5886. msgstr ""
  5887. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1332
  5888. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1333
  5889. msgid "Requires wpa-supplicant with WEP support"
  5890. msgstr ""
  5891. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:226
  5892. msgid "Reselection policy for primary slave"
  5893. msgstr ""
  5894. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2197
  5895. #: modules/luci-base/ucode/template/sysauth.ut:39
  5896. #: modules/luci-compat/luasrc/view/cbi/delegator.htm:17
  5897. #: modules/luci-compat/luasrc/view/cbi/footer.htm:30
  5898. #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:66
  5899. msgid "Reset"
  5900. msgstr ""
  5901. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:343
  5902. msgid "Reset Counters"
  5903. msgstr ""
  5904. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:404
  5905. msgid "Reset to defaults"
  5906. msgstr ""
  5907. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:259
  5908. msgid "Resolv and Hosts Files"
  5909. msgstr ""
  5910. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:431
  5911. msgid "Resolv file"
  5912. msgstr ""
  5913. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:298
  5914. msgid "Resolve specified FQDNs to an IP."
  5915. msgstr ""
  5916. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:405
  5917. msgid "Resource not found"
  5918. msgstr ""
  5919. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:523
  5920. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:869
  5921. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:100
  5922. msgid "Restart"
  5923. msgstr ""
  5924. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:348
  5925. msgid "Restart Firewall"
  5926. msgstr ""
  5927. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:867
  5928. msgid "Restart radio interface"
  5929. msgstr ""
  5930. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:400
  5931. msgid "Restore"
  5932. msgstr ""
  5933. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:410
  5934. msgid "Restore backup"
  5935. msgstr ""
  5936. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:479
  5937. msgid ""
  5938. "Return answers to DNS queries matching the subnet from which the query was "
  5939. "received if multiple IPs are available."
  5940. msgstr ""
  5941. #: modules/luci-base/htdocs/luci-static/resources/ui.js:386
  5942. #: modules/luci-base/htdocs/luci-static/resources/ui.js:387
  5943. msgid "Reveal/hide password"
  5944. msgstr ""
  5945. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:679
  5946. msgid "Reverse path filter"
  5947. msgstr ""
  5948. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4467
  5949. msgid "Revert"
  5950. msgstr ""
  5951. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4572
  5952. msgid "Revert changes"
  5953. msgstr ""
  5954. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4784
  5955. msgid "Revert request failed with status <code>%h</code>"
  5956. msgstr ""
  5957. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4764
  5958. msgid "Reverting configuration…"
  5959. msgstr ""
  5960. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:84
  5961. msgid "Revision"
  5962. msgstr ""
  5963. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:111
  5964. msgctxt "nft dnat ip to addr"
  5965. msgid "Rewrite destination to <strong>%h</strong>"
  5966. msgstr ""
  5967. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:114
  5968. msgctxt "nft dnat ip6 to addr"
  5969. msgid "Rewrite destination to <strong>%h</strong>"
  5970. msgstr ""
  5971. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:112
  5972. msgctxt "nft dnat ip to addr:port"
  5973. msgid "Rewrite destination to <strong>%h</strong>, port <strong>%h</strong>"
  5974. msgstr ""
  5975. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:115
  5976. msgctxt "nft dnat ip6 to addr:port"
  5977. msgid "Rewrite destination to <strong>%h</strong>, port <strong>%h</strong>"
  5978. msgstr ""
  5979. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:105
  5980. msgctxt "nft snat ip to addr"
  5981. msgid "Rewrite source to <strong>%h</strong>"
  5982. msgstr ""
  5983. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:108
  5984. msgctxt "nft snat ip6 to addr"
  5985. msgid "Rewrite source to <strong>%h</strong>"
  5986. msgstr ""
  5987. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:106
  5988. msgctxt "nft snat ip to addr:port"
  5989. msgid "Rewrite source to <strong>%h</strong>, port <strong>%h</strong>"
  5990. msgstr ""
  5991. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:109
  5992. msgctxt "nft snat ip6 to addr:port"
  5993. msgid "Rewrite source to <strong>%h</strong>, port <strong>%h</strong>"
  5994. msgstr ""
  5995. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:120
  5996. msgid "Rewrite to egress device address"
  5997. msgstr ""
  5998. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1485
  5999. msgid ""
  6000. "Robust Security Network (RSN): Allow roaming preauth for WPA2-EAP networks "
  6001. "(and advertise it in WLAN beacons). Only works if the specified network "
  6002. "interface is a bridge. Shortens the time-critical reassociation process."
  6003. msgstr ""
  6004. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:605
  6005. msgid "Robustness"
  6006. msgstr ""
  6007. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:572
  6008. msgid ""
  6009. "Root directory for files served via TFTP. <em>Enable TFTP server</em> and "
  6010. "<em>TFTP server root</em> turn on the TFTP server and serve files from "
  6011. "<em>TFTP server root</em>."
  6012. msgstr ""
  6013. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:298
  6014. msgid "Root preparation"
  6015. msgstr ""
  6016. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:204
  6017. msgid "Round-Robin policy (balance-rr, 0)"
  6018. msgstr ""
  6019. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:659
  6020. msgid "Route Allowed IPs"
  6021. msgstr ""
  6022. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:532
  6023. msgid "Route action chain \"%h\""
  6024. msgstr ""
  6025. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:46
  6026. msgid "Route type"
  6027. msgstr ""
  6028. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:879
  6029. msgid ""
  6030. "Router Lifetime published in <abbr title=\"Router Advertisement, ICMPv6 Type "
  6031. "134\">RA</abbr> messages. Maximum is 9000 seconds."
  6032. msgstr ""
  6033. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:46
  6034. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:26
  6035. msgid "Router Password"
  6036. msgstr ""
  6037. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:28
  6038. #: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:50
  6039. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:248
  6040. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:15
  6041. msgid "Routing"
  6042. msgstr ""
  6043. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:44
  6044. msgid "Routing Algorithm"
  6045. msgstr ""
  6046. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:28
  6047. msgid ""
  6048. "Routing defines over which interface and gateway a certain host or network "
  6049. "can be reached."
  6050. msgstr ""
  6051. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:218
  6052. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:198
  6053. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:224
  6054. msgid "Rule"
  6055. msgstr ""
  6056. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:602
  6057. msgid "Rule actions"
  6058. msgstr ""
  6059. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:475
  6060. msgctxt "nft comment"
  6061. msgid "Rule comment: %s"
  6062. msgstr ""
  6063. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:540
  6064. msgid "Rule container chain \"%h\""
  6065. msgstr ""
  6066. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:601
  6067. msgid "Rule matches"
  6068. msgstr ""
  6069. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:137
  6070. msgid "Rule type"
  6071. msgstr ""
  6072. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:336
  6073. msgid "Run a filesystem check before mounting the device"
  6074. msgstr ""
  6075. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:336
  6076. msgid "Run filesystem check"
  6077. msgstr ""
  6078. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2360
  6079. msgid "Runtime error"
  6080. msgstr ""
  6081. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:224
  6082. msgid "SHA256"
  6083. msgstr ""
  6084. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:145
  6085. msgid "SIM %d"
  6086. msgstr ""
  6087. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:147
  6088. msgid "SIMs"
  6089. msgstr ""
  6090. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:59
  6091. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:280
  6092. msgid "SNR"
  6093. msgstr ""
  6094. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:263
  6095. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:650
  6096. msgid "SRV"
  6097. msgstr ""
  6098. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:10
  6099. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:38
  6100. msgid "SSH Access"
  6101. msgstr ""
  6102. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:70
  6103. msgid "SSH server address"
  6104. msgstr ""
  6105. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:74
  6106. msgid "SSH server port"
  6107. msgstr ""
  6108. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:58
  6109. msgid "SSH username"
  6110. msgstr ""
  6111. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:289
  6112. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:51
  6113. msgid "SSH-Keys"
  6114. msgstr ""
  6115. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:156
  6116. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:181
  6117. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1838
  6118. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:401
  6119. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:147
  6120. msgid "SSID"
  6121. msgstr "SSID"
  6122. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:9
  6123. msgid "SSTP"
  6124. msgstr ""
  6125. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:41
  6126. msgid "SSTP Server"
  6127. msgstr ""
  6128. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:340
  6129. msgid "SWAP"
  6130. msgstr ""
  6131. #: modules/luci-base/htdocs/luci-static/resources/form.js:3274
  6132. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2192
  6133. #: modules/luci-compat/luasrc/view/cbi/error.htm:17
  6134. #: modules/luci-compat/luasrc/view/cbi/footer.htm:26
  6135. #: modules/luci-compat/luasrc/view/cbi/header.htm:20
  6136. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:463
  6137. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:123
  6138. msgid "Save"
  6139. msgstr ""
  6140. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2174
  6141. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4455
  6142. #: modules/luci-compat/luasrc/view/cbi/footer.htm:22
  6143. msgid "Save & Apply"
  6144. msgstr ""
  6145. #: modules/luci-base/htdocs/luci-static/resources/form.js:607
  6146. msgid "Save error"
  6147. msgstr ""
  6148. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:434
  6149. msgid "Save mtdblock"
  6150. msgstr ""
  6151. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:424
  6152. msgid "Save mtdblock contents"
  6153. msgstr ""
  6154. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:874
  6155. msgid "Scan"
  6156. msgstr ""
  6157. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/crontab.js:28
  6158. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:90
  6159. msgid "Scheduled Tasks"
  6160. msgstr ""
  6161. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:39
  6162. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:62
  6163. msgid "Section %s is empty."
  6164. msgstr ""
  6165. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4441
  6166. msgid "Section added"
  6167. msgstr ""
  6168. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4443
  6169. msgid "Section removed"
  6170. msgstr ""
  6171. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:332
  6172. msgid "See \"mount\" manpage for details"
  6173. msgstr ""
  6174. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:283
  6175. msgid ""
  6176. "Select 'Force upgrade' to flash the image even if the image format check "
  6177. "fails. Use only if you are sure that the firmware is correct and meant for "
  6178. "your device!"
  6179. msgstr ""
  6180. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2681
  6181. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2821
  6182. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2981
  6183. msgid "Select file…"
  6184. msgstr ""
  6185. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:320
  6186. msgid "Selects the transmit hash policy to use for slave selection"
  6187. msgstr ""
  6188. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:808
  6189. msgid ""
  6190. "Send <abbr title=\"Router Advertisement, ICMPv6 Type 134\">RA</abbr> "
  6191. "messages advertising this device as IPv6 router."
  6192. msgstr ""
  6193. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:704
  6194. msgid "Send ICMP redirects"
  6195. msgstr ""
  6196. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:143
  6197. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:115
  6198. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:101
  6199. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:75
  6200. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:88
  6201. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:111
  6202. msgid ""
  6203. "Send LCP echo requests at the given interval in seconds, only effective in "
  6204. "conjunction with failure threshold"
  6205. msgstr ""
  6206. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:24
  6207. msgid "Send the hostname of this device"
  6208. msgstr ""
  6209. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:89
  6210. msgid "Server"
  6211. msgstr ""
  6212. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:605
  6213. msgid "Server address"
  6214. msgstr ""
  6215. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:599
  6216. msgid "Server name"
  6217. msgstr ""
  6218. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:50
  6219. msgid "Service Name"
  6220. msgstr "सेवेचे नाव"
  6221. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:88
  6222. msgid "Service Type"
  6223. msgstr ""
  6224. #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:36
  6225. msgid "Services"
  6226. msgstr "सेवा"
  6227. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2664
  6228. msgid "Session expired"
  6229. msgstr ""
  6230. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:126
  6231. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:175
  6232. msgid "Set Static"
  6233. msgstr ""
  6234. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:703
  6235. msgid "Set an alias for a hostname."
  6236. msgstr ""
  6237. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:122
  6238. msgctxt "nft mangle"
  6239. msgid "Set header field <var>%s</var> to <strong>%s</strong>"
  6240. msgstr ""
  6241. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:975
  6242. msgid "Set interface as NDP-Proxy external slave. Default is off."
  6243. msgstr ""
  6244. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1299
  6245. msgid ""
  6246. "Set interface properties regardless of the link carrier (If set, carrier "
  6247. "sense events do not invoke hotplug handlers)."
  6248. msgstr ""
  6249. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:302
  6250. msgid "Set same MAC Address to all slaves"
  6251. msgstr ""
  6252. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:826
  6253. msgid ""
  6254. "Set the autonomous address-configuration flag in the prefix information "
  6255. "options of sent <abbr title=\"Router Advertisement\">RA</abbr> messages. "
  6256. "When enabled, clients will perform stateless IPv6 address autoconfiguration."
  6257. msgstr ""
  6258. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:736
  6259. msgid ""
  6260. "Set this interface as master for RA and DHCPv6 relaying as well as NDP "
  6261. "proxying."
  6262. msgstr ""
  6263. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:306
  6264. msgid "Set to currently active slave (active, 1)"
  6265. msgstr ""
  6266. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:307
  6267. msgid "Set to first slave added to the bond (follow, 2)"
  6268. msgstr ""
  6269. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:663
  6270. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:679
  6271. msgid "Set up DHCP Server"
  6272. msgstr ""
  6273. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:970
  6274. msgid "Set up routes for proxied IPv6 neighbours."
  6275. msgstr ""
  6276. #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:55
  6277. #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:55
  6278. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:23
  6279. msgid "Setting PLMN failed"
  6280. msgstr ""
  6281. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:68
  6282. msgid "Setting operation mode failed"
  6283. msgstr ""
  6284. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:87
  6285. msgid "Setting the allowed network technology."
  6286. msgstr ""
  6287. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:107
  6288. msgid "Setting the preferred network technology."
  6289. msgstr ""
  6290. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/uhttpd.js:11
  6291. msgid "Settings"
  6292. msgstr ""
  6293. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:983
  6294. msgid ""
  6295. "Settings for assisting wireless clients in roaming between multiple APs: "
  6296. "802.11r, 802.11k and 802.11v"
  6297. msgstr ""
  6298. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:210
  6299. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:39
  6300. msgid "Short GI"
  6301. msgstr ""
  6302. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1166
  6303. msgid "Short Preamble"
  6304. msgstr ""
  6305. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:470
  6306. msgid "Show current backup file list"
  6307. msgstr ""
  6308. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:293
  6309. msgid "Show empty chains"
  6310. msgstr ""
  6311. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:276
  6312. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:338
  6313. msgid "Show raw counters"
  6314. msgstr ""
  6315. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:527
  6316. msgid "Shutdown this interface"
  6317. msgstr ""
  6318. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:57
  6319. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:63
  6320. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:186
  6321. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1837
  6322. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:42
  6323. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:400
  6324. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:146
  6325. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:235
  6326. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:278
  6327. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:284
  6328. msgid "Signal"
  6329. msgstr ""
  6330. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2259
  6331. msgid "Signal / Noise"
  6332. msgstr ""
  6333. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:104
  6334. msgid "Signal Quality"
  6335. msgstr ""
  6336. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:146
  6337. msgid "Signal Refresh Rate"
  6338. msgstr ""
  6339. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:262
  6340. msgid "Signal:"
  6341. msgstr ""
  6342. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4194
  6343. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:222
  6344. msgid "Size"
  6345. msgstr ""
  6346. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:559
  6347. msgid "Size of DNS query cache"
  6348. msgstr ""
  6349. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:208
  6350. msgid "Size of the ZRam device in megabytes"
  6351. msgstr ""
  6352. #: modules/luci-compat/luasrc/view/cbi/footer.htm:18
  6353. #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:57
  6354. msgid "Skip"
  6355. msgstr ""
  6356. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:257
  6357. msgid "Skip from backup files that are equal to those in /rom"
  6358. msgstr ""
  6359. #: themes/luci-theme-librecmc-2020/ucode/template/themes/librecmc2020/header.ut:35
  6360. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:46
  6361. msgid "Skip to content"
  6362. msgstr ""
  6363. #: themes/luci-theme-librecmc-2020/ucode/template/themes/librecmc2020/header.ut:34
  6364. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:45
  6365. msgid "Skip to navigation"
  6366. msgstr ""
  6367. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:180
  6368. msgid "Slave Interfaces"
  6369. msgstr ""
  6370. #: modules/luci-base/htdocs/luci-static/resources/network.js:3002
  6371. #: modules/luci-compat/luasrc/model/network.lua:1428
  6372. msgid "Software VLAN"
  6373. msgstr ""
  6374. #: modules/luci-compat/luasrc/view/cbi/header.htm:5
  6375. msgid "Some fields are invalid, cannot save values!"
  6376. msgstr ""
  6377. #: modules/luci-base/ucode/template/error404.ut:10
  6378. msgid "Sorry, the object you requested was not found."
  6379. msgstr ""
  6380. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:442
  6381. msgid ""
  6382. "Sorry, there is no sysupgrade support present; a new firmware image must be "
  6383. "flashed manually. Please refer to the wiki for device specific install "
  6384. "instructions."
  6385. msgstr ""
  6386. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:100
  6387. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:149
  6388. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:385
  6389. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:70
  6390. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:214
  6391. msgid "Source"
  6392. msgstr "स्रोत"
  6393. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:43
  6394. msgctxt "nft ip saddr"
  6395. msgid "Source IP"
  6396. msgstr ""
  6397. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:47
  6398. msgctxt "nft ip6 saddr"
  6399. msgid "Source IPv6"
  6400. msgstr ""
  6401. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57
  6402. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:57
  6403. msgid "Source interface"
  6404. msgstr ""
  6405. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:45
  6406. msgctxt "nft ip sport"
  6407. msgid "Source port"
  6408. msgstr ""
  6409. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:586
  6410. msgid ""
  6411. "Special <abbr title=\"Preboot eXecution Environment\">PXE</abbr> boot "
  6412. "options for Dnsmasq."
  6413. msgstr ""
  6414. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:953
  6415. msgid ""
  6416. "Specifies a fixed list of DNS search domains to announce via DHCPv6. If left "
  6417. "unspecified, the local device DNS search domain will be announced."
  6418. msgstr ""
  6419. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:937
  6420. msgid ""
  6421. "Specifies a fixed list of IPv6 DNS server addresses to announce via DHCPv6. "
  6422. "If left unspecified, the device will announce itself as IPv6 DNS server "
  6423. "unless the <em>Local IPv6 DNS server</em> option is disabled."
  6424. msgstr ""
  6425. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:187
  6426. msgid ""
  6427. "Specifies an individual UID or range of UIDs to match, e.g. 1000 to match "
  6428. "corresponding UID or 1000-1005 to inclusively match all UIDs within the "
  6429. "corresponding range"
  6430. msgstr ""
  6431. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:343
  6432. msgid ""
  6433. "Specifies that duplicate frames (received on inactive ports) should be "
  6434. "dropped or delivered"
  6435. msgstr ""
  6436. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:359
  6437. msgid "Specifies the ARP link monitoring frequency in milliseconds"
  6438. msgstr ""
  6439. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:367
  6440. msgid "Specifies the IP addresses to use for ARP monitoring"
  6441. msgstr ""
  6442. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:396
  6443. msgid "Specifies the MII link monitoring frequency in milliseconds"
  6444. msgstr ""
  6445. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:182
  6446. msgid "Specifies the TOS value to match in IP headers"
  6447. msgstr ""
  6448. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:261
  6449. msgid "Specifies the aggregation selection logic to use"
  6450. msgstr ""
  6451. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:160
  6452. msgid "Specifies the destination subnet to match (CIDR notation)"
  6453. msgstr ""
  6454. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:293
  6455. msgid "Specifies the directory the device is attached to"
  6456. msgstr ""
  6457. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:832
  6458. msgid ""
  6459. "Specifies the flags sent in <abbr title=\"Router Advertisement\">RA</abbr> "
  6460. "messages, for example to instruct clients to request further information via "
  6461. "stateful DHCPv6."
  6462. msgstr ""
  6463. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:177
  6464. msgid ""
  6465. "Specifies the fwmark and optionally its mask to match, e.g. 0xFF to match "
  6466. "mark 255 or 0x0/0x1 to match any even mark value"
  6467. msgstr ""
  6468. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:145
  6469. msgid "Specifies the incoming logical interface name"
  6470. msgstr ""
  6471. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:41
  6472. msgid ""
  6473. "Specifies the logical interface name of the parent (or master) interface "
  6474. "this route belongs to"
  6475. msgstr ""
  6476. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:254
  6477. msgid ""
  6478. "Specifies the mac-address for the actor in protocol packet exchanges "
  6479. "(LACPDUs). If empty, masters' mac address defaults to system default"
  6480. msgstr ""
  6481. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:175
  6482. msgid ""
  6483. "Specifies the maximum amount of failed ARP requests until hosts are presumed "
  6484. "to be dead"
  6485. msgstr ""
  6486. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:171
  6487. msgid ""
  6488. "Specifies the maximum amount of seconds after which hosts are presumed to be "
  6489. "dead"
  6490. msgstr ""
  6491. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:941
  6492. msgid ""
  6493. "Specifies the maximum transmit power the wireless radio may use. Depending "
  6494. "on regulatory requirements and wireless usage, the actual transmit power may "
  6495. "be reduced by the driver."
  6496. msgstr ""
  6497. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:238
  6498. msgid ""
  6499. "Specifies the minimum number of links that must be active before asserting "
  6500. "carrier"
  6501. msgstr ""
  6502. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:202
  6503. msgid "Specifies the mode to be used for this bonding interface"
  6504. msgstr ""
  6505. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:76
  6506. msgid ""
  6507. "Specifies the network gateway. If omitted, the gateway from the parent "
  6508. "interface is taken if any, otherwise creates a link scope route. If set to "
  6509. "0.0.0.0 no gateway will be specified for the route"
  6510. msgstr ""
  6511. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:334
  6512. msgid ""
  6513. "Specifies the number of IGMP membership reports to be issued after a "
  6514. "failover event in 200ms intervals"
  6515. msgstr ""
  6516. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:278
  6517. msgid ""
  6518. "Specifies the number of packets to transmit through a slave before moving to "
  6519. "the next one"
  6520. msgstr ""
  6521. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:312
  6522. msgid ""
  6523. "Specifies the number of peer notifications (gratuitous ARPs and unsolicited "
  6524. "IPv6 Neighbor Advertisements) to be issued after a failover event"
  6525. msgstr ""
  6526. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:286
  6527. msgid ""
  6528. "Specifies the number of seconds between instances where the bonding driver "
  6529. "sends learning packets to each slaves peer switch"
  6530. msgstr ""
  6531. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:130
  6532. msgid "Specifies the ordering of the IP rules"
  6533. msgstr ""
  6534. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:156
  6535. msgid "Specifies the outgoing logical interface name"
  6536. msgstr ""
  6537. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:100
  6538. msgid ""
  6539. "Specifies the preferred source address when sending to destinations covered "
  6540. "by the target"
  6541. msgstr ""
  6542. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:375
  6543. msgid "Specifies the quantity of ARP IP targets that must be reachable"
  6544. msgstr ""
  6545. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:270
  6546. msgid ""
  6547. "Specifies the rate in which the link partner will be asked to transmit "
  6548. "LACPDU packets"
  6549. msgstr ""
  6550. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:227
  6551. msgid ""
  6552. "Specifies the reselection policy for the primary slave when failure of the "
  6553. "active slave or recovery of the primary slave occurs"
  6554. msgstr ""
  6555. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:80
  6556. msgid "Specifies the route metric to use"
  6557. msgstr ""
  6558. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:46
  6559. msgid "Specifies the route type to be created"
  6560. msgstr ""
  6561. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:137
  6562. msgid "Specifies the rule target routing action"
  6563. msgstr ""
  6564. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:149
  6565. msgid "Specifies the source subnet to match (CIDR notation)"
  6566. msgstr ""
  6567. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:246
  6568. msgid "Specifies the system priority"
  6569. msgstr ""
  6570. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:404
  6571. msgid ""
  6572. "Specifies the time in milliseconds to wait before disabling a slave after a "
  6573. "link failure detection"
  6574. msgstr ""
  6575. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:412
  6576. msgid ""
  6577. "Specifies the time in milliseconds to wait before enabling a slave after a "
  6578. "link recovery detection"
  6579. msgstr ""
  6580. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:548
  6581. msgid ""
  6582. "Specifies the wired ports to attach to this bridge. In order to attach "
  6583. "wireless networks, choose the associated interface as network in the "
  6584. "wireless settings."
  6585. msgstr ""
  6586. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:383
  6587. msgid ""
  6588. "Specifies whether ARP probes and replies should be validated or non-ARP "
  6589. "traffic should be filtered for link monitoring"
  6590. msgstr ""
  6591. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:303
  6592. msgid ""
  6593. "Specifies whether active-backup mode should set all slaves to the same MAC "
  6594. "address at enslavement"
  6595. msgstr ""
  6596. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:420
  6597. msgid ""
  6598. "Specifies whether or not miimon should use MII or ETHTOOL ioctls vs. "
  6599. "netif_carrier_ok()"
  6600. msgstr ""
  6601. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:295
  6602. msgid ""
  6603. "Specifies whether to shuffle active flows across slaves based on the load"
  6604. msgstr ""
  6605. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:181
  6606. msgid ""
  6607. "Specifies which slave interfaces should be attached to this bonding interface"
  6608. msgstr ""
  6609. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:214
  6610. msgid ""
  6611. "Specifies which slave is the primary device. It will always be the active "
  6612. "slave while it is available"
  6613. msgstr ""
  6614. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:63
  6615. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:67
  6616. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:62
  6617. msgid "Specify a TOS (Type of Service)."
  6618. msgstr ""
  6619. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:74
  6620. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:79
  6621. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:79
  6622. msgid ""
  6623. "Specify a TOS (Type of Service). Can be <code>inherit</code> (the outer "
  6624. "header inherits the value of the inner header) or an hexadecimal value "
  6625. "<code>00..FF</code> (optional)."
  6626. msgstr ""
  6627. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:74
  6628. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:74
  6629. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:79
  6630. msgid ""
  6631. "Specify a TTL (Time to Live) for the encapsulating packet other than the "
  6632. "default (64) (optional)."
  6633. msgstr ""
  6634. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:69
  6635. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:58
  6636. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:62
  6637. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:57
  6638. msgid ""
  6639. "Specify a TTL (Time to Live) for the encapsulating packet other than the "
  6640. "default (64)."
  6641. msgstr ""
  6642. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:84
  6643. msgid ""
  6644. "Specify a Traffic Class. Can be <code>inherit</code> (the outer header "
  6645. "inherits the value of the inner header) or an hexadecimal value <code>00.."
  6646. "FF</code> (optional)."
  6647. msgstr ""
  6648. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:64
  6649. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:69
  6650. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:69
  6651. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:74
  6652. msgid ""
  6653. "Specify an MTU (Maximum Transmission Unit) other than the default (1280 "
  6654. "bytes) (optional)."
  6655. msgstr ""
  6656. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:53
  6657. msgid ""
  6658. "Specify an MTU (Maximum Transmission Unit) other than the default (1280 "
  6659. "bytes)."
  6660. msgstr ""
  6661. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2119
  6662. msgid "Specify the secret encryption key here."
  6663. msgstr ""
  6664. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:215
  6665. msgid "Speed: %d Mibit/s, Duplex: %s"
  6666. msgstr ""
  6667. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1560
  6668. msgid "Splitterless ADSL (G.992.2) Annex A"
  6669. msgstr ""
  6670. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:717
  6671. msgid "Stale neighbour cache timeout"
  6672. msgstr ""
  6673. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:686
  6674. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:99
  6675. msgid "Start"
  6676. msgstr "प्रारंभ करा"
  6677. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:140
  6678. msgid "Start WPS"
  6679. msgstr ""
  6680. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:76
  6681. msgid "Start priority"
  6682. msgstr ""
  6683. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1941
  6684. msgid "Start refresh"
  6685. msgstr ""
  6686. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4687
  6687. msgid "Starting configuration apply…"
  6688. msgstr ""
  6689. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1854
  6690. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:425
  6691. msgid "Starting wireless scan..."
  6692. msgstr ""
  6693. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:109
  6694. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:78
  6695. msgid "Startup"
  6696. msgstr ""
  6697. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:90
  6698. msgid "State"
  6699. msgstr ""
  6700. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:32
  6701. msgid "Static IPv4 Routes"
  6702. msgstr ""
  6703. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:32
  6704. msgid "Static IPv6 Routes"
  6705. msgstr ""
  6706. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:91
  6707. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:138
  6708. msgid "Static Lease"
  6709. msgstr ""
  6710. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:258
  6711. msgid "Static Leases"
  6712. msgstr ""
  6713. #: modules/luci-base/htdocs/luci-static/resources/network.js:2090
  6714. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:172
  6715. #: modules/luci-compat/luasrc/model/network.lua:967
  6716. msgid "Static address"
  6717. msgstr ""
  6718. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:771
  6719. msgid ""
  6720. "Static leases are used to assign fixed IP addresses and symbolic hostnames "
  6721. "to DHCP clients. They are also required for non-dynamic interface "
  6722. "configurations where only hosts with a corresponding lease are served."
  6723. msgstr ""
  6724. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1183
  6725. msgid "Station inactivity limit"
  6726. msgstr ""
  6727. #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:16
  6728. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:558
  6729. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:923
  6730. #: modules/luci-mod-status/ucode/template/admin_status/index.ut:9
  6731. msgid "Status"
  6732. msgstr "स्थिती"
  6733. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:529
  6734. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:101
  6735. msgid "Stop"
  6736. msgstr "थांबा"
  6737. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:135
  6738. msgid "Stop WPS"
  6739. msgstr ""
  6740. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1852
  6741. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1946
  6742. msgid "Stop refresh"
  6743. msgstr ""
  6744. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:24
  6745. msgid "Storage"
  6746. msgstr ""
  6747. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:683
  6748. msgid "Strict filtering"
  6749. msgstr ""
  6750. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:508
  6751. msgid "Strict order"
  6752. msgstr ""
  6753. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:33
  6754. msgid "Strong"
  6755. msgstr ""
  6756. #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:61
  6757. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2144
  6758. msgid "Submit"
  6759. msgstr ""
  6760. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:447
  6761. msgid "Suppress logging"
  6762. msgstr ""
  6763. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:448
  6764. msgid "Suppress logging of the routine operation for the DHCP protocol."
  6765. msgstr ""
  6766. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:46
  6767. msgid "Swap free"
  6768. msgstr ""
  6769. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:139
  6770. #: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:3
  6771. msgid "Switch"
  6772. msgstr ""
  6773. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:172
  6774. msgid "Switch %q"
  6775. msgstr ""
  6776. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:150
  6777. msgid ""
  6778. "Switch %q has an unknown topology - the VLAN settings might not be accurate."
  6779. msgstr ""
  6780. #: modules/luci-base/htdocs/luci-static/resources/network.js:3002
  6781. #: modules/luci-compat/luasrc/model/network.lua:1426
  6782. msgid "Switch VLAN"
  6783. msgstr ""
  6784. #: modules/luci-base/htdocs/luci-static/resources/network.js:2999
  6785. msgid "Switch port"
  6786. msgstr ""
  6787. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:577
  6788. msgid "Switch protocol"
  6789. msgstr ""
  6790. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:103
  6791. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:104
  6792. #: modules/luci-compat/luasrc/view/cbi/ipaddr.htm:26
  6793. msgid "Switch to CIDR list notation"
  6794. msgstr ""
  6795. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2716
  6796. msgid "Symbolic link"
  6797. msgstr ""
  6798. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:89
  6799. msgid "Sync with NTP-Server"
  6800. msgstr ""
  6801. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:81
  6802. msgid "Sync with browser"
  6803. msgstr ""
  6804. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:299
  6805. msgid "Syntax: <code>/fqdn[/fqdn…]/[ipaddr]</code>."
  6806. msgstr ""
  6807. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:650
  6808. msgid "Syntax: <code>_service._proto.example.com</code>."
  6809. msgstr ""
  6810. #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:26
  6811. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:22
  6812. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:113
  6813. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:3
  6814. msgid "System"
  6815. msgstr "प्रणाली"
  6816. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/syslog.js:25
  6817. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:63
  6818. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:75
  6819. msgid "System Log"
  6820. msgstr ""
  6821. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:245
  6822. msgid "System Priority"
  6823. msgstr ""
  6824. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:118
  6825. msgid "System Properties"
  6826. msgstr ""
  6827. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:162
  6828. msgid "System log buffer size"
  6829. msgstr ""
  6830. #: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:67
  6831. #: themes/luci-theme-material/ucode/template/themes/material/header.ut:87
  6832. #: themes/luci-theme-librecmc-2020/ucode/template/themes/librecmc2020/header.ut:64
  6833. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:89
  6834. msgid "System running in recovery (initramfs) mode."
  6835. msgstr ""
  6836. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:67
  6837. msgctxt "nft tcp option maxseg size"
  6838. msgid "TCP MSS"
  6839. msgstr ""
  6840. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:54
  6841. msgctxt "nft tcp dport"
  6842. msgid "TCP destination port"
  6843. msgstr ""
  6844. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:57
  6845. msgctxt "nft tcp flags"
  6846. msgid "TCP flags"
  6847. msgstr ""
  6848. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:53
  6849. msgctxt "nft tcp sport"
  6850. msgid "TCP source port"
  6851. msgstr ""
  6852. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:338
  6853. msgid "TCP:"
  6854. msgstr ""
  6855. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:571
  6856. msgid "TFTP server root"
  6857. msgstr ""
  6858. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:50
  6859. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:85
  6860. msgid "TX"
  6861. msgstr ""
  6862. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:236
  6863. msgid "TX Rate"
  6864. msgstr ""
  6865. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:672
  6866. msgid "TX queue length"
  6867. msgstr ""
  6868. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:92
  6869. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:167
  6870. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:18
  6871. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:190
  6872. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:216
  6873. msgid "Table"
  6874. msgstr ""
  6875. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:916
  6876. msgid "Tag"
  6877. msgstr ""
  6878. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:219
  6879. msgctxt "VLAN port state"
  6880. msgid "Tagged"
  6881. msgstr ""
  6882. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:655
  6883. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:718
  6884. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:57
  6885. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:66
  6886. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:187
  6887. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:213
  6888. msgid "Target"
  6889. msgstr "लक्ष्य"
  6890. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:58
  6891. msgid "Target Platform"
  6892. msgstr ""
  6893. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:103
  6894. msgid "Target network"
  6895. msgstr ""
  6896. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:36
  6897. msgid "Temp space"
  6898. msgstr ""
  6899. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:50
  6900. msgid "Terminate"
  6901. msgstr ""
  6902. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:886
  6903. msgid ""
  6904. "The <abbr title=\"Maximum Transmission Unit\">MTU</abbr> to be published in "
  6905. "<abbr title=\"Router Advertisement, ICMPv6 Type 134\">RA</abbr> messages. "
  6906. "Minimum is 1280 bytes."
  6907. msgstr ""
  6908. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:834
  6909. msgid ""
  6910. "The <em>Managed address configuration</em> (M) flag indicates that IPv6 "
  6911. "addresses are available via DHCPv6."
  6912. msgstr ""
  6913. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:838
  6914. msgid ""
  6915. "The <em>Mobile IPv6 Home Agent</em> (H) flag indicates that the device is "
  6916. "also acting as Mobile IPv6 home agent on this link."
  6917. msgstr ""
  6918. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:836
  6919. msgid ""
  6920. "The <em>Other configuration</em> (O) flag indicates that other information, "
  6921. "such as DNS servers, is available via DHCPv6."
  6922. msgstr ""
  6923. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:84
  6924. msgid "The <em>block mount</em> command failed with code %d"
  6925. msgstr ""
  6926. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:80
  6927. msgid ""
  6928. "The <em>qrencode</em> package is required for generating an QR code image of "
  6929. "the configuration."
  6930. msgstr ""
  6931. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:904
  6932. msgid "The DHCPv6-DUID (DHCP unique identifier) of this host."
  6933. msgstr ""
  6934. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1013
  6935. msgid ""
  6936. "The DNS server entries in the local resolv.conf are primarily sorted by the "
  6937. "weight specified here"
  6938. msgstr ""
  6939. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:77
  6940. msgid ""
  6941. "The HE.net endpoint update configuration changed, you must now use the plain "
  6942. "username instead of the user ID!"
  6943. msgstr ""
  6944. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:876
  6945. msgid "The IP address %h is already used by another static lease"
  6946. msgstr ""
  6947. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:885
  6948. msgid "The IP address is outside of any DHCP pool address range"
  6949. msgstr ""
  6950. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:606
  6951. msgid "The IP address of the boot server"
  6952. msgstr ""
  6953. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:859
  6954. msgid ""
  6955. "The IP address to be used for this host, or <em>ignore</em> to ignore any "
  6956. "DHCP request from this host."
  6957. msgstr ""
  6958. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:40
  6959. msgid "The IPv4 address or the fully-qualified domain name of the remote end."
  6960. msgstr ""
  6961. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:42
  6962. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:42
  6963. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:40
  6964. #: protocols/luci-proto-vti/htdocs/luci-static/resources/protocol/vti.js:40
  6965. msgid ""
  6966. "The IPv4 address or the fully-qualified domain name of the remote tunnel end."
  6967. msgstr ""
  6968. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:40
  6969. msgid "The IPv6 address or the fully-qualified domain name of the remote end."
  6970. msgstr ""
  6971. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:42
  6972. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:42
  6973. msgid ""
  6974. "The IPv6 address or the fully-qualified domain name of the remote tunnel end."
  6975. msgstr ""
  6976. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:912
  6977. msgid ""
  6978. "The IPv6 interface identifier (address suffix) as hexadecimal number (max. 8 "
  6979. "chars)."
  6980. msgstr ""
  6981. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:53
  6982. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:59
  6983. msgid ""
  6984. "The IPv6 prefix assigned to the provider, usually ends with <code>::</code>"
  6985. msgstr ""
  6986. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/timer.js:7
  6987. msgid "The LED blinks with the configured on/off frequency"
  6988. msgstr ""
  6989. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/heartbeat.js:7
  6990. msgid "The LED flashes to simulate actual heart beat."
  6991. msgstr ""
  6992. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:8
  6993. msgid ""
  6994. "The LED flashes with link status and activity on the configured interface."
  6995. msgstr ""
  6996. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/none.js:7
  6997. msgid "The LED is always in default state off."
  6998. msgstr ""
  6999. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/default-on.js:6
  7000. msgid "The LED is always in default state on."
  7001. msgstr ""
  7002. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:224
  7003. msgid ""
  7004. "The MAC address %h is already used by another static lease in the same DHCP "
  7005. "pool"
  7006. msgstr ""
  7007. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:640
  7008. msgid "The MTU must not exceed the parent device MTU of %d bytes"
  7009. msgstr ""
  7010. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:942
  7011. msgid "The VLAN ID must be unique"
  7012. msgstr ""
  7013. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:45
  7014. msgid "The algorithm that is used to discover mesh routes"
  7015. msgstr ""
  7016. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2104
  7017. msgid ""
  7018. "The allowed characters are: <code>A-Z</code>, <code>a-z</code>, <code>0-9</"
  7019. "code> and <code>_</code>"
  7020. msgstr ""
  7021. #: modules/luci-compat/luasrc/view/cbi/error.htm:6
  7022. msgid "The configuration file could not be loaded due to the following error:"
  7023. msgstr ""
  7024. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2098
  7025. msgid ""
  7026. "The correct SSID must be manually specified when joining a hidden wireless "
  7027. "network"
  7028. msgstr ""
  7029. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4563
  7030. msgid ""
  7031. "The device could not be reached within %d seconds after applying the pending "
  7032. "changes, which caused the configuration to be rolled back for safety "
  7033. "reasons. If you believe that the configuration changes are correct "
  7034. "nonetheless, perform an unchecked configuration apply. Alternatively, you "
  7035. "can dismiss this warning and edit changes before attempting to apply again, "
  7036. "or revert all pending changes to keep the currently working configuration "
  7037. "state."
  7038. msgstr ""
  7039. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:281
  7040. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:393
  7041. msgid ""
  7042. "The device file of the memory or partition (<abbr title=\"for example\">e.g."
  7043. "</abbr> <code>/dev/sda1</code>)"
  7044. msgstr ""
  7045. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:504
  7046. msgid "The device name \"%s\" is already taken"
  7047. msgstr ""
  7048. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:410
  7049. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:444
  7050. msgid ""
  7051. "The existing network configuration needs to be changed for LuCI to function "
  7052. "properly."
  7053. msgstr ""
  7054. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:788
  7055. msgid ""
  7056. "The existing wireless configuration needs to be changed for LuCI to function "
  7057. "properly."
  7058. msgstr ""
  7059. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:220
  7060. msgid ""
  7061. "The flash image was uploaded. Below is the checksum and file size listed, "
  7062. "compare them with the original file to ensure data integrity. <br /> Click "
  7063. "'Continue' below to start the flash procedure."
  7064. msgstr ""
  7065. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:249
  7066. msgid "The following rules are currently active on this system."
  7067. msgstr ""
  7068. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/heartbeat.js:8
  7069. msgid "The frequency is in direct proportion to 1-minute average CPU load."
  7070. msgstr ""
  7071. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:154
  7072. msgid "The gateway address must not be a local IP address"
  7073. msgstr ""
  7074. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:757
  7075. msgid ""
  7076. "The generated configuration can be imported into a WireGuard client "
  7077. "application to set up a connection towards this device."
  7078. msgstr ""
  7079. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:172
  7080. msgid "The given SSH public key has already been added."
  7081. msgstr ""
  7082. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:178
  7083. msgid ""
  7084. "The given SSH public key is invalid. Please supply proper public RSA, "
  7085. "ED25519 or ECDSA keys."
  7086. msgstr ""
  7087. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:800
  7088. msgid "The hardware address(es) of this entry/host, separated by spaces."
  7089. msgstr ""
  7090. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:93
  7091. msgid ""
  7092. "The hop penalty setting allows to modify batman-adv's preference for "
  7093. "multihop routes vs. short routes. The value is applied to the TQ of each "
  7094. "forwarded OGM, thereby propagating the cost of an extra hop (the packet has "
  7095. "to be received and retransmitted which costs airtime)"
  7096. msgstr ""
  7097. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:600
  7098. msgid "The hostname of the boot server"
  7099. msgstr ""
  7100. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:28
  7101. msgid "The interface could not be found"
  7102. msgstr ""
  7103. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1169
  7104. msgid "The interface name is already used"
  7105. msgstr ""
  7106. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1175
  7107. msgid "The interface name is too long"
  7108. msgstr ""
  7109. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:61
  7110. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:55
  7111. msgid ""
  7112. "The length of the IPv4 prefix in bits, the remainder is used in the IPv6 "
  7113. "addresses."
  7114. msgstr ""
  7115. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:57
  7116. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:63
  7117. msgid "The length of the IPv6 prefix in bits"
  7118. msgstr ""
  7119. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:165
  7120. msgid "The local IPv4 address"
  7121. msgstr ""
  7122. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:46
  7123. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:46
  7124. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:44
  7125. #: protocols/luci-proto-vti/htdocs/luci-static/resources/protocol/vti.js:44
  7126. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:44
  7127. msgid "The local IPv4 address over which the tunnel is created (optional)."
  7128. msgstr ""
  7129. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:171
  7130. msgid "The local IPv4 netmask"
  7131. msgstr ""
  7132. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:46
  7133. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:53
  7134. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:44
  7135. msgid "The local IPv6 address over which the tunnel is created (optional)."
  7136. msgstr ""
  7137. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:629
  7138. msgid ""
  7139. "The max response time in centiseconds inserted into group-specific queries "
  7140. "sent in response to leave group messages. It is also the amount of time "
  7141. "between group-specific query messages. This value may be tuned to modify the "
  7142. "\"leave latency\" of the network. A reduced value results in reduced time to "
  7143. "detect the loss of the last member of a group"
  7144. msgstr ""
  7145. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:615
  7146. msgid ""
  7147. "The max response time in centiseconds inserted into the periodic general "
  7148. "queries. By varying the value, an administrator may tune the burstiness of "
  7149. "IGMP messages on the subnet; larger values make the traffic less bursty, as "
  7150. "host responses are spread out over a larger interval"
  7151. msgstr ""
  7152. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:905
  7153. msgid ""
  7154. "The maximum hops to be published in <abbr title=\"Router Advertisement\">RA</"
  7155. "abbr> messages. Maximum is 255 hops."
  7156. msgstr ""
  7157. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4699
  7158. msgid ""
  7159. "The network access to this device could be interrupted by changing settings "
  7160. "of the \"%h\" interface."
  7161. msgstr ""
  7162. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2110
  7163. msgid "The network name is already used"
  7164. msgstr ""
  7165. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:139
  7166. msgid ""
  7167. "The network ports on this device can be combined to several <abbr "
  7168. "title=\"Virtual Local Area Network\">VLAN</abbr>s in which computers can "
  7169. "communicate directly with each other. <abbr title=\"Virtual Local Area "
  7170. "Network\">VLAN</abbr>s are often used to separate different network "
  7171. "segments. Often there is by default one Uplink port for a connection to the "
  7172. "next greater network like the internet and other ports for a local network."
  7173. msgstr ""
  7174. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:776
  7175. msgid ""
  7176. "The public hostname or IP address of this system the peer should connect to. "
  7177. "This usually is a static public IP address, a static hostname or a DDNS "
  7178. "domain."
  7179. msgstr ""
  7180. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:623
  7181. msgid "The query response interval must be lower than the query interval value"
  7182. msgstr ""
  7183. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:158
  7184. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:42
  7185. msgid "The reboot command failed with code %d"
  7186. msgstr ""
  7187. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:147
  7188. msgid "The restore command failed with code %d"
  7189. msgstr ""
  7190. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:605
  7191. msgid ""
  7192. "The robustness value allows tuning for the expected packet loss on the "
  7193. "network. If a network is expected to be lossy, the robustness value may be "
  7194. "increased. IGMP is robust to (Robustness-1) packet losses"
  7195. msgstr ""
  7196. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:172
  7197. msgid ""
  7198. "The rule target is a jump to another rule specified by its priority value"
  7199. msgstr ""
  7200. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:92
  7201. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:167
  7202. msgid ""
  7203. "The rule target is a table lookup ID: a numeric table index ranging from 0 "
  7204. "to 65535 or symbol alias declared in /etc/iproute2/rt_tables. Special "
  7205. "aliases local (255), main (254) and default (253) are also valid"
  7206. msgstr ""
  7207. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1378
  7208. msgid "The selected %s mode is incompatible with %s encryption"
  7209. msgstr ""
  7210. #: modules/luci-base/ucode/template/csrftoken.ut:11
  7211. msgid "The submitted security token is invalid or already expired!"
  7212. msgstr ""
  7213. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:98
  7214. msgid ""
  7215. "The system is erasing the configuration partition now and will reboot itself "
  7216. "when finished."
  7217. msgstr ""
  7218. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:320
  7219. msgid ""
  7220. "The system is flashing now.<br /> DO NOT POWER OFF THE DEVICE!<br /> Wait a "
  7221. "few minutes before you try to reconnect. It might be necessary to renew the "
  7222. "address of your computer to reach the device again, depending on your "
  7223. "settings."
  7224. msgstr ""
  7225. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:163
  7226. msgid ""
  7227. "The system is rebooting now. If the restored configuration changed the "
  7228. "current LAN IP address, you might need to reconnect manually."
  7229. msgstr ""
  7230. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:85
  7231. msgid "The system password has been successfully changed."
  7232. msgstr ""
  7233. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:345
  7234. msgid "The sysupgrade command failed with code %d"
  7235. msgstr ""
  7236. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:773
  7237. msgid ""
  7238. "The tag construct filters which host directives are used; more than one tag "
  7239. "can be provided, in this case the request must match all of them. Tagged "
  7240. "directives are used in preference to untagged ones. Note that one of mac, "
  7241. "duid or hostname still needs to be specified (can be a wildcard)."
  7242. msgstr ""
  7243. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:120
  7244. msgid ""
  7245. "The uploaded backup archive appears to be valid and contains the files "
  7246. "listed below. Press \"Continue\" to restore the backup and reboot, or "
  7247. "\"Cancel\" to abort the operation."
  7248. msgstr ""
  7249. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:115
  7250. msgid "The uploaded backup archive is not readable"
  7251. msgstr ""
  7252. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:249
  7253. msgid "The uploaded firmware does not allow keeping current configuration."
  7254. msgstr ""
  7255. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:244
  7256. msgid ""
  7257. "The uploaded image file does not contain a supported format. Make sure that "
  7258. "you choose the generic image format for your platform."
  7259. msgstr ""
  7260. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1515
  7261. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1527
  7262. msgid "The value is overridden by configuration."
  7263. msgstr ""
  7264. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:56
  7265. msgid ""
  7266. "The value specifies the interval (milliseconds) in which batman-adv floods "
  7267. "the network with its protocol information."
  7268. msgstr ""
  7269. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:678
  7270. msgid ""
  7271. "There are legacy iptables rules present on the system. Mixing iptables and "
  7272. "nftables rules is discouraged and may lead to incomplete traffic filtering."
  7273. msgstr ""
  7274. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:985
  7275. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1017
  7276. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:130
  7277. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:179
  7278. msgid "There are no active leases"
  7279. msgstr ""
  7280. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4731
  7281. msgid "There are no changes to apply"
  7282. msgstr ""
  7283. #: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:58
  7284. #: themes/luci-theme-material/ucode/template/themes/material/header.ut:78
  7285. #: themes/luci-theme-librecmc-2020/ucode/template/themes/librecmc2020/header.ut:55
  7286. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:80
  7287. msgid ""
  7288. "There is no password set on this router. Please configure a root password to "
  7289. "protect the web interface."
  7290. msgstr ""
  7291. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:49
  7292. msgid "This IPv4 address of the relay"
  7293. msgstr ""
  7294. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1722
  7295. msgid "This authentication type is not applicable to the selected EAP method."
  7296. msgstr ""
  7297. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:58
  7298. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:56
  7299. msgid "This does not look like a valid PEM file"
  7300. msgstr ""
  7301. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:454
  7302. msgid ""
  7303. "This is a list of shell glob patterns for matching files and directories to "
  7304. "include during sysupgrade. Modified files in /etc/config/ and certain other "
  7305. "configurations are automatically preserved."
  7306. msgstr ""
  7307. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:81
  7308. msgid ""
  7309. "This is either the \"Update Key\" configured for the tunnel or the account "
  7310. "password if no update key has been configured"
  7311. msgstr ""
  7312. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv_hardif.js:42
  7313. msgid ""
  7314. "This is the batman-adv device where you want to link the physical Device "
  7315. "from above to. If this list is empty, then you need to create one first. If "
  7316. "you want to route mesh traffic over a wired network device, then please "
  7317. "select it from the above Device selector. If you want to assign the batman-"
  7318. "adv interface to a Wi-fi mesh then do not select a Device in the Device "
  7319. "selector but rather go to the Wireless settings and select this Interface as "
  7320. "a network from there."
  7321. msgstr ""
  7322. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:116
  7323. msgid ""
  7324. "This is the content of /etc/rc.local. Insert your own commands here (in "
  7325. "front of 'exit 0') to execute them at the end of the boot process."
  7326. msgstr ""
  7327. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:54
  7328. msgid ""
  7329. "This is the local endpoint address assigned by the tunnel broker, it usually "
  7330. "ends with <code>...:2/64</code>"
  7331. msgstr ""
  7332. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:274
  7333. msgid "This is the only DHCP server in the local network."
  7334. msgstr ""
  7335. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:73
  7336. msgid "This is the plain username for logging into the account"
  7337. msgstr ""
  7338. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:57
  7339. msgid ""
  7340. "This is the prefix routed to you by the tunnel broker for use by clients"
  7341. msgstr ""
  7342. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/crontab.js:29
  7343. msgid "This is the system crontab in which scheduled tasks can be defined."
  7344. msgstr ""
  7345. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:50
  7346. msgid ""
  7347. "This is usually the address of the nearest PoP operated by the tunnel broker"
  7348. msgstr ""
  7349. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:65
  7350. msgid ""
  7351. "This list gives an overview over currently running system processes and "
  7352. "their status."
  7353. msgstr ""
  7354. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1676
  7355. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1734
  7356. msgid ""
  7357. "This option cannot be used because the ca-bundle package is not installed."
  7358. msgstr ""
  7359. #: modules/luci-base/htdocs/luci-static/resources/form.js:2280
  7360. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:172
  7361. #: modules/luci-compat/luasrc/view/cbi/tsection.htm:32
  7362. msgid "This section contains no values yet"
  7363. msgstr ""
  7364. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:124
  7365. msgid "Time Synchronization"
  7366. msgstr ""
  7367. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1629
  7368. msgid "Time advertisement"
  7369. msgstr ""
  7370. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:713
  7371. msgid "Time in milliseconds"
  7372. msgstr ""
  7373. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:581
  7374. msgid "Time in seconds to spend in listening and learning states"
  7375. msgstr ""
  7376. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1174
  7377. msgid "Time interval for rekeying GTK"
  7378. msgstr ""
  7379. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1638
  7380. msgid "Time zone"
  7381. msgstr ""
  7382. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:15
  7383. msgid "Timed-out"
  7384. msgstr ""
  7385. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:717
  7386. msgid "Timeout in seconds"
  7387. msgstr ""
  7388. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:567
  7389. msgid "Timeout in seconds for learned MAC addresses in the forwarding database"
  7390. msgstr ""
  7391. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:586
  7392. msgid "Timeout in seconds until topology updates on link loss"
  7393. msgstr ""
  7394. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:145
  7395. msgid "Timezone"
  7396. msgstr ""
  7397. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:438
  7398. msgid ""
  7399. "To fully configure the local WireGuard interface from an existing (e.g. "
  7400. "provider supplied) configuration file, use the <strong><a class=\"full-"
  7401. "import\" href=\"#\">configuration import</a></strong> instead."
  7402. msgstr ""
  7403. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:400
  7404. msgid ""
  7405. "To restore configuration files, you can upload a previously generated backup "
  7406. "archive here. To reset the firmware to its initial state, click \"Perform "
  7407. "reset\" (only possible with squashfs images)."
  7408. msgstr ""
  7409. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1569
  7410. msgid "Tone"
  7411. msgstr ""
  7412. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:35
  7413. msgid "Total Available"
  7414. msgstr ""
  7415. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:110
  7416. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:111
  7417. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:121
  7418. msgid "Traceroute"
  7419. msgstr ""
  7420. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:126
  7421. msgid "Tracking Area Code"
  7422. msgstr ""
  7423. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:54
  7424. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:65
  7425. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:139
  7426. msgid "Traffic"
  7427. msgstr ""
  7428. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:79
  7429. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:84
  7430. msgid "Traffic Class"
  7431. msgstr ""
  7432. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:528
  7433. msgid "Traffic filter chain \"%h\""
  7434. msgstr ""
  7435. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:466
  7436. msgctxt "nft counter"
  7437. msgid "Traffic matched by rule: %.1000mPackets, %.1024mBytes"
  7438. msgstr ""
  7439. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:387
  7440. msgid "Transfer"
  7441. msgstr ""
  7442. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:25
  7443. msgid "Transmit"
  7444. msgstr ""
  7445. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:319
  7446. msgid "Transmit Hash Policy"
  7447. msgstr ""
  7448. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:248
  7449. msgid "Transmit dropped"
  7450. msgstr ""
  7451. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:247
  7452. msgid "Transmit errors"
  7453. msgstr ""
  7454. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:58
  7455. msgid "Transmitted Data"
  7456. msgstr ""
  7457. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:245
  7458. msgid "Transmitted bytes"
  7459. msgstr ""
  7460. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:246
  7461. msgid "Transmitted packets"
  7462. msgstr ""
  7463. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:79
  7464. msgctxt "nft @th,off,len"
  7465. msgid "Transport header bits %d-%d"
  7466. msgstr ""
  7467. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:59
  7468. msgctxt "nft th dport"
  7469. msgid "Transport header destination port"
  7470. msgstr ""
  7471. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:58
  7472. msgctxt "nft th sport"
  7473. msgid "Transport header source port"
  7474. msgstr ""
  7475. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:75
  7476. msgid "Trigger"
  7477. msgstr ""
  7478. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:20
  7479. msgid "Trigger Mode"
  7480. msgstr ""
  7481. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:69
  7482. msgid "Tunnel ID"
  7483. msgstr ""
  7484. #: modules/luci-base/htdocs/luci-static/resources/network.js:3005
  7485. #: modules/luci-compat/luasrc/model/network.lua:1431
  7486. msgid "Tunnel Interface"
  7487. msgstr ""
  7488. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:44
  7489. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:55
  7490. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:76
  7491. msgid "Tunnel Link"
  7492. msgstr ""
  7493. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1472
  7494. msgid "Tunnel device"
  7495. msgstr ""
  7496. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:185
  7497. msgid "Tx-Power"
  7498. msgstr ""
  7499. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:45
  7500. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1503
  7501. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:169
  7502. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:43
  7503. msgid "Type"
  7504. msgstr "प्रकार"
  7505. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:182
  7506. msgid "Type of service"
  7507. msgstr ""
  7508. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:56
  7509. msgctxt "nft udp dport"
  7510. msgid "UDP destination port"
  7511. msgstr ""
  7512. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:55
  7513. msgctxt "nft udp sport"
  7514. msgid "UDP source port"
  7515. msgstr ""
  7516. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:328
  7517. msgid "UDP:"
  7518. msgstr ""
  7519. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:91
  7520. msgid "UMTS only"
  7521. msgstr ""
  7522. #: modules/luci-compat/luasrc/model/network/proto_3g.lua:10
  7523. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:43
  7524. msgid "UMTS/GPRS/EV-DO"
  7525. msgstr ""
  7526. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:255
  7527. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:361
  7528. msgid "UUID"
  7529. msgstr ""
  7530. #: modules/luci-base/htdocs/luci-static/resources/network.js:16
  7531. #: modules/luci-base/htdocs/luci-static/resources/network.js:17
  7532. #: modules/luci-compat/luasrc/model/network.lua:34
  7533. #: modules/luci-compat/luasrc/model/network.lua:35
  7534. msgid "Unable to determine device name"
  7535. msgstr ""
  7536. #: modules/luci-base/htdocs/luci-static/resources/network.js:18
  7537. #: modules/luci-compat/luasrc/model/network.lua:36
  7538. msgid "Unable to determine external IP address"
  7539. msgstr ""
  7540. #: modules/luci-base/htdocs/luci-static/resources/network.js:19
  7541. #: modules/luci-compat/luasrc/model/network.lua:37
  7542. msgid "Unable to determine upstream interface"
  7543. msgstr ""
  7544. #: modules/luci-base/ucode/template/error404.ut:12
  7545. msgid "Unable to dispatch"
  7546. msgstr ""
  7547. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:85
  7548. msgid "Unable to generate QR code: %s"
  7549. msgstr ""
  7550. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/dmesg.js:9
  7551. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/syslog.js:15
  7552. msgid "Unable to load log data:"
  7553. msgstr ""
  7554. #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:54
  7555. #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:54
  7556. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:22
  7557. msgid "Unable to obtain client ID"
  7558. msgstr ""
  7559. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:221
  7560. msgid "Unable to obtain mount information"
  7561. msgstr ""
  7562. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:307
  7563. msgid "Unable to reset ip6tables counters: %s"
  7564. msgstr ""
  7565. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:305
  7566. msgid "Unable to reset iptables counters: %s"
  7567. msgstr ""
  7568. #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:61
  7569. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:7
  7570. msgid "Unable to resolve AFTR host name"
  7571. msgstr ""
  7572. #: modules/luci-base/htdocs/luci-static/resources/network.js:20
  7573. #: modules/luci-compat/luasrc/model/network.lua:38
  7574. msgid "Unable to resolve peer host name"
  7575. msgstr ""
  7576. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:313
  7577. msgid "Unable to restart firewall: %s"
  7578. msgstr ""
  7579. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/crontab.js:22
  7580. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:370
  7581. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:57
  7582. msgid "Unable to save contents: %s"
  7583. msgstr ""
  7584. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:14
  7585. msgid "Unable to set allowed mode list."
  7586. msgstr ""
  7587. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:17
  7588. msgid "Unable to set preferred mode."
  7589. msgstr ""
  7590. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:29
  7591. msgid "Unable to verify PIN"
  7592. msgstr ""
  7593. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1360
  7594. msgid "Unconfigure"
  7595. msgstr ""
  7596. #: protocols/luci-proto-unet/htdocs/luci-static/resources/protocol/unet.js:8
  7597. msgid "Unet"
  7598. msgstr ""
  7599. #: modules/luci-base/htdocs/luci-static/resources/fs.js:102
  7600. msgid "Unexpected reply data format"
  7601. msgstr ""
  7602. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1535
  7603. msgid ""
  7604. "Unique Local Address - in the range <code>fc00::/7</code>. Typically only "
  7605. "within the &#8216;local&#8217; half <code>fd00::/8</code>. ULA for IPv6 is "
  7606. "analogous to IPv4 private network addressing. This prefix is randomly "
  7607. "generated at first install."
  7608. msgstr ""
  7609. #: modules/luci-base/htdocs/luci-static/resources/network.js:2092
  7610. #: modules/luci-compat/luasrc/model/network.lua:971
  7611. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:17
  7612. msgid "Unknown"
  7613. msgstr "अज्ञात"
  7614. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:12
  7615. msgid "Unknown and unsupported connection method."
  7616. msgstr ""
  7617. #: modules/luci-base/htdocs/luci-static/resources/network.js:2401
  7618. #: modules/luci-compat/luasrc/model/network.lua:1138
  7619. msgid "Unknown error (%s)"
  7620. msgstr ""
  7621. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:412
  7622. msgid "Unknown error code"
  7623. msgstr ""
  7624. #: modules/luci-base/htdocs/luci-static/resources/network.js:2089
  7625. #: modules/luci-base/htdocs/luci-static/resources/protocol/none.js:6
  7626. #: modules/luci-compat/luasrc/model/network.lua:965
  7627. msgid "Unmanaged"
  7628. msgstr ""
  7629. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:195
  7630. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:217
  7631. msgid "Unmount"
  7632. msgstr ""
  7633. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:121
  7634. msgid "Unnamed key"
  7635. msgstr ""
  7636. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4381
  7637. msgid "Unsaved Changes"
  7638. msgstr ""
  7639. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:410
  7640. msgid "Unspecified error"
  7641. msgstr ""
  7642. #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:64
  7643. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:9
  7644. msgid "Unsupported MAP type"
  7645. msgstr ""
  7646. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:69
  7647. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:31
  7648. msgid "Unsupported modem"
  7649. msgstr ""
  7650. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:112
  7651. msgid "Unsupported protocol"
  7652. msgstr ""
  7653. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:316
  7654. msgid "Unsupported protocol type."
  7655. msgstr ""
  7656. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:215
  7657. msgctxt "VLAN port state"
  7658. msgid "Untagged"
  7659. msgstr ""
  7660. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:532
  7661. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:97
  7662. msgid "Untitled peer"
  7663. msgstr ""
  7664. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:151
  7665. msgid "Up"
  7666. msgstr ""
  7667. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:411
  7668. msgid "Up Delay"
  7669. msgstr ""
  7670. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4268
  7671. msgid "Upload"
  7672. msgstr ""
  7673. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:441
  7674. msgid ""
  7675. "Upload a sysupgrade-compatible image here to replace the running firmware."
  7676. msgstr ""
  7677. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:138
  7678. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:169
  7679. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:412
  7680. msgid "Upload archive..."
  7681. msgstr ""
  7682. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2875
  7683. msgid "Upload file"
  7684. msgstr ""
  7685. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2850
  7686. msgid "Upload file…"
  7687. msgstr ""
  7688. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4214
  7689. msgid "Upload has been cancelled"
  7690. msgstr ""
  7691. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2797
  7692. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4256
  7693. msgid "Upload request failed: %s"
  7694. msgstr ""
  7695. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4175
  7696. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4229
  7697. msgid "Uploading file…"
  7698. msgstr ""
  7699. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:789
  7700. msgid ""
  7701. "Upon pressing \"Continue\", anonymous \"wifi-iface\" sections will be "
  7702. "assigned with a name in the form <em>wifinet#</em> and the network will be "
  7703. "restarted to apply the updated configuration."
  7704. msgstr ""
  7705. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:411
  7706. msgid ""
  7707. "Upon pressing \"Continue\", bridges configuration will be updated and the "
  7708. "network will be restarted to apply the updated configuration."
  7709. msgstr ""
  7710. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:445
  7711. msgid ""
  7712. "Upon pressing \"Continue\", ifname options will get renamed and the network "
  7713. "will be restarted to apply the updated configuration."
  7714. msgstr ""
  7715. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:509
  7716. msgid "Upstream resolvers will be queried in the order of the resolv file."
  7717. msgstr ""
  7718. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:82
  7719. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:62
  7720. msgid "Uptime"
  7721. msgstr ""
  7722. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:419
  7723. msgid "Use <code>/etc/ethers</code>"
  7724. msgstr ""
  7725. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:106
  7726. msgid "Use DHCP"
  7727. msgstr ""
  7728. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:295
  7729. msgid "Use DHCP advertised servers"
  7730. msgstr ""
  7731. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:167
  7732. msgid "Use DHCP gateway"
  7733. msgstr ""
  7734. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:115
  7735. msgid "Use DHCPv6"
  7736. msgstr ""
  7737. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:999
  7738. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:144
  7739. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:160
  7740. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:132
  7741. msgid "Use DNS servers advertised by peer"
  7742. msgstr ""
  7743. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:616
  7744. msgid "Use ISO/IEC 3166 alpha2 country codes."
  7745. msgstr ""
  7746. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:48
  7747. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:89
  7748. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:69
  7749. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6to4.js:53
  7750. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:67
  7751. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:84
  7752. msgid "Use MTU on tunnel interface"
  7753. msgstr ""
  7754. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:85
  7755. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:65
  7756. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6to4.js:49
  7757. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:80
  7758. msgid "Use TTL on tunnel interface"
  7759. msgstr ""
  7760. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:322
  7761. msgid "Use XOR of hardware MAC addresses (layer2)"
  7762. msgstr ""
  7763. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:323
  7764. msgid "Use XOR of hardware MAC addresses and IP addresses (layer2+3)"
  7765. msgstr ""
  7766. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:325
  7767. msgid ""
  7768. "Use XOR of hardware MAC addresses and IP addresses, rely on skb_flow_dissect "
  7769. "(encap2+3)"
  7770. msgstr ""
  7771. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:295
  7772. msgid "Use as external overlay (/overlay)"
  7773. msgstr ""
  7774. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:294
  7775. msgid "Use as root filesystem (/)"
  7776. msgstr ""
  7777. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34
  7778. msgid "Use broadcast flag"
  7779. msgstr ""
  7780. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1295
  7781. msgid "Use builtin IPv6-management"
  7782. msgstr ""
  7783. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1003
  7784. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:148
  7785. msgid "Use custom DNS servers"
  7786. msgstr ""
  7787. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:995
  7788. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:133
  7789. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:156
  7790. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:121
  7791. msgid "Use default gateway"
  7792. msgstr ""
  7793. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1017
  7794. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:138
  7795. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:164
  7796. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:126
  7797. msgid "Use gateway metric"
  7798. msgstr ""
  7799. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:88
  7800. msgid "Use legacy MAP"
  7801. msgstr ""
  7802. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:88
  7803. msgid ""
  7804. "Use legacy MAP interface identifier format (draft-ietf-softwire-map-00) "
  7805. "instead of RFC7597"
  7806. msgstr ""
  7807. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:179
  7808. msgid "Use routing table"
  7809. msgstr ""
  7810. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:63
  7811. msgctxt "nft nat flag persistent"
  7812. msgid "Use same source and destination for each connection"
  7813. msgstr ""
  7814. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1669
  7815. msgid "Use system certificates"
  7816. msgstr ""
  7817. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1727
  7818. msgid "Use system certificates for inner-tunnel"
  7819. msgstr ""
  7820. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:772
  7821. msgid ""
  7822. "Use the <em>Add</em> Button to add a new lease entry. The <em>MAC address</"
  7823. "em> identifies the host, the <em>IPv4 address</em> specifies the fixed "
  7824. "address to use, and the <em>Hostname</em> is assigned as a symbolic name to "
  7825. "the requesting host. The optional <em>Lease time</em> can be used to set non-"
  7826. "standard host-specific lease time, e.g. 12h, 3d or infinite."
  7827. msgstr ""
  7828. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:324
  7829. msgid "Use upper layer protocol information (layer3+4)"
  7830. msgstr ""
  7831. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:326
  7832. msgid ""
  7833. "Use upper layer protocol information, rely on skb_flow_dissect (encap3+4)"
  7834. msgstr ""
  7835. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:36
  7836. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:194
  7837. msgid "Used"
  7838. msgstr ""
  7839. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1514
  7840. msgid "Used Key Slot"
  7841. msgstr ""
  7842. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1557
  7843. msgid ""
  7844. "Used for two different purposes: RADIUS NAS ID and 802.11r R0KH-ID. Not "
  7845. "needed with normal WPA(2)-PSK."
  7846. msgstr ""
  7847. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:146
  7848. msgid "User Group"
  7849. msgstr ""
  7850. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:158
  7851. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:106
  7852. msgid "User certificate (PEM encoded)"
  7853. msgstr ""
  7854. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:187
  7855. msgid "User identifier"
  7856. msgstr ""
  7857. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:170
  7858. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:118
  7859. msgid "User key (PEM encoded)"
  7860. msgstr ""
  7861. #: modules/luci-base/ucode/template/sysauth.ut:23
  7862. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:147
  7863. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:101
  7864. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:56
  7865. #: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:13
  7866. msgid "Username"
  7867. msgstr "वापरकर्तानाव"
  7868. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:131
  7869. msgid "Utilize flow table <strong>%h</strong>"
  7870. msgstr ""
  7871. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1637
  7872. msgid "VC-Mux"
  7873. msgstr ""
  7874. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1585
  7875. msgid "VDSL"
  7876. msgstr ""
  7877. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:489
  7878. msgctxt "MACVLAN mode"
  7879. msgid "VEPA (Virtual Ethernet Port Aggregator)"
  7880. msgstr ""
  7881. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:400
  7882. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1466
  7883. msgid "VLAN (802.1ad)"
  7884. msgstr ""
  7885. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:399
  7886. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1463
  7887. msgid "VLAN (802.1q)"
  7888. msgstr ""
  7889. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:468
  7890. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:923
  7891. msgid "VLAN ID"
  7892. msgstr ""
  7893. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:173
  7894. msgid "VLANs on %q"
  7895. msgstr ""
  7896. #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:54
  7897. msgid "VPN"
  7898. msgstr "VPN"
  7899. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:42
  7900. msgid "VPN Local address"
  7901. msgstr ""
  7902. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:46
  7903. msgid "VPN Local port"
  7904. msgstr ""
  7905. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:97
  7906. msgid "VPN Protocol"
  7907. msgstr ""
  7908. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:103
  7909. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:93
  7910. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:58
  7911. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:39
  7912. msgid "VPN Server"
  7913. msgstr ""
  7914. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:152
  7915. msgid "VPN Server certificate's SHA256 hash"
  7916. msgstr ""
  7917. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:140
  7918. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:96
  7919. msgid "VPN Server port"
  7920. msgstr ""
  7921. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:144
  7922. msgid "VPN Server's certificate SHA1 hash"
  7923. msgstr ""
  7924. #: modules/luci-compat/luasrc/model/network/proto_vpnc.lua:9
  7925. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:9
  7926. msgid "VPNC (CISCO 3000 (and others) VPN)"
  7927. msgstr ""
  7928. #: protocols/luci-proto-vti/htdocs/luci-static/resources/protocol/vti.js:10
  7929. msgid "VTI"
  7930. msgstr ""
  7931. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:10
  7932. msgid "VXLAN (RFC7348)"
  7933. msgstr ""
  7934. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:53
  7935. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:48
  7936. msgid "VXLAN network identifier"
  7937. msgstr ""
  7938. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:10
  7939. msgid "VXLANv6 (RFC7348)"
  7940. msgstr ""
  7941. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:484
  7942. msgid ""
  7943. "Validate DNS replies and cache DNSSEC data, requires upstream to support "
  7944. "DNSSEC."
  7945. msgstr ""
  7946. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1669
  7947. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1727
  7948. msgid ""
  7949. "Validate server certificate using built-in system CA bundle,<br />requires "
  7950. "the \"ca-bundle\" package"
  7951. msgstr ""
  7952. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:388
  7953. msgid "Validation for all slaves"
  7954. msgstr ""
  7955. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:386
  7956. msgid "Validation only for active slave"
  7957. msgstr ""
  7958. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:387
  7959. msgid "Validation only for backup slaves"
  7960. msgstr ""
  7961. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:73
  7962. msgid "Vendor"
  7963. msgstr ""
  7964. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:40
  7965. msgid "Vendor Class to send when requesting DHCP"
  7966. msgstr ""
  7967. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:489
  7968. msgid "Verify unsigned domain responses really come from unsigned domains."
  7969. msgstr ""
  7970. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:196
  7971. msgid "Verifying the uploaded image file."
  7972. msgstr ""
  7973. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:951
  7974. msgid "Very High"
  7975. msgstr ""
  7976. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:402
  7977. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1478
  7978. msgid "Virtual Ethernet"
  7979. msgstr ""
  7980. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:60
  7981. msgid "Virtual dynamic interface"
  7982. msgstr ""
  7983. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1101
  7984. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1102
  7985. msgid "WDS"
  7986. msgstr "WDS"
  7987. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1298
  7988. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1387
  7989. msgid "WEP Open System"
  7990. msgstr ""
  7991. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1299
  7992. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1388
  7993. msgid "WEP Shared Key"
  7994. msgstr ""
  7995. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2119
  7996. msgid "WEP passphrase"
  7997. msgstr ""
  7998. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:983
  7999. msgid "WLAN roaming"
  8000. msgstr ""
  8001. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1139
  8002. msgid "WMM Mode"
  8003. msgstr ""
  8004. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1642
  8005. msgid "WNM Sleep Mode"
  8006. msgstr ""
  8007. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1646
  8008. msgid "WNM Sleep Mode Fixes"
  8009. msgstr ""
  8010. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2119
  8011. msgid "WPA passphrase"
  8012. msgstr ""
  8013. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1289
  8014. msgid ""
  8015. "WPA-Encryption requires wpa_supplicant (for client mode) or hostapd (for AP "
  8016. "and ad-hoc mode) to be installed."
  8017. msgstr ""
  8018. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:153
  8019. msgid "WPS status"
  8020. msgstr ""
  8021. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:47
  8022. msgid "Waiting for device..."
  8023. msgstr ""
  8024. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:189
  8025. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:199
  8026. msgid "Warning"
  8027. msgstr ""
  8028. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:26
  8029. msgid "Warning: There are unsaved changes that will get lost on reboot!"
  8030. msgstr "चेतावणी: जतन न केलेले बदल आहेत जे रीबूट केल्यावर गमावतील!"
  8031. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:37
  8032. msgid "Weak"
  8033. msgstr ""
  8034. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:670
  8035. msgid "Weight"
  8036. msgstr ""
  8037. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:921
  8038. msgid ""
  8039. "When a host matches an entry then the special tag <em>known</em> is set. Use "
  8040. "<em>known</em> to match all known hosts."
  8041. msgstr ""
  8042. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1088
  8043. msgid ""
  8044. "When delegating prefixes to multiple downstreams, interfaces with a higher "
  8045. "preference value are considered first when allocating subnets."
  8046. msgstr ""
  8047. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:105
  8048. msgid ""
  8049. "When enabled network coding increases the WiFi throughput by combining "
  8050. "multiple frames into a single frame, thus reducing the needed air time."
  8051. msgstr ""
  8052. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:76
  8053. msgid ""
  8054. "When enabled the distributed ARP table forms a mesh-wide ARP cache that "
  8055. "helps non-mesh clients to get ARP responses much more reliably and without "
  8056. "much delay."
  8057. msgstr ""
  8058. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:110
  8059. msgid ""
  8060. "When enabled, gateway is on-link even if the gateway does not match any "
  8061. "interface prefix"
  8062. msgstr ""
  8063. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:707
  8064. msgid ""
  8065. "When enabled, new ARP table entries are added from received gratuitous APR "
  8066. "requests or replies, otherwise only preexisting table entries are updated, "
  8067. "but no new hosts are learned."
  8068. msgstr ""
  8069. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/heartbeat.js:14
  8070. msgid ""
  8071. "When inverted, the LED is continuously lit and flickers instead of it being "
  8072. "off by default and blinking on system activity."
  8073. msgstr ""
  8074. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:66
  8075. msgid ""
  8076. "When running the mesh over multiple WiFi interfaces per node batman-adv is "
  8077. "capable of optimizing the traffic flow to gain maximum performance."
  8078. msgstr ""
  8079. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1580
  8080. msgid ""
  8081. "When using a PSK, the PMK can be automatically generated. When enabled, the "
  8082. "R0/R1 key options below are not applied. Disable this to use the R0 and R1 "
  8083. "key options."
  8084. msgstr ""
  8085. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1139
  8086. msgid ""
  8087. "Where Wi-Fi Multimedia (WMM) Mode QoS is disabled, clients may be limited to "
  8088. "802.11a/802.11g rates."
  8089. msgstr ""
  8090. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1135
  8091. msgid ""
  8092. "Where the ESSID is hidden, clients may fail to roam and airtime efficiency "
  8093. "may be significantly reduced."
  8094. msgstr ""
  8095. #: modules/luci-compat/luasrc/view/cbi/wireless_modefreq.htm:166
  8096. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:513
  8097. msgid "Width"
  8098. msgstr ""
  8099. #: protocols/luci-proto-wireguard/root/usr/share/luci/menu.d/luci-proto-wireguard.json:3
  8100. msgid "WireGuard"
  8101. msgstr ""
  8102. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:120
  8103. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:165
  8104. msgid "WireGuard Status"
  8105. msgstr ""
  8106. #: modules/luci-compat/luasrc/model/network/proto_wireguard.lua:9
  8107. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:119
  8108. msgid "WireGuard VPN"
  8109. msgstr ""
  8110. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:539
  8111. msgid "WireGuard peer is disabled"
  8112. msgstr ""
  8113. #: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:17
  8114. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:10
  8115. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:148
  8116. msgid "Wireless"
  8117. msgstr ""
  8118. #: modules/luci-base/htdocs/luci-static/resources/network.js:2992
  8119. #: modules/luci-compat/luasrc/model/network.lua:1419
  8120. msgid "Wireless Adapter"
  8121. msgstr ""
  8122. #: modules/luci-base/htdocs/luci-static/resources/network.js:2971
  8123. #: modules/luci-base/htdocs/luci-static/resources/network.js:4276
  8124. #: modules/luci-compat/luasrc/model/network.lua:1405
  8125. #: modules/luci-compat/luasrc/model/network.lua:1868
  8126. msgid "Wireless Network"
  8127. msgstr ""
  8128. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:805
  8129. msgid "Wireless Overview"
  8130. msgstr ""
  8131. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:980
  8132. msgid "Wireless Security"
  8133. msgstr ""
  8134. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:787
  8135. msgid "Wireless configuration migration"
  8136. msgstr ""
  8137. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:153
  8138. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:193
  8139. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:152
  8140. msgid "Wireless is disabled"
  8141. msgstr ""
  8142. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:153
  8143. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:193
  8144. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:152
  8145. msgid "Wireless is not associated"
  8146. msgstr ""
  8147. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:929
  8148. msgid "Wireless network is disabled"
  8149. msgstr ""
  8150. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:929
  8151. msgid "Wireless network is enabled"
  8152. msgstr ""
  8153. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:286
  8154. msgid "Write received DNS queries to syslog."
  8155. msgstr ""
  8156. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:181
  8157. msgid "Write system log to file"
  8158. msgstr ""
  8159. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:206
  8160. msgid "XOR policy (balance-xor, 2)"
  8161. msgstr ""
  8162. #: modules/luci-base/htdocs/luci-static/resources/form.js:4094
  8163. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:297
  8164. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:345
  8165. msgid "Yes"
  8166. msgstr "होय"
  8167. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:305
  8168. msgid "Yes (none, 0)"
  8169. msgstr ""
  8170. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:177
  8171. msgid ""
  8172. "You appear to be currently connected to the device via the \"%h\" interface. "
  8173. "Do you really want to shut down the interface?"
  8174. msgstr ""
  8175. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:112
  8176. msgid ""
  8177. "You can enable or disable installed init scripts here. Changes will applied "
  8178. "after a device reboot.<br /><strong>Warning: If you disable essential init "
  8179. "scripts like \"network\", your device might become inaccessible!</strong>"
  8180. msgstr ""
  8181. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:640
  8182. msgid "You may add multiple records for the same Target."
  8183. msgstr ""
  8184. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:677
  8185. msgid "You may add multiple records for the same domain."
  8186. msgstr ""
  8187. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:357
  8188. msgid "You may add multiple unique Relay To on the same Listen addr."
  8189. msgstr ""
  8190. #: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:78
  8191. #: themes/luci-theme-material/ucode/template/themes/material/header.ut:98
  8192. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:73
  8193. msgid ""
  8194. "You must enable JavaScript in your browser or LuCI will not work properly."
  8195. msgstr ""
  8196. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:117
  8197. msgid ""
  8198. "You must select a primary interface which is included in selected slave "
  8199. "interfaces!"
  8200. msgstr ""
  8201. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:98
  8202. msgid ""
  8203. "You must select at least one ARP IP target if ARP monitoring is selected!"
  8204. msgstr ""
  8205. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:213
  8206. msgid "ZRam Compression Algorithm"
  8207. msgstr ""
  8208. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:206
  8209. msgid "ZRam Settings"
  8210. msgstr ""
  8211. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:208
  8212. msgid "ZRam Size"
  8213. msgstr ""
  8214. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:639
  8215. msgid "_proto: _tcp, _udp, _sctp, _quic, … ."
  8216. msgstr ""
  8217. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:638
  8218. msgid ""
  8219. "_service: _sip, _ldap, _imap, _stun, _xmpp-client, … . (Note: while _http is "
  8220. "possible, no browsers support SRV records.)"
  8221. msgstr ""
  8222. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:535
  8223. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:153
  8224. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:164
  8225. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:103
  8226. msgid "any"
  8227. msgstr ""
  8228. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1570
  8229. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1578
  8230. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1583
  8231. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:103
  8232. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:134
  8233. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1238
  8234. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:83
  8235. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:48
  8236. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:51
  8237. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:89
  8238. msgid "auto"
  8239. msgstr ""
  8240. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:157
  8241. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:816
  8242. msgid "automatic"
  8243. msgstr ""
  8244. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:198
  8245. msgid "automatic (disabled)"
  8246. msgstr ""
  8247. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:198
  8248. msgid "automatic (enabled)"
  8249. msgstr ""
  8250. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:82
  8251. msgid "baseT"
  8252. msgstr ""
  8253. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1643
  8254. msgid "bridged"
  8255. msgstr ""
  8256. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:146
  8257. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:406
  8258. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:35
  8259. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:99
  8260. #: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:31
  8261. msgid "create"
  8262. msgstr ""
  8263. #: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:69
  8264. msgid "create:"
  8265. msgstr ""
  8266. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:55
  8267. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:57
  8268. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:58
  8269. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:62
  8270. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:63
  8271. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:83
  8272. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:84
  8273. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:87
  8274. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:185
  8275. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:186
  8276. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:187
  8277. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:41
  8278. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:42
  8279. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:276
  8280. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:278
  8281. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:279
  8282. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:283
  8283. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:284
  8284. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:263
  8285. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:266
  8286. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:269
  8287. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:273
  8288. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:276
  8289. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:279
  8290. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:305
  8291. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:306
  8292. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:307
  8293. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:311
  8294. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:312
  8295. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:313
  8296. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:315
  8297. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:316
  8298. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:317
  8299. msgid "dBm"
  8300. msgstr "dBm"
  8301. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:73
  8302. msgctxt "nft unit"
  8303. msgid "day"
  8304. msgstr ""
  8305. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1082
  8306. msgid "disable"
  8307. msgstr ""
  8308. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:157
  8309. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:681
  8310. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:805
  8311. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:927
  8312. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:963
  8313. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1040
  8314. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:91
  8315. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:25
  8316. msgid "disabled"
  8317. msgstr ""
  8318. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:570
  8319. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:604
  8320. msgid "driver default"
  8321. msgstr ""
  8322. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1162
  8323. msgid "driver default (%s)"
  8324. msgstr ""
  8325. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:66
  8326. msgid "e.g: --proxy 10.10.10.10"
  8327. msgstr ""
  8328. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:68
  8329. msgid "e.g: dump"
  8330. msgstr ""
  8331. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:157
  8332. msgid "enabled"
  8333. msgstr ""
  8334. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:60
  8335. msgctxt "WireGuard keep alive interval"
  8336. msgid "every %ds"
  8337. msgstr ""
  8338. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:965
  8339. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:995
  8340. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:101
  8341. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:148
  8342. msgid "expired"
  8343. msgstr ""
  8344. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:820
  8345. msgid "forced"
  8346. msgstr ""
  8347. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:85
  8348. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:196
  8349. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:61
  8350. msgid "forward"
  8351. msgstr ""
  8352. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:98
  8353. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:84
  8354. msgid "full-duplex"
  8355. msgstr ""
  8356. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:98
  8357. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:84
  8358. msgid "half-duplex"
  8359. msgstr ""
  8360. #: modules/luci-base/htdocs/luci-static/resources/validation.js:593
  8361. msgid "hexadecimal encoded value"
  8362. msgstr ""
  8363. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1914
  8364. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:309
  8365. msgid "hidden"
  8366. msgstr ""
  8367. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:74
  8368. msgctxt "nft unit"
  8369. msgid "hour"
  8370. msgstr ""
  8371. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:811
  8372. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:933
  8373. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:967
  8374. msgid "hybrid mode"
  8375. msgstr ""
  8376. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:63
  8377. msgid "ignore"
  8378. msgstr ""
  8379. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:900
  8380. msgid "infinite (lease does not expire)"
  8381. msgstr ""
  8382. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:69
  8383. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:192
  8384. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:46
  8385. msgid "input"
  8386. msgstr ""
  8387. #: modules/luci-base/htdocs/luci-static/resources/validation.js:410
  8388. msgid "key between 8 and 63 characters"
  8389. msgstr ""
  8390. #: modules/luci-base/htdocs/luci-static/resources/validation.js:422
  8391. msgid "key with either 5 or 13 characters"
  8392. msgstr ""
  8393. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:924
  8394. msgid "known"
  8395. msgstr ""
  8396. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:926
  8397. msgid "known-othernet (on different subnet)"
  8398. msgstr ""
  8399. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:833
  8400. msgid "managed config (M)"
  8401. msgstr ""
  8402. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1397
  8403. msgid "medium security"
  8404. msgstr ""
  8405. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:75
  8406. msgctxt "nft unit"
  8407. msgid "minute"
  8408. msgstr ""
  8409. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1585
  8410. msgid "minutes"
  8411. msgstr ""
  8412. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:837
  8413. msgid "mobile home agent (H)"
  8414. msgstr ""
  8415. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:423
  8416. msgid "netif_carrier_ok()"
  8417. msgstr ""
  8418. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:47
  8419. msgid "no"
  8420. msgstr ""
  8421. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:104
  8422. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:76
  8423. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:232
  8424. msgid "no link"
  8425. msgstr ""
  8426. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1162
  8427. msgid "no override"
  8428. msgstr ""
  8429. #: modules/luci-base/htdocs/luci-static/resources/form.js:2269
  8430. #: modules/luci-base/htdocs/luci-static/resources/validation.js:59
  8431. msgid "non-empty value"
  8432. msgstr ""
  8433. #: modules/luci-base/htdocs/luci-static/resources/form.js:3424
  8434. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:840
  8435. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:39
  8436. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:56
  8437. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:60
  8438. msgid "none"
  8439. msgstr ""
  8440. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:41
  8441. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:55
  8442. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:69
  8443. msgid "not present"
  8444. msgstr ""
  8445. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:349
  8446. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:959
  8447. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:963
  8448. msgid "off"
  8449. msgstr ""
  8450. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:818
  8451. msgid "on available prefix"
  8452. msgstr ""
  8453. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1398
  8454. msgid "open network"
  8455. msgstr ""
  8456. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:835
  8457. msgid "other config (O)"
  8458. msgstr ""
  8459. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:69
  8460. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:46
  8461. msgid "output"
  8462. msgstr ""
  8463. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:28
  8464. msgid "over a day ago"
  8465. msgstr ""
  8466. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:69
  8467. msgctxt "nft unit"
  8468. msgid "packets"
  8469. msgstr ""
  8470. #: modules/luci-base/htdocs/luci-static/resources/validation.js:252
  8471. msgid "positive decimal value"
  8472. msgstr ""
  8473. #: modules/luci-base/htdocs/luci-static/resources/validation.js:244
  8474. msgid "positive integer value"
  8475. msgstr ""
  8476. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:178
  8477. msgid "random"
  8478. msgstr ""
  8479. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1163
  8480. msgid "randomly generated"
  8481. msgstr ""
  8482. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:51
  8483. msgid ""
  8484. "reduces overhead by collecting and aggregating originator messages in a "
  8485. "single packet rather than many small ones"
  8486. msgstr ""
  8487. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:809
  8488. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:931
  8489. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:965
  8490. msgid "relay mode"
  8491. msgstr ""
  8492. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1644
  8493. msgid "routed"
  8494. msgstr ""
  8495. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1174
  8496. msgid "sec"
  8497. msgstr ""
  8498. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:807
  8499. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:929
  8500. msgid "server mode"
  8501. msgstr ""
  8502. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:54
  8503. msgid "sstpc Log-level"
  8504. msgstr ""
  8505. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1396
  8506. msgid "strong security"
  8507. msgstr ""
  8508. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:354
  8509. msgid "tagged"
  8510. msgstr ""
  8511. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1568
  8512. msgid "time units (TUs / 1.024 ms) [1000-65535]"
  8513. msgstr ""
  8514. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/uhttpd.js:9
  8515. msgid ""
  8516. "uHTTPd offers <abbr title=\"Hypertext Transfer Protocol\">HTTP</abbr> or "
  8517. "<abbr title=\"Hypertext Transfer Protocol Secure\">HTTPS</abbr> network "
  8518. "access."
  8519. msgstr ""
  8520. #: modules/luci-base/htdocs/luci-static/resources/validation.js:583
  8521. msgid "unique value"
  8522. msgstr ""
  8523. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:585
  8524. msgid "unknown"
  8525. msgstr ""
  8526. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:28
  8527. msgid "unknown version"
  8528. msgstr ""
  8529. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542
  8530. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:963
  8531. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:993
  8532. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:99
  8533. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:146
  8534. msgid "unlimited"
  8535. msgstr ""
  8536. #: modules/luci-base/htdocs/luci-static/resources/form.js:3789
  8537. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:76
  8538. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:138
  8539. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:370
  8540. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:397
  8541. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:433
  8542. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:470
  8543. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:566
  8544. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:53
  8545. #: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:38
  8546. msgid "unspecified"
  8547. msgstr ""
  8548. #: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:71
  8549. msgid "unspecified -or- create:"
  8550. msgstr ""
  8551. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:352
  8552. msgid "untagged"
  8553. msgstr ""
  8554. #: modules/luci-base/htdocs/luci-static/resources/validation.js:257
  8555. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:177
  8556. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:188
  8557. msgid "valid IP address"
  8558. msgstr ""
  8559. #: modules/luci-base/htdocs/luci-static/resources/validation.js:257
  8560. msgid "valid IP address or prefix"
  8561. msgstr ""
  8562. #: modules/luci-base/htdocs/luci-static/resources/validation.js:294
  8563. msgid "valid IPv4 CIDR"
  8564. msgstr ""
  8565. #: modules/luci-base/htdocs/luci-static/resources/validation.js:265
  8566. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:181
  8567. msgid "valid IPv4 address"
  8568. msgstr ""
  8569. #: modules/luci-base/htdocs/luci-static/resources/validation.js:265
  8570. msgid "valid IPv4 address or network"
  8571. msgstr ""
  8572. #: modules/luci-base/htdocs/luci-static/resources/validation.js:389
  8573. msgid "valid IPv4 address:port"
  8574. msgstr ""
  8575. #: modules/luci-base/htdocs/luci-static/resources/validation.js:328
  8576. msgid "valid IPv4 network"
  8577. msgstr ""
  8578. #: modules/luci-base/htdocs/luci-static/resources/validation.js:288
  8579. msgid "valid IPv4 or IPv6 CIDR"
  8580. msgstr ""
  8581. #: modules/luci-base/htdocs/luci-static/resources/validation.js:278
  8582. msgid "valid IPv4 prefix value (0-32)"
  8583. msgstr ""
  8584. #: modules/luci-base/htdocs/luci-static/resources/validation.js:300
  8585. msgid "valid IPv6 CIDR"
  8586. msgstr ""
  8587. #: modules/luci-base/htdocs/luci-static/resources/validation.js:273
  8588. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:185
  8589. msgid "valid IPv6 address"
  8590. msgstr ""
  8591. #: modules/luci-base/htdocs/luci-static/resources/validation.js:273
  8592. msgid "valid IPv6 address or prefix"
  8593. msgstr ""
  8594. #: modules/luci-base/htdocs/luci-static/resources/validation.js:318
  8595. msgid "valid IPv6 host id"
  8596. msgstr ""
  8597. #: modules/luci-base/htdocs/luci-static/resources/validation.js:333
  8598. msgid "valid IPv6 network"
  8599. msgstr ""
  8600. #: modules/luci-base/htdocs/luci-static/resources/validation.js:283
  8601. msgid "valid IPv6 prefix value (0-128)"
  8602. msgstr ""
  8603. #: modules/luci-base/htdocs/luci-static/resources/validation.js:355
  8604. msgid "valid MAC address"
  8605. msgstr ""
  8606. #: modules/luci-base/htdocs/luci-static/resources/validation.js:426
  8607. msgid "valid UCI identifier"
  8608. msgstr ""
  8609. #: modules/luci-base/htdocs/luci-static/resources/validation.js:377
  8610. msgid "valid UCI identifier, hostname or IP address range"
  8611. msgstr ""
  8612. #: modules/luci-base/htdocs/luci-static/resources/validation.js:398
  8613. #: modules/luci-base/htdocs/luci-static/resources/validation.js:401
  8614. msgid "valid address:port"
  8615. msgstr ""
  8616. #: modules/luci-base/htdocs/luci-static/resources/validation.js:557
  8617. #: modules/luci-base/htdocs/luci-static/resources/validation.js:561
  8618. msgid "valid date (YYYY-MM-DD)"
  8619. msgstr ""
  8620. #: modules/luci-base/htdocs/luci-static/resources/validation.js:248
  8621. msgid "valid decimal value"
  8622. msgstr ""
  8623. #: modules/luci-base/htdocs/luci-static/resources/validation.js:420
  8624. msgid "valid hexadecimal WEP key"
  8625. msgstr ""
  8626. #: modules/luci-base/htdocs/luci-static/resources/validation.js:408
  8627. msgid "valid hexadecimal WPA key"
  8628. msgstr ""
  8629. #: modules/luci-base/htdocs/luci-static/resources/validation.js:383
  8630. msgid "valid host:port"
  8631. msgstr ""
  8632. #: modules/luci-base/htdocs/luci-static/resources/validation.js:370
  8633. #: modules/luci-base/htdocs/luci-static/resources/validation.js:372
  8634. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:127
  8635. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:133
  8636. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:161
  8637. msgid "valid hostname"
  8638. msgstr ""
  8639. #: modules/luci-base/htdocs/luci-static/resources/validation.js:360
  8640. msgid "valid hostname or IP address"
  8641. msgstr ""
  8642. #: modules/luci-base/htdocs/luci-static/resources/validation.js:240
  8643. msgid "valid integer value"
  8644. msgstr ""
  8645. #: modules/luci-base/htdocs/luci-static/resources/validation.js:355
  8646. msgid "valid multicast MAC address"
  8647. msgstr ""
  8648. #: modules/luci-base/htdocs/luci-static/resources/validation.js:435
  8649. msgid ""
  8650. "valid network device name between 1 and 15 characters not containing \":\", "
  8651. "\"/\", \"%\" or spaces"
  8652. msgstr ""
  8653. #: modules/luci-base/htdocs/luci-static/resources/validation.js:433
  8654. msgid "valid network device name, not \".\" or \"..\""
  8655. msgstr ""
  8656. #: modules/luci-base/htdocs/luci-static/resources/validation.js:323
  8657. msgid "valid network in address/netmask notation"
  8658. msgstr ""
  8659. #: modules/luci-base/htdocs/luci-static/resources/validation.js:532
  8660. msgid "valid phone digit (0-9, \"*\", \"#\", \"!\" or \".\")"
  8661. msgstr ""
  8662. #: modules/luci-base/htdocs/luci-static/resources/validation.js:346
  8663. #: modules/luci-base/htdocs/luci-static/resources/validation.js:349
  8664. msgid "valid port or port range (port1-port2)"
  8665. msgstr ""
  8666. #: modules/luci-base/htdocs/luci-static/resources/validation.js:338
  8667. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:192
  8668. msgid "valid port value"
  8669. msgstr ""
  8670. #: modules/luci-base/htdocs/luci-static/resources/validation.js:537
  8671. msgid "valid time (HH:MM:SS)"
  8672. msgstr ""
  8673. #: modules/luci-base/htdocs/luci-static/resources/validation.js:459
  8674. msgid "value between %d and %d characters"
  8675. msgstr ""
  8676. #: modules/luci-base/htdocs/luci-static/resources/validation.js:440
  8677. msgid "value between %f and %f"
  8678. msgstr ""
  8679. #: modules/luci-base/htdocs/luci-static/resources/validation.js:444
  8680. msgid "value greater or equal to %f"
  8681. msgstr ""
  8682. #: modules/luci-base/htdocs/luci-static/resources/validation.js:448
  8683. msgid "value smaller or equal to %f"
  8684. msgstr ""
  8685. #: modules/luci-base/htdocs/luci-static/resources/validation.js:453
  8686. msgid "value with %d characters"
  8687. msgstr ""
  8688. #: modules/luci-base/htdocs/luci-static/resources/validation.js:464
  8689. msgid "value with at least %d characters"
  8690. msgstr ""
  8691. #: modules/luci-base/htdocs/luci-static/resources/validation.js:469
  8692. msgid "value with at most %d characters"
  8693. msgstr ""
  8694. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1398
  8695. msgid "weak security"
  8696. msgstr ""
  8697. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:72
  8698. msgctxt "nft unit"
  8699. msgid "week"
  8700. msgstr ""
  8701. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:47
  8702. msgid "yes"
  8703. msgstr ""
  8704. #: modules/luci-compat/luasrc/view/cbi/delegator.htm:20
  8705. msgid "« Back"
  8706. msgstr ""