base.po 447 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701117021170311704117051170611707117081170911710117111171211713117141171511716117171171811719117201172111722117231172411725117261172711728117291173011731117321173311734117351173611737117381173911740117411174211743117441174511746117471174811749117501175111752117531175411755117561175711758117591176011761117621176311764117651176611767117681176911770117711177211773117741177511776117771177811779117801178111782117831178411785117861178711788117891179011791117921179311794117951179611797117981179911800118011180211803118041180511806118071180811809118101181111812118131181411815118161181711818118191182011821118221182311824118251182611827118281182911830118311183211833118341183511836118371183811839118401184111842118431184411845118461184711848118491185011851118521185311854118551185611857118581185911860118611186211863118641186511866118671186811869118701187111872118731187411875118761187711878118791188011881118821188311884118851188611887118881188911890118911189211893118941189511896118971189811899119001190111902119031190411905119061190711908119091191011911119121191311914119151191611917119181191911920119211192211923119241192511926119271192811929119301193111932119331193411935119361193711938119391194011941119421194311944119451194611947119481194911950119511195211953119541195511956119571195811959119601196111962119631196411965119661196711968119691197011971119721197311974119751197611977119781197911980119811198211983119841198511986119871198811989119901199111992119931199411995119961199711998119991200012001120021200312004120051200612007120081200912010120111201212013120141201512016120171201812019120201202112022120231202412025120261202712028120291203012031120321203312034120351203612037120381203912040120411204212043120441204512046120471204812049120501205112052120531205412055120561205712058120591206012061120621206312064120651206612067120681206912070120711207212073120741207512076120771207812079120801208112082120831208412085120861208712088120891209012091120921209312094120951209612097120981209912100121011210212103121041210512106121071210812109121101211112112121131211412115121161211712118121191212012121121221212312124121251212612127121281212912130121311213212133121341213512136121371213812139121401214112142121431214412145121461214712148121491215012151121521215312154121551215612157121581215912160121611216212163121641216512166121671216812169121701217112172121731217412175121761217712178121791218012181121821218312184121851218612187121881218912190121911219212193121941219512196121971219812199122001220112202122031220412205122061220712208122091221012211122121221312214122151221612217122181221912220122211222212223122241222512226122271222812229122301223112232122331223412235122361223712238122391224012241122421224312244122451224612247
  1. msgid ""
  2. msgstr ""
  3. "Language: id\n"
  4. "Content-Type: text/plain; charset=UTF-8\n"
  5. "Content-Transfer-Encoding: 8bit\n"
  6. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1277
  7. msgid "!known (not known)"
  8. msgstr ""
  9. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:649
  10. msgctxt "Yet unknown nftables table family (\"family\" table \"name\")"
  11. msgid "\"%h\" table \"%h\""
  12. msgstr ""
  13. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1629
  14. msgid "%.1f dB"
  15. msgstr ""
  16. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:123
  17. msgid "%d Bit"
  18. msgstr ""
  19. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4132
  20. msgid "%d invalid field(s)"
  21. msgstr ""
  22. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:26
  23. msgid "%dh ago"
  24. msgstr ""
  25. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:24
  26. msgid "%dm ago"
  27. msgstr ""
  28. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:22
  29. msgid "%ds ago"
  30. msgstr ""
  31. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:762
  32. msgid "%s adds 1.2.3.0/24 for IPv4 requestors and ::/0 for IPv6 requestors."
  33. msgstr ""
  34. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:763
  35. msgid "%s adds 1.2.3.0/24 for both IPv4 and IPv6 requestors."
  36. msgstr ""
  37. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:761
  38. msgid ""
  39. "%s adds the /24 and /96 subnets of the requestor for IPv4 and IPv6 "
  40. "requestors, respectively."
  41. msgstr ""
  42. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:311
  43. msgid ""
  44. "%s is an independent project that aims to transparently reduce latency of a "
  45. "connection over Yggdrasil network, utilizing NAT traversal to bypass "
  46. "intermediary nodes."
  47. msgstr ""
  48. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:35
  49. msgid "%s is untagged in multiple VLANs!"
  50. msgstr ""
  51. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:902
  52. msgid "%s means \"the address of the system running dnsmasq\"."
  53. msgstr ""
  54. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:744
  55. msgid "%s uses a human-readable encoding of hex-and-colons"
  56. msgstr ""
  57. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:743
  58. msgid "%s uses an alternative encoding of the MAC as base64"
  59. msgstr ""
  60. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:742
  61. msgid "%s uses the default MAC address format encoding"
  62. msgstr ""
  63. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:297
  64. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:409
  65. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:276
  66. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:310
  67. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:328
  68. msgid "(%d minute window, %d second interval)"
  69. msgstr ""
  70. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:843
  71. msgid "(Max 1h == 3600)"
  72. msgstr ""
  73. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:127
  74. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:133
  75. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:268
  76. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:292
  77. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:88
  78. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:91
  79. msgid "(empty)"
  80. msgstr ""
  81. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:364
  82. #: modules/luci-compat/luasrc/view/cbi/network_netinfo.htm:23
  83. #: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:58
  84. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:271
  85. msgid "(no interfaces attached)"
  86. msgstr ""
  87. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:620
  88. msgctxt "Label indicating further amount of allowed ips"
  89. msgid "+ %d more"
  90. msgstr ""
  91. #: modules/luci-compat/luasrc/view/cbi/ucisection.htm:48
  92. msgid "-- Additional Field --"
  93. msgstr ""
  94. #: modules/luci-base/htdocs/luci-static/resources/cbi.js:275
  95. #: modules/luci-base/htdocs/luci-static/resources/form.js:3747
  96. #: modules/luci-base/htdocs/luci-static/resources/form.js:4244
  97. #: modules/luci-base/htdocs/luci-static/resources/ui.js:799
  98. #: modules/luci-base/htdocs/luci-static/resources/ui.js:1037
  99. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2030
  100. #: modules/luci-compat/luasrc/view/cbi/header.htm:8
  101. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:89
  102. msgid "-- Please choose --"
  103. msgstr ""
  104. #: modules/luci-base/htdocs/luci-static/resources/cbi.js:276
  105. #: modules/luci-base/htdocs/luci-static/resources/ui.js:1038
  106. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2031
  107. #: modules/luci-compat/luasrc/view/cbi/header.htm:9
  108. msgid "-- custom --"
  109. msgstr ""
  110. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:271
  111. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:378
  112. msgid "-- match by label --"
  113. msgstr ""
  114. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:257
  115. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:361
  116. msgid "-- match by uuid --"
  117. msgstr ""
  118. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:27
  119. #: modules/luci-compat/luasrc/view/cbi/network_ifacelist.htm:44
  120. #: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:23
  121. msgid "-- please select --"
  122. msgstr ""
  123. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:59
  124. msgctxt "sstp log level value"
  125. msgid "0"
  126. msgstr ""
  127. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1065
  128. msgid "0 = not using RSSI threshold, 1 = do not change driver default"
  129. msgstr ""
  130. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:60
  131. msgctxt "sstp log level value"
  132. msgid "1"
  133. msgstr ""
  134. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:236
  135. msgid "1 Minute Load:"
  136. msgstr ""
  137. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:323
  138. msgctxt "nft amount of flags"
  139. msgid "1 flag"
  140. msgid_plural "%d flags"
  141. msgstr[0] ""
  142. msgstr[1] ""
  143. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1250
  144. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1000
  145. msgid "12h (12 hours - default)"
  146. msgstr ""
  147. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:256
  148. msgid "15 Minute Load:"
  149. msgstr ""
  150. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:61
  151. msgctxt "sstp log level value"
  152. msgid "2"
  153. msgstr ""
  154. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1574
  155. msgid "256"
  156. msgstr ""
  157. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:62
  158. msgctxt "sstp log level value"
  159. msgid "3"
  160. msgstr ""
  161. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1249
  162. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:999
  163. msgid "3h (3 hours)"
  164. msgstr ""
  165. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:63
  166. msgctxt "sstp log level value"
  167. msgid "4"
  168. msgstr ""
  169. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1673
  170. msgid "4-character hexadecimal ID"
  171. msgstr ""
  172. #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:20
  173. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:11
  174. msgid "464XLAT (CLAT)"
  175. msgstr ""
  176. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:246
  177. msgid "5 Minute Load:"
  178. msgstr ""
  179. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1248
  180. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:998
  181. msgid "5m (5 minutes)"
  182. msgstr ""
  183. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1702
  184. msgid "6-octet identifier as a hex string - no colons"
  185. msgstr ""
  186. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1251
  187. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1001
  188. msgid "7d (7 days)"
  189. msgstr ""
  190. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1725
  191. msgid "802.11k RRM"
  192. msgstr ""
  193. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1734
  194. msgid "802.11k: Enable beacon report via radio measurements."
  195. msgstr ""
  196. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1730
  197. msgid "802.11k: Enable neighbor report via radio measurements."
  198. msgstr ""
  199. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1662
  200. msgid "802.11r Fast Transition"
  201. msgstr ""
  202. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1250
  203. msgid "802.11v: BSS Max Idle. Units: seconds."
  204. msgstr ""
  205. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1760
  206. msgid "802.11v: Basic Service Set (BSS) transition management."
  207. msgstr ""
  208. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1749
  209. msgid "802.11v: Local Time Zone Advertisement in management frames."
  210. msgstr ""
  211. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1764
  212. msgid ""
  213. "802.11v: Proxy ARP enables non-AP STA to remain in power-save for longer."
  214. msgstr ""
  215. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1740
  216. msgid "802.11v: Time Advertisement in management frames."
  217. msgstr ""
  218. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1753
  219. msgid ""
  220. "802.11v: Wireless Network Management (WNM) Sleep Mode (extended sleep mode "
  221. "for stations)."
  222. msgstr ""
  223. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1757
  224. msgid ""
  225. "802.11v: Wireless Network Management (WNM) Sleep Mode Fixes: Prevents "
  226. "reinstallation attacks."
  227. msgstr ""
  228. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1907
  229. msgid "802.11w Association SA Query maximum timeout"
  230. msgstr ""
  231. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1914
  232. msgid "802.11w Association SA Query retry timeout"
  233. msgstr ""
  234. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1888
  235. msgid "802.11w Management Frame Protection"
  236. msgstr ""
  237. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1907
  238. msgid "802.11w maximum timeout"
  239. msgstr ""
  240. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1914
  241. msgid "802.11w retry timeout"
  242. msgstr ""
  243. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:235
  244. msgid "; invalid MAC:"
  245. msgstr ""
  246. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1082
  247. msgid "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>"
  248. msgstr ""
  249. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1071
  250. msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>"
  251. msgstr ""
  252. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:690
  253. msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Netmask"
  254. msgstr ""
  255. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:58
  256. msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Configuration"
  257. msgstr ""
  258. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:70
  259. msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Name"
  260. msgstr ""
  261. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:976
  262. msgid "<abbr title=\"Neighbour Discovery Protocol\">NDP</abbr>-Proxy"
  263. msgstr ""
  264. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:921
  265. msgid "<abbr title=\"Prefix Delegation\">PD</abbr> minimum length"
  266. msgstr ""
  267. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:815
  268. msgid "<abbr title=\"Router Advertisement\">RA</abbr> Flags"
  269. msgstr ""
  270. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:890
  271. msgid "<abbr title=\"Router Advertisement\">RA</abbr> Hop Limit"
  272. msgstr ""
  273. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:864
  274. msgid "<abbr title=\"Router Advertisement\">RA</abbr> Lifetime"
  275. msgstr ""
  276. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:871
  277. msgid "<abbr title=\"Router Advertisement\">RA</abbr> MTU"
  278. msgstr ""
  279. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:785
  280. msgid "<abbr title=\"Router Advertisement\">RA</abbr>-Service"
  281. msgstr ""
  282. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:87
  283. msgctxt "nft relational \">\" operator expression"
  284. msgid "<var>%s</var> greater than <strong>%s</strong>"
  285. msgstr ""
  286. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:85
  287. msgctxt "nft relational \">=\" operator expression"
  288. msgid "<var>%s</var> greater than or equal to <strong>%s</strong>"
  289. msgstr ""
  290. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:90
  291. msgctxt "nft set match expression"
  292. msgid "<var>%s</var> in set <strong>%s</strong>"
  293. msgstr ""
  294. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:83
  295. msgctxt "nft relational \"==\" operator expression"
  296. msgid "<var>%s</var> is <strong>%s</strong>"
  297. msgstr ""
  298. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:89
  299. msgctxt "nft relational \"in\" operator expression"
  300. msgid "<var>%s</var> is one of <strong>%s</strong>"
  301. msgstr ""
  302. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:88
  303. msgctxt "nft relational \"<\" operator expression"
  304. msgid "<var>%s</var> lower than <strong>%s</strong>"
  305. msgstr ""
  306. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:86
  307. msgctxt "nft relational \"<=\" operator expression"
  308. msgid "<var>%s</var> lower than or equal to <strong>%s</strong>"
  309. msgstr ""
  310. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:84
  311. msgctxt "nft relational \"!=\" operator expression"
  312. msgid "<var>%s</var> not <strong>%s</strong>"
  313. msgstr ""
  314. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:91
  315. msgctxt "nft not in set match expression"
  316. msgid "<var>%s</var> not in set <strong>%s</strong>"
  317. msgstr ""
  318. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:86
  319. msgid ""
  320. "A batman-adv node can either run in server mode (sharing its internet "
  321. "connection with the mesh) or in client mode (searching for the most suitable "
  322. "internet connection in the mesh) or having the gateway support turned off "
  323. "entirely (which is the default setting)."
  324. msgstr ""
  325. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:424
  326. msgid "A configuration for the device \"%s\" already exists"
  327. msgstr ""
  328. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:241
  329. msgid ""
  330. "A default MTU of 65535 is set by Yggdrasil. It is recomended to utilize the "
  331. "default."
  332. msgstr ""
  333. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2794
  334. msgid "A directory with the same name already exists."
  335. msgstr ""
  336. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2666
  337. msgid "A new login is required since the authentication session expired."
  338. msgstr ""
  339. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:96
  340. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:173
  341. msgid ""
  342. "A numeric table index, or symbol alias declared in %s. Special aliases local "
  343. "(255), main (254) and default (253) are also valid"
  344. msgstr ""
  345. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1609
  346. msgid "A43C + J43 + A43"
  347. msgstr ""
  348. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1610
  349. msgid "A43C + J43 + A43 + V43"
  350. msgstr ""
  351. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1622
  352. msgid "ADSL"
  353. msgstr ""
  354. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1596
  355. msgid "ADSL (G.992.1) Annex A"
  356. msgstr ""
  357. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1597
  358. msgid "ADSL (G.992.1) Annex B"
  359. msgstr ""
  360. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1590
  361. msgid "ADSL (all variants) Annex A/L/M"
  362. msgstr ""
  363. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1586
  364. msgid "ADSL (all variants) Annex A/L/M + VDSL2 Annex A/B/C"
  365. msgstr ""
  366. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1591
  367. msgid "ADSL (all variants) Annex B"
  368. msgstr ""
  369. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1587
  370. msgid "ADSL (all variants) Annex B + VDSL2 Annex A/B/C"
  371. msgstr ""
  372. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1592
  373. msgid "ADSL (all variants) Annex B/J"
  374. msgstr ""
  375. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1588
  376. msgid "ADSL (all variants) Annex B/J + VDSL2 Annex A/B/C"
  377. msgstr ""
  378. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1594
  379. msgid "ADSL (all variants) Annex M"
  380. msgstr ""
  381. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1599
  382. msgid "ADSL2 (G.992.3) Annex A"
  383. msgstr ""
  384. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1600
  385. msgid "ADSL2 (G.992.3) Annex B"
  386. msgstr ""
  387. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1601
  388. msgid "ADSL2 (G.992.3) Annex L"
  389. msgstr ""
  390. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1602
  391. msgid "ADSL2 (G.992.3) Annex M"
  392. msgstr ""
  393. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1603
  394. msgid "ADSL2+ (G.992.5) Annex A"
  395. msgstr ""
  396. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1604
  397. msgid "ADSL2+ (G.992.5) Annex B"
  398. msgstr ""
  399. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1605
  400. msgid "ADSL2+ (G.992.5) Annex M"
  401. msgstr ""
  402. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1595
  403. msgid "ANSI T1.413"
  404. msgstr ""
  405. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:95
  406. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:65
  407. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:65
  408. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:91
  409. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:77
  410. msgid "APN"
  411. msgstr ""
  412. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:144
  413. msgid "APN profile index"
  414. msgstr ""
  415. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:358
  416. msgid "ARP"
  417. msgstr ""
  418. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:371
  419. msgid "ARP IP Targets"
  420. msgstr ""
  421. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:363
  422. msgid "ARP Interval"
  423. msgstr ""
  424. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:387
  425. msgid "ARP Validation"
  426. msgstr ""
  427. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:379
  428. msgid "ARP mode to consider a slave as being up"
  429. msgstr ""
  430. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:82
  431. msgid "ARP monitoring is not supported for the selected policy!"
  432. msgstr ""
  433. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:107
  434. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:107
  435. msgid "ARP proxy"
  436. msgstr ""
  437. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:175
  438. msgid "ARP retry threshold"
  439. msgstr ""
  440. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:637
  441. msgid "ARP traffic table \"%h\""
  442. msgstr ""
  443. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1213
  444. msgid ""
  445. "ARP, IPv4 and IPv6 (even 802.1Q) with multicast destination MACs are unicast "
  446. "to the STA MAC address. Note: This is not Directed Multicast Service (DMS) "
  447. "in 802.11v. Note: might break receiver STA multicast expectations."
  448. msgstr ""
  449. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1617
  450. msgid "ATM (Asynchronous Transfer Mode)"
  451. msgstr ""
  452. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1638
  453. msgid "ATM Bridges"
  454. msgstr ""
  455. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1670
  456. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:66
  457. msgid "ATM Virtual Channel Identifier (VCI)"
  458. msgstr ""
  459. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1671
  460. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:70
  461. msgid "ATM Virtual Path Identifier (VPI)"
  462. msgstr ""
  463. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1638
  464. msgid ""
  465. "ATM bridges expose encapsulated ethernet in AAL5 connections as virtual "
  466. "Linux network interfaces which can be used in conjunction with DHCP or PPP "
  467. "to dial into the provider network."
  468. msgstr ""
  469. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1677
  470. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:62
  471. msgid "ATM device number"
  472. msgstr ""
  473. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:275
  474. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:560
  475. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:564
  476. msgid "Absent Interface"
  477. msgstr ""
  478. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:532
  479. msgid "Accept DNS queries only from hosts whose address is on a local subnet."
  480. msgstr ""
  481. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:267
  482. msgid "Accept from public keys"
  483. msgstr ""
  484. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:701
  485. msgid "Accept local"
  486. msgstr ""
  487. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:95
  488. msgctxt "nft accept action"
  489. msgid "Accept packet"
  490. msgstr ""
  491. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:701
  492. msgid "Accept packets with local source addresses"
  493. msgstr ""
  494. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:47
  495. msgid "Access Concentrator"
  496. msgstr ""
  497. #: modules/luci-base/htdocs/luci-static/resources/network.js:3904
  498. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1053
  499. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1168
  500. msgid "Access Point"
  501. msgstr ""
  502. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:60
  503. msgid "Access Point Isolation"
  504. msgstr ""
  505. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:99
  506. msgid "Access Technologies"
  507. msgstr ""
  508. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:390
  509. msgid "Actions"
  510. msgstr ""
  511. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:14
  512. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:134
  513. msgid "Active"
  514. msgstr ""
  515. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:72
  516. msgid "Active Connections"
  517. msgstr ""
  518. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:35
  519. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:182
  520. msgid "Active DHCP Leases"
  521. msgstr ""
  522. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:54
  523. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:184
  524. msgid "Active DHCPv6 Leases"
  525. msgstr ""
  526. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:265
  527. msgid "Active IPv4 Routes"
  528. msgstr ""
  529. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:268
  530. msgid "Active IPv4 Rules"
  531. msgstr ""
  532. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:275
  533. msgid "Active IPv6 Routes"
  534. msgstr ""
  535. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:278
  536. msgid "Active IPv6 Rules"
  537. msgstr ""
  538. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:256
  539. msgid "Active peers"
  540. msgstr ""
  541. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:210
  542. msgid "Active-Backup policy (active-backup, 1)"
  543. msgstr ""
  544. #: modules/luci-base/htdocs/luci-static/resources/network.js:3905
  545. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1055
  546. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:23
  547. msgid "Ad-Hoc"
  548. msgstr ""
  549. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:215
  550. msgid "Adaptive load balancing (balance-alb, 6)"
  551. msgstr ""
  552. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:214
  553. msgid "Adaptive transmit load balancing (balance-tlb, 5)"
  554. msgstr ""
  555. #: modules/luci-base/htdocs/luci-static/resources/form.js:2235
  556. #: modules/luci-base/htdocs/luci-static/resources/form.js:2238
  557. #: modules/luci-base/htdocs/luci-static/resources/form.js:2251
  558. #: modules/luci-base/htdocs/luci-static/resources/form.js:2259
  559. #: modules/luci-base/htdocs/luci-static/resources/form.js:3545
  560. #: modules/luci-compat/luasrc/view/cbi/nsection.htm:25
  561. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:189
  562. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:197
  563. #: modules/luci-compat/luasrc/view/cbi/tsection.htm:39
  564. #: modules/luci-compat/luasrc/view/cbi/tsection.htm:47
  565. #: modules/luci-compat/luasrc/view/cbi/ucisection.htm:54
  566. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:946
  567. msgid "Add"
  568. msgstr ""
  569. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1642
  570. msgid "Add ATM Bridge"
  571. msgstr ""
  572. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:92
  573. msgid "Add IPv4 address…"
  574. msgstr ""
  575. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:186
  576. msgid "Add IPv6 address…"
  577. msgstr ""
  578. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:65
  579. msgid "Add LED action"
  580. msgstr ""
  581. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:221
  582. msgid "Add VLAN"
  583. msgstr ""
  584. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:757
  585. msgid ""
  586. "Add a subnet address to the DNS queries which are forwarded upstream, "
  587. "leaving this value empty disables the feature."
  588. msgstr ""
  589. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1391
  590. msgid "Add device configuration"
  591. msgstr ""
  592. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1331
  593. msgid "Add device configuration…"
  594. msgstr ""
  595. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:15
  596. msgid "Add instance"
  597. msgstr ""
  598. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:171
  599. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:177
  600. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:274
  601. msgid "Add key"
  602. msgstr ""
  603. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:263
  604. msgid ""
  605. "Add listeners in order to accept incoming peerings from non-local nodes. "
  606. "Multicast peer discovery works regardless of listeners set here. URI Format: "
  607. "<code>tls://0.0.0.0:0</code> or <code>tls://[::]:0</code> to listen on all "
  608. "interfaces. Choose an acceptable URI <code>tls://</code>, <code>tcp://</"
  609. "code>, <code>unix://</code> or <code>quic://</code>"
  610. msgstr ""
  611. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:433
  612. msgid "Add local domain suffix to names served from hosts files."
  613. msgstr ""
  614. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:283
  615. msgid "Add multicast rule"
  616. msgstr ""
  617. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:454
  618. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1215
  619. msgid "Add new interface..."
  620. msgstr ""
  621. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:188
  622. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:188
  623. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:210
  624. msgid "Add peer"
  625. msgstr ""
  626. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:274
  627. msgid "Add peer address"
  628. msgstr ""
  629. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:740
  630. msgid "Add requestor MAC"
  631. msgstr ""
  632. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:352
  633. msgctxt "Dnsmasq instance"
  634. msgid "Add server instance"
  635. msgstr ""
  636. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1298
  637. msgid "Add static forward and reverse DNS entries for this host."
  638. msgstr ""
  639. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:756
  640. msgid "Add subnet address to forwards"
  641. msgstr ""
  642. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:741
  643. msgid ""
  644. "Add the MAC address of the requestor to DNS queries which are forwarded "
  645. "upstream."
  646. msgstr ""
  647. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:335
  648. msgid "Add to Blacklist"
  649. msgstr ""
  650. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:335
  651. msgid "Add to Whitelist"
  652. msgstr ""
  653. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1154
  654. msgid "Adding an IPv6 to an IPv4 set and vice-versa silently fails."
  655. msgstr ""
  656. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:178
  657. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:178
  658. msgid "Additional Peers"
  659. msgstr ""
  660. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:376
  661. msgid "Additional configuration settings (in TOML format)."
  662. msgstr ""
  663. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:662
  664. msgid "Additional hosts files"
  665. msgstr ""
  666. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:901
  667. msgid "Additional options to send to the below match tags."
  668. msgstr ""
  669. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:734
  670. msgid "Additional servers file"
  671. msgstr ""
  672. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:38
  673. msgid "Address"
  674. msgstr ""
  675. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:613
  676. msgid "Address families of \"Relay from\" and \"Relay to address\" must match."
  677. msgstr ""
  678. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:21
  679. msgctxt "nft meta nfproto"
  680. msgid "Address family"
  681. msgstr ""
  682. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:271
  683. msgid "Address setting is invalid"
  684. msgstr ""
  685. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:151
  686. msgid "Address to access local relay bridge"
  687. msgstr ""
  688. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:476
  689. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:793
  690. msgid "Addresses"
  691. msgstr ""
  692. #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:3
  693. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:15
  694. msgid "Administration"
  695. msgstr ""
  696. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:468
  697. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:632
  698. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1668
  699. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:41
  700. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:133
  701. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:985
  702. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1049
  703. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:241
  704. msgid "Advanced Settings"
  705. msgstr ""
  706. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:391
  707. msgid "Advanced device options"
  708. msgstr ""
  709. #: protocols/luci-proto-external/htdocs/luci-static/resources/protocol/external.js:34
  710. msgid ""
  711. "Afer making changes to network using external protocol, network must be "
  712. "manually restarted."
  713. msgstr ""
  714. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:76
  715. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:76
  716. msgid "Ageing"
  717. msgstr ""
  718. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:567
  719. msgid "Ageing time"
  720. msgstr ""
  721. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:50
  722. msgid "Aggregate Originator Messages"
  723. msgstr ""
  724. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:265
  725. msgid "Aggregation Selection Logic"
  726. msgstr ""
  727. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:268
  728. msgid "Aggregator: All slaves down or has no slaves (stable, 0)"
  729. msgstr ""
  730. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:270
  731. msgid ""
  732. "Aggregator: Chosen by the largest number of ports + slave added/removed or "
  733. "state changes (count, 2)"
  734. msgstr ""
  735. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:269
  736. msgid "Aggregator: Slave added/removed or state changes (bandwidth, 1)"
  737. msgstr ""
  738. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:192
  739. msgid "Alert"
  740. msgstr ""
  741. #: modules/luci-base/htdocs/luci-static/resources/network.js:3023
  742. #: modules/luci-compat/luasrc/model/network.lua:1417
  743. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:62
  744. msgid "Alias Interface"
  745. msgstr ""
  746. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:132
  747. msgid "Alias of \"%s\""
  748. msgstr ""
  749. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:771
  750. msgid "All servers"
  751. msgstr ""
  752. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:674
  753. msgid ""
  754. "Allocate IP addresses sequentially, starting from the lowest available "
  755. "address."
  756. msgstr ""
  757. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:673
  758. msgid "Allocate IPs sequentially"
  759. msgstr ""
  760. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:355
  761. msgid "Allocate listen addresses"
  762. msgstr ""
  763. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:27
  764. msgid "Allow <abbr title=\"Secure Shell\">SSH</abbr> password authentication"
  765. msgstr ""
  766. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1260
  767. msgid "Allow AP mode to disconnect STAs based on low ACK condition"
  768. msgstr ""
  769. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:356
  770. msgid ""
  771. "Allow Yggdrasil Jumper to automatically configure Yggdrasil with proper "
  772. "listen address and random port."
  773. msgstr ""
  774. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1151
  775. msgid "Allow all except listed"
  776. msgstr ""
  777. #: modules/luci-compat/root/usr/share/rpcd/acl.d/luci-compat.json:3
  778. msgid "Allow full UCI access for legacy applications"
  779. msgstr ""
  780. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1005
  781. msgid "Allow legacy 802.11b rates"
  782. msgstr ""
  783. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1150
  784. msgid "Allow listed only"
  785. msgstr ""
  786. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:514
  787. msgid "Allow localhost"
  788. msgstr ""
  789. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:178
  790. msgid "Allow rebooting the device"
  791. msgstr ""
  792. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:38
  793. msgid "Allow remote hosts to connect to local SSH forwarded ports"
  794. msgstr ""
  795. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:33
  796. msgid "Allow root logins with password"
  797. msgstr ""
  798. #: modules/luci-base/root/usr/share/rpcd/acl.d/luci-base.json:3
  799. msgid "Allow system feature probing"
  800. msgstr ""
  801. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:33
  802. msgid "Allow the <em>root</em> user to log in with password"
  803. msgstr ""
  804. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:609
  805. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:782
  806. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:56
  807. msgid "Allowed IPs"
  808. msgstr ""
  809. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:88
  810. msgid "Allowed network technology"
  811. msgstr ""
  812. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:302
  813. msgid "AllowedIPs setting is invalid"
  814. msgstr ""
  815. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:42
  816. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:42
  817. msgid "Alternatively, a multicast address to reach a group of peers."
  818. msgstr ""
  819. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:775
  820. msgid "Always"
  821. msgstr ""
  822. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/none.js:6
  823. msgid "Always off (kernel: none)"
  824. msgstr ""
  825. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/default-on.js:5
  826. msgid "Always on (kernel: default-on)"
  827. msgstr ""
  828. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:914
  829. msgid ""
  830. "Always send the chosen DHCP options. Sometimes needed, with e.g. PXELinux."
  831. msgstr ""
  832. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1032
  833. msgid ""
  834. "Always use 40MHz channels even if the secondary channel overlaps. Using this "
  835. "option does not comply with IEEE 802.11n-2009!"
  836. msgstr ""
  837. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:740
  838. msgid "Amount of Duplicate Address Detection probes to send"
  839. msgstr ""
  840. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:119
  841. msgid "Amount of seconds to wait for the modem to become ready"
  842. msgstr ""
  843. #: modules/luci-base/htdocs/luci-static/resources/form.js:610
  844. msgid "An error occurred while saving the form:"
  845. msgstr ""
  846. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:139
  847. msgid "An optional, short description for this device"
  848. msgstr ""
  849. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1584
  850. msgid "Annex"
  851. msgstr ""
  852. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:843
  853. msgid ""
  854. "Announce NAT64 prefix in <abbr title=\"Router Advertisement\">RA</abbr> "
  855. "messages."
  856. msgstr ""
  857. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:935
  858. msgid "Announce this device as IPv6 DNS server."
  859. msgstr ""
  860. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:801
  861. msgid ""
  862. "Announce this device as default router if a local IPv6 default route is "
  863. "present."
  864. msgstr ""
  865. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:803
  866. msgid ""
  867. "Announce this device as default router if a public IPv6 prefix is available, "
  868. "regardless of local default route availability."
  869. msgstr ""
  870. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:805
  871. msgid ""
  872. "Announce this device as default router regardless of whether a prefix or "
  873. "default route is present."
  874. msgstr ""
  875. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:942
  876. msgid "Announced DNS domains"
  877. msgstr ""
  878. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:926
  879. msgid "Announced IPv6 DNS servers"
  880. msgstr ""
  881. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1878
  882. msgid "Anonymous Identity"
  883. msgstr ""
  884. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:162
  885. msgid "Anonymous Mount"
  886. msgstr ""
  887. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:158
  888. msgid "Anonymous Swap"
  889. msgstr ""
  890. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:518
  891. msgctxt "nft match any traffic"
  892. msgid "Any packet"
  893. msgstr ""
  894. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:93
  895. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:183
  896. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:205
  897. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:60
  898. msgid "Any zone"
  899. msgstr ""
  900. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:119
  901. msgid "Apply backup?"
  902. msgstr ""
  903. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4772
  904. msgid "Apply request failed with status <code>%h</code>"
  905. msgstr ""
  906. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2175
  907. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4488
  908. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4610
  909. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4746
  910. msgid "Apply unchecked"
  911. msgstr ""
  912. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4742
  913. msgid "Apply, reverting in case of connectivity loss"
  914. msgstr ""
  915. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4683
  916. msgid "Applying configuration changes… %ds"
  917. msgstr ""
  918. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:57
  919. msgid "Architecture"
  920. msgstr ""
  921. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:152
  922. msgid "Arp-scan"
  923. msgstr ""
  924. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1056
  925. msgid ""
  926. "Assign a part of given length of every public IPv6-prefix to this interface"
  927. msgstr ""
  928. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1269
  929. msgid "Assign new, freeform tags to this entry."
  930. msgstr ""
  931. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1061
  932. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:27
  933. msgid ""
  934. "Assign prefix parts using this hexadecimal subprefix ID for this interface."
  935. msgstr ""
  936. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2420
  937. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:366
  938. msgid "Associated Stations"
  939. msgstr ""
  940. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:151
  941. msgid "Associations"
  942. msgstr ""
  943. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:126
  944. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:127
  945. msgid ""
  946. "At least <strong>%h</strong> per <strong>%h</strong>, burst of <strong>%h</"
  947. "strong>"
  948. msgstr ""
  949. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:124
  950. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:125
  951. msgid ""
  952. "At most <strong>%h</strong> per <strong>%h</strong>, burst of <strong>%h</"
  953. "strong>"
  954. msgstr ""
  955. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:154
  956. msgid "Attempt to enable configured mount points for attached devices"
  957. msgstr ""
  958. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1532
  959. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1539
  960. msgid "Attributes to add/replace in each request."
  961. msgstr ""
  962. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:145
  963. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:64
  964. msgid "Auth Group"
  965. msgstr ""
  966. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1817
  967. msgid "Authentication"
  968. msgstr ""
  969. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:76
  970. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:79
  971. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:89
  972. msgid "Authentication Type"
  973. msgstr ""
  974. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:419
  975. msgid "Authoritative"
  976. msgstr ""
  977. #: modules/luci-base/ucode/template/sysauth.ut:17
  978. #: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:11
  979. msgid "Authorization Required"
  980. msgstr ""
  981. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:365
  982. msgid "Autofill listen addresses"
  983. msgstr ""
  984. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:120
  985. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:18
  986. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:24
  987. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:107
  988. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:116
  989. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:113
  990. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:51
  991. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:96
  992. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:82
  993. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:56
  994. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:69
  995. msgid "Automatic"
  996. msgstr ""
  997. #: modules/luci-compat/luasrc/model/network/proto_hnet.lua:7
  998. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:7
  999. msgid "Automatic Homenet (HNCP)"
  1000. msgstr ""
  1001. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:97
  1002. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:97
  1003. msgid ""
  1004. "Automatic mac learning using multicast; inserts unknown source link layer "
  1005. "addresses and IP addresses into the VXLAN device %s"
  1006. msgstr ""
  1007. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:174
  1008. msgid "Automatically check filesystem for errors before mounting"
  1009. msgstr ""
  1010. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1049
  1011. msgid ""
  1012. "Automatically handle multiple uplink interfaces using source-based policy "
  1013. "routing."
  1014. msgstr ""
  1015. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:170
  1016. msgid "Automatically mount filesystems on hotplug"
  1017. msgstr ""
  1018. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:166
  1019. msgid "Automatically mount swap on hotplug"
  1020. msgstr ""
  1021. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:170
  1022. msgid "Automount Filesystem"
  1023. msgstr ""
  1024. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:166
  1025. msgid "Automount Swap"
  1026. msgstr ""
  1027. #: protocols/luci-proto-autoip/htdocs/luci-static/resources/protocol/autoip.js:6
  1028. msgid "Avahi IPv4LL"
  1029. msgstr ""
  1030. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:193
  1031. msgid "Available"
  1032. msgstr ""
  1033. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:270
  1034. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:280
  1035. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:334
  1036. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:344
  1037. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:354
  1038. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:239
  1039. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:249
  1040. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:259
  1041. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:265
  1042. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:275
  1043. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:293
  1044. msgid "Average:"
  1045. msgstr ""
  1046. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:70
  1047. msgid "Avoid Bridge Loops"
  1048. msgstr ""
  1049. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1611
  1050. msgid "B43 + B43C"
  1051. msgstr ""
  1052. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1612
  1053. msgid "B43 + B43C + V43"
  1054. msgstr ""
  1055. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:48
  1056. msgid "BR / DMR / AFTR"
  1057. msgstr ""
  1058. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1760
  1059. msgid "BSS Transition"
  1060. msgstr ""
  1061. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:158
  1062. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:182
  1063. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1973
  1064. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:447
  1065. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:149
  1066. msgid "BSSID"
  1067. msgstr ""
  1068. #: modules/luci-compat/luasrc/view/cbi/footer.htm:14
  1069. #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:48
  1070. msgid "Back to Overview"
  1071. msgstr ""
  1072. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:851
  1073. msgid "Back to peer configuration"
  1074. msgstr ""
  1075. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:393
  1076. msgid "Backup"
  1077. msgstr ""
  1078. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:128
  1079. msgid "Backup / Flash Firmware"
  1080. msgstr ""
  1081. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:353
  1082. msgid "Backup file list"
  1083. msgstr ""
  1084. #: modules/luci-compat/luasrc/view/cbi/wireless_modefreq.htm:186
  1085. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:562
  1086. msgid "Band"
  1087. msgstr ""
  1088. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:314
  1089. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:139
  1090. msgid "Bandwidth"
  1091. msgstr ""
  1092. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:431
  1093. msgid "Base device"
  1094. msgstr ""
  1095. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:144
  1096. msgid "Base64-encoded public key of this interface for sharing."
  1097. msgstr ""
  1098. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:10
  1099. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv_hardif.js:41
  1100. msgid "Batman Device"
  1101. msgstr ""
  1102. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv_hardif.js:10
  1103. msgid "Batman Interface"
  1104. msgstr ""
  1105. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:81
  1106. msgid ""
  1107. "Batman-adv has a built-in layer 2 fragmentation for unicast data flowing "
  1108. "through the mesh which will allow to run batman-adv over interfaces / "
  1109. "connections that don't allow to increase the MTU beyond the standard "
  1110. "Ethernet packet size of 1500 bytes. When the fragmentation is enabled batman-"
  1111. "adv will automatically fragment over-sized packets and defragment them on "
  1112. "the other end. Per default fragmentation is enabled and inactive if the "
  1113. "packet fits but it is possible to deactivate the fragmentation entirely."
  1114. msgstr ""
  1115. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1035
  1116. msgid "Beacon Interval"
  1117. msgstr ""
  1118. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1734
  1119. msgid "Beacon Report"
  1120. msgstr ""
  1121. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:354
  1122. msgid ""
  1123. "Below is the determined list of files to backup. It consists of changed "
  1124. "configuration files marked by opkg, essential base files and the user "
  1125. "defined backup patterns."
  1126. msgstr ""
  1127. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:287
  1128. msgid "Bind NTP server"
  1129. msgstr ""
  1130. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:59
  1131. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64
  1132. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64
  1133. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:69
  1134. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:48
  1135. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:142
  1136. #: protocols/luci-proto-vti/htdocs/luci-static/resources/protocol/vti.js:59
  1137. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:132
  1138. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:132
  1139. msgid "Bind interface"
  1140. msgstr ""
  1141. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:538
  1142. msgid ""
  1143. "Bind only to configured interface addresses, instead of the wildcard address."
  1144. msgstr ""
  1145. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:980
  1146. msgid ""
  1147. "Bind service records to a domain name: specify the location of services."
  1148. msgstr ""
  1149. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:941
  1150. msgid ""
  1151. "Bind service records to a domain name: specify the location of services. See "
  1152. "<a href=\"%s\">RFC2782</a>."
  1153. msgstr ""
  1154. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:59
  1155. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64
  1156. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64
  1157. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:69
  1158. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:48
  1159. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:142
  1160. #: protocols/luci-proto-vti/htdocs/luci-static/resources/protocol/vti.js:59
  1161. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:132
  1162. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:132
  1163. msgid "Bind the tunnel to this interface (optional)."
  1164. msgstr ""
  1165. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:129
  1166. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:188
  1167. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:171
  1168. msgid "Bitrate"
  1169. msgstr ""
  1170. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:65
  1171. msgid "Bonding Mode"
  1172. msgstr ""
  1173. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:206
  1174. msgid "Bonding Policy"
  1175. msgstr ""
  1176. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:600
  1177. msgid "Both \"Relay from\" and \"Relay to address\" must be specified."
  1178. msgstr ""
  1179. #: modules/luci-base/htdocs/luci-static/resources/network.js:3029
  1180. #: modules/luci-compat/luasrc/model/network.lua:1421
  1181. msgid "Bridge"
  1182. msgstr ""
  1183. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:491
  1184. msgctxt "MACVLAN mode"
  1185. msgid "Bridge (Support direct communication between MAC VLANs)"
  1186. msgstr ""
  1187. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:393
  1188. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:471
  1189. msgid "Bridge VLAN filtering"
  1190. msgstr ""
  1191. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:398
  1192. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1489
  1193. msgid "Bridge device"
  1194. msgstr ""
  1195. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:392
  1196. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:470
  1197. msgid "Bridge port specific options"
  1198. msgstr ""
  1199. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:522
  1200. msgid "Bridge ports"
  1201. msgstr ""
  1202. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:641
  1203. msgid "Bridge traffic table \"%h\""
  1204. msgstr ""
  1205. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1678
  1206. msgid "Bridge unit number"
  1207. msgstr ""
  1208. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:558
  1209. msgid "Bring up empty bridge"
  1210. msgstr ""
  1211. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:574
  1212. msgid "Bring up on boot"
  1213. msgstr ""
  1214. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:558
  1215. msgid "Bring up the bridge interface even if no ports are attached"
  1216. msgstr ""
  1217. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1293
  1218. msgid "Broadcast"
  1219. msgstr ""
  1220. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:212
  1221. msgid "Broadcast policy (broadcast, 3)"
  1222. msgstr ""
  1223. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2884
  1224. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4248
  1225. msgid "Browse…"
  1226. msgstr ""
  1227. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:40
  1228. msgid "Buffered"
  1229. msgstr ""
  1230. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:403
  1231. msgid "By default, dnsmasq caches A, AAAA, CNAME and SRV DNS record types."
  1232. msgstr ""
  1233. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:130
  1234. msgid ""
  1235. "CA certificate (PEM encoded; Use instead of system-wide store to verify the "
  1236. "gateway certificate."
  1237. msgstr ""
  1238. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:181
  1239. msgid "CA certificate; if empty it will be saved after the first connection."
  1240. msgstr ""
  1241. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:79
  1242. msgid "CHAP"
  1243. msgstr ""
  1244. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:7
  1245. msgid "CLAT configuration failed"
  1246. msgstr ""
  1247. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:937
  1248. msgid "CNAME"
  1249. msgstr ""
  1250. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:959
  1251. msgid "CNAME or fqdn"
  1252. msgstr ""
  1253. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:72
  1254. msgid "CPU usage (%)"
  1255. msgstr ""
  1256. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388
  1257. msgid "Cache"
  1258. msgstr ""
  1259. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:403
  1260. msgid "Cache arbitrary RR"
  1261. msgstr ""
  1262. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:43
  1263. msgid "Cached"
  1264. msgstr ""
  1265. #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:53
  1266. #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:53
  1267. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:21
  1268. msgid "Call failed"
  1269. msgstr ""
  1270. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1153
  1271. msgid "Can be hinted by adding 4 or 6 to the name."
  1272. msgstr ""
  1273. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:692
  1274. msgid ""
  1275. "Can be useful if ISP has IPv6 nameservers but does not provide IPv6 routing."
  1276. msgstr ""
  1277. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2976
  1278. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4219
  1279. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4738
  1280. #: modules/luci-compat/luasrc/view/cbi/delegator.htm:14
  1281. #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:52
  1282. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:174
  1283. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1221
  1284. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2294
  1285. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:128
  1286. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:297
  1287. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:209
  1288. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:472
  1289. msgid "Cancel"
  1290. msgstr ""
  1291. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:334
  1292. msgid "Cannot parse configuration: %s"
  1293. msgstr ""
  1294. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:568
  1295. msgctxt "Chain hook: forward"
  1296. msgid "Capture incoming packets addressed to other hosts"
  1297. msgstr ""
  1298. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:560
  1299. msgctxt "Chain hook: prerouting"
  1300. msgid "Capture incoming packets before any routing decision"
  1301. msgstr ""
  1302. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:564
  1303. msgctxt "Chain hook: input"
  1304. msgid "Capture incoming packets routed to the local system"
  1305. msgstr ""
  1306. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:576
  1307. msgctxt "Chain hook: postrouting"
  1308. msgid "Capture outgoing packets after any routing decision"
  1309. msgstr ""
  1310. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:572
  1311. msgctxt "Chain hook: output"
  1312. msgid "Capture outgoing packets originating from the local system"
  1313. msgstr ""
  1314. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:556
  1315. msgctxt "Chain hook: ingress"
  1316. msgid "Capture packets directly after the NIC received them"
  1317. msgstr ""
  1318. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:17
  1319. msgid "Category"
  1320. msgstr ""
  1321. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:114
  1322. msgid "Cell ID"
  1323. msgstr ""
  1324. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:113
  1325. msgid "Cell Location"
  1326. msgstr ""
  1327. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:167
  1328. #: protocols/luci-proto-modemmanager/root/usr/share/luci/menu.d/luci-proto-modemmanager.json:3
  1329. msgid "Cellular Network"
  1330. msgstr ""
  1331. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1801
  1332. msgid "Certificate constraint (Domain)"
  1333. msgstr ""
  1334. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1798
  1335. msgid "Certificate constraint (SAN)"
  1336. msgstr ""
  1337. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1795
  1338. msgid "Certificate constraint (Subject)"
  1339. msgstr ""
  1340. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1804
  1341. msgid "Certificate constraint (Wildcard)"
  1342. msgstr ""
  1343. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1795
  1344. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1853
  1345. msgid ""
  1346. "Certificate constraint substring - e.g. /CN=wifi.mycompany.com<br />See "
  1347. "`logread -f` during handshake for actual values"
  1348. msgstr ""
  1349. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1801
  1350. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1859
  1351. msgid ""
  1352. "Certificate constraint(s) against DNS SAN values (if available)<br />or "
  1353. "Subject CN (exact match)"
  1354. msgstr ""
  1355. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1804
  1356. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1862
  1357. msgid ""
  1358. "Certificate constraint(s) against DNS SAN values (if available)<br />or "
  1359. "Subject CN (suffix match)"
  1360. msgstr ""
  1361. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1798
  1362. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1856
  1363. msgid ""
  1364. "Certificate constraint(s) via Subject Alternate Name values<br />(supported "
  1365. "attributes: EMAIL, DNS, URI) - e.g. DNS:wifi.mycompany.com"
  1366. msgstr ""
  1367. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:54
  1368. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:57
  1369. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:212
  1370. msgid "Chain"
  1371. msgstr ""
  1372. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:580
  1373. msgctxt "Yet unknown nftables chain hook"
  1374. msgid "Chain hook \"%h\""
  1375. msgstr ""
  1376. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4466
  1377. msgid "Changes"
  1378. msgstr ""
  1379. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4733
  1380. msgid ""
  1381. "Changes have been made to the existing connection via \"%h\". This could "
  1382. "inhibit access to this device. Any IP change requires <strong>connecting to "
  1383. "the new IP</strong> within %d seconds to retain the changes."
  1384. msgstr ""
  1385. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4808
  1386. msgid "Changes have been reverted."
  1387. msgstr ""
  1388. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:46
  1389. msgid "Changes the administrator password for accessing the device"
  1390. msgstr ""
  1391. #: modules/luci-compat/luasrc/view/cbi/wireless_modefreq.htm:190
  1392. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:128
  1393. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:184
  1394. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:571
  1395. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1971
  1396. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:444
  1397. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:170
  1398. msgid "Channel"
  1399. msgstr ""
  1400. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:412
  1401. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:105
  1402. msgid "Channel Analysis"
  1403. msgstr ""
  1404. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:445
  1405. msgid "Channel Width"
  1406. msgstr ""
  1407. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:174
  1408. msgid "Check filesystems before mount"
  1409. msgstr ""
  1410. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2254
  1411. msgid "Check this option to delete the existing networks from this radio."
  1412. msgstr ""
  1413. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:110
  1414. msgid "Checking archive…"
  1415. msgstr ""
  1416. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:195
  1417. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:197
  1418. msgid "Checking image…"
  1419. msgstr ""
  1420. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:429
  1421. msgid "Choose mtdblock"
  1422. msgstr ""
  1423. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:579
  1424. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2284
  1425. msgid ""
  1426. "Choose the firewall zone you want to assign to this interface. Select "
  1427. "<em>unspecified</em> to remove the interface from the associated zone or "
  1428. "fill out the <em>custom</em> field to define a new zone and attach the "
  1429. "interface to it."
  1430. msgstr ""
  1431. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1085
  1432. msgid ""
  1433. "Choose the network(s) you want to attach to this wireless interface or fill "
  1434. "out the <em>custom</em> field to define a new network."
  1435. msgstr ""
  1436. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1296
  1437. msgid "Cipher"
  1438. msgstr ""
  1439. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:91
  1440. msgid "Cisco UDP encapsulation"
  1441. msgstr ""
  1442. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:393
  1443. msgid ""
  1444. "Click \"Generate archive\" to download a tar archive of the current "
  1445. "configuration files."
  1446. msgstr ""
  1447. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:426
  1448. msgid ""
  1449. "Click \"Save mtdblock\" to download specified mtdblock file. (NOTE: THIS "
  1450. "FEATURE IS FOR PROFESSIONALS! )"
  1451. msgstr ""
  1452. #: modules/luci-base/htdocs/luci-static/resources/network.js:3906
  1453. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1054
  1454. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1169
  1455. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:88
  1456. msgid "Client"
  1457. msgstr ""
  1458. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37
  1459. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:35
  1460. msgid "Client ID to send when requesting DHCP"
  1461. msgstr ""
  1462. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4485
  1463. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:173
  1464. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:179
  1465. msgid "Close"
  1466. msgstr ""
  1467. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:156
  1468. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:128
  1469. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:114
  1470. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:92
  1471. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:101
  1472. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:124
  1473. msgid ""
  1474. "Close inactive connection after the given amount of seconds, use 0 to "
  1475. "persist connection"
  1476. msgstr ""
  1477. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:44
  1478. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:63
  1479. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2418
  1480. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:394
  1481. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:356
  1482. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:359
  1483. #: themes/luci-theme-material/ucode/template/themes/material/header.ut:67
  1484. msgid "Collecting data..."
  1485. msgstr ""
  1486. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:250
  1487. msgid "Collisions seen"
  1488. msgstr ""
  1489. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:71
  1490. msgid "Command"
  1491. msgstr ""
  1492. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:401
  1493. msgid "Command OK"
  1494. msgstr ""
  1495. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:32
  1496. msgid "Command failed"
  1497. msgstr ""
  1498. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:73
  1499. msgid "Comment"
  1500. msgstr ""
  1501. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:182
  1502. msgid "Common name or numeric ID of the %s in which this route is found"
  1503. msgstr ""
  1504. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1942
  1505. msgid ""
  1506. "Complicates key reinstallation attacks on the client side by disabling "
  1507. "retransmission of EAPOL-Key frames that are used to install keys. This "
  1508. "workaround might cause interoperability issues and reduced robustness of key "
  1509. "negotiation especially in environments with heavy traffic load."
  1510. msgstr ""
  1511. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:101
  1512. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:106
  1513. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:103
  1514. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:108
  1515. msgid "Compute outgoing checksum (optional)."
  1516. msgstr ""
  1517. #: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:40
  1518. msgid "Config File"
  1519. msgstr ""
  1520. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4466
  1521. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:456
  1522. msgid "Configuration"
  1523. msgstr ""
  1524. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:675
  1525. msgid "Configuration Export"
  1526. msgstr ""
  1527. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4658
  1528. msgid "Configuration changes applied."
  1529. msgstr ""
  1530. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4596
  1531. msgid "Configuration changes have been rolled back!"
  1532. msgstr ""
  1533. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:63
  1534. msgid "Configuration failed"
  1535. msgstr ""
  1536. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1014
  1537. msgid ""
  1538. "Configures data rates based on the coverage cell density. Normal configures "
  1539. "basic rates to 6, 12, 24 Mbps if legacy 802.11b rates are not used else to "
  1540. "5.5, 11 Mbps. High configures basic rates to 12, 24 Mbps if legacy 802.11b "
  1541. "rates are not used else to the 11 Mbps rate. Very High configures 24 Mbps as "
  1542. "the basic rate. Supported rates lower than the minimum basic rate are not "
  1543. "offered."
  1544. msgstr ""
  1545. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:798
  1546. msgid ""
  1547. "Configures the default router advertisement in <abbr title=\"Router "
  1548. "Advertisement\">RA</abbr> messages."
  1549. msgstr ""
  1550. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:922
  1551. msgid ""
  1552. "Configures the minimum delegated prefix length assigned to a requesting "
  1553. "downstream router, potentially overriding a requested prefix length. If left "
  1554. "unspecified, the device will assign the smallest available prefix greater "
  1555. "than or equal to the requested prefix."
  1556. msgstr ""
  1557. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:786
  1558. msgid ""
  1559. "Configures the operation mode of the <abbr title=\"Router "
  1560. "Advertisement\">RA</abbr> service on this interface."
  1561. msgstr ""
  1562. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:911
  1563. msgid "Configures the operation mode of the DHCPv6 service on this interface."
  1564. msgstr ""
  1565. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:977
  1566. msgid ""
  1567. "Configures the operation mode of the NDP proxy service on this interface."
  1568. msgstr ""
  1569. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1377
  1570. msgid "Configure…"
  1571. msgstr ""
  1572. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:162
  1573. msgid "Confirm disconnect"
  1574. msgstr ""
  1575. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:55
  1576. msgid "Confirmation"
  1577. msgstr ""
  1578. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:98
  1579. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:101
  1580. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:47
  1581. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:232
  1582. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:42
  1583. msgid "Connected"
  1584. msgstr ""
  1585. #: modules/luci-base/htdocs/luci-static/resources/network.js:9
  1586. #: modules/luci-compat/luasrc/model/network.lua:27
  1587. msgid "Connection attempt failed"
  1588. msgstr ""
  1589. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:8
  1590. msgid "Connection attempt failed."
  1591. msgstr ""
  1592. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:777
  1593. msgid "Connection endpoint"
  1594. msgstr ""
  1595. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:411
  1596. msgid "Connection lost"
  1597. msgstr ""
  1598. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:322
  1599. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:160
  1600. msgid "Connections"
  1601. msgstr ""
  1602. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4732
  1603. msgid "Connectivity change"
  1604. msgstr ""
  1605. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:31
  1606. msgctxt "nft ct state"
  1607. msgid "Conntrack state"
  1608. msgstr ""
  1609. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:33
  1610. msgctxt "nft ct status"
  1611. msgid "Conntrack status"
  1612. msgstr ""
  1613. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:383
  1614. msgid "Consider the slave up when all ARP IP targets are reachable (all, 1)"
  1615. msgstr ""
  1616. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:382
  1617. msgid "Consider the slave up when any ARP IP target is reachable (any, 0)"
  1618. msgstr ""
  1619. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/crontab.js:18
  1620. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:370
  1621. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:54
  1622. msgid "Contents have been saved."
  1623. msgstr ""
  1624. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:388
  1625. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:422
  1626. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:861
  1627. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:132
  1628. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:271
  1629. msgid "Continue"
  1630. msgstr ""
  1631. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:97
  1632. msgctxt "nft jump action"
  1633. msgid "Continue in <strong><a href=\"#%q.%q\">%h</a></strong>"
  1634. msgstr ""
  1635. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:129
  1636. msgid "Continue in calling chain"
  1637. msgstr ""
  1638. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:550
  1639. msgctxt "Chain policy: accept"
  1640. msgid "Continue processing unmatched packets"
  1641. msgstr ""
  1642. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4632
  1643. msgid ""
  1644. "Could not regain access to the device after applying the configuration "
  1645. "changes. You might need to reconnect if you modified network related "
  1646. "settings such as the IP address or wireless security credentials."
  1647. msgstr ""
  1648. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:189
  1649. msgid "Country"
  1650. msgstr ""
  1651. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1011
  1652. msgid "Country Code"
  1653. msgstr ""
  1654. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1014
  1655. msgid "Coverage cell density"
  1656. msgstr ""
  1657. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:579
  1658. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2284
  1659. msgid "Create / Assign firewall-zone"
  1660. msgstr ""
  1661. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1253
  1662. msgid "Create interface"
  1663. msgstr ""
  1664. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:191
  1665. msgid "Critical"
  1666. msgstr ""
  1667. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:195
  1668. msgid "Cron Log Level"
  1669. msgstr ""
  1670. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:45
  1671. msgid "Cross Pass (Japan only)"
  1672. msgstr ""
  1673. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:651
  1674. msgid "Current power"
  1675. msgstr ""
  1676. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:28
  1677. msgctxt "nft meta hour"
  1678. msgid "Current time"
  1679. msgstr ""
  1680. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:29
  1681. msgctxt "nft meta day"
  1682. msgid "Current weekday"
  1683. msgstr ""
  1684. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:585
  1685. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:587
  1686. #: modules/luci-compat/luasrc/view/cbi/network_ifacelist.htm:51
  1687. #: modules/luci-compat/luasrc/view/cbi/network_ifacelist.htm:53
  1688. #: modules/luci-compat/luasrc/view/cbi/network_ifacelist.htm:82
  1689. #: modules/luci-compat/luasrc/view/cbi/network_ifacelist.htm:83
  1690. msgid "Custom Interface"
  1691. msgstr ""
  1692. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:412
  1693. msgid ""
  1694. "Custom files (certificates, scripts) may remain on the system. To prevent "
  1695. "this, perform a factory-reset first."
  1696. msgstr ""
  1697. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/timer.js:6
  1698. msgid "Custom flash interval (kernel: timer)"
  1699. msgstr ""
  1700. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:59
  1701. msgid ""
  1702. "Customizes the behaviour of the device <abbr title=\"Light Emitting "
  1703. "Diode\">LED</abbr>s if possible."
  1704. msgstr ""
  1705. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:740
  1706. msgid "DAD transmits"
  1707. msgstr ""
  1708. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1581
  1709. msgid "DAE-Client"
  1710. msgstr ""
  1711. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1586
  1712. msgid "DAE-Port"
  1713. msgstr ""
  1714. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1592
  1715. msgid "DAE-Secret"
  1716. msgstr ""
  1717. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:900
  1718. msgid "DHCP Options"
  1719. msgstr ""
  1720. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:473
  1721. msgid "DHCP Server"
  1722. msgstr ""
  1723. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:346
  1724. #: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:62
  1725. msgid "DHCP and DNS"
  1726. msgstr ""
  1727. #: modules/luci-base/htdocs/luci-static/resources/network.js:2091
  1728. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:16
  1729. #: modules/luci-compat/luasrc/model/network.lua:969
  1730. msgid "DHCP client"
  1731. msgstr ""
  1732. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:706
  1733. msgid "DHCP-Options"
  1734. msgstr ""
  1735. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1004
  1736. msgid ""
  1737. "DHCPv4 <code>leasetime</code> is used as limit and preferred lifetime of the "
  1738. "IPv6 prefix."
  1739. msgstr ""
  1740. #: modules/luci-compat/luasrc/model/network/proto_dhcpv6.lua:7
  1741. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:7
  1742. msgid "DHCPv6 client"
  1743. msgstr ""
  1744. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:952
  1745. msgctxt "DHCPv6 option 56. RFC5908 link"
  1746. msgid "DHCPv6 option 56. %s."
  1747. msgstr ""
  1748. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:910
  1749. msgid "DHCPv6-Service"
  1750. msgstr ""
  1751. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:40
  1752. msgid "DNS"
  1753. msgstr ""
  1754. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:469
  1755. msgid "DNS Forwards"
  1756. msgstr ""
  1757. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:390
  1758. msgid "DNS Records"
  1759. msgstr ""
  1760. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:788
  1761. msgid "DNS Servers"
  1762. msgstr ""
  1763. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:790
  1764. msgid "DNS query port"
  1765. msgstr ""
  1766. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1024
  1767. msgid "DNS search domains"
  1768. msgstr ""
  1769. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:783
  1770. msgid "DNS server port"
  1771. msgstr ""
  1772. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:788
  1773. msgid ""
  1774. "DNS servers for the remote clients using this tunnel to your openwrt device. "
  1775. "Some wireguard clients require this to be set."
  1776. msgstr ""
  1777. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:279
  1778. msgid "DNS setting is invalid"
  1779. msgstr ""
  1780. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1029
  1781. msgid "DNS weight"
  1782. msgstr ""
  1783. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:33
  1784. msgid "DNS-Label / FQDN"
  1785. msgstr ""
  1786. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:938
  1787. msgid "DNS-RR"
  1788. msgstr ""
  1789. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:391
  1790. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:718
  1791. msgid "DNSSEC"
  1792. msgstr ""
  1793. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:723
  1794. msgid "DNSSEC check unsigned"
  1795. msgstr ""
  1796. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:99
  1797. msgid "DPD Idle Timeout"
  1798. msgstr ""
  1799. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:41
  1800. msgid "DS-Lite AFTR address"
  1801. msgstr ""
  1802. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1581
  1803. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:37
  1804. msgid "DSL"
  1805. msgstr ""
  1806. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:21
  1807. msgid "DSL Status"
  1808. msgstr ""
  1809. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1620
  1810. msgid "DSL line mode"
  1811. msgstr ""
  1812. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1236
  1813. msgid "DTIM Interval"
  1814. msgstr ""
  1815. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:59
  1816. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1255
  1817. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:136
  1818. msgid "DUID"
  1819. msgstr ""
  1820. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:29
  1821. msgid "Data Rate"
  1822. msgstr ""
  1823. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:76
  1824. msgid "Data Received"
  1825. msgstr ""
  1826. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:77
  1827. msgid "Data Transmitted"
  1828. msgstr ""
  1829. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:186
  1830. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:197
  1831. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:159
  1832. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:346
  1833. msgid "Debug"
  1834. msgstr ""
  1835. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/ipip6.js:70
  1836. msgid "Default gateway"
  1837. msgstr ""
  1838. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:370
  1839. msgctxt "Dnsmasq instance"
  1840. msgid "Default instance"
  1841. msgstr ""
  1842. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:797
  1843. msgid "Default router"
  1844. msgstr ""
  1845. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/none.js:12
  1846. msgid "Default state"
  1847. msgstr ""
  1848. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1153
  1849. msgid "Defaults to IPv4+6."
  1850. msgstr ""
  1851. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1148
  1852. msgid "Defaults to fw4."
  1853. msgstr ""
  1854. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:706
  1855. msgid ""
  1856. "Define additional DHCP options, for example "
  1857. "\"<code>6,192.168.2.1,192.168.2.2</code>\" which advertises different DNS "
  1858. "servers to clients."
  1859. msgstr ""
  1860. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:516
  1861. msgid ""
  1862. "Defines a mapping of Linux internal packet priority to VLAN header priority "
  1863. "but for outgoing frames"
  1864. msgstr ""
  1865. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:510
  1866. msgid ""
  1867. "Defines a mapping of VLAN header priority to the Linux internal packet "
  1868. "priority on incoming frames"
  1869. msgstr ""
  1870. #: protocols/luci-proto-external/htdocs/luci-static/resources/protocol/external.js:34
  1871. msgid "Delay"
  1872. msgstr ""
  1873. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1053
  1874. msgid "Delegate IPv6 prefixes"
  1875. msgstr ""
  1876. #: modules/luci-base/htdocs/luci-static/resources/form.js:2312
  1877. #: modules/luci-base/htdocs/luci-static/resources/form.js:2698
  1878. #: modules/luci-base/htdocs/luci-static/resources/form.js:2702
  1879. #: modules/luci-base/htdocs/luci-static/resources/form.js:3529
  1880. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2945
  1881. #: modules/luci-compat/luasrc/view/cbi/nsection.htm:11
  1882. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:162
  1883. #: modules/luci-compat/luasrc/view/cbi/tsection.htm:16
  1884. msgid "Delete"
  1885. msgstr ""
  1886. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:205
  1887. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:211
  1888. msgid "Delete key"
  1889. msgstr ""
  1890. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2843
  1891. msgid "Delete request failed: %s"
  1892. msgstr ""
  1893. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:966
  1894. msgid "Delete this network"
  1895. msgstr ""
  1896. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1236
  1897. msgid "Delivery Traffic Indication Message Interval"
  1898. msgstr ""
  1899. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:342
  1900. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:139
  1901. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:196
  1902. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:196
  1903. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:505
  1904. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:53
  1905. msgid "Description"
  1906. msgstr ""
  1907. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2937
  1908. msgid "Deselect"
  1909. msgstr ""
  1910. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:237
  1911. msgid "Design"
  1912. msgstr ""
  1913. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:714
  1914. msgid "Designated master"
  1915. msgstr ""
  1916. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:165
  1917. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:389
  1918. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:71
  1919. msgid "Destination"
  1920. msgstr ""
  1921. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:44
  1922. msgctxt "nft ip daddr"
  1923. msgid "Destination IP"
  1924. msgstr ""
  1925. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:48
  1926. msgctxt "nft ip6 daddr"
  1927. msgid "Destination IPv6"
  1928. msgstr ""
  1929. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:52
  1930. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:52
  1931. msgid "Destination port"
  1932. msgstr ""
  1933. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:46
  1934. msgctxt "nft ip dport"
  1935. msgid "Destination port"
  1936. msgstr ""
  1937. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:68
  1938. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:174
  1939. msgid "Destination zone"
  1940. msgstr ""
  1941. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:76
  1942. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:201
  1943. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:43
  1944. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:46
  1945. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:83
  1946. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:564
  1947. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1203
  1948. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1505
  1949. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:46
  1950. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:196
  1951. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:222
  1952. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:13
  1953. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:248
  1954. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:281
  1955. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:355
  1956. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:391
  1957. #: protocols/luci-proto-external/htdocs/luci-static/resources/protocol/external.js:29
  1958. msgid "Device"
  1959. msgstr ""
  1960. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:980
  1961. msgid "Device Configuration"
  1962. msgstr ""
  1963. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:88
  1964. msgid "Device Identifier"
  1965. msgstr ""
  1966. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:132
  1967. msgid "Device is not active"
  1968. msgstr ""
  1969. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:242
  1970. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:717
  1971. msgid "Device is restarting…"
  1972. msgstr ""
  1973. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:495
  1974. msgid "Device name"
  1975. msgstr ""
  1976. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:10
  1977. msgid "Device not managed by ModemManager."
  1978. msgstr ""
  1979. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1480
  1980. msgid "Device not present"
  1981. msgstr ""
  1982. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:395
  1983. msgid "Device type"
  1984. msgstr ""
  1985. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4631
  1986. msgid "Device unreachable!"
  1987. msgstr ""
  1988. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:53
  1989. msgid "Device unreachable! Still waiting for device..."
  1990. msgstr ""
  1991. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1328
  1992. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:287
  1993. msgid "Devices"
  1994. msgstr ""
  1995. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:389
  1996. msgid "Devices &amp; Ports"
  1997. msgstr ""
  1998. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:159
  1999. #: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:76
  2000. msgid "Diagnostics"
  2001. msgstr ""
  2002. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:114
  2003. msgid "Dial number"
  2004. msgstr ""
  2005. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:140
  2006. msgid "Dir"
  2007. msgstr ""
  2008. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2739
  2009. msgid "Directory"
  2010. msgstr ""
  2011. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1570
  2012. msgid ""
  2013. "Directs packet flows to specific CPUs where the local socket owner listens "
  2014. "(the local service)."
  2015. msgstr ""
  2016. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:119
  2017. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:209
  2018. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:958
  2019. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:998
  2020. msgid "Disable"
  2021. msgstr ""
  2022. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:665
  2023. msgid ""
  2024. "Disable <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</abbr> for "
  2025. "this interface."
  2026. msgstr ""
  2027. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:174
  2028. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:378
  2029. msgid "Disable DNS lookups"
  2030. msgstr ""
  2031. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:93
  2032. msgid "Disable Encryption"
  2033. msgstr ""
  2034. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1246
  2035. msgid "Disable Inactivity Polling"
  2036. msgstr ""
  2037. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:571
  2038. msgid "Disable this interface"
  2039. msgstr ""
  2040. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:956
  2041. msgid "Disable this network"
  2042. msgstr ""
  2043. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1562
  2044. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1015
  2045. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1548
  2046. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1741
  2047. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1889
  2048. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1923
  2049. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:13
  2050. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:65
  2051. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:121
  2052. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:108
  2053. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:117
  2054. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:114
  2055. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:52
  2056. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:97
  2057. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:83
  2058. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:57
  2059. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:70
  2060. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:500
  2061. msgid "Disabled"
  2062. msgstr ""
  2063. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:529
  2064. msgctxt "Label indicating that WireGuard peer is disabled"
  2065. msgid "Disabled"
  2066. msgstr ""
  2067. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1260
  2068. msgid "Disassociate On Low Acknowledgement"
  2069. msgstr ""
  2070. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:509
  2071. msgid ""
  2072. "Discard also upstream responses containing {rfc_4193_link}, Link-Local and "
  2073. "private IPv4-Mapped {rfc_4291_link} IPv6 Addresses."
  2074. msgstr ""
  2075. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:508
  2076. msgid "Discard upstream responses containing {rfc_1918_link} addresses."
  2077. msgstr ""
  2078. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:184
  2079. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:783
  2080. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:336
  2081. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:351
  2082. msgid "Disconnect"
  2083. msgstr ""
  2084. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:64
  2085. msgid "Disconnection attempt failed"
  2086. msgstr ""
  2087. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:13
  2088. msgid "Disconnection attempt failed."
  2089. msgstr ""
  2090. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:59
  2091. msgid "Disk space"
  2092. msgstr ""
  2093. #: modules/luci-base/htdocs/luci-static/resources/form.js:613
  2094. #: modules/luci-base/htdocs/luci-static/resources/form.js:2980
  2095. #: modules/luci-base/htdocs/luci-static/resources/form.js:3213
  2096. #: modules/luci-base/htdocs/luci-static/resources/form.js:3227
  2097. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3750
  2098. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4602
  2099. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1996
  2100. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:360
  2101. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:45
  2102. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:66
  2103. msgid "Dismiss"
  2104. msgstr ""
  2105. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1020
  2106. msgid "Distance Optimization"
  2107. msgstr ""
  2108. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1020
  2109. msgid ""
  2110. "Distance to farthest network member in meters. Set only for distances above "
  2111. "one kilometer; otherwise it is harmful."
  2112. msgstr ""
  2113. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:75
  2114. msgid "Distributed ARP Table"
  2115. msgstr ""
  2116. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1283
  2117. msgid ""
  2118. "Dnsmasq instance to which this DHCP host section is bound. If unspecified, "
  2119. "the section is valid for all dnsmasq instances."
  2120. msgstr ""
  2121. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:919
  2122. msgid ""
  2123. "Dnsmasq instance to which this boot section is bound. If unspecified, the "
  2124. "section is valid for all dnsmasq instances."
  2125. msgstr ""
  2126. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:347
  2127. msgid ""
  2128. "Dnsmasq is a lightweight <abbr title=\"Dynamic Host Configuration "
  2129. "Protocol\">DHCP</abbr> server and <abbr title=\"Domain Name System\">DNS</"
  2130. "abbr> forwarder."
  2131. msgstr ""
  2132. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:731
  2133. msgid "Do not cache negative replies, e.g. for non-existent domains."
  2134. msgstr ""
  2135. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:86
  2136. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:91
  2137. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:88
  2138. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:93
  2139. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:70
  2140. msgid "Do not create host route to peer (optional)."
  2141. msgstr ""
  2142. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:551
  2143. msgid "Do not listen on the specified interfaces."
  2144. msgstr ""
  2145. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:914
  2146. msgid "Do not offer DHCPv6 service on this interface."
  2147. msgstr ""
  2148. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:980
  2149. msgid ""
  2150. "Do not proxy any <abbr title=\"Neighbour Discovery Protocol\">NDP</abbr> "
  2151. "packets."
  2152. msgstr ""
  2153. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:32
  2154. msgid "Do not send a Release when restarting"
  2155. msgstr ""
  2156. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:25
  2157. msgid "Do not send a hostname"
  2158. msgstr ""
  2159. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:789
  2160. msgid ""
  2161. "Do not send any <abbr title=\"Router Advertisement, ICMPv6 Type 134\">RA</"
  2162. "abbr> messages on this interface."
  2163. msgstr ""
  2164. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2829
  2165. msgid "Do you really want to delete \"%s\" ?"
  2166. msgstr ""
  2167. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:206
  2168. msgid "Do you really want to delete the following SSH key?"
  2169. msgstr ""
  2170. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:94
  2171. msgid "Do you really want to erase all settings?"
  2172. msgstr ""
  2173. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2827
  2174. msgid "Do you really want to recursively delete the directory \"%s\" ?"
  2175. msgstr ""
  2176. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:97
  2177. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:991
  2178. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1017
  2179. msgid "Domain"
  2180. msgstr ""
  2181. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:414
  2182. msgid "Domain required"
  2183. msgstr ""
  2184. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:522
  2185. msgid "Domain whitelist"
  2186. msgstr ""
  2187. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:83
  2188. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:88
  2189. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:67
  2190. msgid "Don't Fragment"
  2191. msgstr ""
  2192. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:152
  2193. msgid "Down"
  2194. msgstr ""
  2195. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:408
  2196. msgid "Down Delay"
  2197. msgstr ""
  2198. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2941
  2199. msgid "Download"
  2200. msgstr ""
  2201. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:396
  2202. msgid "Download backup"
  2203. msgstr ""
  2204. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3017
  2205. msgid "Download failed: %s"
  2206. msgstr ""
  2207. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:434
  2208. msgid "Download mtdblock"
  2209. msgstr ""
  2210. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1625
  2211. msgid "Downstream SNR offset"
  2212. msgstr ""
  2213. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:422
  2214. msgid ""
  2215. "Drag or paste a valid <em>*.conf</em> file below to configure the local "
  2216. "WireGuard interface."
  2217. msgstr ""
  2218. #: modules/luci-base/htdocs/luci-static/resources/form.js:2656
  2219. msgid "Drag to reorder"
  2220. msgstr ""
  2221. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:347
  2222. msgid "Drop Duplicate Frames"
  2223. msgstr ""
  2224. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:710
  2225. msgid ""
  2226. "Drop all gratuitous ARP frames, for example if there’s a known good ARP "
  2227. "proxy on the network and such frames need not be used or in the case of "
  2228. "802.11, must not be used to prevent attacks."
  2229. msgstr ""
  2230. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:732
  2231. msgid ""
  2232. "Drop all unsolicited neighbor advertisements, for example if there’s a known "
  2233. "good NA proxy on the network and such frames need not be used or in the case "
  2234. "of 802.11, must not be used to prevent attacks."
  2235. msgstr ""
  2236. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:710
  2237. msgid "Drop gratuitous ARP"
  2238. msgstr ""
  2239. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:786
  2240. msgid "Drop layer 2 multicast frames containing IPv4 unicast packets."
  2241. msgstr ""
  2242. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:790
  2243. msgid "Drop layer 2 multicast frames containing IPv6 unicast packets."
  2244. msgstr ""
  2245. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:786
  2246. msgid "Drop nested IPv4 unicast"
  2247. msgstr ""
  2248. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:790
  2249. msgid "Drop nested IPv6 unicast"
  2250. msgstr ""
  2251. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:96
  2252. msgctxt "nft drop action"
  2253. msgid "Drop packet"
  2254. msgstr ""
  2255. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:546
  2256. msgctxt "Chain policy: drop"
  2257. msgid "Drop unmatched packets"
  2258. msgstr ""
  2259. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:732
  2260. msgid "Drop unsolicited NA"
  2261. msgstr ""
  2262. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:12
  2263. msgid "Dropbear Instance"
  2264. msgstr ""
  2265. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:10
  2266. msgid ""
  2267. "Dropbear offers <abbr title=\"Secure Shell\">SSH</abbr> network shell access "
  2268. "and an integrated <abbr title=\"Secure Copy\">SCP</abbr> server"
  2269. msgstr ""
  2270. #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:14
  2271. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:11
  2272. msgid "Dual-Stack Lite (RFC6333)"
  2273. msgstr ""
  2274. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:437
  2275. msgid "Dump cache on SIGUSR1, include requesting IP."
  2276. msgstr ""
  2277. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:682
  2278. msgid "Dynamic <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</abbr>"
  2279. msgstr ""
  2280. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1581
  2281. msgid "Dynamic Authorization Extension client."
  2282. msgstr ""
  2283. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1586
  2284. msgid "Dynamic Authorization Extension port."
  2285. msgstr ""
  2286. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1592
  2287. msgid "Dynamic Authorization Extension secret."
  2288. msgstr ""
  2289. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:60
  2290. msgid "Dynamic tunnel"
  2291. msgstr ""
  2292. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:682
  2293. msgid ""
  2294. "Dynamically allocate DHCP addresses for clients. If disabled, only clients "
  2295. "having static leases will be served."
  2296. msgstr ""
  2297. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1574
  2298. msgid "E.g. <code>br-vlan</code> or <code>brvlan</code>."
  2299. msgstr ""
  2300. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1564
  2301. msgid "E.g. eth0, eth1"
  2302. msgstr ""
  2303. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:67
  2304. msgid "EA-bits length"
  2305. msgstr ""
  2306. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1773
  2307. msgid "EAP-Method"
  2308. msgstr ""
  2309. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1555
  2310. msgid "Each STA is assigned its own AP_VLAN interface."
  2311. msgstr ""
  2312. #: modules/luci-base/htdocs/luci-static/resources/form.js:2676
  2313. #: modules/luci-base/htdocs/luci-static/resources/form.js:2679
  2314. #: modules/luci-base/htdocs/luci-static/resources/form.js:3392
  2315. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:154
  2316. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:160
  2317. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:485
  2318. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:963
  2319. msgid "Edit"
  2320. msgstr ""
  2321. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1132
  2322. msgid "Edit IP set"
  2323. msgstr ""
  2324. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:878
  2325. msgid "Edit PXE/TFTP/BOOTP Host"
  2326. msgstr ""
  2327. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:190
  2328. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:190
  2329. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:212
  2330. msgid "Edit peer"
  2331. msgstr ""
  2332. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1173
  2333. msgid "Edit static lease"
  2334. msgstr ""
  2335. #: modules/luci-compat/luasrc/view/cbi/error.htm:13
  2336. msgid ""
  2337. "Edit the raw configuration data above to fix any error and hit \"Save\" to "
  2338. "reload the page."
  2339. msgstr ""
  2340. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:961
  2341. msgid "Edit this network"
  2342. msgstr ""
  2343. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:912
  2344. msgid "Edit wireless network"
  2345. msgstr ""
  2346. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:65
  2347. msgctxt "nft rt mtu"
  2348. msgid "Effective route MTU"
  2349. msgstr ""
  2350. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:516
  2351. msgid "Egress QoS mapping"
  2352. msgstr ""
  2353. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:12
  2354. msgctxt "nft meta oif"
  2355. msgid "Egress device id"
  2356. msgstr ""
  2357. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:10
  2358. msgctxt "nft meta oifname"
  2359. msgid "Egress device name"
  2360. msgstr ""
  2361. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:193
  2362. msgid "Emergency"
  2363. msgstr ""
  2364. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:119
  2365. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:119
  2366. msgid "Emits netlink IP ADDR miss notifications"
  2367. msgstr ""
  2368. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:113
  2369. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:113
  2370. msgid "Emits netlink LLADDR miss notifications"
  2371. msgstr ""
  2372. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:958
  2373. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:998
  2374. msgid "Enable"
  2375. msgstr ""
  2376. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:500
  2377. msgid "Enable / Disable peer. Restart wireguard interface to apply changes."
  2378. msgstr ""
  2379. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:592
  2380. msgid ""
  2381. "Enable <abbr title=\"Internet Group Management Protocol\">IGMP</abbr> "
  2382. "snooping"
  2383. msgstr ""
  2384. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:17
  2385. msgid "Enable <abbr title=\"Secure Shell\">SSH</abbr> service instance"
  2386. msgstr ""
  2387. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:572
  2388. msgid "Enable <abbr title=\"Spanning Tree Protocol\">STP</abbr>"
  2389. msgstr ""
  2390. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:809
  2391. msgid "Enable <abbr title=\"Stateless Address Auto Config\">SLAAC</abbr>"
  2392. msgstr ""
  2393. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:174
  2394. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:372
  2395. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:378
  2396. msgid "Enable DNS lookups"
  2397. msgstr ""
  2398. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:153
  2399. msgid "Enable Debugmode"
  2400. msgstr ""
  2401. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:299
  2402. msgid "Enable Dynamic Shuffling Of Flows"
  2403. msgstr ""
  2404. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:60
  2405. msgid "Enable HE.net dynamic endpoint update"
  2406. msgstr ""
  2407. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:725
  2408. msgid "Enable IPv6"
  2409. msgstr ""
  2410. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:101
  2411. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:108
  2412. msgid "Enable IPv6 negotiation"
  2413. msgstr ""
  2414. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:49
  2415. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:94
  2416. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:80
  2417. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:54
  2418. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:67
  2419. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:93
  2420. msgid "Enable IPv6 negotiation on the PPP link"
  2421. msgstr ""
  2422. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:728
  2423. msgid "Enable IPv6 segment routing"
  2424. msgstr ""
  2425. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:17
  2426. msgid "Enable Instance"
  2427. msgstr ""
  2428. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:194
  2429. msgid "Enable Jumbo Frame passthrough"
  2430. msgstr ""
  2431. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:763
  2432. msgid "Enable MAC address learning"
  2433. msgstr ""
  2434. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:257
  2435. msgid "Enable NTP client"
  2436. msgstr ""
  2437. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1478
  2438. msgid "Enable Private PSK (PPSK)"
  2439. msgstr ""
  2440. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:96
  2441. msgid "Enable Single DES"
  2442. msgstr ""
  2443. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:854
  2444. msgid "Enable TFTP server"
  2445. msgstr ""
  2446. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:795
  2447. msgid "Enable VLAN filtering"
  2448. msgstr ""
  2449. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:184
  2450. msgid "Enable VLAN functionality"
  2451. msgstr ""
  2452. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1946
  2453. msgid "Enable WPS pushbutton, requires WPA(2)-PSK/WPA3-SAE"
  2454. msgstr ""
  2455. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:319
  2456. msgid "Enable Yggdrasil Jumper"
  2457. msgstr ""
  2458. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/uhttpd.js:14
  2459. msgid ""
  2460. "Enable automatic redirection of <abbr title=\"Hypertext Transfer "
  2461. "Protocol\">HTTP</abbr> requests to <abbr title=\"Hypertext Transfer Protocol "
  2462. "Secure\">HTTPS</abbr> port."
  2463. msgstr ""
  2464. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1053
  2465. msgid ""
  2466. "Enable downstream delegation of IPv6 prefixes available on this interface"
  2467. msgstr ""
  2468. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1942
  2469. msgid "Enable key reinstallation (KRACK) countermeasures"
  2470. msgstr ""
  2471. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:189
  2472. msgid "Enable learning and aging"
  2473. msgstr ""
  2474. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:200
  2475. msgid "Enable mirroring of incoming packets"
  2476. msgstr ""
  2477. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:201
  2478. msgid "Enable mirroring of outgoing packets"
  2479. msgstr ""
  2480. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:782
  2481. msgid "Enable multicast fast leave"
  2482. msgstr ""
  2483. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:601
  2484. msgid "Enable multicast querier"
  2485. msgstr ""
  2486. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:746
  2487. msgid "Enable multicast support"
  2488. msgstr ""
  2489. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:250
  2490. msgid ""
  2491. "Enable node info privacy so that only items specified in \"Node info\" are "
  2492. "sent back. Otherwise defaults including the platform, architecture and "
  2493. "Yggdrasil version are included."
  2494. msgstr ""
  2495. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1561
  2496. msgid "Enable packet steering across CPUs. May help or hinder network speed."
  2497. msgstr ""
  2498. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:676
  2499. msgid "Enable promiscuous mode"
  2500. msgstr ""
  2501. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:169
  2502. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:169
  2503. msgid "Enable rx checksum"
  2504. msgstr ""
  2505. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:89
  2506. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:94
  2507. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:91
  2508. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:96
  2509. msgid "Enable support for multicast traffic (optional)."
  2510. msgstr ""
  2511. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:83
  2512. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:88
  2513. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:67
  2514. msgid "Enable the DF (Don't Fragment) flag of the encapsulating packets."
  2515. msgstr ""
  2516. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:855
  2517. msgid "Enable the built-in single-instance TFTP server."
  2518. msgstr ""
  2519. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:956
  2520. msgid "Enable this network"
  2521. msgstr ""
  2522. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:33
  2523. msgid "Enable to minimise the chance of prefix change after a restart"
  2524. msgstr ""
  2525. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:173
  2526. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:173
  2527. msgid "Enable tx checksum"
  2528. msgstr ""
  2529. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:766
  2530. msgid "Enable unicast flooding"
  2531. msgstr ""
  2532. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1563
  2533. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1742
  2534. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1924
  2535. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:243
  2536. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:351
  2537. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:65
  2538. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:109
  2539. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:118
  2540. msgid "Enabled"
  2541. msgstr ""
  2542. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1564
  2543. msgid "Enabled (all CPUs)"
  2544. msgstr ""
  2545. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1925
  2546. msgid "Enabled (workaround mode)"
  2547. msgstr ""
  2548. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:592
  2549. msgid "Enables IGMP snooping on this bridge"
  2550. msgstr ""
  2551. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1662
  2552. msgid ""
  2553. "Enables fast roaming among access points that belong to the same Mobility "
  2554. "Domain"
  2555. msgstr ""
  2556. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:100
  2557. msgid ""
  2558. "Enables more efficient, group aware multicast forwarding infrastructure in "
  2559. "batman-adv."
  2560. msgstr ""
  2561. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:572
  2562. msgid "Enables the Spanning Tree Protocol on this bridge"
  2563. msgstr ""
  2564. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:61
  2565. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/ipip6.js:62
  2566. msgid "Encapsulation limit"
  2567. msgstr ""
  2568. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1615
  2569. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1673
  2570. msgid "Encapsulation mode"
  2571. msgstr ""
  2572. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:159
  2573. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:183
  2574. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1265
  2575. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1974
  2576. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:150
  2577. msgid "Encryption"
  2578. msgstr ""
  2579. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:55
  2580. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:75
  2581. msgid "Endpoint"
  2582. msgstr ""
  2583. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:647
  2584. msgid "Endpoint Host"
  2585. msgstr ""
  2586. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:663
  2587. msgid "Endpoint Port"
  2588. msgstr ""
  2589. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:312
  2590. msgid "Endpoint setting is invalid"
  2591. msgstr ""
  2592. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:751
  2593. msgid "Enforce IGMPv1"
  2594. msgstr ""
  2595. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:752
  2596. msgid "Enforce IGMPv2"
  2597. msgstr ""
  2598. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:753
  2599. msgid "Enforce IGMPv3"
  2600. msgstr ""
  2601. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:758
  2602. msgid "Enforce MLD version 1"
  2603. msgstr ""
  2604. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:759
  2605. msgid "Enforce MLD version 2"
  2606. msgstr ""
  2607. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:84
  2608. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:84
  2609. msgid "Ensure MTU does not exceed that of parent interface"
  2610. msgstr ""
  2611. #: modules/luci-compat/luasrc/view/cbi/dropdown.htm:16
  2612. msgid "Enter custom value"
  2613. msgstr ""
  2614. #: modules/luci-compat/luasrc/view/cbi/dropdown.htm:16
  2615. msgid "Enter custom values"
  2616. msgstr ""
  2617. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:97
  2618. msgid "Erasing..."
  2619. msgstr ""
  2620. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:93
  2621. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:190
  2622. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:156
  2623. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:343
  2624. msgid "Error"
  2625. msgstr ""
  2626. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:156
  2627. msgid "Error getting PublicKey"
  2628. msgstr ""
  2629. #: modules/luci-base/htdocs/luci-static/resources/network.js:3042
  2630. #: modules/luci-compat/luasrc/model/network.lua:1433
  2631. msgid "Ethernet Adapter"
  2632. msgstr ""
  2633. #: modules/luci-base/htdocs/luci-static/resources/network.js:3033
  2634. #: modules/luci-compat/luasrc/model/network.lua:1423
  2635. msgid "Ethernet Switch"
  2636. msgstr ""
  2637. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:277
  2638. msgid "Every 30 seconds (slow, 0)"
  2639. msgstr ""
  2640. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:278
  2641. msgid "Every second (fast, 1)"
  2642. msgstr ""
  2643. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:550
  2644. msgid "Exclude interfaces"
  2645. msgstr ""
  2646. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:160
  2647. msgid ""
  2648. "Execution of various network commands to check the connection and name "
  2649. "resolution to other systems."
  2650. msgstr ""
  2651. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:135
  2652. msgid "Execution order of this IP rule: lower numbers go first"
  2653. msgstr ""
  2654. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:516
  2655. msgid ""
  2656. "Exempt {loopback_slash_8_v4} and {localhost_v6} from rebinding checks, e.g. "
  2657. "for <abbr title=\"Real-time Block List\">RBL</abbr> services."
  2658. msgstr ""
  2659. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:410
  2660. msgid "Existing device"
  2661. msgstr ""
  2662. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:432
  2663. msgid "Expand hosts"
  2664. msgstr ""
  2665. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:114
  2666. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:114
  2667. msgid "Expect netlink reply to add MAC address into VXLAN FDB"
  2668. msgstr ""
  2669. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:120
  2670. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:120
  2671. msgid "Expect netlink reply to add destination IP address into Neighbour table"
  2672. msgstr ""
  2673. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:605
  2674. msgid "Expected port number."
  2675. msgstr ""
  2676. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1070
  2677. msgid "Expecting a hexadecimal assignment hint"
  2678. msgstr ""
  2679. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:19
  2680. msgid "Expecting a valid IPv4 address"
  2681. msgstr ""
  2682. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:19
  2683. msgid "Expecting a valid IPv6 address"
  2684. msgstr ""
  2685. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:235
  2686. msgid "Expecting a valid MAC address, optionally including wildcards"
  2687. msgstr ""
  2688. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:29
  2689. msgid "Expecting two priority values separated by a colon"
  2690. msgstr ""
  2691. #: modules/luci-base/htdocs/luci-static/resources/form.js:2271
  2692. #: modules/luci-base/htdocs/luci-static/resources/validation.js:77
  2693. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:142
  2694. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:148
  2695. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:176
  2696. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:192
  2697. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:196
  2698. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:200
  2699. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:203
  2700. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:207
  2701. msgid "Expecting: %s"
  2702. msgstr ""
  2703. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:53
  2704. msgid "Expecting: non-empty value"
  2705. msgstr ""
  2706. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:41
  2707. msgid "Expires"
  2708. msgstr ""
  2709. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:678
  2710. msgid ""
  2711. "Expiry time of leased addresses, minimum is 2 minutes (<code>2m</code>)."
  2712. msgstr ""
  2713. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:842
  2714. msgid ""
  2715. "Extend short TTL values to the seconds value given when caching them. Use "
  2716. "with caution."
  2717. msgstr ""
  2718. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:19
  2719. msgid "External"
  2720. msgstr ""
  2721. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1713
  2722. msgid "External R0 Key Holder List"
  2723. msgstr ""
  2724. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1717
  2725. msgid "External R1 Key Holder List"
  2726. msgstr ""
  2727. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:167
  2728. msgid "External system log server"
  2729. msgstr ""
  2730. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:172
  2731. msgid "External system log server port"
  2732. msgstr ""
  2733. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:177
  2734. msgid "External system log server protocol"
  2735. msgstr ""
  2736. #: protocols/luci-proto-external/htdocs/luci-static/resources/protocol/external.js:7
  2737. msgid "Externally managed interface"
  2738. msgstr ""
  2739. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:441
  2740. msgid "Extra DHCP logging"
  2741. msgstr ""
  2742. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:79
  2743. msgid "Extra SSH command options"
  2744. msgstr ""
  2745. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:375
  2746. msgid "Extra config"
  2747. msgstr ""
  2748. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:72
  2749. msgid "Extra pppd options"
  2750. msgstr ""
  2751. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:70
  2752. msgid "Extra sstpc options"
  2753. msgstr ""
  2754. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:98
  2755. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:98
  2756. msgid "FDB"
  2757. msgstr ""
  2758. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:77
  2759. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:77
  2760. msgid "FDB entry lifetime"
  2761. msgstr ""
  2762. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1143
  2763. msgid "FQDN"
  2764. msgstr ""
  2765. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1688
  2766. msgid "FT over DS"
  2767. msgstr ""
  2768. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1687
  2769. msgid "FT over the Air"
  2770. msgstr ""
  2771. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1685
  2772. msgid "FT protocol"
  2773. msgstr ""
  2774. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:91
  2775. msgid "Failed Reason"
  2776. msgstr ""
  2777. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:87
  2778. msgid "Failed to change the system password."
  2779. msgstr ""
  2780. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:21
  2781. msgid "Failed to configure modem"
  2782. msgstr ""
  2783. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4590
  2784. msgid "Failed to confirm apply within %ds, waiting for rollback…"
  2785. msgstr ""
  2786. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:22
  2787. msgid "Failed to connect"
  2788. msgstr ""
  2789. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:23
  2790. msgid "Failed to disconnect"
  2791. msgstr ""
  2792. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:36
  2793. msgid "Failed to execute \"/etc/init.d/%s %s\" action: %s"
  2794. msgstr ""
  2795. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:25
  2796. msgid "Failed to get modem information"
  2797. msgstr ""
  2798. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:26
  2799. msgid "Failed to initialize modem"
  2800. msgstr ""
  2801. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:30
  2802. msgid "Failed to set operating mode"
  2803. msgstr ""
  2804. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2747
  2805. msgid "File"
  2806. msgstr ""
  2807. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:735
  2808. msgid ""
  2809. "File listing upstream resolvers, optionally domain-specific, e.g. "
  2810. "{servers_file_entry01}, {servers_file_entry02}."
  2811. msgstr ""
  2812. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2684
  2813. msgid "File not accessible"
  2814. msgstr ""
  2815. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:631
  2816. msgid "File to store DHCP lease information."
  2817. msgstr ""
  2818. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:639
  2819. msgid "File with upstream resolvers."
  2820. msgstr ""
  2821. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2885
  2822. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:882
  2823. msgid "Filename"
  2824. msgstr ""
  2825. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:867
  2826. msgid "Filename of the boot image advertised to clients."
  2827. msgstr ""
  2828. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:191
  2829. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:315
  2830. msgid "Filesystem"
  2831. msgstr ""
  2832. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:392
  2833. msgid "Filter"
  2834. msgstr ""
  2835. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:696
  2836. msgid "Filter IPv4 A records"
  2837. msgstr ""
  2838. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:690
  2839. msgid "Filter IPv6 AAAA records"
  2840. msgstr ""
  2841. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:685
  2842. msgid "Filter SRV/SOA service discovery"
  2843. msgstr ""
  2844. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:701
  2845. msgid "Filter arbitrary RR"
  2846. msgstr ""
  2847. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:678
  2848. msgid "Filter private"
  2849. msgstr ""
  2850. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:394
  2851. msgid "Filtering for all slaves, no validation"
  2852. msgstr ""
  2853. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:395
  2854. msgid "Filtering for all slaves, validation only for active slave"
  2855. msgstr ""
  2856. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:396
  2857. msgid "Filtering for all slaves, validation only for backup slaves"
  2858. msgstr ""
  2859. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:686
  2860. msgid ""
  2861. "Filters SRV/SOA service discovery, to avoid triggering dial-on-demand links."
  2862. msgstr ""
  2863. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:65
  2864. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:24
  2865. msgid "Finalizing failed"
  2866. msgstr ""
  2867. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:150
  2868. msgid ""
  2869. "Find all currently attached filesystems and swap and replace configuration "
  2870. "with defaults based on what was detected"
  2871. msgstr ""
  2872. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:939
  2873. msgid "Find and join network"
  2874. msgstr ""
  2875. #: modules/luci-compat/luasrc/view/cbi/delegator.htm:9
  2876. msgid "Finish"
  2877. msgstr ""
  2878. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:27
  2879. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:43
  2880. msgid "Firewall"
  2881. msgstr ""
  2882. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:187
  2883. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:39
  2884. msgid "Firewall Mark"
  2885. msgstr ""
  2886. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:472
  2887. msgid "Firewall Settings"
  2888. msgstr ""
  2889. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:330
  2890. msgid "Firewall Status"
  2891. msgstr ""
  2892. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:184
  2893. msgid "Firewall mark"
  2894. msgstr ""
  2895. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1632
  2896. msgid "Firmware File"
  2897. msgstr ""
  2898. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:59
  2899. msgid "Firmware Version"
  2900. msgstr ""
  2901. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:772
  2902. msgid "First answer wins."
  2903. msgstr ""
  2904. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:791
  2905. msgid "Fixed source port for outbound DNS queries."
  2906. msgstr ""
  2907. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:314
  2908. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:451
  2909. msgid "Flash image..."
  2910. msgstr ""
  2911. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:310
  2912. msgid "Flash image?"
  2913. msgstr ""
  2914. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:441
  2915. msgid "Flash new firmware image"
  2916. msgstr ""
  2917. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:386
  2918. msgid "Flash operations"
  2919. msgstr ""
  2920. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:319
  2921. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:321
  2922. msgid "Flashing…"
  2923. msgstr ""
  2924. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1004
  2925. msgid "Follow IPv4 Lifetime"
  2926. msgstr ""
  2927. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:211
  2928. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:211
  2929. msgid "For multicast, an outgoing interface (%s) needs to be specified"
  2930. msgstr ""
  2931. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:913
  2932. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:685
  2933. msgid "Force"
  2934. msgstr ""
  2935. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1032
  2936. msgid "Force 40MHz mode"
  2937. msgstr ""
  2938. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1307
  2939. msgid "Force CCMP (AES)"
  2940. msgstr ""
  2941. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1308
  2942. msgid "Force CCMP-256 (AES)"
  2943. msgstr ""
  2944. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:685
  2945. msgid "Force DHCP on this network even if another server is detected."
  2946. msgstr ""
  2947. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1309
  2948. msgid "Force GCMP (AES)"
  2949. msgstr ""
  2950. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1310
  2951. msgid "Force GCMP-256 (AES)"
  2952. msgstr ""
  2953. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:749
  2954. msgid "Force IGMP version"
  2955. msgstr ""
  2956. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:756
  2957. msgid "Force MLD version"
  2958. msgstr ""
  2959. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1311
  2960. msgid "Force TKIP"
  2961. msgstr ""
  2962. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1312
  2963. msgid "Force TKIP and CCMP (AES)"
  2964. msgstr ""
  2965. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1294
  2966. msgid "Force broadcast DHCP response."
  2967. msgstr ""
  2968. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1319
  2969. msgid "Force link"
  2970. msgstr ""
  2971. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:283
  2972. msgid "Force upgrade"
  2973. msgstr ""
  2974. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:90
  2975. msgid "Force use of NAT-T"
  2976. msgstr ""
  2977. #: modules/luci-base/ucode/template/csrftoken.ut:8
  2978. msgid "Form token mismatch"
  2979. msgstr ""
  2980. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1527
  2981. msgid "Format:"
  2982. msgstr ""
  2983. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:982
  2984. msgid ""
  2985. "Forward <abbr title=\"Neighbour Discovery Protocol\">NDP</abbr> <abbr "
  2986. "title=\"Neighbour Solicitation, Type 135\">NS</abbr> and <abbr "
  2987. "title=\"Neighbour Advertisement, Type 136\">NA</abbr> messages between the "
  2988. "designated master interface and downstream interfaces."
  2989. msgstr ""
  2990. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:793
  2991. msgid ""
  2992. "Forward <abbr title=\"Router Advertisement, ICMPv6 Type 134\">RA</abbr> "
  2993. "messages received on the designated master interface to downstream "
  2994. "interfaces."
  2995. msgstr ""
  2996. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:164
  2997. msgid "Forward DHCP traffic"
  2998. msgstr ""
  2999. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:918
  3000. msgid ""
  3001. "Forward DHCPv6 messages between the designated master interface and "
  3002. "downstream interfaces."
  3003. msgstr ""
  3004. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:161
  3005. msgid "Forward broadcast traffic"
  3006. msgstr ""
  3007. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:581
  3008. msgid "Forward delay"
  3009. msgstr ""
  3010. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1060
  3011. msgid "Forward mesh peer traffic"
  3012. msgstr ""
  3013. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:778
  3014. msgid "Forward multicast packets as unicast packets on this device."
  3015. msgstr ""
  3016. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:470
  3017. msgid "Forward specific domain queries to specific upstream servers."
  3018. msgstr ""
  3019. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1297
  3020. msgid "Forward/reverse DNS"
  3021. msgstr ""
  3022. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:98
  3023. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:98
  3024. msgid "Forwarding DataBase"
  3025. msgstr ""
  3026. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1680
  3027. msgid "Forwarding mode"
  3028. msgstr ""
  3029. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:393
  3030. msgid "Forwards"
  3031. msgstr ""
  3032. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:80
  3033. msgid "Fragmentation"
  3034. msgstr ""
  3035. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1024
  3036. msgid "Fragmentation Threshold"
  3037. msgstr ""
  3038. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:62
  3039. msgctxt "nft nat flag fully-random"
  3040. msgid "Full port randomization"
  3041. msgstr ""
  3042. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:178
  3043. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:178
  3044. msgid "Further information about VXLAN interfaces and peers %s."
  3045. msgstr ""
  3046. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:200
  3047. msgid ""
  3048. "Further information about WireGuard interfaces and peers at <a href='http://"
  3049. "wireguard.com'>wireguard.com</a>."
  3050. msgstr ""
  3051. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:123
  3052. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:123
  3053. msgid "GBP"
  3054. msgstr ""
  3055. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:128
  3056. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:184
  3057. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:170
  3058. msgid "GHz"
  3059. msgstr ""
  3060. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:92
  3061. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:82
  3062. msgid "GPRS only"
  3063. msgstr ""
  3064. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:10
  3065. msgid "GRE tunnel over IPv4"
  3066. msgstr ""
  3067. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:10
  3068. msgid "GRE tunnel over IPv6"
  3069. msgstr ""
  3070. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:10
  3071. msgid "GRETAP tunnel over IPv4"
  3072. msgstr ""
  3073. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:10
  3074. msgid "GRETAP tunnel over IPv6"
  3075. msgstr ""
  3076. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:79
  3077. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:39
  3078. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:198
  3079. msgid "Gateway"
  3080. msgstr ""
  3081. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:85
  3082. msgid "Gateway Mode"
  3083. msgstr ""
  3084. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:38
  3085. msgid "Gateway Ports"
  3086. msgstr ""
  3087. #: modules/luci-base/htdocs/luci-static/resources/network.js:11
  3088. #: modules/luci-compat/luasrc/model/network.lua:29
  3089. msgid "Gateway address is invalid"
  3090. msgstr ""
  3091. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:151
  3092. msgid "Gateway metric"
  3093. msgstr ""
  3094. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:387
  3095. msgid "General"
  3096. msgstr ""
  3097. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:467
  3098. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:40
  3099. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:132
  3100. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:240
  3101. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:122
  3102. msgid "General Settings"
  3103. msgstr ""
  3104. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:631
  3105. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1667
  3106. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:984
  3107. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1046
  3108. msgid "General Setup"
  3109. msgstr ""
  3110. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:390
  3111. msgid "General device options"
  3112. msgstr ""
  3113. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:150
  3114. msgid "Generate Config"
  3115. msgstr ""
  3116. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1691
  3117. msgid "Generate PMK locally"
  3118. msgstr ""
  3119. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:398
  3120. msgid "Generate archive"
  3121. msgstr ""
  3122. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:836
  3123. msgid "Generate configuration"
  3124. msgstr ""
  3125. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:876
  3126. msgid "Generate configuration…"
  3127. msgstr ""
  3128. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:95
  3129. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:62
  3130. msgid "Generate new key pair"
  3131. msgstr ""
  3132. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:606
  3133. msgid "Generate preshared key"
  3134. msgstr ""
  3135. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:676
  3136. msgid "Generates a configuration suitable for import on a WireGuard peer"
  3137. msgstr ""
  3138. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:810
  3139. msgid "Generating QR code…"
  3140. msgstr ""
  3141. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:79
  3142. msgid "Given password confirmation did not match, password not changed!"
  3143. msgstr ""
  3144. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:146
  3145. msgid "Global Settings"
  3146. msgstr ""
  3147. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1551
  3148. msgid "Global network options"
  3149. msgstr ""
  3150. #: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:71
  3151. #: themes/luci-theme-material/ucode/template/themes/material/header.ut:91
  3152. #: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:67
  3153. #: themes/luci-theme-openwrt/ucode/template/themes/openwrt.org/header.ut:84
  3154. msgid "Go to firmware upgrade..."
  3155. msgstr ""
  3156. #: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:61
  3157. #: themes/luci-theme-material/ucode/template/themes/material/header.ut:81
  3158. #: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:57
  3159. #: themes/luci-theme-openwrt/ucode/template/themes/openwrt.org/header.ut:74
  3160. msgid "Go to password configuration..."
  3161. msgstr ""
  3162. #: modules/luci-base/htdocs/luci-static/resources/form.js:2598
  3163. #: modules/luci-base/htdocs/luci-static/resources/form.js:3711
  3164. #: modules/luci-compat/luasrc/view/cbi/full_valueheader.htm:4
  3165. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:58
  3166. msgid "Go to relevant configuration page"
  3167. msgstr ""
  3168. #: modules/luci-mod-network/root/usr/share/rpcd/acl.d/luci-mod-network.json:39
  3169. msgid "Grant access to DHCP configuration"
  3170. msgstr ""
  3171. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status-index.json:33
  3172. msgid "Grant access to DHCP status display"
  3173. msgstr ""
  3174. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status-index.json:42
  3175. msgid "Grant access to DSL status display"
  3176. msgstr ""
  3177. #: protocols/luci-proto-openconnect/root/usr/share/rpcd/acl.d/luci-openconnect.json:3
  3178. msgid "Grant access to LuCI OpenConnect procedures"
  3179. msgstr ""
  3180. #: protocols/luci-proto-wireguard/root/usr/share/rpcd/acl.d/luci-wireguard.json:3
  3181. msgid "Grant access to LuCI Wireguard procedures"
  3182. msgstr ""
  3183. #: protocols/luci-proto-yggdrasil/root/usr/share/rpcd/acl.d/luci-proto-yggdrasil.json:3
  3184. msgid "Grant access to LuCI Yggdrasil procedures"
  3185. msgstr ""
  3186. #: protocols/luci-proto-openfortivpn/root/usr/share/rpcd/acl.d/luci-openfortivpn.json:3
  3187. msgid "Grant access to LuCI openfortivpn procedures"
  3188. msgstr ""
  3189. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:22
  3190. msgid "Grant access to SSH configuration"
  3191. msgstr ""
  3192. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status-index.json:23
  3193. msgid "Grant access to Storage and Mount status display"
  3194. msgstr ""
  3195. #: modules/luci-base/root/usr/share/rpcd/acl.d/luci-base.json:12
  3196. msgid "Grant access to basic LuCI procedures"
  3197. msgstr ""
  3198. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:78
  3199. msgid "Grant access to crontab configuration"
  3200. msgstr ""
  3201. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:67
  3202. msgid "Grant access to firewall status"
  3203. msgstr ""
  3204. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:131
  3205. msgid "Grant access to flash operations"
  3206. msgstr ""
  3207. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status-index.json:3
  3208. msgid "Grant access to main status display"
  3209. msgstr ""
  3210. #: protocols/luci-proto-modemmanager/root/usr/share/rpcd/acl.d/luci-proto-modemmanager.json:3
  3211. msgid "Grant access to mmcli"
  3212. msgstr ""
  3213. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:99
  3214. msgid "Grant access to mount configuration"
  3215. msgstr ""
  3216. #: modules/luci-mod-network/root/usr/share/rpcd/acl.d/luci-mod-network.json:3
  3217. msgid "Grant access to network configuration"
  3218. msgstr ""
  3219. #: modules/luci-mod-network/root/usr/share/rpcd/acl.d/luci-mod-network.json:52
  3220. msgid "Grant access to network diagnostic tools"
  3221. msgstr ""
  3222. #: modules/luci-base/root/usr/share/rpcd/acl.d/luci-base.json:36
  3223. msgid "Grant access to network status information"
  3224. msgstr ""
  3225. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status-index.json:51
  3226. msgid "Grant access to port status display"
  3227. msgstr ""
  3228. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:13
  3229. msgid "Grant access to process status"
  3230. msgstr ""
  3231. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:3
  3232. msgid "Grant access to realtime statistics"
  3233. msgstr ""
  3234. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:44
  3235. msgid "Grant access to routing status"
  3236. msgstr ""
  3237. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:56
  3238. msgid "Grant access to startup configuration"
  3239. msgstr ""
  3240. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:3
  3241. msgid "Grant access to system configuration"
  3242. msgstr ""
  3243. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:30
  3244. msgid "Grant access to system logs"
  3245. msgstr ""
  3246. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:45
  3247. msgid "Grant access to uHTTPd configuration"
  3248. msgstr ""
  3249. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:58
  3250. msgid "Grant access to wireless channel status"
  3251. msgstr ""
  3252. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status-index.json:60
  3253. msgid "Grant access to wireless status display"
  3254. msgstr ""
  3255. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:124
  3256. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:124
  3257. msgid "Group Based Policy (VXLAN-GBP) extension"
  3258. msgstr ""
  3259. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:66
  3260. msgid "Group Password"
  3261. msgstr ""
  3262. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:22
  3263. msgid "Guest"
  3264. msgstr ""
  3265. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:81
  3266. msgid "HE.net password"
  3267. msgstr ""
  3268. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:73
  3269. msgid "HE.net username"
  3270. msgstr ""
  3271. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/uhttpd.js:9
  3272. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:64
  3273. msgid "HTTP(S) Access"
  3274. msgstr ""
  3275. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:46
  3276. msgid "Hang Up"
  3277. msgstr ""
  3278. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/heartbeat.js:6
  3279. msgid "Heartbeat interval (kernel: heartbeat)"
  3280. msgstr ""
  3281. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:576
  3282. msgid "Hello interval"
  3283. msgstr ""
  3284. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:114
  3285. msgid ""
  3286. "Here you can configure the basic aspects of your device like its hostname or "
  3287. "the timezone."
  3288. msgstr ""
  3289. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1108
  3290. msgid "Hex Data"
  3291. msgstr ""
  3292. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1059
  3293. msgid "Hexdata is automatically en/decoded on save and load"
  3294. msgstr ""
  3295. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1202
  3296. msgid "Hide <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>"
  3297. msgstr ""
  3298. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:297
  3299. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:336
  3300. msgid "Hide empty chains"
  3301. msgstr ""
  3302. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1017
  3303. msgid "High"
  3304. msgstr ""
  3305. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:707
  3306. msgid "Honor gratuitous ARP"
  3307. msgstr ""
  3308. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:593
  3309. msgctxt "Chain hook description"
  3310. msgid "Hook: <strong>%h</strong> (%h), Priority: <strong>%d</strong>"
  3311. msgstr ""
  3312. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:92
  3313. msgid "Hop Penalty"
  3314. msgstr ""
  3315. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:57
  3316. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2412
  3317. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:134
  3318. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:234
  3319. msgid "Host"
  3320. msgstr ""
  3321. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:171
  3322. msgid "Host expiry timeout"
  3323. msgstr ""
  3324. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:883
  3325. msgid "Host requests this filename from the boot server."
  3326. msgstr ""
  3327. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:88
  3328. msgid "Host-Uniq tag content"
  3329. msgstr ""
  3330. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1246
  3331. msgid ""
  3332. "Host-specific lease time, e.g. <code>5m</code>, <code>3h</code>, <code>7d</"
  3333. "code>."
  3334. msgstr ""
  3335. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:38
  3336. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1036
  3337. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1176
  3338. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:55
  3339. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:87
  3340. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:135
  3341. msgid "Hostname"
  3342. msgstr ""
  3343. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:22
  3344. msgid "Hostname to send when requesting DHCP"
  3345. msgstr ""
  3346. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:934
  3347. msgid "Hostnames"
  3348. msgstr ""
  3349. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1028
  3350. msgid ""
  3351. "Hostnames are used to bind a domain name to an IP address. This setting is "
  3352. "redundant for hostnames already configured with static leases, but it can be "
  3353. "useful to rebind an FQDN."
  3354. msgstr ""
  3355. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/timer.js:19
  3356. msgid "How long (in milliseconds) the LED should be off"
  3357. msgstr ""
  3358. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/timer.js:13
  3359. msgid "How long (in milliseconds) the LED should be on"
  3360. msgstr ""
  3361. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:280
  3362. msgid "Human-readable counters"
  3363. msgstr ""
  3364. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:24
  3365. msgid "Hybrid"
  3366. msgstr ""
  3367. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:49
  3368. msgctxt "nft icmp code"
  3369. msgid "ICMP code"
  3370. msgstr ""
  3371. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:50
  3372. msgctxt "nft icmp type"
  3373. msgid "ICMP type"
  3374. msgstr ""
  3375. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:51
  3376. msgctxt "nft icmpv6 code"
  3377. msgid "ICMPv6 code"
  3378. msgstr ""
  3379. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:52
  3380. msgctxt "nft icmpv6 type"
  3381. msgid "ICMPv6 type"
  3382. msgstr ""
  3383. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:128
  3384. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:128
  3385. msgid "ID used to uniquely identify the VXLAN"
  3386. msgstr ""
  3387. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:213
  3388. msgid "IEEE 802.3ad Dynamic link aggregation (802.3ad, 4)"
  3389. msgstr ""
  3390. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:75
  3391. msgid "IKE DH Group"
  3392. msgstr ""
  3393. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:86
  3394. msgid "IMEI"
  3395. msgstr ""
  3396. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:141
  3397. msgid "IP Address"
  3398. msgstr ""
  3399. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:167
  3400. msgid "IP Addresses"
  3401. msgstr ""
  3402. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:85
  3403. msgid "IP Protocol"
  3404. msgstr ""
  3405. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:398
  3406. msgid "IP Sets"
  3407. msgstr ""
  3408. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:138
  3409. msgid "IP Type"
  3410. msgstr ""
  3411. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1040
  3412. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:188
  3413. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:214
  3414. msgid "IP address"
  3415. msgstr ""
  3416. #: modules/luci-base/htdocs/luci-static/resources/network.js:10
  3417. #: modules/luci-compat/luasrc/model/network.lua:28
  3418. msgid "IP address is invalid"
  3419. msgstr ""
  3420. #: modules/luci-base/htdocs/luci-static/resources/network.js:13
  3421. #: modules/luci-compat/luasrc/model/network.lua:31
  3422. msgid "IP address is missing"
  3423. msgstr ""
  3424. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:210
  3425. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:210
  3426. msgid ""
  3427. "IP address of the remote VXLAN tunnel endpoint where the MAC address (Layer "
  3428. "2 Address) resides or a multicast address for a group of peers."
  3429. msgstr ""
  3430. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:793
  3431. msgid ""
  3432. "IP addresses for the peer to use inside the tunnel. Some clients require "
  3433. "this setting."
  3434. msgstr ""
  3435. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:782
  3436. msgid ""
  3437. "IP addresses that are allowed inside the tunnel. The peer will accept "
  3438. "tunnelled packets with source IP addresses matching this list and route back "
  3439. "packets with matching destination IP."
  3440. msgstr ""
  3441. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:36
  3442. msgctxt "nft ip protocol"
  3443. msgid "IP protocol"
  3444. msgstr ""
  3445. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:14
  3446. msgctxt "nft meta l4proto"
  3447. msgid "IP protocol"
  3448. msgstr ""
  3449. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:501
  3450. msgid "IP sets"
  3451. msgstr ""
  3452. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:776
  3453. msgid "IPs to override with {nxdomain}"
  3454. msgstr ""
  3455. #: protocols/luci-proto-xfrm/htdocs/luci-static/resources/protocol/xfrm.js:9
  3456. msgid "IPsec XFRM"
  3457. msgstr ""
  3458. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1158
  3459. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:87
  3460. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:110
  3461. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:88
  3462. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:96
  3463. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:87
  3464. msgid "IPv4"
  3465. msgstr ""
  3466. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:355
  3467. msgid "IPv4 Firewall"
  3468. msgstr ""
  3469. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:262
  3470. msgid "IPv4 Neighbours"
  3471. msgstr ""
  3472. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:261
  3473. msgid "IPv4 Routing"
  3474. msgstr ""
  3475. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:126
  3476. msgid "IPv4 Rules"
  3477. msgstr ""
  3478. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:33
  3479. msgid "IPv4 Upstream"
  3480. msgstr ""
  3481. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:179
  3482. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:39
  3483. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1211
  3484. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:88
  3485. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:167
  3486. msgid "IPv4 address"
  3487. msgstr ""
  3488. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:29
  3489. msgid "IPv4 assignment length"
  3490. msgstr ""
  3491. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:182
  3492. msgid "IPv4 broadcast"
  3493. msgstr ""
  3494. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:181
  3495. msgid "IPv4 gateway"
  3496. msgstr ""
  3497. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:180
  3498. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:174
  3499. msgid "IPv4 netmask"
  3500. msgstr ""
  3501. #: modules/luci-base/htdocs/luci-static/resources/validation.js:318
  3502. msgid "IPv4 network in address/netmask notation"
  3503. msgstr ""
  3504. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:140
  3505. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:205
  3506. msgid "IPv4 only"
  3507. msgstr ""
  3508. #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:16
  3509. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/ipip6.js:10
  3510. msgid "IPv4 over IPv6 (RFC2473-IPIPv6)"
  3511. msgstr ""
  3512. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:52
  3513. msgid "IPv4 prefix"
  3514. msgstr ""
  3515. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:61
  3516. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:55
  3517. msgid "IPv4 prefix length"
  3518. msgstr ""
  3519. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:625
  3520. msgid "IPv4 traffic table \"%h\""
  3521. msgstr ""
  3522. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1157
  3523. msgid "IPv4+6"
  3524. msgstr ""
  3525. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:88
  3526. msgid "IPv4+IPv6"
  3527. msgstr ""
  3528. #: modules/luci-compat/luasrc/model/network/proto_ipip.lua:9
  3529. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:10
  3530. msgid "IPv4-in-IPv4 (RFC2003)"
  3531. msgstr ""
  3532. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:95
  3533. msgid "IPv4/IPv6"
  3534. msgstr ""
  3535. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:139
  3536. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:204
  3537. msgid "IPv4/IPv6 (both - defaults to IPv4)"
  3538. msgstr ""
  3539. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:633
  3540. msgid "IPv4/IPv6 traffic table \"%h\""
  3541. msgstr ""
  3542. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1159
  3543. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:88
  3544. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:111
  3545. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:89
  3546. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:97
  3547. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:89
  3548. msgid "IPv6"
  3549. msgstr ""
  3550. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:81
  3551. msgid "IPv6 APN"
  3552. msgstr ""
  3553. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:150
  3554. msgid "IPv6 APN profile index"
  3555. msgstr ""
  3556. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:358
  3557. msgid "IPv6 Firewall"
  3558. msgstr ""
  3559. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:736
  3560. msgid "IPv6 MTU"
  3561. msgstr ""
  3562. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:272
  3563. msgid "IPv6 Neighbours"
  3564. msgstr ""
  3565. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:995
  3566. msgid "IPv6 Prefix Lifetime"
  3567. msgstr ""
  3568. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:634
  3569. msgid "IPv6 RA Settings"
  3570. msgstr ""
  3571. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:271
  3572. msgid "IPv6 Routing"
  3573. msgstr ""
  3574. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:126
  3575. msgid "IPv6 Rules"
  3576. msgstr ""
  3577. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:633
  3578. msgid "IPv6 Settings"
  3579. msgstr ""
  3580. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1555
  3581. msgid "IPv6 ULA-Prefix"
  3582. msgstr ""
  3583. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:33
  3584. msgid "IPv6 Upstream"
  3585. msgstr ""
  3586. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:184
  3587. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:58
  3588. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:135
  3589. msgid "IPv6 address"
  3590. msgstr ""
  3591. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1061
  3592. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:27
  3593. msgid "IPv6 assignment hint"
  3594. msgstr ""
  3595. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1056
  3596. msgid "IPv6 assignment length"
  3597. msgstr ""
  3598. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:189
  3599. msgid "IPv6 gateway"
  3600. msgstr ""
  3601. #: modules/luci-base/htdocs/luci-static/resources/validation.js:323
  3602. msgid "IPv6 network in address/netmask notation"
  3603. msgstr ""
  3604. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:141
  3605. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:206
  3606. msgid "IPv6 only"
  3607. msgstr ""
  3608. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1105
  3609. msgid "IPv6 preference"
  3610. msgstr ""
  3611. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:53
  3612. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:59
  3613. msgid "IPv6 prefix"
  3614. msgstr ""
  3615. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1078
  3616. msgid "IPv6 prefix filter"
  3617. msgstr ""
  3618. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:57
  3619. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:63
  3620. msgid "IPv6 prefix length"
  3621. msgstr ""
  3622. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:193
  3623. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:57
  3624. msgid "IPv6 routed prefix"
  3625. msgstr ""
  3626. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1049
  3627. msgid "IPv6 source routing"
  3628. msgstr ""
  3629. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1101
  3630. msgid "IPv6 suffix"
  3631. msgstr ""
  3632. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:55
  3633. msgid "IPv6 support"
  3634. msgstr ""
  3635. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:629
  3636. msgid "IPv6 traffic table \"%h\""
  3637. msgstr ""
  3638. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:90
  3639. msgid "IPv6-PD"
  3640. msgstr ""
  3641. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1263
  3642. msgid "IPv6-Suffix (hex)"
  3643. msgstr ""
  3644. #: modules/luci-compat/luasrc/model/network/proto_6x4.lua:13
  3645. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:10
  3646. msgid "IPv6-in-IPv4 (RFC4213)"
  3647. msgstr ""
  3648. #: modules/luci-compat/luasrc/model/network/proto_6x4.lua:17
  3649. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:9
  3650. msgid "IPv6-over-IPv4 (6rd)"
  3651. msgstr ""
  3652. #: modules/luci-compat/luasrc/model/network/proto_6x4.lua:15
  3653. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6to4.js:9
  3654. msgid "IPv6-over-IPv4 (6to4)"
  3655. msgstr ""
  3656. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1875
  3657. msgid "Identity"
  3658. msgstr ""
  3659. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1275
  3660. msgid ""
  3661. "If a host matches an entry which cannot be used because it specifies an "
  3662. "address on a different subnet, the tag %s is set."
  3663. msgstr ""
  3664. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:758
  3665. msgid ""
  3666. "If an address is specified in the flag, it will be used, otherwise, the "
  3667. "address of the requestor will be used."
  3668. msgstr ""
  3669. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:96
  3670. msgid "If checked, 1DES is enabled"
  3671. msgstr ""
  3672. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:55
  3673. msgid "If checked, adds \"+ipv6\" to the pppd options"
  3674. msgstr ""
  3675. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:93
  3676. msgid "If checked, encryption is disabled"
  3677. msgstr ""
  3678. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:104
  3679. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:104
  3680. msgid ""
  3681. "If destination MAC refers to router, replace it with destination MAC address"
  3682. msgstr ""
  3683. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:267
  3684. msgid ""
  3685. "If empty, all incoming connections will be allowed (default). This does not "
  3686. "affect outgoing peerings, nor link-local peers discovered via multicast."
  3687. msgstr ""
  3688. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1078
  3689. msgid ""
  3690. "If set, downstream subnets are only allocated from the given IPv6 prefix "
  3691. "classes."
  3692. msgstr ""
  3693. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:205
  3694. msgid "If set, the meaning of the match options is inverted"
  3695. msgstr ""
  3696. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:255
  3697. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:359
  3698. msgid ""
  3699. "If specified, mount the device by its UUID instead of a fixed device node"
  3700. msgstr ""
  3701. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:268
  3702. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:375
  3703. msgid ""
  3704. "If specified, mount the device by the partition label instead of a fixed "
  3705. "device node"
  3706. msgstr ""
  3707. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1011
  3708. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/ipip6.js:70
  3709. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:134
  3710. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:156
  3711. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:129
  3712. msgid "If unchecked, no default route is configured"
  3713. msgstr ""
  3714. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1015
  3715. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:145
  3716. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:160
  3717. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:140
  3718. msgid "If unchecked, the advertised DNS server addresses are ignored"
  3719. msgstr ""
  3720. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:338
  3721. msgid ""
  3722. "If your physical memory is insufficient unused data can be temporarily "
  3723. "swapped to a swap-device resulting in a higher amount of usable <abbr "
  3724. "title=\"Random Access Memory\">RAM</abbr>. Be aware that swapping data is a "
  3725. "very slow process as the swap-device cannot be accessed with the high "
  3726. "datarates of the <abbr title=\"Random Access Memory\">RAM</abbr>."
  3727. msgstr ""
  3728. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1212
  3729. msgid "Ignore"
  3730. msgstr ""
  3731. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:650
  3732. msgid "Ignore hosts files directory"
  3733. msgstr ""
  3734. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:665
  3735. msgid "Ignore interface"
  3736. msgstr ""
  3737. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1274
  3738. msgid "Ignore requests from unknown machines using %s."
  3739. msgstr ""
  3740. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:634
  3741. msgid "Ignore resolv file"
  3742. msgstr ""
  3743. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:657
  3744. msgid "Ignore {etc_hosts} file"
  3745. msgstr ""
  3746. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:449
  3747. msgid "Image"
  3748. msgstr ""
  3749. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:275
  3750. msgid "Image check failed:"
  3751. msgstr ""
  3752. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:463
  3753. msgid "Import as peer"
  3754. msgstr ""
  3755. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:174
  3756. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:463
  3757. msgid "Import configuration"
  3758. msgstr ""
  3759. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:491
  3760. msgid "Import configuration as peer…"
  3761. msgstr ""
  3762. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:477
  3763. msgid "Import settings"
  3764. msgstr ""
  3765. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:363
  3766. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:390
  3767. msgid "Imported peer configuration"
  3768. msgstr ""
  3769. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:174
  3770. msgid "Imports settings from an existing WireGuard configuration file"
  3771. msgstr ""
  3772. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:68
  3773. msgid "In"
  3774. msgstr ""
  3775. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1193
  3776. msgid ""
  3777. "In DHCPv4, it is possible to include more than one mac address. This allows "
  3778. "an IP address to be associated with multiple macaddrs, and dnsmasq abandons "
  3779. "a DHCP lease to one of the macaddrs when another asks for a lease. It only "
  3780. "works reliably if only one of the macaddrs is active at any time."
  3781. msgstr ""
  3782. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:71
  3783. msgid ""
  3784. "In bridged LAN setups it is advisable to enable the bridge loop avoidance in "
  3785. "order to avoid broadcast loops that can bring the entire LAN to a standstill."
  3786. msgstr ""
  3787. #: modules/luci-base/ucode/template/csrftoken.ut:13
  3788. msgid ""
  3789. "In order to prevent unauthorized access to the system, your request has been "
  3790. "blocked. Click \"Continue »\" below to return to the previous page."
  3791. msgstr ""
  3792. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:148
  3793. msgid "In seconds"
  3794. msgstr ""
  3795. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:156
  3796. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:128
  3797. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:114
  3798. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:92
  3799. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:101
  3800. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:124
  3801. msgid "Inactivity timeout"
  3802. msgstr ""
  3803. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:267
  3804. msgid "Inbound:"
  3805. msgstr ""
  3806. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:264
  3807. msgid ""
  3808. "Include in backup a list of current installed packages at /etc/backup/"
  3809. "installed_packages.txt"
  3810. msgstr ""
  3811. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:100
  3812. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:105
  3813. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:102
  3814. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:107
  3815. msgid "Incoming checksum"
  3816. msgstr ""
  3817. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:150
  3818. msgid "Incoming interface"
  3819. msgstr ""
  3820. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:92
  3821. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:97
  3822. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:94
  3823. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:99
  3824. #: protocols/luci-proto-vti/htdocs/luci-static/resources/protocol/vti.js:64
  3825. msgid "Incoming key"
  3826. msgstr ""
  3827. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:102
  3828. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:107
  3829. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:104
  3830. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:109
  3831. msgid "Incoming serialization"
  3832. msgstr ""
  3833. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:550
  3834. msgid "Indoor Only Channel Selected"
  3835. msgstr ""
  3836. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:187
  3837. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:158
  3838. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:345
  3839. msgid "Info"
  3840. msgstr ""
  3841. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:91
  3842. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:92
  3843. msgid "Information"
  3844. msgstr ""
  3845. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:510
  3846. msgid "Ingress QoS mapping"
  3847. msgstr ""
  3848. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:11
  3849. msgctxt "nft meta iif"
  3850. msgid "Ingress device id"
  3851. msgstr ""
  3852. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:9
  3853. msgctxt "nft meta iifname"
  3854. msgid "Ingress device name"
  3855. msgstr ""
  3856. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:162
  3857. msgid "Initial EPS Bearer"
  3858. msgstr ""
  3859. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:171
  3860. msgid "Initial EPS Bearer APN"
  3861. msgstr ""
  3862. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:175
  3863. msgid "Initial EPS Bearer Authentication Type"
  3864. msgstr ""
  3865. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:202
  3866. msgid "Initial EPS Bearer IP Type"
  3867. msgstr ""
  3868. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:193
  3869. msgid "Initial EPS Bearer Password"
  3870. msgstr ""
  3871. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:185
  3872. msgid "Initial EPS Bearer Username"
  3873. msgstr ""
  3874. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:67
  3875. msgid "Initialization failure"
  3876. msgstr ""
  3877. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:76
  3878. msgid "Initscript"
  3879. msgstr ""
  3880. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:111
  3881. msgid "Initscripts"
  3882. msgstr ""
  3883. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1859
  3884. msgid "Inner certificate constraint (Domain)"
  3885. msgstr ""
  3886. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1856
  3887. msgid "Inner certificate constraint (SAN)"
  3888. msgstr ""
  3889. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1853
  3890. msgid "Inner certificate constraint (Subject)"
  3891. msgstr ""
  3892. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1862
  3893. msgid "Inner certificate constraint (Wildcard)"
  3894. msgstr ""
  3895. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:289
  3896. msgid "Install protocol extensions..."
  3897. msgstr ""
  3898. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:918
  3899. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1282
  3900. msgid "Instance"
  3901. msgstr ""
  3902. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:125
  3903. msgctxt "WireGuard instance heading"
  3904. msgid "Instance \"%h\""
  3905. msgstr ""
  3906. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:374
  3907. msgctxt "Dnsmasq instance"
  3908. msgid "Instance \"%q\""
  3909. msgstr ""
  3910. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:34
  3911. msgid "Instance Details"
  3912. msgstr ""
  3913. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2280
  3914. msgid ""
  3915. "Instead of joining any network with a matching SSID, only connect to the "
  3916. "BSSID <code>%h</code>."
  3917. msgstr ""
  3918. #: modules/luci-compat/luasrc/view/cbi/map.htm:43
  3919. msgid "Insufficient permissions to read UCI configuration."
  3920. msgstr ""
  3921. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:136
  3922. msgid "Integrated Circuit Card Identifier"
  3923. msgstr ""
  3924. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:43
  3925. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:190
  3926. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:216
  3927. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:20
  3928. msgid "Interface"
  3929. msgstr ""
  3930. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:717
  3931. msgid "Interface \"%h\" is already marked as designated master."
  3932. msgstr ""
  3933. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:62
  3934. msgid "Interface %q device auto-migrated from %q to %q."
  3935. msgstr ""
  3936. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1042
  3937. msgid "Interface Configuration"
  3938. msgstr ""
  3939. #: protocols/luci-proto-xfrm/htdocs/luci-static/resources/protocol/xfrm.js:39
  3940. msgid "Interface ID"
  3941. msgstr ""
  3942. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:91
  3943. msgid "Interface disabled"
  3944. msgstr ""
  3945. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:97
  3946. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:151
  3947. msgid "Interface has %d pending changes"
  3948. msgstr ""
  3949. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:92
  3950. msgid "Interface is disabled"
  3951. msgstr ""
  3952. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:65
  3953. msgid "Interface is marked for deletion"
  3954. msgstr ""
  3955. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:196
  3956. msgid "Interface is reconnecting..."
  3957. msgstr ""
  3958. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:180
  3959. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:190
  3960. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:196
  3961. msgid "Interface is shutting down..."
  3962. msgstr ""
  3963. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:274
  3964. msgid "Interface is starting..."
  3965. msgstr ""
  3966. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:277
  3967. msgid "Interface is stopping..."
  3968. msgstr ""
  3969. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1220
  3970. msgid "Interface name"
  3971. msgstr ""
  3972. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:109
  3973. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:293
  3974. msgid "Interface not present or not connected yet."
  3975. msgstr ""
  3976. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:451
  3977. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:481
  3978. #: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:38
  3979. msgid "Interfaces"
  3980. msgstr ""
  3981. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:20
  3982. msgid "Internal"
  3983. msgstr ""
  3984. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:85
  3985. msgid "International Mobile Station Equipment Identity"
  3986. msgstr ""
  3987. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:139
  3988. msgid "International Mobile Subscriber Identity"
  3989. msgstr ""
  3990. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:290
  3991. msgid "Interval For Sending Learning Packets"
  3992. msgstr ""
  3993. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:610
  3994. msgid ""
  3995. "Interval in centiseconds between multicast general queries. By varying the "
  3996. "value, an administrator may tune the number of IGMP messages on the subnet; "
  3997. "larger values cause IGMP Queries to be sent less often"
  3998. msgstr ""
  3999. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:576
  4000. msgid "Interval in seconds for STP hello packets"
  4001. msgstr ""
  4002. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:192
  4003. #: modules/luci-compat/luasrc/view/cbi/tsection.htm:42
  4004. msgid "Invalid"
  4005. msgstr ""
  4006. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:101
  4007. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:68
  4008. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:71
  4009. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:97
  4010. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:73
  4011. msgid "Invalid APN provided"
  4012. msgstr ""
  4013. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:38
  4014. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:41
  4015. msgid "Invalid Base64 key string"
  4016. msgstr ""
  4017. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:121
  4018. msgid "Invalid IPv6 address"
  4019. msgstr ""
  4020. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:78
  4021. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:83
  4022. msgid "Invalid TOS value, expected 00..FF or inherit"
  4023. msgstr ""
  4024. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:83
  4025. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:88
  4026. msgid "Invalid Traffic Class value, expected 00..FF or inherit"
  4027. msgstr ""
  4028. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:285
  4029. msgid "Invalid VLAN ID given! Only IDs between %d and %d are allowed."
  4030. msgstr ""
  4031. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:294
  4032. msgid "Invalid VLAN ID given! Only unique IDs are allowed"
  4033. msgstr ""
  4034. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:403
  4035. msgid "Invalid argument"
  4036. msgstr ""
  4037. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:11
  4038. msgid ""
  4039. "Invalid bearer list. Possibly too many bearers created. This protocol "
  4040. "supports one and only one bearer."
  4041. msgstr ""
  4042. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:402
  4043. msgid "Invalid command"
  4044. msgstr ""
  4045. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:191
  4046. msgid "Invalid hexadecimal value"
  4047. msgstr ""
  4048. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:130
  4049. msgid "Invalid hostname or IPv4 address"
  4050. msgstr ""
  4051. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:138
  4052. msgid "Invalid port"
  4053. msgstr ""
  4054. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:16
  4055. msgid "Invalid private key string %s"
  4056. msgstr ""
  4057. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:28
  4058. msgid "Invalid public key string %s"
  4059. msgstr ""
  4060. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:112
  4061. msgid "Invalid server URL"
  4062. msgstr ""
  4063. #: modules/luci-base/ucode/template/sysauth.ut:12
  4064. #: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:32
  4065. msgid "Invalid username and/or password! Please try again."
  4066. msgstr ""
  4067. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/heartbeat.js:13
  4068. msgid "Invert blinking"
  4069. msgstr ""
  4070. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:205
  4071. msgid "Invert match"
  4072. msgstr ""
  4073. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:223
  4074. msgctxt "VLAN port state"
  4075. msgid "Is Primary VLAN"
  4076. msgstr ""
  4077. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1216
  4078. msgid "Isolate Clients"
  4079. msgstr ""
  4080. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:238
  4081. msgid ""
  4082. "It appears that you are trying to flash an image that does not fit into the "
  4083. "flash memory, please verify the image file!"
  4084. msgstr ""
  4085. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:312
  4086. msgid ""
  4087. "It periodically probes for active sessions and automatically establishes "
  4088. "direct peerings over internet with remote nodes running Yggdrasil Jumper "
  4089. "without requiring firewall or port configuration."
  4090. msgstr ""
  4091. #: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:78
  4092. #: themes/luci-theme-material/ucode/template/themes/material/header.ut:98
  4093. #: themes/luci-theme-openwrt/ucode/template/themes/openwrt.org/header.ut:64
  4094. msgid "JavaScript required!"
  4095. msgstr ""
  4096. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2054
  4097. msgid "Join Network"
  4098. msgstr ""
  4099. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1988
  4100. msgid "Join Network: Wireless Scan"
  4101. msgstr ""
  4102. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2288
  4103. msgid "Joining Network: %q"
  4104. msgstr ""
  4105. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:179
  4106. msgid "Jump to rule"
  4107. msgstr ""
  4108. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:303
  4109. msgid "Jumper"
  4110. msgstr ""
  4111. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:179
  4112. msgid "Jumps to another rule specified by its priority value"
  4113. msgstr ""
  4114. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:230
  4115. msgid "Keep settings and retain the current configuration"
  4116. msgstr ""
  4117. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:60
  4118. msgid "Keep-Alive"
  4119. msgstr ""
  4120. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/dmesg.js:54
  4121. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:84
  4122. msgid "Kernel Log"
  4123. msgstr ""
  4124. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:60
  4125. msgid "Kernel Version"
  4126. msgstr ""
  4127. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1602
  4128. msgid "Key"
  4129. msgstr ""
  4130. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1628
  4131. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1629
  4132. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1630
  4133. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1631
  4134. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1643
  4135. msgid "Key #%d"
  4136. msgstr ""
  4137. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:92
  4138. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:97
  4139. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:94
  4140. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:99
  4141. #: protocols/luci-proto-vti/htdocs/luci-static/resources/protocol/vti.js:64
  4142. msgid "Key for incoming packets (optional)."
  4143. msgstr ""
  4144. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:96
  4145. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:101
  4146. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:98
  4147. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:103
  4148. #: protocols/luci-proto-vti/htdocs/luci-static/resources/protocol/vti.js:68
  4149. msgid "Key for outgoing packets (optional)."
  4150. msgstr ""
  4151. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:537
  4152. msgctxt "Label indicating that WireGuard peer lacks public key"
  4153. msgid "Key missing"
  4154. msgstr ""
  4155. #: protocols/luci-proto-unet/htdocs/luci-static/resources/protocol/unet.js:44
  4156. msgid "Key used to sign network config"
  4157. msgstr ""
  4158. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:71
  4159. msgctxt "nft unit"
  4160. msgid "KiB"
  4161. msgstr ""
  4162. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:54
  4163. msgid "Kill"
  4164. msgstr ""
  4165. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:202
  4166. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:202
  4167. msgid ""
  4168. "L2 (MAC) address of peer. Uses source-address learning when %s is specified"
  4169. msgstr ""
  4170. #: modules/luci-compat/luasrc/model/network/proto_ppp.lua:21
  4171. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:10
  4172. msgid "L2TP"
  4173. msgstr ""
  4174. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:40
  4175. msgid "L2TP Server"
  4176. msgstr ""
  4177. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:274
  4178. msgid "LACPDU Packets"
  4179. msgstr ""
  4180. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:130
  4181. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:102
  4182. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:88
  4183. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:62
  4184. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:75
  4185. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:98
  4186. msgid "LCP echo failure threshold"
  4187. msgstr ""
  4188. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:143
  4189. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:115
  4190. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:101
  4191. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:75
  4192. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:88
  4193. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:111
  4194. msgid "LCP echo interval"
  4195. msgstr ""
  4196. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:115
  4197. msgid "LED Configuration"
  4198. msgstr ""
  4199. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1674
  4200. msgid "LLC"
  4201. msgstr ""
  4202. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:268
  4203. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:375
  4204. msgid "Label"
  4205. msgstr ""
  4206. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:225
  4207. msgid "Language"
  4208. msgstr ""
  4209. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:125
  4210. msgid "Language and Style"
  4211. msgstr ""
  4212. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:945
  4213. msgid ""
  4214. "Larger weights (of the same prio) are given a proportionately higher "
  4215. "probability of being selected."
  4216. msgstr ""
  4217. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:147
  4218. msgid "Last Error"
  4219. msgstr ""
  4220. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:629
  4221. msgid "Last member interval"
  4222. msgstr ""
  4223. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:143
  4224. msgid "Latency"
  4225. msgstr ""
  4226. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:59
  4227. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:78
  4228. msgid "Latest Handshake"
  4229. msgstr ""
  4230. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:201
  4231. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:201
  4232. msgid "Layer 2 Address"
  4233. msgstr ""
  4234. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:21
  4235. msgid "Leaf"
  4236. msgstr ""
  4237. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:774
  4238. msgid "Learn"
  4239. msgstr ""
  4240. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:986
  4241. msgid "Learn routes"
  4242. msgstr ""
  4243. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:96
  4244. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:96
  4245. msgid "Learning"
  4246. msgstr ""
  4247. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:630
  4248. msgid "Lease file"
  4249. msgstr ""
  4250. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1245
  4251. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:678
  4252. msgid "Lease time"
  4253. msgstr ""
  4254. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:41
  4255. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:60
  4256. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:90
  4257. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:137
  4258. msgid "Lease time remaining"
  4259. msgstr ""
  4260. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:41
  4261. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:47
  4262. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:50
  4263. msgid "Leave empty to autodetect"
  4264. msgstr ""
  4265. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:40
  4266. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:39
  4267. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6to4.js:39
  4268. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:47
  4269. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/ipip6.js:48
  4270. msgid "Leave empty to use the current WAN address"
  4271. msgstr ""
  4272. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1005
  4273. msgid ""
  4274. "Legacy or badly behaving devices may require legacy 802.11b rates to "
  4275. "interoperate. Airtime efficiency may be significantly reduced where these "
  4276. "are used. It is recommended to not allow 802.11b rates where possible."
  4277. msgstr ""
  4278. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:677
  4279. msgid "Legacy rules detected"
  4280. msgstr ""
  4281. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4468
  4282. msgid "Legend:"
  4283. msgstr ""
  4284. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:673
  4285. msgid "Limit"
  4286. msgstr ""
  4287. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:712
  4288. msgid ""
  4289. "Limit response records (from {etc_hosts}) to those that fall within the "
  4290. "subnet of the querying interface."
  4291. msgstr ""
  4292. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:394
  4293. msgid "Limits"
  4294. msgstr ""
  4295. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:25
  4296. msgid "Line Mode"
  4297. msgstr ""
  4298. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:24
  4299. msgid "Line State"
  4300. msgstr ""
  4301. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:26
  4302. msgid "Line Uptime"
  4303. msgstr ""
  4304. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:128
  4305. msgid "Link Aggregation (Channel Bonding)"
  4306. msgstr ""
  4307. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:354
  4308. msgid "Link Monitoring"
  4309. msgstr ""
  4310. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:24
  4311. msgid "Link On"
  4312. msgstr ""
  4313. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:77
  4314. msgctxt "nft @ll,off,len"
  4315. msgid "Link layer header bits %d-%d"
  4316. msgstr ""
  4317. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:502
  4318. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1122
  4319. msgid ""
  4320. "List of IP sets to populate with the IPs of DNS lookup results of the FQDNs "
  4321. "also specified here."
  4322. msgstr ""
  4323. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1713
  4324. msgid ""
  4325. "List of R0KHs in the same Mobility Domain. <br />Format: MAC-address,NAS-"
  4326. "Identifier,256-bit key as hex string. <br />This list is used to map R0KH-ID "
  4327. "(NAS Identifier) to a destination MAC address when requesting PMK-R1 key "
  4328. "from the R0KH that the STA used during the Initial Mobility Domain "
  4329. "Association."
  4330. msgstr ""
  4331. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1717
  4332. msgid ""
  4333. "List of R1KHs in the same Mobility Domain. <br />Format: MAC-address,R1KH-ID "
  4334. "as 6 octets with colons,256-bit key as hex string. <br />This list is used "
  4335. "to map R1KH-ID to a destination MAC address when sending PMK-R1 key from the "
  4336. "R0KH. This is also the list of authorized R1KHs in the MD that can request "
  4337. "PMK-R1 keys."
  4338. msgstr ""
  4339. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:82
  4340. msgid "List of SSH key files for auth"
  4341. msgstr ""
  4342. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:523
  4343. msgid "List of domains to allow {rfc_1918_link} responses for."
  4344. msgstr ""
  4345. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:301
  4346. msgid "List of upstream NTP server candidates with which to synchronize."
  4347. msgstr ""
  4348. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:162
  4349. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:38
  4350. msgid "Listen Port"
  4351. msgstr ""
  4352. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:263
  4353. msgid "Listen addresses"
  4354. msgstr ""
  4355. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:260
  4356. msgid "Listen for peers"
  4357. msgstr ""
  4358. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:544
  4359. msgid "Listen interfaces"
  4360. msgstr ""
  4361. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:20
  4362. msgid "Listen only on the given interface or, if unspecified, on all"
  4363. msgstr ""
  4364. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:545
  4365. msgid ""
  4366. "Listen only on the specified interfaces, and loopback if not excluded "
  4367. "explicitly."
  4368. msgstr ""
  4369. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:292
  4370. msgid "Listen to multicast beacons"
  4371. msgstr ""
  4372. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:286
  4373. msgid "ListenPort setting is invalid"
  4374. msgstr ""
  4375. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:784
  4376. msgid "Listening port for inbound DNS queries."
  4377. msgstr ""
  4378. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:130
  4379. #: themes/luci-theme-openwrt/ucode/template/themes/openwrt.org/header.ut:46
  4380. msgid "Load"
  4381. msgstr ""
  4382. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:63
  4383. msgid "Load Average"
  4384. msgstr ""
  4385. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:228
  4386. msgid ""
  4387. "Load Average is a metric that is used by Linux to keep track of system "
  4388. "resources."
  4389. msgstr ""
  4390. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:175
  4391. msgid "Load configuration…"
  4392. msgstr ""
  4393. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1249
  4394. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2217
  4395. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:167
  4396. msgid "Loading data…"
  4397. msgstr ""
  4398. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3027
  4399. msgid "Loading directory contents…"
  4400. msgstr ""
  4401. #: modules/luci-base/htdocs/luci-static/resources/luci.js:1942
  4402. #: modules/luci-base/ucode/template/view.ut:4
  4403. #: modules/luci-mod-status/ucode/template/admin_status/index.ut:12
  4404. #: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:40
  4405. msgid "Loading view…"
  4406. msgstr ""
  4407. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:956
  4408. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:100
  4409. msgid "Local"
  4410. msgstr ""
  4411. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:169
  4412. msgid "Local IP address"
  4413. msgstr ""
  4414. #: modules/luci-base/htdocs/luci-static/resources/network.js:12
  4415. #: modules/luci-compat/luasrc/model/network.lua:30
  4416. msgid "Local IP address is invalid"
  4417. msgstr ""
  4418. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:86
  4419. msgid "Local IP address to assign"
  4420. msgstr ""
  4421. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:46
  4422. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:46
  4423. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:44
  4424. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:40
  4425. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:39
  4426. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6to4.js:39
  4427. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/ipip6.js:44
  4428. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:151
  4429. #: protocols/luci-proto-vti/htdocs/luci-static/resources/protocol/vti.js:44
  4430. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:47
  4431. msgid "Local IPv4 address"
  4432. msgstr ""
  4433. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:934
  4434. msgid "Local IPv6 DNS server"
  4435. msgstr ""
  4436. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:46
  4437. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:53
  4438. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:54
  4439. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:47
  4440. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/ipip6.js:48
  4441. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:47
  4442. msgid "Local IPv6 address"
  4443. msgstr ""
  4444. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:115
  4445. msgid "Local Startup"
  4446. msgstr ""
  4447. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:61
  4448. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:131
  4449. msgid "Local Time"
  4450. msgstr ""
  4451. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1079
  4452. msgid "Local ULA"
  4453. msgstr ""
  4454. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:48
  4455. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:48
  4456. msgid "Local VTEP"
  4457. msgstr ""
  4458. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:428
  4459. msgid "Local domain"
  4460. msgstr ""
  4461. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:429
  4462. msgid "Local domain suffix appended to DHCP names and hosts file entries."
  4463. msgstr ""
  4464. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:531
  4465. msgid "Local service only"
  4466. msgstr ""
  4467. #: protocols/luci-proto-unet/htdocs/luci-static/resources/protocol/unet.js:41
  4468. msgid "Local wireguard key"
  4469. msgstr ""
  4470. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:711
  4471. msgid "Localise queries"
  4472. msgstr ""
  4473. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:117
  4474. msgid "Location Area Code"
  4475. msgstr ""
  4476. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2280
  4477. msgid "Lock to BSSID"
  4478. msgstr ""
  4479. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:395
  4480. msgid "Log"
  4481. msgstr ""
  4482. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:442
  4483. msgid ""
  4484. "Log all options sent to DHCP clients and the tags used to determine them."
  4485. msgstr ""
  4486. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:98
  4487. msgctxt "nft log action"
  4488. msgid "Log event \"<strong>%h</strong>…\""
  4489. msgstr ""
  4490. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:446
  4491. msgid "Log facility"
  4492. msgstr ""
  4493. #: modules/luci-base/ucode/template/sysauth.ut:38
  4494. #: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:36
  4495. msgid "Log in"
  4496. msgstr ""
  4497. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2674
  4498. msgid "Log in…"
  4499. msgstr ""
  4500. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:340
  4501. msgid "Log level"
  4502. msgstr ""
  4503. #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:81
  4504. msgid "Log out"
  4505. msgstr ""
  4506. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:185
  4507. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:155
  4508. msgid "Log output level"
  4509. msgstr ""
  4510. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:436
  4511. msgid "Log queries"
  4512. msgstr ""
  4513. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:123
  4514. msgid "Logging"
  4515. msgstr ""
  4516. #: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:23
  4517. msgid "Logging in…"
  4518. msgstr ""
  4519. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57
  4520. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:57
  4521. msgid ""
  4522. "Logical network from which to select the local endpoint if local IPv6 "
  4523. "address is empty and no WAN IPv6 is available (optional)."
  4524. msgstr ""
  4525. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:57
  4526. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62
  4527. msgid "Logical network to which the tunnel will be added (bridged) (optional)."
  4528. msgstr ""
  4529. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:682
  4530. msgid "Loose filtering"
  4531. msgstr ""
  4532. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:668
  4533. msgid "Lowest leased address as offset from the network address."
  4534. msgstr ""
  4535. #: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/footer.ut:12
  4536. msgid "Lua compatibility mode active"
  4537. msgstr ""
  4538. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:48
  4539. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:85
  4540. msgid "MAC"
  4541. msgstr ""
  4542. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1527
  4543. msgid "MAC Address"
  4544. msgstr ""
  4545. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1146
  4546. msgid "MAC Address Filter"
  4547. msgstr ""
  4548. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:258
  4549. msgid "MAC Address For The Actor"
  4550. msgstr ""
  4551. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:401
  4552. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1495
  4553. msgid "MAC VLAN"
  4554. msgstr ""
  4555. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:645
  4556. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:40
  4557. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1228
  4558. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2411
  4559. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:47
  4560. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:89
  4561. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:233
  4562. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:189
  4563. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:215
  4564. msgid "MAC address"
  4565. msgstr ""
  4566. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1191
  4567. msgid "MAC address(es)"
  4568. msgstr ""
  4569. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1048
  4570. msgid "MAC-Filter"
  4571. msgstr ""
  4572. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1153
  4573. msgid "MAC-List"
  4574. msgstr ""
  4575. #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:18
  4576. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:13
  4577. msgid "MAP / LW4over6"
  4578. msgstr ""
  4579. #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:65
  4580. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:7
  4581. msgid "MAP rule is invalid"
  4582. msgstr ""
  4583. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:24
  4584. msgid "MBIM Cellular"
  4585. msgstr ""
  4586. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:225
  4587. msgid "MD5"
  4588. msgstr ""
  4589. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:199
  4590. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:28
  4591. msgid "MHz"
  4592. msgstr ""
  4593. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:359
  4594. msgid "MII"
  4595. msgstr ""
  4596. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:427
  4597. msgid "MII / ETHTOOL ioctls"
  4598. msgstr ""
  4599. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:400
  4600. msgid "MII Interval"
  4601. msgstr ""
  4602. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:634
  4603. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1539
  4604. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:90
  4605. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:53
  4606. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:83
  4607. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:83
  4608. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:182
  4609. #: protocols/luci-proto-xfrm/htdocs/luci-static/resources/protocol/xfrm.js:46
  4610. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:241
  4611. msgid "MTU"
  4612. msgstr ""
  4613. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:936
  4614. msgid "MX"
  4615. msgstr ""
  4616. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:303
  4617. msgid ""
  4618. "Make sure to clone the root filesystem using something like the commands "
  4619. "below:"
  4620. msgstr ""
  4621. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:122
  4622. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:115
  4623. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:53
  4624. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:98
  4625. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:84
  4626. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:58
  4627. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:71
  4628. msgid "Manual"
  4629. msgstr ""
  4630. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:82
  4631. msgid "Manufacturer"
  4632. msgstr ""
  4633. #: modules/luci-base/htdocs/luci-static/resources/network.js:3908
  4634. msgid "Master (VLAN)"
  4635. msgstr ""
  4636. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1272
  4637. msgid "Match Tag"
  4638. msgstr ""
  4639. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:907
  4640. msgid "Match this Tag"
  4641. msgstr ""
  4642. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:161
  4643. msgid "Match traffic destined to this interface"
  4644. msgstr ""
  4645. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:165
  4646. msgid "Match traffic destined to this subnet (CIDR notation)"
  4647. msgstr ""
  4648. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:150
  4649. msgid "Match traffic from this interface"
  4650. msgstr ""
  4651. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:154
  4652. msgid "Match traffic from this source subnet (CIDR notation)"
  4653. msgstr ""
  4654. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:174
  4655. msgid "Matched traffic re-targets to an interface using this table."
  4656. msgstr ""
  4657. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:850
  4658. msgid "Max <abbr title=\"Router Advertisement\">RA</abbr> interval"
  4659. msgstr ""
  4660. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:90
  4661. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:90
  4662. msgid "Max FDB size"
  4663. msgstr ""
  4664. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:848
  4665. msgid "Max cache TTL"
  4666. msgstr ""
  4667. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:806
  4668. msgid "Max valid value %s."
  4669. msgstr ""
  4670. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:813
  4671. msgid "Max. DHCP leases"
  4672. msgstr ""
  4673. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:820
  4674. msgid "Max. EDNS0 packet size"
  4675. msgstr ""
  4676. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:827
  4677. msgid "Max. concurrent queries"
  4678. msgstr ""
  4679. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:586
  4680. msgid "Maximum age"
  4681. msgstr ""
  4682. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1255
  4683. msgid "Maximum allowed Listen Interval"
  4684. msgstr ""
  4685. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:814
  4686. msgid "Maximum allowed number of active DHCP leases."
  4687. msgstr ""
  4688. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:828
  4689. msgid "Maximum allowed number of concurrent DNS queries."
  4690. msgstr ""
  4691. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:821
  4692. msgid "Maximum allowed size of EDNS0 UDP packets."
  4693. msgstr ""
  4694. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:126
  4695. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:124
  4696. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:113
  4697. msgid "Maximum amount of seconds to wait for the modem to become ready"
  4698. msgstr ""
  4699. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:91
  4700. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:91
  4701. msgid "Maximum number of FDB entries"
  4702. msgstr ""
  4703. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:673
  4704. msgid "Maximum number of leased addresses."
  4705. msgstr ""
  4706. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:596
  4707. msgid "Maximum snooping table size"
  4708. msgstr ""
  4709. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:805
  4710. msgid "Maximum source port #"
  4711. msgstr ""
  4712. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:850
  4713. msgid ""
  4714. "Maximum time allowed between sending unsolicited <abbr title=\"Router "
  4715. "Advertisement, ICMPv6 Type 134\">RA</abbr>. Default is 600 seconds."
  4716. msgstr ""
  4717. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1008
  4718. msgid "Maximum transmit power"
  4719. msgstr ""
  4720. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:687
  4721. msgid "May prevent VoIP or other services from working."
  4722. msgstr ""
  4723. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:129
  4724. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:188
  4725. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:199
  4726. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:28
  4727. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:171
  4728. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:324
  4729. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:325
  4730. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:326
  4731. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:330
  4732. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:331
  4733. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:332
  4734. msgid "Mbit/s"
  4735. msgstr ""
  4736. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:35
  4737. msgid "Medium"
  4738. msgstr ""
  4739. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:24
  4740. msgid "Memory"
  4741. msgstr ""
  4742. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:73
  4743. msgid "Memory usage (%)"
  4744. msgstr ""
  4745. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:156
  4746. msgid "Mesh ID"
  4747. msgstr ""
  4748. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1057
  4749. msgid "Mesh Id"
  4750. msgstr ""
  4751. #: modules/luci-base/htdocs/luci-static/resources/network.js:3910
  4752. msgid "Mesh Point"
  4753. msgstr ""
  4754. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:41
  4755. msgid "Mesh Routing"
  4756. msgstr ""
  4757. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:41
  4758. msgid "Mesh and routing related options"
  4759. msgstr ""
  4760. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:404
  4761. msgid "Method not found"
  4762. msgstr ""
  4763. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:355
  4764. msgid "Method of link monitoring"
  4765. msgstr ""
  4766. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:424
  4767. msgid "Method to determine link status"
  4768. msgstr ""
  4769. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:83
  4770. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:199
  4771. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:225
  4772. msgid "Metric"
  4773. msgstr ""
  4774. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1034
  4775. msgid ""
  4776. "Metric is an ordinal, where a gateway with 1 is chosen 1st, 2 is chosen 2nd, "
  4777. "3 is chosen 3rd, etc"
  4778. msgstr ""
  4779. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:70
  4780. msgctxt "nft unit"
  4781. msgid "MiB"
  4782. msgstr ""
  4783. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:857
  4784. msgid "Min <abbr title=\"Router Advertisement\">RA</abbr> interval"
  4785. msgstr ""
  4786. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:841
  4787. msgid "Min cache TTL"
  4788. msgstr ""
  4789. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:798
  4790. msgid "Min valid value %s."
  4791. msgstr ""
  4792. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:721
  4793. msgid "Minimum ARP validity time"
  4794. msgstr ""
  4795. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:242
  4796. msgid "Minimum Number of Links"
  4797. msgstr ""
  4798. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:721
  4799. msgid ""
  4800. "Minimum required time in seconds before an ARP entry may be replaced. "
  4801. "Prevents ARP cache thrashing."
  4802. msgstr ""
  4803. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:797
  4804. msgid "Minimum source port #"
  4805. msgstr ""
  4806. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:857
  4807. msgid ""
  4808. "Minimum time allowed between sending unsolicited <abbr title=\"Router "
  4809. "Advertisement, ICMPv6 Type 134\">RA</abbr>. Default is 200 seconds."
  4810. msgstr ""
  4811. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:204
  4812. msgid "Mirror monitor port"
  4813. msgstr ""
  4814. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:203
  4815. msgid "Mirror source port"
  4816. msgstr ""
  4817. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:120
  4818. msgid "Mobile Country Code"
  4819. msgstr ""
  4820. #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:9
  4821. msgid "Mobile Data"
  4822. msgstr ""
  4823. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:123
  4824. msgid "Mobile Network Code"
  4825. msgstr ""
  4826. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1673
  4827. msgid "Mobility Domain"
  4828. msgstr ""
  4829. #: modules/luci-compat/luasrc/view/cbi/wireless_modefreq.htm:182
  4830. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:488
  4831. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:157
  4832. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:180
  4833. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:553
  4834. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1052
  4835. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1972
  4836. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:446
  4837. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:148
  4838. msgid "Mode"
  4839. msgstr ""
  4840. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:56
  4841. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:83
  4842. msgid "Model"
  4843. msgstr ""
  4844. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:81
  4845. msgid "Modem Info"
  4846. msgstr ""
  4847. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:9
  4848. msgid ""
  4849. "Modem connection in progress. Please wait. This process will timeout after 2 "
  4850. "minutes."
  4851. msgstr ""
  4852. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:77
  4853. msgid "Modem default"
  4854. msgstr ""
  4855. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:73
  4856. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:54
  4857. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:51
  4858. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:65
  4859. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:73
  4860. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:57
  4861. msgid "Modem device"
  4862. msgstr ""
  4863. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:66
  4864. msgid "Modem information query failed"
  4865. msgstr ""
  4866. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:126
  4867. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:124
  4868. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:119
  4869. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:113
  4870. msgid "Modem init timeout"
  4871. msgstr ""
  4872. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:21
  4873. msgid "ModemManager"
  4874. msgstr ""
  4875. #: modules/luci-base/htdocs/luci-static/resources/network.js:3907
  4876. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1140
  4877. msgid "Monitor"
  4878. msgstr ""
  4879. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:31
  4880. msgid "More Characters"
  4881. msgstr ""
  4882. #: modules/luci-base/htdocs/luci-static/resources/form.js:2539
  4883. msgid "More…"
  4884. msgstr ""
  4885. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:192
  4886. msgid "Mount Point"
  4887. msgstr ""
  4888. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:144
  4889. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:228
  4890. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:102
  4891. msgid "Mount Points"
  4892. msgstr ""
  4893. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:229
  4894. msgid "Mount Points - Mount Entry"
  4895. msgstr ""
  4896. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:339
  4897. msgid "Mount Points - Swap Entry"
  4898. msgstr ""
  4899. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:228
  4900. msgid ""
  4901. "Mount Points define at which point a memory device will be attached to the "
  4902. "filesystem"
  4903. msgstr ""
  4904. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:154
  4905. msgid "Mount attached devices"
  4906. msgstr ""
  4907. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:162
  4908. msgid "Mount filesystems not specifically configured"
  4909. msgstr ""
  4910. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:332
  4911. msgid "Mount options"
  4912. msgstr ""
  4913. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:293
  4914. msgid "Mount point"
  4915. msgstr ""
  4916. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:158
  4917. msgid "Mount swap not specifically configured"
  4918. msgstr ""
  4919. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:223
  4920. msgid "Mounted file systems"
  4921. msgstr ""
  4922. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:152
  4923. msgid "Move down"
  4924. msgstr ""
  4925. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:151
  4926. msgid "Move up"
  4927. msgstr ""
  4928. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1213
  4929. msgid "Multi To Unicast"
  4930. msgstr ""
  4931. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:89
  4932. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:94
  4933. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:91
  4934. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:96
  4935. msgid "Multicast"
  4936. msgstr ""
  4937. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:99
  4938. msgid "Multicast Mode"
  4939. msgstr ""
  4940. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:772
  4941. msgid "Multicast routing"
  4942. msgstr ""
  4943. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:281
  4944. msgid "Multicast rules"
  4945. msgstr ""
  4946. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:778
  4947. msgid "Multicast to unicast"
  4948. msgstr ""
  4949. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1522
  4950. msgid "Must be in %s format."
  4951. msgstr ""
  4952. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:197
  4953. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:197
  4954. msgid "My Peer"
  4955. msgstr ""
  4956. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1668
  4957. msgid "NAS ID"
  4958. msgstr ""
  4959. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:536
  4960. msgid "NAT action chain \"%h\""
  4961. msgstr ""
  4962. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:87
  4963. msgid "NAT-T Mode"
  4964. msgstr ""
  4965. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:41
  4966. msgid "NAT64 Prefix"
  4967. msgstr ""
  4968. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:843
  4969. msgid "NAT64 prefix"
  4970. msgstr ""
  4971. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:26
  4972. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:35
  4973. msgid "NCM"
  4974. msgstr ""
  4975. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:991
  4976. msgid "NDP-Proxy slave"
  4977. msgstr ""
  4978. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:72
  4979. msgid "NT Domain"
  4980. msgstr ""
  4981. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:951
  4982. msgid "NTP Servers"
  4983. msgstr ""
  4984. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:300
  4985. msgid "NTP server candidates"
  4986. msgstr ""
  4987. #: modules/luci-base/htdocs/luci-static/resources/form.js:2576
  4988. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4234
  4989. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:27
  4990. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:94
  4991. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1180
  4992. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:68
  4993. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:36
  4994. msgid "Name"
  4995. msgstr ""
  4996. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2257
  4997. msgid ""
  4998. "Name for OpenWrt network configuration. (No relation to wireless network "
  4999. "name/SSID)"
  5000. msgstr ""
  5001. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2256
  5002. msgid "Name of the new network"
  5003. msgstr ""
  5004. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:229
  5005. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:229
  5006. msgid ""
  5007. "Name of the outgoing interface to reach the remote VXLAN tunnel endpoint"
  5008. msgstr ""
  5009. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1134
  5010. msgid "Name of the set"
  5011. msgstr ""
  5012. #: protocols/luci-proto-unet/htdocs/luci-static/resources/protocol/unet.js:38
  5013. msgid "Name of the tunnel device"
  5014. msgstr ""
  5015. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:416
  5016. msgid "Names not in {etc_hosts} are answered {not_found}."
  5017. msgstr ""
  5018. #: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:39
  5019. #: themes/luci-theme-openwrt/ucode/template/themes/openwrt.org/header.ut:42
  5020. msgid "Navigation"
  5021. msgstr ""
  5022. #: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:10
  5023. msgid "Nebula Network"
  5024. msgstr ""
  5025. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1730
  5026. msgid "Neighbour Report"
  5027. msgstr ""
  5028. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:713
  5029. msgid "Neighbour cache validity"
  5030. msgstr ""
  5031. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1148
  5032. msgid "Netfilter table name"
  5033. msgstr ""
  5034. #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:45
  5035. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1085
  5036. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2410
  5037. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:386
  5038. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:54
  5039. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:232
  5040. msgid "Network"
  5041. msgstr ""
  5042. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:104
  5043. msgid "Network Coding"
  5044. msgstr ""
  5045. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:76
  5046. msgid "Network Mode"
  5047. msgstr ""
  5048. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:97
  5049. msgid "Network Registration"
  5050. msgstr ""
  5051. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2250
  5052. msgid "Network SSID"
  5053. msgstr ""
  5054. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:60
  5055. msgid "Network address"
  5056. msgstr ""
  5057. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:179
  5058. msgid "Network and its mask that define the size of the destination"
  5059. msgstr ""
  5060. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:184
  5061. msgid "Network and its mask that define which source addresses use this route"
  5062. msgstr ""
  5063. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:866
  5064. msgid "Network boot image"
  5065. msgstr ""
  5066. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:381
  5067. msgid "Network bridge configuration migration"
  5068. msgstr ""
  5069. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:397
  5070. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1501
  5071. msgid "Network device"
  5072. msgstr ""
  5073. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:7
  5074. msgid "Network device activity (kernel: netdev)"
  5075. msgstr ""
  5076. #: modules/luci-base/htdocs/luci-static/resources/network.js:15
  5077. #: modules/luci-compat/luasrc/model/network.lua:33
  5078. msgid "Network device is not present"
  5079. msgstr ""
  5080. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:645
  5081. msgid "Network device table \"%h\""
  5082. msgstr ""
  5083. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:78
  5084. msgctxt "nft @nh,off,len"
  5085. msgid "Network header bits %d-%d"
  5086. msgstr ""
  5087. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:415
  5088. msgid "Network ifname configuration migration"
  5089. msgstr ""
  5090. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:57
  5091. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62
  5092. msgid "Network interface"
  5093. msgstr ""
  5094. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:773
  5095. msgid "Never"
  5096. msgstr ""
  5097. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:16
  5098. msgctxt "No WireGuard peer handshake yet"
  5099. msgid "Never"
  5100. msgstr ""
  5101. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:415
  5102. msgid "Never forward DNS queries which lack dots or domain parts."
  5103. msgstr ""
  5104. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:424
  5105. msgid ""
  5106. "Never forward these matching domains or subdomains; resolve from DHCP or "
  5107. "hosts files only."
  5108. msgstr ""
  5109. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:380
  5110. msgctxt "Dnsmasq instance"
  5111. msgid "New instance name…"
  5112. msgstr ""
  5113. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1235
  5114. msgid "New interface for \"%s\" can not be created: %s"
  5115. msgstr ""
  5116. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1183
  5117. msgid "New interface name…"
  5118. msgstr ""
  5119. #: modules/luci-compat/luasrc/view/cbi/delegator.htm:11
  5120. msgid "Next »"
  5121. msgstr ""
  5122. #: modules/luci-base/htdocs/luci-static/resources/form.js:4181
  5123. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:303
  5124. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:351
  5125. msgid "No"
  5126. msgstr ""
  5127. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:642
  5128. msgid "No DHCP Server configured for this interface"
  5129. msgstr ""
  5130. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:202
  5131. msgid "No Data"
  5132. msgstr ""
  5133. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1465
  5134. msgid "No Encryption"
  5135. msgstr ""
  5136. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:171
  5137. msgid "No Host Routes"
  5138. msgstr ""
  5139. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:89
  5140. msgid "No NAT-T"
  5141. msgstr ""
  5142. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:79
  5143. msgid "No RX signal"
  5144. msgstr ""
  5145. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:148
  5146. msgid "No WireGuard interfaces configured."
  5147. msgstr ""
  5148. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:16
  5149. msgid "No allowed mode configuration found."
  5150. msgstr ""
  5151. #: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:69
  5152. #: themes/luci-theme-material/ucode/template/themes/material/header.ut:89
  5153. #: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:65
  5154. #: themes/luci-theme-openwrt/ucode/template/themes/openwrt.org/header.ut:82
  5155. msgid ""
  5156. "No changes to settings will be stored and are lost after rebooting. This "
  5157. "mode should only be used to install a firmware upgrade"
  5158. msgstr ""
  5159. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69
  5160. msgid "No client associated"
  5161. msgstr ""
  5162. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:27
  5163. msgid "No control device specified"
  5164. msgstr ""
  5165. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3265
  5166. msgctxt "empty table placeholder"
  5167. msgid "No data"
  5168. msgstr ""
  5169. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:406
  5170. msgid "No data received"
  5171. msgstr ""
  5172. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:750
  5173. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:757
  5174. msgid "No enforcement"
  5175. msgstr ""
  5176. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:239
  5177. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:242
  5178. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:245
  5179. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:248
  5180. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:251
  5181. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:254
  5182. msgid "No entries available"
  5183. msgstr ""
  5184. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2951
  5185. msgid "No entries in this directory"
  5186. msgstr ""
  5187. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:858
  5188. msgid ""
  5189. "No fixed interface listening port defined, peers might not be able to "
  5190. "initiate connections to this WireGuard instance!"
  5191. msgstr ""
  5192. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:86
  5193. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:91
  5194. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:88
  5195. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:93
  5196. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:70
  5197. msgid "No host route"
  5198. msgstr ""
  5199. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:792
  5200. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:142
  5201. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:362
  5202. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:59
  5203. msgid "No information available"
  5204. msgstr ""
  5205. #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:66
  5206. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:8
  5207. msgid "No matching prefix delegation"
  5208. msgstr ""
  5209. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:145
  5210. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:148
  5211. msgid "No more slaves available"
  5212. msgstr ""
  5213. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:194
  5214. msgid "No more slaves available, can not save interface"
  5215. msgstr ""
  5216. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:730
  5217. msgid "No negative cache"
  5218. msgstr ""
  5219. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:696
  5220. msgid "No nftables ruleset loaded."
  5221. msgstr ""
  5222. #: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:58
  5223. #: themes/luci-theme-material/ucode/template/themes/material/header.ut:78
  5224. #: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:54
  5225. #: themes/luci-theme-openwrt/ucode/template/themes/openwrt.org/header.ut:71
  5226. msgid "No password set!"
  5227. msgstr ""
  5228. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:84
  5229. msgid "No peers connected"
  5230. msgstr ""
  5231. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:497
  5232. msgid "No peers defined yet."
  5233. msgstr ""
  5234. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:15
  5235. msgid "No preferred mode configuration found."
  5236. msgstr ""
  5237. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:146
  5238. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:283
  5239. msgid "No public keys present yet."
  5240. msgstr ""
  5241. #: modules/luci-base/htdocs/luci-static/resources/tools/views.js:20
  5242. msgid "No related logs yet!"
  5243. msgstr ""
  5244. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:613
  5245. msgctxt "nft chain is empty"
  5246. msgid "No rules in this chain"
  5247. msgstr ""
  5248. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:91
  5249. msgid "No rules in this chain."
  5250. msgstr ""
  5251. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:390
  5252. msgid "No validation or filtering"
  5253. msgstr ""
  5254. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:139
  5255. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1280
  5256. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:259
  5257. msgid "No zone assigned"
  5258. msgstr ""
  5259. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:246
  5260. msgid "Node info"
  5261. msgstr ""
  5262. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:250
  5263. msgid "Node info privacy"
  5264. msgstr ""
  5265. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:58
  5266. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:84
  5267. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:187
  5268. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:235
  5269. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:279
  5270. msgid "Noise"
  5271. msgstr ""
  5272. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:30
  5273. msgid "Noise Margin"
  5274. msgstr ""
  5275. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:272
  5276. msgid "Noise:"
  5277. msgstr ""
  5278. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:537
  5279. msgid "Non-wildcard"
  5280. msgstr ""
  5281. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:159
  5282. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:183
  5283. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:80
  5284. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:85
  5285. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:114
  5286. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:182
  5287. msgid "None"
  5288. msgstr ""
  5289. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1016
  5290. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:198
  5291. msgid "Normal"
  5292. msgstr ""
  5293. #: modules/luci-base/ucode/template/error404.ut:9
  5294. msgid "Not Found"
  5295. msgstr ""
  5296. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:211
  5297. msgctxt "VLAN port state"
  5298. msgid "Not Member"
  5299. msgstr ""
  5300. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:75
  5301. msgid "Not associated"
  5302. msgstr ""
  5303. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:36
  5304. msgid "Not connected"
  5305. msgstr ""
  5306. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:46
  5307. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:83
  5308. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:107
  5309. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:133
  5310. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:301
  5311. msgid "Not present"
  5312. msgstr ""
  5313. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:92
  5314. msgid "Not started on boot"
  5315. msgstr ""
  5316. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:409
  5317. msgid "Not supported"
  5318. msgstr ""
  5319. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:714
  5320. msgid "Note: IPv4 only."
  5321. msgstr ""
  5322. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1888
  5323. msgid ""
  5324. "Note: Some wireless drivers do not fully support 802.11w. E.g. mwlwifi may "
  5325. "have problems"
  5326. msgstr ""
  5327. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1922
  5328. msgid ""
  5329. "Note: Workaround mode allows a STA that claims OCV capability to connect "
  5330. "even if the STA doesn't send OCI or negotiate PMF."
  5331. msgstr ""
  5332. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1571
  5333. msgid ""
  5334. "Note: this setting is for local services on the device only (not for "
  5335. "forwarding)."
  5336. msgstr ""
  5337. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:558
  5338. msgid ""
  5339. "Note: you may also need a DHCP Proxy (currently unavailable) when specifying "
  5340. "a non-standard Relay To port(<code>addr#port</code>)."
  5341. msgstr ""
  5342. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:142
  5343. msgid "Notes"
  5344. msgstr ""
  5345. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:188
  5346. msgid "Notice"
  5347. msgstr ""
  5348. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:135
  5349. msgid "Nslookup"
  5350. msgstr ""
  5351. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:338
  5352. msgid "Number of IGMP membership reports"
  5353. msgstr ""
  5354. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:835
  5355. msgid "Number of cached DNS entries, 10000 is maximum, 0 is no caching."
  5356. msgstr ""
  5357. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:316
  5358. msgid "Number of peer notifications after failover event"
  5359. msgstr ""
  5360. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:69
  5361. msgid "Obfuscated Group Password"
  5362. msgstr ""
  5363. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:61
  5364. msgid "Obfuscated Password"
  5365. msgstr ""
  5366. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:118
  5367. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:111
  5368. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:49
  5369. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:94
  5370. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:80
  5371. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:54
  5372. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:67
  5373. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:93
  5374. msgid "Obtain IPv6 address"
  5375. msgstr ""
  5376. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/none.js:19
  5377. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:87
  5378. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:357
  5379. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:342
  5380. msgid "Off"
  5381. msgstr ""
  5382. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/timer.js:18
  5383. msgid "Off-State Delay"
  5384. msgstr ""
  5385. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1560
  5386. msgid ""
  5387. "Off: <code>vlanXXX</code>, e.g., <code>vlan1</code>. On: "
  5388. "<code>vlan_tagged_interface.XXX</code>, e.g. <code>eth0.1</code>."
  5389. msgstr ""
  5390. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:652
  5391. msgid ""
  5392. "Off: use all files in the directory including the instance specific hosts "
  5393. "file"
  5394. msgstr ""
  5395. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/none.js:19
  5396. msgid "On"
  5397. msgstr ""
  5398. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:112
  5399. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:112
  5400. msgid "On a l2miss, send ARP"
  5401. msgstr ""
  5402. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:118
  5403. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:118
  5404. msgid "On a l3miss, send ARP for IP -> mac resolution"
  5405. msgstr ""
  5406. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/timer.js:12
  5407. msgid "On-State Delay"
  5408. msgstr ""
  5409. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:115
  5410. msgid "On-link"
  5411. msgstr ""
  5412. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:651
  5413. msgid "On: use instance specific hosts file only"
  5414. msgstr ""
  5415. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1219
  5416. msgid "One of hostname or MAC address must be specified!"
  5417. msgstr ""
  5418. #: modules/luci-base/htdocs/luci-static/resources/validation.js:520
  5419. msgid "One of the following: %s"
  5420. msgstr ""
  5421. #: modules/luci-compat/luasrc/view/cbi/nullsection.htm:17
  5422. #: modules/luci-compat/luasrc/view/cbi/ucisection.htm:22
  5423. msgid "One or more fields contain invalid values!"
  5424. msgstr ""
  5425. #: modules/luci-compat/luasrc/view/cbi/map.htm:32
  5426. msgid "One or more invalid/required values on tab"
  5427. msgstr ""
  5428. #: modules/luci-compat/luasrc/view/cbi/nullsection.htm:19
  5429. #: modules/luci-compat/luasrc/view/cbi/ucisection.htm:24
  5430. msgid "One or more required fields have no value!"
  5431. msgstr ""
  5432. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:908
  5433. msgid "Only DHCP Clients with this tag are sent this boot option."
  5434. msgstr ""
  5435. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:619
  5436. msgid "Only accept replies via"
  5437. msgstr ""
  5438. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:769
  5439. msgid "Only allow communication with non-isolated bridge ports when enabled"
  5440. msgstr ""
  5441. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:236
  5442. msgid ""
  5443. "Only if current active slave fails and the primary slave is up (failure, 2)"
  5444. msgstr ""
  5445. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:97
  5446. msgid "Only interfaces using this table (via override) will use this route."
  5447. msgstr ""
  5448. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:682
  5449. msgid "Open iptables rules overview…"
  5450. msgstr ""
  5451. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:474
  5452. msgid "Open list..."
  5453. msgstr ""
  5454. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:65
  5455. msgid "OpenConnect"
  5456. msgstr ""
  5457. #: modules/luci-compat/luasrc/model/network/proto_openconnect.lua:9
  5458. msgid "OpenConnect (CISCO AnyConnect)"
  5459. msgstr ""
  5460. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:63
  5461. msgid "OpenFortivpn"
  5462. msgstr ""
  5463. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:723
  5464. msgid ""
  5465. "Operate in <em>relay mode</em> if a designated master interface is "
  5466. "configured and active, otherwise disable <abbr title=\"Neighbour Discovery "
  5467. "Protocol\">NDP</abbr> proxying."
  5468. msgstr ""
  5469. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:722
  5470. msgid ""
  5471. "Operate in <em>relay mode</em> if a designated master interface is "
  5472. "configured and active, otherwise fall back to <em>server mode</em>."
  5473. msgstr ""
  5474. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:724
  5475. msgid ""
  5476. "Operate in <em>relay mode</em> if an upstream IPv6 prefix is present, "
  5477. "otherwise disable service."
  5478. msgstr ""
  5479. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1922
  5480. msgid "Operating Channel Validation"
  5481. msgstr ""
  5482. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1001
  5483. msgid "Operating frequency"
  5484. msgstr ""
  5485. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:100
  5486. msgid "Operator"
  5487. msgstr ""
  5488. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:101
  5489. msgid "Operator Code"
  5490. msgstr ""
  5491. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:135
  5492. msgid "Operator Name"
  5493. msgstr ""
  5494. #: modules/luci-base/htdocs/luci-static/resources/form.js:2008
  5495. #: modules/luci-base/htdocs/luci-static/resources/form.js:4193
  5496. msgid "Option \"%s\" contains an invalid input value."
  5497. msgstr ""
  5498. #: modules/luci-base/htdocs/luci-static/resources/form.js:2023
  5499. msgid "Option \"%s\" must not be empty."
  5500. msgstr ""
  5501. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4475
  5502. msgid "Option changed"
  5503. msgstr ""
  5504. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4477
  5505. msgid "Option removed"
  5506. msgstr ""
  5507. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1549
  5508. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1890
  5509. msgid "Optional"
  5510. msgstr ""
  5511. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1177
  5512. msgid "Optional hostname to assign"
  5513. msgstr ""
  5514. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:246
  5515. msgid ""
  5516. "Optional node info. This must be a { \"key\": \"value\", ... } map or set as "
  5517. "null. This is entirely optional but, if set, is visible to the whole network "
  5518. "on request."
  5519. msgstr ""
  5520. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:142
  5521. msgid "Optional, free-form notes about this device"
  5522. msgstr ""
  5523. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:147
  5524. msgid "Optional, in seconds. If set to '0', no reconnect is attempted."
  5525. msgstr ""
  5526. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:187
  5527. msgid ""
  5528. "Optional. 32-bit mark for outgoing encrypted packets. Enter value in hex, "
  5529. "starting with <code>0x</code>."
  5530. msgstr ""
  5531. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1101
  5532. msgid ""
  5533. "Optional. Allowed values: 'eui64', 'random', fixed value like '::1' or "
  5534. "'::1:2'. When IPv6 prefix (like 'a:b:c:d::') is received from a delegating "
  5535. "server, use the suffix (like '::1') to form the IPv6 address ('a:b:c:d::1') "
  5536. "for the interface."
  5537. msgstr ""
  5538. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:587
  5539. msgid ""
  5540. "Optional. Base64-encoded preshared key. Adds in an additional layer of "
  5541. "symmetric-key cryptography for post-quantum resistance."
  5542. msgstr ""
  5543. #: protocols/luci-proto-xfrm/htdocs/luci-static/resources/protocol/xfrm.js:42
  5544. msgid "Optional. Bind to a specific interface."
  5545. msgstr ""
  5546. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:644
  5547. msgid "Optional. Create routes for Allowed IPs for this peer."
  5548. msgstr ""
  5549. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:196
  5550. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:196
  5551. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:505
  5552. msgid "Optional. Description of peer."
  5553. msgstr ""
  5554. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:171
  5555. msgid "Optional. Do not create host routes to peers."
  5556. msgstr ""
  5557. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:647
  5558. msgid ""
  5559. "Optional. Host of peer. Names are resolved prior to bringing up the "
  5560. "interface."
  5561. msgstr ""
  5562. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:609
  5563. msgid ""
  5564. "Optional. IP addresses and prefixes that this peer is allowed to use inside "
  5565. "the tunnel. Usually the peer's tunnel IP addresses and the networks the peer "
  5566. "routes through the tunnel."
  5567. msgstr ""
  5568. #: protocols/luci-proto-xfrm/htdocs/luci-static/resources/protocol/xfrm.js:46
  5569. msgid "Optional. Maximum Transmission Unit of the XFRM interface."
  5570. msgstr ""
  5571. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:182
  5572. msgid "Optional. Maximum Transmission Unit of tunnel interface."
  5573. msgstr ""
  5574. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:663
  5575. msgid "Optional. Port of peer."
  5576. msgstr ""
  5577. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:578
  5578. msgid ""
  5579. "Optional. Private key of the WireGuard peer. The key is not required for "
  5580. "establishing a connection but allows generating a peer configuration or QR "
  5581. "code if available. It can be removed after the configuration has been "
  5582. "exported."
  5583. msgstr ""
  5584. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:668
  5585. msgid ""
  5586. "Optional. Seconds between keep alive messages. Default is 0 (disabled). "
  5587. "Recommended value if this device is behind a NAT is 25."
  5588. msgstr ""
  5589. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:162
  5590. msgid "Optional. UDP port used for outgoing and incoming packets."
  5591. msgstr ""
  5592. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:72
  5593. msgid "Options"
  5594. msgstr ""
  5595. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:125
  5596. msgid "Options:"
  5597. msgstr ""
  5598. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:969
  5599. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1001
  5600. msgid "Ordinal: lower comes first."
  5601. msgstr ""
  5602. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:83
  5603. msgid "Ordinal: routes with the lowest metric match first"
  5604. msgstr ""
  5605. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:55
  5606. msgid "Originator Interval"
  5607. msgstr ""
  5608. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:351
  5609. msgid "Other:"
  5610. msgstr ""
  5611. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:69
  5612. msgid "Out"
  5613. msgstr ""
  5614. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:277
  5615. msgid "Outbound:"
  5616. msgstr ""
  5617. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:101
  5618. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:106
  5619. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:103
  5620. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:108
  5621. msgid "Outgoing checksum"
  5622. msgstr ""
  5623. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:161
  5624. msgid "Outgoing interface"
  5625. msgstr ""
  5626. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:96
  5627. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:101
  5628. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:98
  5629. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:103
  5630. #: protocols/luci-proto-vti/htdocs/luci-static/resources/protocol/vti.js:68
  5631. msgid "Outgoing key"
  5632. msgstr ""
  5633. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:103
  5634. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:108
  5635. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:105
  5636. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:110
  5637. msgid "Outgoing serialization"
  5638. msgstr ""
  5639. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:50
  5640. msgid "Output Interface"
  5641. msgstr ""
  5642. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:68
  5643. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:174
  5644. msgid "Output zone"
  5645. msgstr ""
  5646. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:16
  5647. msgid "Overlap"
  5648. msgstr ""
  5649. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1038
  5650. msgid "Override IPv4 routing table"
  5651. msgstr ""
  5652. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1043
  5653. msgid "Override IPv6 routing table"
  5654. msgstr ""
  5655. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv_hardif.js:54
  5656. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:64
  5657. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:69
  5658. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:69
  5659. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:74
  5660. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:53
  5661. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:128
  5662. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:144
  5663. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:193
  5664. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:57
  5665. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:132
  5666. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:118
  5667. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:96
  5668. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:105
  5669. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:117
  5670. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:66
  5671. #: protocols/luci-proto-vti/htdocs/luci-static/resources/protocol/vti.js:55
  5672. msgid "Override MTU"
  5673. msgstr ""
  5674. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:74
  5675. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:79
  5676. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:63
  5677. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:142
  5678. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:142
  5679. msgid "Override TOS"
  5680. msgstr ""
  5681. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:69
  5682. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:74
  5683. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:74
  5684. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:79
  5685. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:58
  5686. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:137
  5687. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:137
  5688. msgid "Override TTL"
  5689. msgstr ""
  5690. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1228
  5691. msgid ""
  5692. "Override default MAC address - the range of usable addresses might be "
  5693. "limited by the driver"
  5694. msgstr ""
  5695. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1220
  5696. msgid "Override default interface name"
  5697. msgstr ""
  5698. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:167
  5699. msgid "Override the gateway in DHCP responses"
  5700. msgstr ""
  5701. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:690
  5702. msgid ""
  5703. "Override the netmask sent to clients. Normally it is calculated from the "
  5704. "subnet that is served."
  5705. msgstr ""
  5706. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:179
  5707. msgid "Override the table used for internal routes"
  5708. msgstr ""
  5709. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:3
  5710. msgid "Overview"
  5711. msgstr ""
  5712. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2795
  5713. msgid "Overwrite existing file \"%s\" ?"
  5714. msgstr ""
  5715. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:342
  5716. msgid "Overwrite the current settings with the imported configuration?"
  5717. msgstr ""
  5718. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:98
  5719. msgid "Own Numbers"
  5720. msgstr ""
  5721. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:70
  5722. msgid "Owner"
  5723. msgstr ""
  5724. #: modules/luci-base/htdocs/luci-static/resources/network.js:3911
  5725. msgid "P2P Client"
  5726. msgstr ""
  5727. #: modules/luci-base/htdocs/luci-static/resources/network.js:3912
  5728. msgid "P2P Go"
  5729. msgstr ""
  5730. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:78
  5731. msgid "PAP"
  5732. msgstr ""
  5733. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:77
  5734. msgid "PAP/CHAP"
  5735. msgstr ""
  5736. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:111
  5737. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:88
  5738. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:132
  5739. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:107
  5740. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:45
  5741. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:90
  5742. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:76
  5743. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:44
  5744. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:63
  5745. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:101
  5746. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:50
  5747. msgid "PAP/CHAP password"
  5748. msgstr ""
  5749. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:109
  5750. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:83
  5751. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:127
  5752. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:105
  5753. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:43
  5754. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:88
  5755. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:74
  5756. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:42
  5757. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:61
  5758. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:96
  5759. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:48
  5760. msgid "PAP/CHAP username"
  5761. msgstr ""
  5762. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:94
  5763. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:121
  5764. msgid "PDP Type"
  5765. msgstr ""
  5766. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:69
  5767. msgid "PID"
  5768. msgstr ""
  5769. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:106
  5770. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:73
  5771. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:76
  5772. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:102
  5773. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:86
  5774. msgid "PIN"
  5775. msgstr ""
  5776. #: modules/luci-base/htdocs/luci-static/resources/network.js:21
  5777. #: modules/luci-compat/luasrc/model/network.lua:39
  5778. msgid "PIN code rejected"
  5779. msgstr ""
  5780. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1708
  5781. msgid "PMK R1 Push"
  5782. msgstr ""
  5783. #: modules/luci-compat/luasrc/model/network/proto_ppp.lua:13
  5784. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:43
  5785. msgid "PPP"
  5786. msgstr ""
  5787. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:58
  5788. msgid "PPPoA Encapsulation"
  5789. msgstr ""
  5790. #: modules/luci-compat/luasrc/model/network/proto_ppp.lua:19
  5791. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:28
  5792. msgid "PPPoATM"
  5793. msgstr ""
  5794. #: modules/luci-compat/luasrc/model/network/proto_ppp.lua:17
  5795. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:28
  5796. msgid "PPPoE"
  5797. msgstr ""
  5798. #: modules/luci-compat/luasrc/model/network/proto_pppossh.lua:9
  5799. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:28
  5800. msgid "PPPoSSH"
  5801. msgstr ""
  5802. #: modules/luci-compat/luasrc/model/network/proto_ppp.lua:15
  5803. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:28
  5804. msgid "PPtP"
  5805. msgstr ""
  5806. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:73
  5807. msgid "PSID offset"
  5808. msgstr ""
  5809. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:70
  5810. msgid "PSID-bits length"
  5811. msgstr ""
  5812. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:559
  5813. msgctxt "Label indicating that WireGuard peer uses a PSK"
  5814. msgid "PSK"
  5815. msgstr ""
  5816. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1618
  5817. msgid "PTM/EFM (Packet Transfer Mode)"
  5818. msgstr ""
  5819. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:400
  5820. msgid "PXE/TFTP"
  5821. msgstr ""
  5822. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:103
  5823. msgid "Packet Service State"
  5824. msgstr ""
  5825. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1561
  5826. msgid "Packet Steering"
  5827. msgstr ""
  5828. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:25
  5829. msgctxt "nft meta mark"
  5830. msgid "Packet mark"
  5831. msgstr ""
  5832. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:27
  5833. msgctxt "nft meta time"
  5834. msgid "Packet receive time"
  5835. msgstr ""
  5836. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:54
  5837. msgid "Packets"
  5838. msgstr ""
  5839. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:282
  5840. msgid "Packets To Transmit Before Moving To Next Slave"
  5841. msgstr ""
  5842. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:90
  5843. msgid "Packets exceeding this value may be fragmented"
  5844. msgstr ""
  5845. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:291
  5846. msgid "Part of network:"
  5847. msgid_plural "Part of networks:"
  5848. msgstr[0] ""
  5849. msgstr[1] ""
  5850. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:139
  5851. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1280
  5852. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:259
  5853. msgid "Part of zone %q"
  5854. msgstr ""
  5855. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:492
  5856. msgctxt "MACVLAN mode"
  5857. msgid "Pass-through (Mirror physical device to single MAC VLAN)"
  5858. msgstr ""
  5859. #: modules/luci-base/ucode/template/sysauth.ut:29
  5860. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1881
  5861. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:51
  5862. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:148
  5863. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:103
  5864. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:58
  5865. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:298
  5866. #: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:19
  5867. msgid "Password"
  5868. msgstr ""
  5869. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:27
  5870. msgid "Password authentication"
  5871. msgstr ""
  5872. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1813
  5873. msgid "Password of Private Key"
  5874. msgstr ""
  5875. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1871
  5876. msgid "Password of inner Private Key"
  5877. msgstr ""
  5878. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:31
  5879. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:33
  5880. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:35
  5881. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:37
  5882. msgid "Password strength"
  5883. msgstr ""
  5884. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:151
  5885. msgid "Password2"
  5886. msgstr ""
  5887. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:266
  5888. msgid "Paste or drag SSH key file…"
  5889. msgstr ""
  5890. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:431
  5891. msgid "Paste or drag WireGuard peer configuration (wg0.conf) file…"
  5892. msgstr ""
  5893. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:424
  5894. msgid ""
  5895. "Paste or drag a WireGuard configuration (commonly <em>wg0.conf</em>) from "
  5896. "another system below to create a matching peer entry allowing that system to "
  5897. "connect to the local WireGuard interface."
  5898. msgstr ""
  5899. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:430
  5900. msgid "Paste or drag supplied WireGuard configuration file…"
  5901. msgstr ""
  5902. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1792
  5903. msgid "Path to CA-Certificate"
  5904. msgstr ""
  5905. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1807
  5906. msgid "Path to Client-Certificate"
  5907. msgstr ""
  5908. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1810
  5909. msgid "Path to Private Key"
  5910. msgstr ""
  5911. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1850
  5912. msgid "Path to inner CA-Certificate"
  5913. msgstr ""
  5914. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1865
  5915. msgid "Path to inner Client-Certificate"
  5916. msgstr ""
  5917. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1868
  5918. msgid "Path to inner Private Key"
  5919. msgstr ""
  5920. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2727
  5921. msgid "Paused"
  5922. msgstr ""
  5923. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:273
  5924. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:283
  5925. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:337
  5926. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:347
  5927. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:357
  5928. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:242
  5929. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:252
  5930. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:262
  5931. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:268
  5932. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:278
  5933. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:296
  5934. msgid "Peak:"
  5935. msgstr ""
  5936. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:74
  5937. msgid "Peer"
  5938. msgstr ""
  5939. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:51
  5940. msgid "Peer Details"
  5941. msgstr ""
  5942. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:210
  5943. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:241
  5944. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:210
  5945. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:241
  5946. msgid "Peer IP"
  5947. msgstr ""
  5948. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:89
  5949. msgid "Peer IP address to assign"
  5950. msgstr ""
  5951. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:667
  5952. msgid "Peer MAC address"
  5953. msgstr ""
  5954. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:276
  5955. msgid "Peer URI"
  5956. msgstr ""
  5957. #: modules/luci-base/htdocs/luci-static/resources/network.js:14
  5958. #: modules/luci-compat/luasrc/model/network.lua:32
  5959. msgid "Peer address is missing"
  5960. msgstr ""
  5961. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:270
  5962. msgid "Peer addresses"
  5963. msgstr ""
  5964. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:648
  5965. msgid "Peer device name"
  5966. msgstr ""
  5967. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:279
  5968. msgid "Peer interface"
  5969. msgstr ""
  5970. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:200
  5971. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:254
  5972. msgid "Peers"
  5973. msgstr ""
  5974. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:80
  5975. msgid "Perfect Forward Secrecy"
  5976. msgstr ""
  5977. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:103
  5978. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:108
  5979. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:105
  5980. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:110
  5981. msgid "Perform outgoing packets serialization (optional)."
  5982. msgstr ""
  5983. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:34
  5984. msgid "Perform reboot"
  5985. msgstr ""
  5986. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:408
  5987. msgid "Perform reset"
  5988. msgstr ""
  5989. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:407
  5990. msgid "Permission denied"
  5991. msgstr ""
  5992. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:668
  5993. msgid "Persistent Keep Alive"
  5994. msgstr ""
  5995. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:147
  5996. msgid "Persistent reconnect interval"
  5997. msgstr ""
  5998. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:321
  5999. msgid "PersistentKeepAlive setting is invalid"
  6000. msgstr ""
  6001. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:290
  6002. msgid "Phy Rate:"
  6003. msgstr ""
  6004. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:469
  6005. msgid "Physical Settings"
  6006. msgstr ""
  6007. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:87
  6008. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:88
  6009. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:98
  6010. msgid "Ping"
  6011. msgstr ""
  6012. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:49
  6013. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:50
  6014. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:86
  6015. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:87
  6016. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:138
  6017. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:64
  6018. msgid "Pkts."
  6019. msgstr ""
  6020. #: modules/luci-base/ucode/template/sysauth.ut:19
  6021. msgid "Please enter your username and password."
  6022. msgstr ""
  6023. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4211
  6024. msgid "Please select the file to upload."
  6025. msgstr ""
  6026. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:54
  6027. msgid "Policy"
  6028. msgstr ""
  6029. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:594
  6030. msgctxt "Chain hook policy"
  6031. msgid "Policy: <strong>%h</strong> (%h)"
  6032. msgstr ""
  6033. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:964
  6034. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:23
  6035. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:223
  6036. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:223
  6037. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:294
  6038. msgid "Port"
  6039. msgstr ""
  6040. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:137
  6041. msgctxt "WireGuard listen port"
  6042. msgid "Port %d"
  6043. msgstr ""
  6044. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:293
  6045. msgid "Port is not part of any network"
  6046. msgstr ""
  6047. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:769
  6048. msgid "Port isolation"
  6049. msgstr ""
  6050. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:299
  6051. msgid "Port status"
  6052. msgstr ""
  6053. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:278
  6054. msgid "Port status:"
  6055. msgstr ""
  6056. #: modules/luci-base/htdocs/luci-static/resources/validation.js:546
  6057. msgid "Potential negation of: %s"
  6058. msgstr ""
  6059. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:89
  6060. msgid "Power State"
  6061. msgstr ""
  6062. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:78
  6063. msgid "Prefer LTE"
  6064. msgstr ""
  6065. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:79
  6066. msgid "Prefer UMTS"
  6067. msgstr ""
  6068. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:995
  6069. msgid "Preferred lifetime for a prefix."
  6070. msgstr ""
  6071. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:108
  6072. msgid "Preferred network technology"
  6073. msgstr ""
  6074. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:37
  6075. msgid "Prefix Delegated"
  6076. msgstr ""
  6077. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:199
  6078. msgid "Prefix suppressor"
  6079. msgstr ""
  6080. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:587
  6081. msgid "Preshared Key"
  6082. msgstr ""
  6083. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:558
  6084. msgid "Preshared key in use"
  6085. msgstr ""
  6086. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:295
  6087. msgid "PresharedKey setting is invalid"
  6088. msgstr ""
  6089. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:130
  6090. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:102
  6091. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:88
  6092. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:62
  6093. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:75
  6094. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:98
  6095. msgid ""
  6096. "Presume peer to be dead after given amount of LCP echo failures, use 0 to "
  6097. "ignore failures"
  6098. msgstr ""
  6099. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1216
  6100. msgid "Prevents client-to-client communication"
  6101. msgstr ""
  6102. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:61
  6103. msgid ""
  6104. "Prevents one wireless client to talk to another. This setting only affects "
  6105. "packets without any VLAN tag (untagged packets)."
  6106. msgstr ""
  6107. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:200
  6108. msgid ""
  6109. "Prevents overly broad routes being considered. Setting 16 would "
  6110. "consider /17, /24, /28 or more specific routes yet ignore /16, /8, /0 "
  6111. "(default) routes"
  6112. msgstr ""
  6113. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:218
  6114. msgid "Primary Slave"
  6115. msgstr ""
  6116. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:235
  6117. msgid ""
  6118. "Primary becomes active slave when it comes back up if speed and duplex "
  6119. "better than current slave (better, 1)"
  6120. msgstr ""
  6121. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:234
  6122. msgid "Primary becomes active slave whenever it comes back up (always, 0)"
  6123. msgstr ""
  6124. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:562
  6125. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:969
  6126. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1001
  6127. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:135
  6128. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:207
  6129. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:233
  6130. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:146
  6131. msgid "Priority"
  6132. msgstr ""
  6133. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:553
  6134. msgctxt "Label indicating that WireGuard peer private key is stored"
  6135. msgid "Private"
  6136. msgstr ""
  6137. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:490
  6138. msgctxt "MACVLAN mode"
  6139. msgid "Private (Prevent communication between MAC VLANs)"
  6140. msgstr ""
  6141. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:137
  6142. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:578
  6143. msgid "Private Key"
  6144. msgstr ""
  6145. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1478
  6146. msgid ""
  6147. "Private Pre-Shared Key (PPSK) allows the use of different Pre-Shared Key for "
  6148. "each STA MAC address. Private MAC PSKs are stored on the RADIUS server."
  6149. msgstr ""
  6150. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:230
  6151. msgid "Private key"
  6152. msgstr ""
  6153. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:552
  6154. msgid "Private key present"
  6155. msgstr ""
  6156. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:283
  6157. msgid "PrivateKey setting is missing or invalid"
  6158. msgstr ""
  6159. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:64
  6160. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:93
  6161. msgid "Processes"
  6162. msgstr ""
  6163. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:67
  6164. msgid "Prot."
  6165. msgstr ""
  6166. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:82
  6167. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:549
  6168. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1197
  6169. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:387
  6170. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:36
  6171. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:201
  6172. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:227
  6173. msgid "Protocol"
  6174. msgstr ""
  6175. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:282
  6176. msgid "Provide NTP server"
  6177. msgstr ""
  6178. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:916
  6179. msgid ""
  6180. "Provide a DHCPv6 server on this interface and reply to DHCPv6 solicitations "
  6181. "and requests."
  6182. msgstr ""
  6183. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:944
  6184. msgid "Provide new network"
  6185. msgstr ""
  6186. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:288
  6187. msgid ""
  6188. "Provide the NTP server to the selected interface or, if unspecified, to all "
  6189. "interfaces"
  6190. msgstr ""
  6191. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:154
  6192. msgid "Proxy Server"
  6193. msgstr ""
  6194. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1764
  6195. msgid "ProxyARP"
  6196. msgstr ""
  6197. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1139
  6198. msgid "Pseudo Ad-Hoc (ahdemo)"
  6199. msgstr ""
  6200. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:144
  6201. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:573
  6202. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:37
  6203. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:54
  6204. msgid "Public Key"
  6205. msgstr ""
  6206. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:235
  6207. msgid "Public key"
  6208. msgstr ""
  6209. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:535
  6210. msgid "Public key is missing"
  6211. msgstr ""
  6212. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:544
  6213. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:101
  6214. msgctxt "Tooltip displaying full WireGuard peer public key"
  6215. msgid "Public key: %h"
  6216. msgstr ""
  6217. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:290
  6218. msgid ""
  6219. "Public keys allow for passwordless SSH logins with higher security than "
  6220. "plain passwords. In order to upload a new key to the device, paste an "
  6221. "OpenSSH-compatible public key or drag a <code>.pub</code> file into the "
  6222. "input field."
  6223. msgstr ""
  6224. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:193
  6225. msgid "Public prefix routed to this device for distribution to clients."
  6226. msgstr ""
  6227. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:292
  6228. msgid "PublicKey setting is invalid"
  6229. msgstr ""
  6230. #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:9
  6231. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:27
  6232. msgid "QMI Cellular"
  6233. msgstr ""
  6234. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:146
  6235. msgid "Quality"
  6236. msgstr ""
  6237. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:181
  6238. msgid ""
  6239. "Quantifies the cost or distance to a destination in a way that allows "
  6240. "routers to make informed decisions about the optimal path to forward data "
  6241. "packets"
  6242. msgstr ""
  6243. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:772
  6244. msgid "Query all available upstream resolvers."
  6245. msgstr ""
  6246. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:610
  6247. msgid "Query interval"
  6248. msgstr ""
  6249. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:615
  6250. msgid "Query response interval"
  6251. msgstr ""
  6252. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:646
  6253. msgid "Query upstream resolvers in the order they appear in the resolv file."
  6254. msgstr ""
  6255. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1696
  6256. msgid "R0 Key Lifetime"
  6257. msgstr ""
  6258. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1702
  6259. msgid "R1 Key Holder"
  6260. msgstr ""
  6261. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1531
  6262. msgid "RADIUS Access-Request attributes"
  6263. msgstr ""
  6264. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1505
  6265. msgid "RADIUS Accounting Port"
  6266. msgstr ""
  6267. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1511
  6268. msgid "RADIUS Accounting Secret"
  6269. msgstr ""
  6270. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1500
  6271. msgid "RADIUS Accounting Server"
  6272. msgstr ""
  6273. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1538
  6274. msgid "RADIUS Accounting-Request attributes"
  6275. msgstr ""
  6276. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1487
  6277. msgid "RADIUS Authentication Port"
  6278. msgstr ""
  6279. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1494
  6280. msgid "RADIUS Authentication Secret"
  6281. msgstr ""
  6282. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1481
  6283. msgid "RADIUS Authentication Server"
  6284. msgstr ""
  6285. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1545
  6286. msgid "RADIUS Dynamic VLAN Assignment"
  6287. msgstr ""
  6288. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1555
  6289. msgid "RADIUS Per STA VLAN"
  6290. msgstr ""
  6291. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1574
  6292. msgid "RADIUS VLAN Bridge Naming Scheme"
  6293. msgstr ""
  6294. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1560
  6295. msgid "RADIUS VLAN Naming"
  6296. msgstr ""
  6297. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1564
  6298. msgid "RADIUS VLAN Tagged Interface"
  6299. msgstr ""
  6300. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:88
  6301. msgid "RFC3947 NAT-T mode"
  6302. msgstr ""
  6303. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1598
  6304. msgid "RSN Preauth"
  6305. msgstr ""
  6306. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1065
  6307. msgid "RSSI threshold for joining"
  6308. msgstr ""
  6309. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1028
  6310. msgid "RTS/CTS Threshold"
  6311. msgstr ""
  6312. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:49
  6313. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:86
  6314. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:144
  6315. msgid "RX"
  6316. msgstr ""
  6317. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:236
  6318. msgid "RX Rate"
  6319. msgstr ""
  6320. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2414
  6321. msgid "RX Rate / TX Rate"
  6322. msgstr ""
  6323. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1725
  6324. msgid ""
  6325. "Radio Resource Measurement - Sends beacons to assist roaming. Not all "
  6326. "clients support this."
  6327. msgstr ""
  6328. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:61
  6329. msgctxt "nft nat flag random"
  6330. msgid "Randomize source port mapping"
  6331. msgstr ""
  6332. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1101
  6333. msgid "Raw Data"
  6334. msgstr ""
  6335. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:88
  6336. msgid "Raw hex-encoded bytes. Leave empty unless your ISP require this"
  6337. msgstr ""
  6338. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:626
  6339. msgid "Read {etc_ethers} to configure the DHCP server."
  6340. msgstr ""
  6341. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:554
  6342. msgid "Really switch protocol?"
  6343. msgstr ""
  6344. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:118
  6345. msgid "Realtime Graphs"
  6346. msgstr ""
  6347. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1679
  6348. msgid "Reassociation Deadline"
  6349. msgstr ""
  6350. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:507
  6351. msgid "Rebind protection"
  6352. msgstr ""
  6353. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:20
  6354. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:140
  6355. msgid "Reboot"
  6356. msgstr ""
  6357. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:153
  6358. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:162
  6359. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:46
  6360. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:51
  6361. msgid "Rebooting…"
  6362. msgstr ""
  6363. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:21
  6364. msgid "Reboots the operating system of your device"
  6365. msgstr ""
  6366. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:26
  6367. msgid "Receive"
  6368. msgstr ""
  6369. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:243
  6370. msgid "Receive dropped"
  6371. msgstr ""
  6372. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:242
  6373. msgid "Receive errors"
  6374. msgstr ""
  6375. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:57
  6376. msgid "Received Data"
  6377. msgstr ""
  6378. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:239
  6379. msgid "Received bytes"
  6380. msgstr ""
  6381. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:241
  6382. msgid "Received multicast"
  6383. msgstr ""
  6384. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:240
  6385. msgid "Received packets"
  6386. msgstr ""
  6387. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:167
  6388. msgid "Recommended. IP addresses of the WireGuard interface."
  6389. msgstr ""
  6390. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:198
  6391. msgid "Reconnect Timeout"
  6392. msgstr ""
  6393. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:494
  6394. msgid "Reconnect this interface"
  6395. msgstr ""
  6396. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/uhttpd.js:14
  6397. msgid "Redirect to HTTPS"
  6398. msgstr ""
  6399. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:118
  6400. msgctxt "nft redirect to port"
  6401. msgid "Redirect to local port <strong>%h</strong>"
  6402. msgstr ""
  6403. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:117
  6404. msgctxt "nft redirect"
  6405. msgid "Redirect to local system"
  6406. msgstr ""
  6407. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:57
  6408. msgid "References"
  6409. msgstr ""
  6410. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:417
  6411. msgid "Refresh Channels"
  6412. msgstr ""
  6413. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2721
  6414. msgid "Refreshing"
  6415. msgstr ""
  6416. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:102
  6417. msgid "Registration State"
  6418. msgstr ""
  6419. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:101
  6420. msgctxt "nft reject with icmp type"
  6421. msgid "Reject IPv4 packet with <strong>ICMP type %h</strong>"
  6422. msgstr ""
  6423. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:103
  6424. msgctxt "nft reject with icmpx type"
  6425. msgid "Reject packet with <strong>ICMP type %h</strong>"
  6426. msgstr ""
  6427. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:102
  6428. msgctxt "nft reject with icmpv6 type"
  6429. msgid "Reject packet with <strong>ICMPv6 type %h</strong>"
  6430. msgstr ""
  6431. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:100
  6432. msgctxt "nft reject with tcp reset"
  6433. msgid "Reject packet with <strong>TCP reset</strong>"
  6434. msgstr ""
  6435. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:680
  6436. msgid ""
  6437. "Reject reverse lookups to {rfc_6303_link} IP ranges ({reverse_arpa}) not in "
  6438. "{etc_hosts}."
  6439. msgstr ""
  6440. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:199
  6441. msgid ""
  6442. "Reject routing decisions that have a prefix length less than or equal to the "
  6443. "specified value"
  6444. msgstr ""
  6445. #: modules/luci-compat/luasrc/model/network/proto_relay.lua:153
  6446. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:399
  6447. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:996
  6448. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:39
  6449. msgid "Relay"
  6450. msgstr ""
  6451. #: modules/luci-compat/luasrc/model/network/proto_relay.lua:157
  6452. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:36
  6453. msgid "Relay Bridge"
  6454. msgstr ""
  6455. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:557
  6456. msgid "Relay DHCP requests elsewhere. OK: v4↔v4, v6↔v6. Not OK: v4↔v6, v6↔v4."
  6457. msgstr ""
  6458. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:154
  6459. msgid "Relay between networks"
  6460. msgstr ""
  6461. #: modules/luci-compat/luasrc/model/network/proto_relay.lua:12
  6462. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:64
  6463. msgid "Relay bridge"
  6464. msgstr ""
  6465. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:569
  6466. msgid "Relay from"
  6467. msgstr ""
  6468. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:589
  6469. msgid "Relay to address"
  6470. msgstr ""
  6471. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:100
  6472. msgid "Reload"
  6473. msgstr ""
  6474. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:50
  6475. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:49
  6476. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:41
  6477. msgid "Remote IPv4 address"
  6478. msgstr ""
  6479. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:42
  6480. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:42
  6481. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:40
  6482. #: protocols/luci-proto-vti/htdocs/luci-static/resources/protocol/vti.js:40
  6483. msgid "Remote IPv4 address or FQDN"
  6484. msgstr ""
  6485. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:41
  6486. msgid "Remote IPv6 address"
  6487. msgstr ""
  6488. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:42
  6489. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:42
  6490. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/ipip6.js:40
  6491. msgid "Remote IPv6 address or FQDN"
  6492. msgstr ""
  6493. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:43
  6494. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:43
  6495. msgid "Remote VTEP"
  6496. msgstr ""
  6497. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:968
  6498. msgid "Remove"
  6499. msgstr ""
  6500. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:697
  6501. msgid "Remove IPv4 addresses from the results and only return IPv6 addresses."
  6502. msgstr ""
  6503. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:691
  6504. msgid "Remove IPv6 addresses from the results and only return IPv4 addresses."
  6505. msgstr ""
  6506. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:752
  6507. msgid "Remove MAC address before forwarding query"
  6508. msgstr ""
  6509. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:753
  6510. msgid ""
  6511. "Remove any MAC address information already in downstream queries before "
  6512. "forwarding upstream."
  6513. msgstr ""
  6514. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:768
  6515. msgid ""
  6516. "Remove any subnet address already present in a downstream query before "
  6517. "forwarding it upstream."
  6518. msgstr ""
  6519. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:371
  6520. msgctxt "Dnsmasq instance"
  6521. msgid "Remove default instance"
  6522. msgstr ""
  6523. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:375
  6524. msgctxt "Dnsmasq instance"
  6525. msgid "Remove instance \"%q\""
  6526. msgstr ""
  6527. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:371
  6528. msgctxt "Dnsmasq instance"
  6529. msgid "Remove instance #%d"
  6530. msgstr ""
  6531. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1381
  6532. msgid "Remove related device settings from the configuration"
  6533. msgstr ""
  6534. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:767
  6535. msgid "Remove subnet address before forwarding query"
  6536. msgstr ""
  6537. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:701
  6538. msgid "Removes records of the specified type(s) from answers."
  6539. msgstr ""
  6540. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2254
  6541. msgid "Replace wireless configuration"
  6542. msgstr ""
  6543. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:108
  6544. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:108
  6545. msgid "Reply on Neighbour request when mapping found in VXLAN FDB"
  6546. msgstr ""
  6547. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:17
  6548. msgid "Request IPv6-address"
  6549. msgstr ""
  6550. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:23
  6551. msgid "Request IPv6-prefix of length"
  6552. msgstr ""
  6553. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:408
  6554. msgid "Request timeout"
  6555. msgstr ""
  6556. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:100
  6557. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:105
  6558. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:102
  6559. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:107
  6560. msgid "Require incoming checksum (optional)."
  6561. msgstr ""
  6562. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:102
  6563. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:107
  6564. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:104
  6565. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:109
  6566. msgid "Require incoming packets serialization (optional)."
  6567. msgstr ""
  6568. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1550
  6569. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1891
  6570. msgid "Required"
  6571. msgstr ""
  6572. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34
  6573. msgid "Required for certain ISPs, e.g. Charter with DOCSIS 3"
  6574. msgstr ""
  6575. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:137
  6576. msgid "Required. Base64-encoded private key for this interface."
  6577. msgstr ""
  6578. #: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:40
  6579. msgid "Required. Path to the .yml config file for this interface."
  6580. msgstr ""
  6581. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:573
  6582. msgid "Required. Public key of the WireGuard peer."
  6583. msgstr ""
  6584. #: protocols/luci-proto-xfrm/htdocs/luci-static/resources/protocol/xfrm.js:39
  6585. msgid "Required. XFRM interface ID to be used for SA."
  6586. msgstr ""
  6587. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1545
  6588. msgid ""
  6589. "Required: Rejects auth if RADIUS server does not provide appropriate VLAN "
  6590. "attributes."
  6591. msgstr ""
  6592. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1392
  6593. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1393
  6594. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1394
  6595. msgid "Requires hostapd"
  6596. msgstr ""
  6597. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1399
  6598. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1400
  6599. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1401
  6600. msgid "Requires hostapd with EAP Suite-B support"
  6601. msgstr ""
  6602. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1397
  6603. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1398
  6604. msgid "Requires hostapd with EAP support"
  6605. msgstr ""
  6606. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1402
  6607. msgid "Requires hostapd with OWE support"
  6608. msgstr ""
  6609. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1395
  6610. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1396
  6611. msgid "Requires hostapd with SAE support"
  6612. msgstr ""
  6613. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1390
  6614. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1391
  6615. msgid "Requires hostapd with WEP support"
  6616. msgstr ""
  6617. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1407
  6618. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1408
  6619. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1409
  6620. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1422
  6621. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1423
  6622. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1424
  6623. msgid "Requires wpa-supplicant"
  6624. msgstr ""
  6625. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1414
  6626. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1415
  6627. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1416
  6628. msgid "Requires wpa-supplicant with EAP Suite-B support"
  6629. msgstr ""
  6630. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1412
  6631. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1413
  6632. msgid "Requires wpa-supplicant with EAP support"
  6633. msgstr ""
  6634. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1417
  6635. msgid "Requires wpa-supplicant with OWE support"
  6636. msgstr ""
  6637. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1410
  6638. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1411
  6639. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1427
  6640. msgid "Requires wpa-supplicant with SAE support"
  6641. msgstr ""
  6642. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1405
  6643. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1406
  6644. msgid "Requires wpa-supplicant with WEP support"
  6645. msgstr ""
  6646. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:231
  6647. msgid "Reselection policy for primary slave"
  6648. msgstr ""
  6649. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2197
  6650. #: modules/luci-base/ucode/template/sysauth.ut:39
  6651. #: modules/luci-compat/luasrc/view/cbi/delegator.htm:17
  6652. #: modules/luci-compat/luasrc/view/cbi/footer.htm:30
  6653. #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:66
  6654. msgid "Reset"
  6655. msgstr ""
  6656. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:347
  6657. msgid "Reset Counters"
  6658. msgstr ""
  6659. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:406
  6660. msgid "Reset to defaults"
  6661. msgstr ""
  6662. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:396
  6663. msgid "Resolv &amp; Hosts Files"
  6664. msgstr ""
  6665. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:638
  6666. msgid "Resolv file"
  6667. msgstr ""
  6668. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:477
  6669. msgid "Resolve specified FQDNs to an IP."
  6670. msgstr ""
  6671. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:423
  6672. msgid "Resolve these locally"
  6673. msgstr ""
  6674. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1091
  6675. msgid "Resource Record Name"
  6676. msgstr ""
  6677. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1096
  6678. msgid "Resource Record Number"
  6679. msgstr ""
  6680. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:405
  6681. msgid "Resource not found"
  6682. msgstr ""
  6683. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:496
  6684. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:936
  6685. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:99
  6686. msgid "Restart"
  6687. msgstr ""
  6688. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:352
  6689. msgid "Restart Firewall"
  6690. msgstr ""
  6691. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:934
  6692. msgid "Restart radio interface"
  6693. msgstr ""
  6694. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:402
  6695. msgid "Restore"
  6696. msgstr ""
  6697. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:412
  6698. msgid "Restore backup"
  6699. msgstr ""
  6700. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:366
  6701. msgid ""
  6702. "Retrieve the listener addresses from the Yggdrasil interface configuration."
  6703. msgstr ""
  6704. #: modules/luci-base/htdocs/luci-static/resources/ui.js:386
  6705. #: modules/luci-base/htdocs/luci-static/resources/ui.js:387
  6706. msgid "Reveal/hide password"
  6707. msgstr ""
  6708. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:679
  6709. msgid "Reverse path filter"
  6710. msgstr ""
  6711. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4499
  6712. msgid "Revert"
  6713. msgstr ""
  6714. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4606
  6715. msgid "Revert changes"
  6716. msgstr ""
  6717. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4817
  6718. msgid "Revert request failed with status <code>%h</code>"
  6719. msgstr ""
  6720. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4797
  6721. msgid "Reverting configuration…"
  6722. msgstr ""
  6723. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:84
  6724. msgid "Revision"
  6725. msgstr ""
  6726. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:111
  6727. msgctxt "nft dnat ip to addr"
  6728. msgid "Rewrite destination to <strong>%h</strong>"
  6729. msgstr ""
  6730. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:114
  6731. msgctxt "nft dnat ip6 to addr"
  6732. msgid "Rewrite destination to <strong>%h</strong>"
  6733. msgstr ""
  6734. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:112
  6735. msgctxt "nft dnat ip to addr:port"
  6736. msgid "Rewrite destination to <strong>%h</strong>, port <strong>%h</strong>"
  6737. msgstr ""
  6738. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:115
  6739. msgctxt "nft dnat ip6 to addr:port"
  6740. msgid "Rewrite destination to <strong>%h</strong>, port <strong>%h</strong>"
  6741. msgstr ""
  6742. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:105
  6743. msgctxt "nft snat ip to addr"
  6744. msgid "Rewrite source to <strong>%h</strong>"
  6745. msgstr ""
  6746. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:108
  6747. msgctxt "nft snat ip6 to addr"
  6748. msgid "Rewrite source to <strong>%h</strong>"
  6749. msgstr ""
  6750. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:106
  6751. msgctxt "nft snat ip to addr:port"
  6752. msgid "Rewrite source to <strong>%h</strong>, port <strong>%h</strong>"
  6753. msgstr ""
  6754. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:109
  6755. msgctxt "nft snat ip6 to addr:port"
  6756. msgid "Rewrite source to <strong>%h</strong>, port <strong>%h</strong>"
  6757. msgstr ""
  6758. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:120
  6759. msgid "Rewrite to egress device address"
  6760. msgstr ""
  6761. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1598
  6762. msgid ""
  6763. "Robust Security Network (RSN): Allow roaming preauth for WPA2-EAP networks "
  6764. "(and advertise it in WLAN beacons). Only works if the specified network "
  6765. "interface is a bridge. Shortens the time-critical reassociation process."
  6766. msgstr ""
  6767. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:605
  6768. msgid "Robustness"
  6769. msgstr ""
  6770. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:860
  6771. msgid ""
  6772. "Root directory for files served via TFTP. <em>Enable TFTP server</em> and "
  6773. "<em>TFTP server root</em> turn on the TFTP server and serve files from "
  6774. "<em>TFTP server root</em>."
  6775. msgstr ""
  6776. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:298
  6777. msgid "Root preparation"
  6778. msgstr ""
  6779. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:209
  6780. msgid "Round-Robin policy (balance-rr, 0)"
  6781. msgstr ""
  6782. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:644
  6783. msgid "Route Allowed IPs"
  6784. msgstr ""
  6785. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:532
  6786. msgid "Route action chain \"%h\""
  6787. msgstr ""
  6788. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:103
  6789. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:103
  6790. msgid "Route short-circuit (RSC)"
  6791. msgstr ""
  6792. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:48
  6793. msgid "Route type"
  6794. msgstr ""
  6795. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:864
  6796. msgid ""
  6797. "Router Lifetime published in <abbr title=\"Router Advertisement, ICMPv6 Type "
  6798. "134\">RA</abbr> messages. Maximum is 9000 seconds."
  6799. msgstr ""
  6800. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:46
  6801. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:26
  6802. msgid "Router Password"
  6803. msgstr ""
  6804. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:29
  6805. msgid ""
  6806. "Routes go in routing tables and define the specific path to reach "
  6807. "destinations."
  6808. msgstr ""
  6809. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:28
  6810. #: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:50
  6811. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:258
  6812. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:15
  6813. msgid "Routing"
  6814. msgstr ""
  6815. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:44
  6816. msgid "Routing Algorithm"
  6817. msgstr ""
  6818. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:28
  6819. msgid ""
  6820. "Routing defines over which interface and gateway a certain host or network "
  6821. "can be reached."
  6822. msgstr ""
  6823. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:95
  6824. msgid "Routing table into which to insert this rule."
  6825. msgstr ""
  6826. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:172
  6827. msgid "Routing table to use for traffic matching this rule."
  6828. msgstr ""
  6829. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:218
  6830. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:208
  6831. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:234
  6832. msgid "Rule"
  6833. msgstr ""
  6834. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:602
  6835. msgid "Rule actions"
  6836. msgstr ""
  6837. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:475
  6838. msgctxt "nft comment"
  6839. msgid "Rule comment: %s"
  6840. msgstr ""
  6841. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:540
  6842. msgid "Rule container chain \"%h\""
  6843. msgstr ""
  6844. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:601
  6845. msgid "Rule matches"
  6846. msgstr ""
  6847. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:142
  6848. msgid "Rule type"
  6849. msgstr ""
  6850. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:30
  6851. msgid ""
  6852. "Rules determine which routing table to use, based on conditions like source "
  6853. "address or interface."
  6854. msgstr ""
  6855. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2360
  6856. msgid "Runtime error"
  6857. msgstr ""
  6858. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:226
  6859. msgid "SHA256"
  6860. msgstr ""
  6861. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:145
  6862. msgid "SIM %d"
  6863. msgstr ""
  6864. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:147
  6865. msgid "SIMs"
  6866. msgstr ""
  6867. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:59
  6868. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:280
  6869. msgid "SNR"
  6870. msgstr ""
  6871. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:935
  6872. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:954
  6873. msgid "SRV"
  6874. msgstr ""
  6875. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:10
  6876. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:38
  6877. msgid "SSH Access"
  6878. msgstr ""
  6879. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:70
  6880. msgid "SSH server address"
  6881. msgstr ""
  6882. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:74
  6883. msgid "SSH server port"
  6884. msgstr ""
  6885. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:58
  6886. msgid "SSH username"
  6887. msgstr ""
  6888. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:289
  6889. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:51
  6890. msgid "SSH-Keys"
  6891. msgstr ""
  6892. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:156
  6893. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:181
  6894. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1970
  6895. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:443
  6896. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:147
  6897. msgid "SSID"
  6898. msgstr ""
  6899. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:9
  6900. msgid "SSTP"
  6901. msgstr ""
  6902. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:44
  6903. msgid "SSTP Port"
  6904. msgstr ""
  6905. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:41
  6906. msgid "SSTP Server"
  6907. msgstr ""
  6908. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:338
  6909. msgid "SWAP"
  6910. msgstr ""
  6911. #: modules/luci-base/htdocs/luci-static/resources/form.js:3232
  6912. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2192
  6913. #: modules/luci-compat/luasrc/view/cbi/error.htm:17
  6914. #: modules/luci-compat/luasrc/view/cbi/footer.htm:26
  6915. #: modules/luci-compat/luasrc/view/cbi/header.htm:20
  6916. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:465
  6917. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:123
  6918. msgid "Save"
  6919. msgstr ""
  6920. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2174
  6921. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4487
  6922. #: modules/luci-compat/luasrc/view/cbi/footer.htm:22
  6923. msgid "Save & Apply"
  6924. msgstr ""
  6925. #: modules/luci-base/htdocs/luci-static/resources/form.js:609
  6926. msgid "Save error"
  6927. msgstr ""
  6928. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:436
  6929. msgid "Save mtdblock"
  6930. msgstr ""
  6931. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:426
  6932. msgid "Save mtdblock contents"
  6933. msgstr ""
  6934. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:941
  6935. msgid "Scan"
  6936. msgstr ""
  6937. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/crontab.js:28
  6938. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:90
  6939. msgid "Scheduled Tasks"
  6940. msgstr ""
  6941. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/dmesg.js:47
  6942. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/syslog.js:51
  6943. msgctxt "scroll to top (the head) of the log file"
  6944. msgid "Scroll to head"
  6945. msgstr ""
  6946. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/dmesg.js:38
  6947. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/syslog.js:42
  6948. msgctxt "scroll to bottom (the tail) of the log file"
  6949. msgid "Scroll to tail"
  6950. msgstr ""
  6951. #: protocols/luci-proto-external/htdocs/luci-static/resources/protocol/external.js:41
  6952. msgid "Search domain"
  6953. msgstr ""
  6954. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:39
  6955. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:62
  6956. msgid "Section %s is empty."
  6957. msgstr ""
  6958. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4471
  6959. msgid "Section added"
  6960. msgstr ""
  6961. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4473
  6962. msgid "Section removed"
  6963. msgstr ""
  6964. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:332
  6965. msgid "See \"mount\" manpage for details"
  6966. msgstr ""
  6967. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:285
  6968. msgid ""
  6969. "Select 'Force upgrade' to flash the image even if the image format check "
  6970. "fails. Use only if you are sure that the firmware is correct and meant for "
  6971. "your device!"
  6972. msgstr ""
  6973. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2686
  6974. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2836
  6975. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3000
  6976. msgid "Select file…"
  6977. msgstr ""
  6978. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:325
  6979. msgid "Selects the transmit hash policy to use for slave selection"
  6980. msgstr ""
  6981. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:791
  6982. msgid ""
  6983. "Send <abbr title=\"Router Advertisement, ICMPv6 Type 134\">RA</abbr> "
  6984. "messages advertising this device as IPv6 router."
  6985. msgstr ""
  6986. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:704
  6987. msgid "Send ICMP redirects"
  6988. msgstr ""
  6989. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:143
  6990. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:115
  6991. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:101
  6992. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:75
  6993. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:88
  6994. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:111
  6995. msgid ""
  6996. "Send LCP echo requests at the given interval in seconds, only effective in "
  6997. "conjunction with failure threshold"
  6998. msgstr ""
  6999. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:290
  7000. msgid "Send multicast beacon"
  7001. msgstr ""
  7002. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:24
  7003. msgid "Send the hostname of this device"
  7004. msgstr ""
  7005. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:89
  7006. msgid "Server"
  7007. msgstr ""
  7008. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:894
  7009. msgid "Server address"
  7010. msgstr ""
  7011. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:888
  7012. msgid "Server name"
  7013. msgstr ""
  7014. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:50
  7015. msgid "Service Name"
  7016. msgstr ""
  7017. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:88
  7018. msgid "Service Type"
  7019. msgstr ""
  7020. #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:36
  7021. msgid "Services"
  7022. msgstr ""
  7023. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2664
  7024. msgid "Session expired"
  7025. msgstr ""
  7026. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:126
  7027. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:175
  7028. msgid "Set Static"
  7029. msgstr ""
  7030. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:849
  7031. msgid "Set a maximum seconds TTL value for entries in the cache."
  7032. msgstr ""
  7033. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1007
  7034. msgid "Set an alias for a hostname."
  7035. msgstr ""
  7036. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1058
  7037. msgid "Set an arbitrary resource record (RR) type."
  7038. msgstr ""
  7039. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:122
  7040. msgctxt "nft mangle"
  7041. msgid "Set header field <var>%s</var> to <strong>%s</strong>"
  7042. msgstr ""
  7043. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:991
  7044. msgid "Set interface as NDP-Proxy external slave. Default is off."
  7045. msgstr ""
  7046. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1319
  7047. msgid ""
  7048. "Set interface properties regardless of the link carrier (If set, carrier "
  7049. "sense events do not invoke hotplug handlers)."
  7050. msgstr ""
  7051. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:447
  7052. msgid "Set log class/facility for syslog entries."
  7053. msgstr ""
  7054. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:307
  7055. msgid "Set same MAC Address to all slaves"
  7056. msgstr ""
  7057. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:810
  7058. msgid ""
  7059. "Set the autonomous address-configuration flag in the prefix information "
  7060. "options of sent <abbr title=\"Router Advertisement\">RA</abbr> messages. "
  7061. "When enabled, clients will perform stateless IPv6 address autoconfiguration."
  7062. msgstr ""
  7063. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:718
  7064. msgid ""
  7065. "Set this interface as master for RA and DHCPv6 relaying as well as NDP "
  7066. "proxying."
  7067. msgstr ""
  7068. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:311
  7069. msgid "Set to currently active slave (active, 1)"
  7070. msgstr ""
  7071. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:312
  7072. msgid "Set to first slave added to the bond (follow, 2)"
  7073. msgstr ""
  7074. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:645
  7075. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:661
  7076. msgid "Set up DHCP Server"
  7077. msgstr ""
  7078. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:986
  7079. msgid "Set up routes for proxied IPv6 neighbours."
  7080. msgstr ""
  7081. #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:55
  7082. #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:55
  7083. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:23
  7084. msgid "Setting PLMN failed"
  7085. msgstr ""
  7086. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:68
  7087. msgid "Setting operation mode failed"
  7088. msgstr ""
  7089. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:89
  7090. msgid "Setting the allowed network technology."
  7091. msgstr ""
  7092. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:109
  7093. msgid "Setting the preferred network technology."
  7094. msgstr ""
  7095. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/uhttpd.js:11
  7096. msgid "Settings"
  7097. msgstr ""
  7098. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1050
  7099. msgid ""
  7100. "Settings for assisting wireless clients in roaming between multiple APs: "
  7101. "802.11r, 802.11k and 802.11v"
  7102. msgstr ""
  7103. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:212
  7104. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:39
  7105. msgid "Short GI"
  7106. msgstr ""
  7107. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1233
  7108. msgid "Short Preamble"
  7109. msgstr ""
  7110. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:472
  7111. msgid "Show current backup file list"
  7112. msgstr ""
  7113. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:297
  7114. msgid "Show empty chains"
  7115. msgstr ""
  7116. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:280
  7117. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:342
  7118. msgid "Show raw counters"
  7119. msgstr ""
  7120. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:500
  7121. msgid "Shutdown this interface"
  7122. msgstr ""
  7123. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:57
  7124. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:63
  7125. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:186
  7126. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1969
  7127. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:42
  7128. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:442
  7129. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:146
  7130. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:235
  7131. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:278
  7132. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:284
  7133. msgid "Signal"
  7134. msgstr ""
  7135. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2413
  7136. msgid "Signal / Noise"
  7137. msgstr ""
  7138. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:104
  7139. msgid "Signal Quality"
  7140. msgstr ""
  7141. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:148
  7142. msgid "Signal Refresh Rate"
  7143. msgstr ""
  7144. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:262
  7145. msgid "Signal:"
  7146. msgstr ""
  7147. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4235
  7148. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:224
  7149. msgid "Size"
  7150. msgstr ""
  7151. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:834
  7152. msgid "Size of DNS query cache"
  7153. msgstr ""
  7154. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:208
  7155. msgid "Size of the ZRam device in megabytes"
  7156. msgstr ""
  7157. #: modules/luci-compat/luasrc/view/cbi/footer.htm:18
  7158. #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:57
  7159. msgid "Skip"
  7160. msgstr ""
  7161. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:259
  7162. msgid "Skip from backup files that are equal to those in /rom"
  7163. msgstr ""
  7164. #: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:35
  7165. #: themes/luci-theme-openwrt/ucode/template/themes/openwrt.org/header.ut:38
  7166. msgid "Skip to content"
  7167. msgstr ""
  7168. #: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:34
  7169. #: themes/luci-theme-openwrt/ucode/template/themes/openwrt.org/header.ut:37
  7170. msgid "Skip to navigation"
  7171. msgstr ""
  7172. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:185
  7173. msgid "Slave Interfaces"
  7174. msgstr ""
  7175. #: modules/luci-base/htdocs/luci-static/resources/network.js:3036
  7176. #: modules/luci-compat/luasrc/model/network.lua:1428
  7177. msgid "Software VLAN"
  7178. msgstr ""
  7179. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1001
  7180. msgid ""
  7181. "Some channels may be restricted to Indoor Only use by your Regulatory "
  7182. "Domain. Make sure to follow this advice if a channel is reported as such."
  7183. msgstr ""
  7184. #: modules/luci-compat/luasrc/view/cbi/header.htm:5
  7185. msgid "Some fields are invalid, cannot save values!"
  7186. msgstr ""
  7187. #: modules/luci-base/ucode/template/error404.ut:10
  7188. msgid "Sorry, the object you requested was not found."
  7189. msgstr ""
  7190. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:444
  7191. msgid ""
  7192. "Sorry, there is no sysupgrade support present; a new firmware image must be "
  7193. "flashed manually. Please refer to the wiki for device specific install "
  7194. "instructions."
  7195. msgstr ""
  7196. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:105
  7197. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:154
  7198. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:388
  7199. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:70
  7200. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:224
  7201. msgid "Source"
  7202. msgstr ""
  7203. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:43
  7204. msgctxt "nft ip saddr"
  7205. msgid "Source IP"
  7206. msgstr ""
  7207. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:47
  7208. msgctxt "nft ip6 saddr"
  7209. msgid "Source IPv6"
  7210. msgstr ""
  7211. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:251
  7212. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:251
  7213. msgid "Source VNI"
  7214. msgstr ""
  7215. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57
  7216. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:57
  7217. msgid "Source interface"
  7218. msgstr ""
  7219. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:45
  7220. msgctxt "nft ip sport"
  7221. msgid "Source port"
  7222. msgstr ""
  7223. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:57
  7224. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:57
  7225. msgid "Source port range"
  7226. msgstr ""
  7227. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:874
  7228. msgid ""
  7229. "Special <abbr title=\"Preboot eXecution Environment\">PXE</abbr> boot "
  7230. "options for Dnsmasq."
  7231. msgstr ""
  7232. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:943
  7233. msgid ""
  7234. "Specifies a fixed list of DNS search domains to announce via DHCPv6. If left "
  7235. "unspecified, the local device DNS search domain will be announced."
  7236. msgstr ""
  7237. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:927
  7238. msgid ""
  7239. "Specifies a fixed list of IPv6 DNS server addresses to announce via DHCPv6. "
  7240. "If left unspecified, the device will announce itself as IPv6 DNS server "
  7241. "unless the <em>Local IPv6 DNS server</em> option is disabled."
  7242. msgstr ""
  7243. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:194
  7244. msgid ""
  7245. "Specifies an individual UID or range of UIDs to match, e.g. 1000 to match "
  7246. "corresponding UID or 1000-1005 to inclusively match all UIDs within the "
  7247. "corresponding range"
  7248. msgstr ""
  7249. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:348
  7250. msgid ""
  7251. "Specifies that duplicate frames (received on inactive ports) should be "
  7252. "dropped or delivered"
  7253. msgstr ""
  7254. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:364
  7255. msgid "Specifies the ARP link monitoring frequency in milliseconds"
  7256. msgstr ""
  7257. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:372
  7258. msgid "Specifies the IP addresses to use for ARP monitoring"
  7259. msgstr ""
  7260. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:401
  7261. msgid "Specifies the MII link monitoring frequency in milliseconds"
  7262. msgstr ""
  7263. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:189
  7264. msgid "Specifies the TOS value to match in IP headers"
  7265. msgstr ""
  7266. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:266
  7267. msgid "Specifies the aggregation selection logic to use"
  7268. msgstr ""
  7269. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:293
  7270. msgid "Specifies the directory the device is attached to"
  7271. msgstr ""
  7272. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:816
  7273. msgid ""
  7274. "Specifies the flags sent in <abbr title=\"Router Advertisement\">RA</abbr> "
  7275. "messages, for example to instruct clients to request further information via "
  7276. "stateful DHCPv6."
  7277. msgstr ""
  7278. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:184
  7279. msgid ""
  7280. "Specifies the fwmark and optionally its mask to match, e.g. 0xFF to match "
  7281. "mark 255 or 0x0/0x1 to match any even mark value"
  7282. msgstr ""
  7283. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:43
  7284. msgid ""
  7285. "Specifies the logical interface name of the parent (or master) interface "
  7286. "this route belongs to"
  7287. msgstr ""
  7288. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:259
  7289. msgid ""
  7290. "Specifies the mac-address for the actor in protocol packet exchanges "
  7291. "(LACPDUs). If empty, masters' mac address defaults to system default"
  7292. msgstr ""
  7293. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:175
  7294. msgid ""
  7295. "Specifies the maximum amount of failed ARP requests until hosts are presumed "
  7296. "to be dead"
  7297. msgstr ""
  7298. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:171
  7299. msgid ""
  7300. "Specifies the maximum amount of seconds after which hosts are presumed to be "
  7301. "dead"
  7302. msgstr ""
  7303. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1008
  7304. msgid ""
  7305. "Specifies the maximum transmit power the wireless radio may use. Depending "
  7306. "on regulatory requirements and wireless usage, the actual transmit power may "
  7307. "be reduced by the driver."
  7308. msgstr ""
  7309. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:243
  7310. msgid ""
  7311. "Specifies the minimum number of links that must be active before asserting "
  7312. "carrier"
  7313. msgstr ""
  7314. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:207
  7315. msgid "Specifies the mode to be used for this bonding interface"
  7316. msgstr ""
  7317. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:79
  7318. msgid ""
  7319. "Specifies the network gateway. If omitted, the gateway from the parent "
  7320. "interface is taken if any, otherwise creates a link scope route. If set to "
  7321. "0.0.0.0 no gateway will be specified for the route"
  7322. msgstr ""
  7323. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:339
  7324. msgid ""
  7325. "Specifies the number of IGMP membership reports to be issued after a "
  7326. "failover event in 200ms intervals"
  7327. msgstr ""
  7328. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:283
  7329. msgid ""
  7330. "Specifies the number of packets to transmit through a slave before moving to "
  7331. "the next one"
  7332. msgstr ""
  7333. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:317
  7334. msgid ""
  7335. "Specifies the number of peer notifications (gratuitous ARPs and unsolicited "
  7336. "IPv6 Neighbor Advertisements) to be issued after a failover event"
  7337. msgstr ""
  7338. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:291
  7339. msgid ""
  7340. "Specifies the number of seconds between instances where the bonding driver "
  7341. "sends learning packets to each slaves peer switch"
  7342. msgstr ""
  7343. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:105
  7344. msgid ""
  7345. "Specifies the preferred source address when sending to destinations covered "
  7346. "by the target"
  7347. msgstr ""
  7348. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:380
  7349. msgid "Specifies the quantity of ARP IP targets that must be reachable"
  7350. msgstr ""
  7351. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:275
  7352. msgid ""
  7353. "Specifies the rate in which the link partner will be asked to transmit "
  7354. "LACPDU packets"
  7355. msgstr ""
  7356. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:232
  7357. msgid ""
  7358. "Specifies the reselection policy for the primary slave when failure of the "
  7359. "active slave or recovery of the primary slave occurs"
  7360. msgstr ""
  7361. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:48
  7362. msgid "Specifies the route type to be created"
  7363. msgstr ""
  7364. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:142
  7365. msgid "Specifies the rule target routing action"
  7366. msgstr ""
  7367. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:251
  7368. msgid "Specifies the system priority"
  7369. msgstr ""
  7370. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:409
  7371. msgid ""
  7372. "Specifies the time in milliseconds to wait before disabling a slave after a "
  7373. "link failure detection"
  7374. msgstr ""
  7375. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:417
  7376. msgid ""
  7377. "Specifies the time in milliseconds to wait before enabling a slave after a "
  7378. "link recovery detection"
  7379. msgstr ""
  7380. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:548
  7381. msgid ""
  7382. "Specifies the wired ports to attach to this bridge. In order to attach "
  7383. "wireless networks, choose the associated interface as network in the "
  7384. "wireless settings."
  7385. msgstr ""
  7386. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:388
  7387. msgid ""
  7388. "Specifies whether ARP probes and replies should be validated or non-ARP "
  7389. "traffic should be filtered for link monitoring"
  7390. msgstr ""
  7391. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:308
  7392. msgid ""
  7393. "Specifies whether active-backup mode should set all slaves to the same MAC "
  7394. "address at enslavement"
  7395. msgstr ""
  7396. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:425
  7397. msgid ""
  7398. "Specifies whether or not miimon should use MII or ETHTOOL ioctls vs. "
  7399. "netif_carrier_ok()"
  7400. msgstr ""
  7401. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:300
  7402. msgid ""
  7403. "Specifies whether to shuffle active flows across slaves based on the load"
  7404. msgstr ""
  7405. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:186
  7406. msgid ""
  7407. "Specifies which slave interfaces should be attached to this bonding interface"
  7408. msgstr ""
  7409. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:219
  7410. msgid ""
  7411. "Specifies which slave is the primary device. It will always be the active "
  7412. "slave while it is available"
  7413. msgstr ""
  7414. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:63
  7415. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:142
  7416. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:142
  7417. msgid "Specify a TOS (Type of Service)."
  7418. msgstr ""
  7419. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:74
  7420. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:79
  7421. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:79
  7422. msgid ""
  7423. "Specify a TOS (Type of Service). Can be <code>inherit</code> (the outer "
  7424. "header inherits the value of the inner header) or an hexadecimal value "
  7425. "<code>00..FF</code> (optional)."
  7426. msgstr ""
  7427. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:74
  7428. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:74
  7429. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:79
  7430. msgid ""
  7431. "Specify a TTL (Time to Live) for the encapsulating packet other than the "
  7432. "default (64) (optional)."
  7433. msgstr ""
  7434. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:69
  7435. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:58
  7436. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:137
  7437. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:137
  7438. msgid ""
  7439. "Specify a TTL (Time to Live) for the encapsulating packet other than the "
  7440. "default (64)."
  7441. msgstr ""
  7442. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:84
  7443. msgid ""
  7444. "Specify a Traffic Class. Can be <code>inherit</code> (the outer header "
  7445. "inherits the value of the inner header) or an hexadecimal value <code>00.."
  7446. "FF</code> (optional)."
  7447. msgstr ""
  7448. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:64
  7449. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:69
  7450. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:69
  7451. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:74
  7452. msgid ""
  7453. "Specify an MTU (Maximum Transmission Unit) other than the default (1280 "
  7454. "bytes) (optional)."
  7455. msgstr ""
  7456. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:53
  7457. msgid ""
  7458. "Specify an MTU (Maximum Transmission Unit) other than the default (1280 "
  7459. "bytes)."
  7460. msgstr ""
  7461. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2273
  7462. msgid "Specify the secret encryption key here."
  7463. msgstr ""
  7464. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:215
  7465. msgid "Speed: %d Mibit/s, Duplex: %s"
  7466. msgstr ""
  7467. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1598
  7468. msgid "Splitterless ADSL (G.992.2) Annex A"
  7469. msgstr ""
  7470. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:717
  7471. msgid "Stale neighbour cache timeout"
  7472. msgstr ""
  7473. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1572
  7474. msgid "Standard: none"
  7475. msgstr ""
  7476. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:668
  7477. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:98
  7478. msgid "Start"
  7479. msgstr ""
  7480. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:140
  7481. msgid "Start WPS"
  7482. msgstr ""
  7483. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:75
  7484. msgid "Start priority"
  7485. msgstr ""
  7486. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2073
  7487. msgid "Start refresh"
  7488. msgstr ""
  7489. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4721
  7490. msgid "Starting configuration apply…"
  7491. msgstr ""
  7492. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1986
  7493. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:468
  7494. msgid "Starting wireless scan..."
  7495. msgstr ""
  7496. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:109
  7497. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:78
  7498. msgid "Startup"
  7499. msgstr ""
  7500. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:90
  7501. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:139
  7502. msgid "State"
  7503. msgstr ""
  7504. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:34
  7505. msgid "Static IPv4 Routes"
  7506. msgstr ""
  7507. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:34
  7508. msgid "Static IPv6 Routes"
  7509. msgstr ""
  7510. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:91
  7511. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:138
  7512. msgid "Static Lease"
  7513. msgstr ""
  7514. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:397
  7515. msgid "Static Leases"
  7516. msgstr ""
  7517. #: modules/luci-base/htdocs/luci-static/resources/network.js:2090
  7518. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:173
  7519. #: modules/luci-compat/luasrc/model/network.lua:967
  7520. msgid "Static address"
  7521. msgstr ""
  7522. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1162
  7523. msgid ""
  7524. "Static leases are used to assign fixed IP addresses and symbolic hostnames "
  7525. "to DHCP clients. They are also required for non-dynamic interface "
  7526. "configurations where only hosts with a corresponding lease are served."
  7527. msgstr ""
  7528. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1250
  7529. msgid "Station inactivity limit"
  7530. msgstr ""
  7531. #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:16
  7532. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:536
  7533. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:990
  7534. #: modules/luci-mod-status/ucode/template/admin_status/index.ut:9
  7535. msgid "Status"
  7536. msgstr ""
  7537. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1569
  7538. msgid "Steering flows (<abbr title=\"Receive Packet Steering\">RPS</abbr>)"
  7539. msgstr ""
  7540. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:502
  7541. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:101
  7542. msgid "Stop"
  7543. msgstr ""
  7544. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:135
  7545. msgid "Stop WPS"
  7546. msgstr ""
  7547. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1984
  7548. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2078
  7549. msgid "Stop refresh"
  7550. msgstr ""
  7551. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:38
  7552. msgid "Storage"
  7553. msgstr ""
  7554. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:683
  7555. msgid "Strict filtering"
  7556. msgstr ""
  7557. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:645
  7558. msgid "Strict order"
  7559. msgstr ""
  7560. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:33
  7561. msgid "Strong"
  7562. msgstr ""
  7563. #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:61
  7564. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2298
  7565. msgid "Submit"
  7566. msgstr ""
  7567. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1573
  7568. msgid "Suggested: 128"
  7569. msgstr ""
  7570. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:667
  7571. msgid "Suppress logging"
  7572. msgstr ""
  7573. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:668
  7574. msgid "Suppress logging of the routine operation for the DHCP protocol."
  7575. msgstr ""
  7576. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:46
  7577. msgid "Swap free"
  7578. msgstr ""
  7579. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:139
  7580. #: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:3
  7581. msgid "Switch"
  7582. msgstr ""
  7583. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:172
  7584. msgid "Switch %q"
  7585. msgstr ""
  7586. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:150
  7587. msgid ""
  7588. "Switch %q has an unknown topology - the VLAN settings might not be accurate."
  7589. msgstr ""
  7590. #: modules/luci-base/htdocs/luci-static/resources/network.js:3036
  7591. #: modules/luci-compat/luasrc/model/network.lua:1426
  7592. msgid "Switch VLAN"
  7593. msgstr ""
  7594. #: modules/luci-base/htdocs/luci-static/resources/network.js:3033
  7595. msgid "Switch port"
  7596. msgstr ""
  7597. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:555
  7598. msgid "Switch protocol"
  7599. msgstr ""
  7600. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:103
  7601. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:104
  7602. #: modules/luci-compat/luasrc/view/cbi/ipaddr.htm:26
  7603. msgid "Switch to CIDR list notation"
  7604. msgstr ""
  7605. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2731
  7606. msgid "Symbolic link"
  7607. msgstr ""
  7608. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:89
  7609. msgid "Sync with NTP-Server"
  7610. msgstr ""
  7611. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:81
  7612. msgid "Sync with browser"
  7613. msgstr ""
  7614. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:954
  7615. msgid "Syntax:"
  7616. msgstr ""
  7617. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:478
  7618. msgid "Syntax: {code_syntax}."
  7619. msgstr ""
  7620. #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:26
  7621. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:22
  7622. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:113
  7623. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:3
  7624. msgid "System"
  7625. msgstr ""
  7626. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/syslog.js:58
  7627. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:63
  7628. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:75
  7629. msgid "System Log"
  7630. msgstr ""
  7631. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:250
  7632. msgid "System Priority"
  7633. msgstr ""
  7634. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:118
  7635. msgid "System Properties"
  7636. msgstr ""
  7637. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:227
  7638. msgid "System load"
  7639. msgstr ""
  7640. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:162
  7641. msgid "System log buffer size"
  7642. msgstr ""
  7643. #: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:68
  7644. #: themes/luci-theme-material/ucode/template/themes/material/header.ut:88
  7645. #: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:64
  7646. #: themes/luci-theme-openwrt/ucode/template/themes/openwrt.org/header.ut:81
  7647. msgid "System running in recovery (initramfs) mode."
  7648. msgstr ""
  7649. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:67
  7650. msgctxt "nft tcp option maxseg size"
  7651. msgid "TCP MSS"
  7652. msgstr ""
  7653. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:54
  7654. msgctxt "nft tcp dport"
  7655. msgid "TCP destination port"
  7656. msgstr ""
  7657. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:57
  7658. msgctxt "nft tcp flags"
  7659. msgid "TCP flags"
  7660. msgstr ""
  7661. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:53
  7662. msgctxt "nft tcp sport"
  7663. msgid "TCP source port"
  7664. msgstr ""
  7665. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:341
  7666. msgid "TCP:"
  7667. msgstr ""
  7668. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:859
  7669. msgid "TFTP server root"
  7670. msgstr ""
  7671. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:50
  7672. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:87
  7673. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:145
  7674. msgid "TX"
  7675. msgstr ""
  7676. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:236
  7677. msgid "TX Rate"
  7678. msgstr ""
  7679. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:672
  7680. msgid "TX queue length"
  7681. msgstr ""
  7682. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:95
  7683. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:172
  7684. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:18
  7685. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:182
  7686. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:200
  7687. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:226
  7688. msgid "Table"
  7689. msgstr ""
  7690. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1153
  7691. msgid "Table IP family"
  7692. msgstr ""
  7693. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1268
  7694. msgid "Tag"
  7695. msgstr ""
  7696. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:219
  7697. msgctxt "VLAN port state"
  7698. msgid "Tagged"
  7699. msgstr ""
  7700. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:959
  7701. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1022
  7702. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:60
  7703. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:66
  7704. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:178
  7705. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:180
  7706. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:197
  7707. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:223
  7708. msgid "Target"
  7709. msgstr ""
  7710. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:58
  7711. msgid "Target Platform"
  7712. msgstr ""
  7713. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:103
  7714. msgid "Target network"
  7715. msgstr ""
  7716. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:60
  7717. msgid "Temp space"
  7718. msgstr ""
  7719. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:50
  7720. msgid "Terminate"
  7721. msgstr ""
  7722. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:871
  7723. msgid ""
  7724. "The <abbr title=\"Maximum Transmission Unit\">MTU</abbr> to be published in "
  7725. "<abbr title=\"Router Advertisement, ICMPv6 Type 134\">RA</abbr> messages. "
  7726. "Minimum is 1280 bytes."
  7727. msgstr ""
  7728. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:819
  7729. msgid ""
  7730. "The <em>Managed address configuration</em> (M) flag indicates that IPv6 "
  7731. "addresses are available via DHCPv6."
  7732. msgstr ""
  7733. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:823
  7734. msgid ""
  7735. "The <em>Mobile IPv6 Home Agent</em> (H) flag indicates that the device is "
  7736. "also acting as Mobile IPv6 home agent on this link."
  7737. msgstr ""
  7738. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:821
  7739. msgid ""
  7740. "The <em>Other configuration</em> (O) flag indicates that other information, "
  7741. "such as DNS servers, is available via DHCPv6."
  7742. msgstr ""
  7743. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:84
  7744. msgid "The <em>block mount</em> command failed with code %d"
  7745. msgstr ""
  7746. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1256
  7747. msgid "The DHCPv6-DUID (DHCP unique identifier) of this host."
  7748. msgstr ""
  7749. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1029
  7750. msgid ""
  7751. "The DNS server entries in the local resolv.conf are primarily sorted by the "
  7752. "weight specified here"
  7753. msgstr ""
  7754. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:77
  7755. msgid ""
  7756. "The HE.net endpoint update configuration changed, you must now use the plain "
  7757. "username instead of the user ID!"
  7758. msgstr ""
  7759. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1228
  7760. msgid "The IP address %h is already used by another static lease"
  7761. msgstr ""
  7762. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1237
  7763. msgid "The IP address is outside of any DHCP pool address range"
  7764. msgstr ""
  7765. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:895
  7766. msgid "The IP address of the boot server"
  7767. msgstr ""
  7768. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1211
  7769. msgid ""
  7770. "The IP address to be used for this host, or <em>ignore</em> to ignore any "
  7771. "DHCP request from this host."
  7772. msgstr ""
  7773. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:41
  7774. msgid "The IPv4 address or the fully-qualified domain name of the remote end."
  7775. msgstr ""
  7776. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:42
  7777. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:42
  7778. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:40
  7779. #: protocols/luci-proto-vti/htdocs/luci-static/resources/protocol/vti.js:40
  7780. msgid ""
  7781. "The IPv4 address or the fully-qualified domain name of the remote tunnel end."
  7782. msgstr ""
  7783. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:41
  7784. msgid "The IPv6 address or the fully-qualified domain name of the remote end."
  7785. msgstr ""
  7786. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:42
  7787. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:42
  7788. msgid ""
  7789. "The IPv6 address or the fully-qualified domain name of the remote tunnel end."
  7790. msgstr ""
  7791. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1264
  7792. msgid ""
  7793. "The IPv6 interface identifier (address suffix) as hexadecimal number (max. "
  7794. "16 chars)."
  7795. msgstr ""
  7796. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:53
  7797. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:59
  7798. msgid ""
  7799. "The IPv6 prefix assigned to the provider, usually ends with <code>::</code>"
  7800. msgstr ""
  7801. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/timer.js:7
  7802. msgid "The LED blinks with the configured on/off frequency"
  7803. msgstr ""
  7804. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/heartbeat.js:7
  7805. msgid "The LED flashes to simulate actual heart beat."
  7806. msgstr ""
  7807. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:8
  7808. msgid ""
  7809. "The LED flashes with link status and activity on the configured interface."
  7810. msgstr ""
  7811. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/none.js:7
  7812. msgid "The LED is always in default state off."
  7813. msgstr ""
  7814. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/default-on.js:6
  7815. msgid "The LED is always in default state on."
  7816. msgstr ""
  7817. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:267
  7818. msgid ""
  7819. "The MAC address %h is already used by another static lease in the same DHCP "
  7820. "pool"
  7821. msgstr ""
  7822. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:640
  7823. msgid "The MTU must not exceed the parent device MTU of %d bytes"
  7824. msgstr ""
  7825. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:950
  7826. msgid "The VLAN ID must be unique"
  7827. msgstr ""
  7828. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:85
  7829. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:85
  7830. msgid ""
  7831. "The VXLAN header adds 50 bytes of IPv4 encapsulation overhead, 74 bytes for "
  7832. "IPv6."
  7833. msgstr ""
  7834. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:180
  7835. msgid "The address through which this %s is reachable"
  7836. msgstr ""
  7837. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:45
  7838. msgid "The algorithm that is used to discover mesh routes"
  7839. msgstr ""
  7840. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2258
  7841. msgid ""
  7842. "The allowed characters are: <code>A-Z</code>, <code>a-z</code>, <code>0-9</"
  7843. "code> and <code>_</code>"
  7844. msgstr ""
  7845. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:759
  7846. msgid ""
  7847. "The amount of the address forwarded depends on the prefix length parameter: "
  7848. "32 (128 for IPv6) forwards the whole address, zero forwards none of it but "
  7849. "still marks the request so that no upstream nameserver will add client "
  7850. "address information either."
  7851. msgstr ""
  7852. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:320
  7853. msgid ""
  7854. "The checkbox cannot be modified unless the <code>yggdrasil-jumper</code> "
  7855. "package is installed."
  7856. msgstr ""
  7857. #: modules/luci-compat/luasrc/view/cbi/error.htm:6
  7858. msgid "The configuration file could not be loaded due to the following error:"
  7859. msgstr ""
  7860. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2250
  7861. msgid ""
  7862. "The correct SSID must be manually specified when joining a hidden wireless "
  7863. "network"
  7864. msgstr ""
  7865. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:760
  7866. msgid "The default (%s) is zero for both IPv4 and IPv6."
  7867. msgstr ""
  7868. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4597
  7869. msgid ""
  7870. "The device could not be reached within %d seconds after applying the pending "
  7871. "changes, which caused the configuration to be rolled back for safety "
  7872. "reasons. If you believe that the configuration changes are correct "
  7873. "nonetheless, perform an unchecked configuration apply. Alternatively, you "
  7874. "can dismiss this warning and edit changes before attempting to apply again, "
  7875. "or revert all pending changes to keep the currently working configuration "
  7876. "state."
  7877. msgstr ""
  7878. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:281
  7879. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:391
  7880. msgid ""
  7881. "The device file of the memory or partition (<abbr title=\"for example\">e.g."
  7882. "</abbr> <code>/dev/sda1</code>)"
  7883. msgstr ""
  7884. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:504
  7885. msgid "The device name \"%s\" is already taken"
  7886. msgstr ""
  7887. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:382
  7888. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:416
  7889. msgid ""
  7890. "The existing network configuration needs to be changed for LuCI to function "
  7891. "properly."
  7892. msgstr ""
  7893. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:855
  7894. msgid ""
  7895. "The existing wireless configuration needs to be changed for LuCI to function "
  7896. "properly."
  7897. msgstr ""
  7898. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:222
  7899. msgid ""
  7900. "The flash image was uploaded. Below is the checksum and file size listed, "
  7901. "compare them with the original file to ensure data integrity. <br /> Click "
  7902. "'Continue' below to start the flash procedure."
  7903. msgstr ""
  7904. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:259
  7905. msgid "The following rules are currently active on this system."
  7906. msgstr ""
  7907. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/heartbeat.js:8
  7908. msgid "The frequency is in direct proportion to 1-minute average CPU load."
  7909. msgstr ""
  7910. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:155
  7911. msgid "The gateway address must not be a local IP address"
  7912. msgstr ""
  7913. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:756
  7914. msgid ""
  7915. "The generated configuration can be imported into a WireGuard client "
  7916. "application to set up a connection towards this device."
  7917. msgstr ""
  7918. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:172
  7919. msgid "The given SSH public key has already been added."
  7920. msgstr ""
  7921. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:178
  7922. msgid ""
  7923. "The given SSH public key is invalid. Please supply proper public RSA, "
  7924. "ED25519 or ECDSA keys."
  7925. msgstr ""
  7926. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1192
  7927. msgid "The hardware address(es) of this entry/host."
  7928. msgstr ""
  7929. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:93
  7930. msgid ""
  7931. "The hop penalty setting allows to modify batman-adv's preference for "
  7932. "multihop routes vs. short routes. The value is applied to the TQ of each "
  7933. "forwarded OGM, thereby propagating the cost of an extra hop (the packet has "
  7934. "to be received and retransmitted which costs airtime)"
  7935. msgstr ""
  7936. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:889
  7937. msgid "The hostname of the boot server"
  7938. msgstr ""
  7939. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:28
  7940. msgid "The interface could not be found"
  7941. msgstr ""
  7942. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1186
  7943. msgid "The interface name is already used"
  7944. msgstr ""
  7945. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1192
  7946. msgid "The interface name is too long"
  7947. msgstr ""
  7948. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:61
  7949. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:55
  7950. msgid ""
  7951. "The length of the IPv4 prefix in bits, the remainder is used in the IPv6 "
  7952. "addresses."
  7953. msgstr ""
  7954. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:57
  7955. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:63
  7956. msgid "The length of the IPv6 prefix in bits"
  7957. msgstr ""
  7958. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:168
  7959. msgid "The local IPv4 address"
  7960. msgstr ""
  7961. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:46
  7962. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:46
  7963. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:44
  7964. #: protocols/luci-proto-vti/htdocs/luci-static/resources/protocol/vti.js:44
  7965. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:47
  7966. msgid "The local IPv4 address over which the tunnel is created (optional)."
  7967. msgstr ""
  7968. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:175
  7969. msgid "The local IPv4 netmask"
  7970. msgstr ""
  7971. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:46
  7972. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:53
  7973. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:47
  7974. msgid "The local IPv6 address over which the tunnel is created (optional)."
  7975. msgstr ""
  7976. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:629
  7977. msgid ""
  7978. "The max response time in centiseconds inserted into group-specific queries "
  7979. "sent in response to leave group messages. It is also the amount of time "
  7980. "between group-specific query messages. This value may be tuned to modify the "
  7981. "\"leave latency\" of the network. A reduced value results in reduced time to "
  7982. "detect the loss of the last member of a group"
  7983. msgstr ""
  7984. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:615
  7985. msgid ""
  7986. "The max response time in centiseconds inserted into the periodic general "
  7987. "queries. By varying the value, an administrator may tune the burstiness of "
  7988. "IGMP messages on the subnet; larger values make the traffic less bursty, as "
  7989. "host responses are spread out over a larger interval"
  7990. msgstr ""
  7991. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:890
  7992. msgid ""
  7993. "The maximum hops to be published in <abbr title=\"Router Advertisement\">RA</"
  7994. "abbr> messages. Maximum is 255 hops."
  7995. msgstr ""
  7996. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1123
  7997. msgid "The netfilter components below are only regarded when running fw4."
  7998. msgstr ""
  7999. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2264
  8000. msgid "The network name is already used"
  8001. msgstr ""
  8002. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:139
  8003. msgid ""
  8004. "The network ports on this device can be combined to several <abbr "
  8005. "title=\"Virtual Local Area Network\">VLAN</abbr>s in which computers can "
  8006. "communicate directly with each other. <abbr title=\"Virtual Local Area "
  8007. "Network\">VLAN</abbr>s are often used to separate different network "
  8008. "segments. Often there is by default one Uplink port for a connection to the "
  8009. "next greater network like the internet and other ports for a local network."
  8010. msgstr ""
  8011. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:230
  8012. msgid "The private key for your Yggdrasil node"
  8013. msgstr ""
  8014. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:777
  8015. msgid ""
  8016. "The public hostname or IP address of this system the peer should connect to. "
  8017. "This usually is a static public IP address, a static hostname or a DDNS "
  8018. "domain."
  8019. msgstr ""
  8020. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:235
  8021. msgid "The public key for your Yggdrasil node"
  8022. msgstr ""
  8023. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:623
  8024. msgid "The query response interval must be lower than the query interval value"
  8025. msgstr ""
  8026. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:158
  8027. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:42
  8028. msgid "The reboot command failed with code %d"
  8029. msgstr ""
  8030. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:147
  8031. msgid "The restore command failed with code %d"
  8032. msgstr ""
  8033. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:605
  8034. msgid ""
  8035. "The robustness value allows tuning for the expected packet loss on the "
  8036. "network. If a network is expected to be lossy, the robustness value may be "
  8037. "increased. IGMP is robust to (Robustness-1) packet losses"
  8038. msgstr ""
  8039. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:183
  8040. msgid "The routing protocol identifier of this route"
  8041. msgstr ""
  8042. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1452
  8043. msgid "The selected %s mode is incompatible with %s encryption"
  8044. msgstr ""
  8045. #: modules/luci-base/ucode/template/csrftoken.ut:11
  8046. msgid "The submitted security token is invalid or already expired!"
  8047. msgstr ""
  8048. #: modules/luci-base/htdocs/luci-static/resources/tools/views.js:27
  8049. msgid "The syslog output, pre-filtered for messages related to:"
  8050. msgstr ""
  8051. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:98
  8052. msgid ""
  8053. "The system is erasing the configuration partition now and will reboot itself "
  8054. "when finished."
  8055. msgstr ""
  8056. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:322
  8057. msgid ""
  8058. "The system is flashing now.<br /> DO NOT POWER OFF THE DEVICE!<br /> Wait a "
  8059. "few minutes before you try to reconnect. It might be necessary to renew the "
  8060. "address of your computer to reach the device again, depending on your "
  8061. "settings."
  8062. msgstr ""
  8063. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:163
  8064. msgid ""
  8065. "The system is rebooting now. If the restored configuration changed the "
  8066. "current LAN IP address, you might need to reconnect manually."
  8067. msgstr ""
  8068. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:85
  8069. msgid "The system password has been successfully changed."
  8070. msgstr ""
  8071. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:347
  8072. msgid "The sysupgrade command failed with code %d"
  8073. msgstr ""
  8074. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1164
  8075. msgid ""
  8076. "The tag construct filters which host directives are used; more than one tag "
  8077. "can be provided, in this case the request must match all of them. Tagged "
  8078. "directives are used in preference to untagged ones. Note that one of mac, "
  8079. "duid or hostname still needs to be specified (can be a wildcard)."
  8080. msgstr ""
  8081. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:120
  8082. msgid ""
  8083. "The uploaded backup archive appears to be valid and contains the files "
  8084. "listed below. Press \"Continue\" to restore the backup and reboot, or "
  8085. "\"Cancel\" to abort the operation."
  8086. msgstr ""
  8087. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:115
  8088. msgid "The uploaded backup archive is not readable"
  8089. msgstr ""
  8090. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:251
  8091. msgid "The uploaded firmware does not allow keeping current configuration."
  8092. msgstr ""
  8093. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:246
  8094. msgid ""
  8095. "The uploaded image file does not contain a supported format. Make sure that "
  8096. "you choose the generic image format for your platform."
  8097. msgstr ""
  8098. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1535
  8099. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1547
  8100. msgid "The value is overridden by configuration."
  8101. msgstr ""
  8102. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:56
  8103. msgid ""
  8104. "The value specifies the interval (milliseconds) in which batman-adv floods "
  8105. "the network with its protocol information."
  8106. msgstr ""
  8107. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:678
  8108. msgid ""
  8109. "There are legacy iptables rules present on the system. Mixing iptables and "
  8110. "nftables rules is discouraged and may lead to incomplete traffic filtering."
  8111. msgstr ""
  8112. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1338
  8113. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1370
  8114. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:130
  8115. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:179
  8116. msgid "There are no active leases"
  8117. msgstr ""
  8118. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4764
  8119. msgid "There are no changes to apply"
  8120. msgstr ""
  8121. #: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:59
  8122. #: themes/luci-theme-material/ucode/template/themes/material/header.ut:79
  8123. #: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:55
  8124. #: themes/luci-theme-openwrt/ucode/template/themes/openwrt.org/header.ut:72
  8125. msgid ""
  8126. "There is no password set on this router. Please configure a root password to "
  8127. "protect the web interface."
  8128. msgstr ""
  8129. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:49
  8130. msgid "This IPv4 address of the relay"
  8131. msgstr ""
  8132. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1833
  8133. msgid "This authentication type is not applicable to the selected EAP method."
  8134. msgstr ""
  8135. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:58
  8136. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:56
  8137. msgid "This does not look like a valid PEM file"
  8138. msgstr ""
  8139. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:456
  8140. msgid ""
  8141. "This is a list of shell glob patterns for matching files and directories to "
  8142. "include during sysupgrade. Modified files in /etc/config/ and certain other "
  8143. "configurations are automatically preserved."
  8144. msgstr ""
  8145. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:81
  8146. msgid ""
  8147. "This is either the \"Update Key\" configured for the tunnel or the account "
  8148. "password if no update key has been configured"
  8149. msgstr ""
  8150. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:106
  8151. msgid "This is only used if no default route matches the destination gateway"
  8152. msgstr ""
  8153. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv_hardif.js:42
  8154. msgid ""
  8155. "This is the batman-adv device where you want to link the physical Device "
  8156. "from above to. If this list is empty, then you need to create one first. If "
  8157. "you want to route mesh traffic over a wired network device, then please "
  8158. "select it from the above Device selector. If you want to assign the batman-"
  8159. "adv interface to a Wi-fi mesh then do not select a Device in the Device "
  8160. "selector but rather go to the Wireless settings and select this Interface as "
  8161. "a network from there."
  8162. msgstr ""
  8163. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:116
  8164. msgid ""
  8165. "This is the content of /etc/rc.local. Insert your own commands here (in "
  8166. "front of 'exit 0') to execute them at the end of the boot process."
  8167. msgstr ""
  8168. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:54
  8169. msgid ""
  8170. "This is the local endpoint address assigned by the tunnel broker, it usually "
  8171. "ends with <code>...:2/64</code>"
  8172. msgstr ""
  8173. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:420
  8174. msgid "This is the only DHCP server in the local network."
  8175. msgstr ""
  8176. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:73
  8177. msgid "This is the plain username for logging into the account"
  8178. msgstr ""
  8179. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:57
  8180. msgid ""
  8181. "This is the prefix routed to you by the tunnel broker for use by clients"
  8182. msgstr ""
  8183. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/crontab.js:29
  8184. msgid "This is the system crontab in which scheduled tasks can be defined."
  8185. msgstr ""
  8186. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:50
  8187. msgid ""
  8188. "This is usually the address of the nearest PoP operated by the tunnel broker"
  8189. msgstr ""
  8190. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:65
  8191. msgid ""
  8192. "This list gives an overview over currently running system processes and "
  8193. "their status."
  8194. msgstr ""
  8195. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:404
  8196. msgid "This option adds additional record types to the cache."
  8197. msgstr ""
  8198. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1787
  8199. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1845
  8200. msgid ""
  8201. "This option cannot be used because the ca-bundle package is not installed."
  8202. msgstr ""
  8203. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:323
  8204. msgid "This page displays the active connections via this device."
  8205. msgstr ""
  8206. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:315
  8207. msgid ""
  8208. "This page displays the bandwidth used for all available physical interfaces."
  8209. msgstr ""
  8210. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:342
  8211. msgid ""
  8212. "This page displays the wireless metrics, for each available radio interfaces."
  8213. msgstr ""
  8214. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1558
  8215. msgid "This prefix is randomly generated at first install."
  8216. msgstr ""
  8217. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:713
  8218. msgid "This prevents unreachable IPs in subnets not accessible to you."
  8219. msgstr ""
  8220. #: modules/luci-base/htdocs/luci-static/resources/form.js:2282
  8221. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:172
  8222. #: modules/luci-compat/luasrc/view/cbi/tsection.htm:32
  8223. msgid "This section contains no values yet"
  8224. msgstr ""
  8225. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:124
  8226. msgid "Time Synchronization"
  8227. msgstr ""
  8228. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1740
  8229. msgid "Time advertisement"
  8230. msgstr ""
  8231. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:713
  8232. msgid "Time in milliseconds"
  8233. msgstr ""
  8234. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:581
  8235. msgid "Time in seconds to spend in listening and learning states"
  8236. msgstr ""
  8237. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1241
  8238. msgid "Time interval for rekeying GTK"
  8239. msgstr ""
  8240. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1749
  8241. msgid "Time zone"
  8242. msgstr ""
  8243. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:15
  8244. msgid "Timed-out"
  8245. msgstr ""
  8246. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:717
  8247. msgid "Timeout in seconds"
  8248. msgstr ""
  8249. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:567
  8250. msgid "Timeout in seconds for learned MAC addresses in the forwarding database"
  8251. msgstr ""
  8252. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:586
  8253. msgid "Timeout in seconds until topology updates on link loss"
  8254. msgstr ""
  8255. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:145
  8256. msgid "Timezone"
  8257. msgstr ""
  8258. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:425
  8259. msgid ""
  8260. "To fully configure the local WireGuard interface from an existing (e.g. "
  8261. "provider supplied) configuration file, use the <strong><a class=\"full-"
  8262. "import\" href=\"#\">configuration import</a></strong> instead."
  8263. msgstr ""
  8264. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:402
  8265. msgid ""
  8266. "To restore configuration files, you can upload a previously generated backup "
  8267. "archive here. To reset the firmware to its initial state, click \"Perform "
  8268. "reset\" (only possible with squashfs images)."
  8269. msgstr ""
  8270. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1607
  8271. msgid "Tone"
  8272. msgstr ""
  8273. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:35
  8274. msgid "Total Available"
  8275. msgstr ""
  8276. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:347
  8277. msgid "Trace"
  8278. msgstr ""
  8279. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:110
  8280. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:111
  8281. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:121
  8282. msgid "Traceroute"
  8283. msgstr ""
  8284. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:126
  8285. msgid "Tracking Area Code"
  8286. msgstr ""
  8287. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:54
  8288. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:65
  8289. msgid "Traffic"
  8290. msgstr ""
  8291. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:79
  8292. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:84
  8293. msgid "Traffic Class"
  8294. msgstr ""
  8295. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:528
  8296. msgid "Traffic filter chain \"%h\""
  8297. msgstr ""
  8298. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:466
  8299. msgctxt "nft counter"
  8300. msgid "Traffic matched by rule: %.1000mPackets, %.1024mBytes"
  8301. msgstr ""
  8302. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:390
  8303. msgid "Transfer"
  8304. msgstr ""
  8305. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:777
  8306. msgid ""
  8307. "Transform replies which contain the specified addresses or subnets into "
  8308. "{nxdomain} responses."
  8309. msgstr ""
  8310. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:44
  8311. msgid "Transix (Japan only)"
  8312. msgstr ""
  8313. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:25
  8314. msgid "Transmit"
  8315. msgstr ""
  8316. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:324
  8317. msgid "Transmit Hash Policy"
  8318. msgstr ""
  8319. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:248
  8320. msgid "Transmit dropped"
  8321. msgstr ""
  8322. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:247
  8323. msgid "Transmit errors"
  8324. msgstr ""
  8325. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:58
  8326. msgid "Transmitted Data"
  8327. msgstr ""
  8328. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:245
  8329. msgid "Transmitted bytes"
  8330. msgstr ""
  8331. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:246
  8332. msgid "Transmitted packets"
  8333. msgstr ""
  8334. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:79
  8335. msgctxt "nft @th,off,len"
  8336. msgid "Transport header bits %d-%d"
  8337. msgstr ""
  8338. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:59
  8339. msgctxt "nft th dport"
  8340. msgid "Transport header destination port"
  8341. msgstr ""
  8342. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:58
  8343. msgctxt "nft th sport"
  8344. msgid "Transport header source port"
  8345. msgstr ""
  8346. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:75
  8347. msgid "Trigger"
  8348. msgstr ""
  8349. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:20
  8350. msgid "Trigger Mode"
  8351. msgstr ""
  8352. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:69
  8353. msgid "Tunnel ID"
  8354. msgstr ""
  8355. #: modules/luci-base/htdocs/luci-static/resources/network.js:3039
  8356. #: modules/luci-compat/luasrc/model/network.lua:1431
  8357. msgid "Tunnel Interface"
  8358. msgstr ""
  8359. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:44
  8360. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:57
  8361. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/ipip6.js:58
  8362. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:76
  8363. msgid "Tunnel Link"
  8364. msgstr ""
  8365. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1492
  8366. msgid "Tunnel device"
  8367. msgstr ""
  8368. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:185
  8369. msgid "Tx-Power"
  8370. msgstr ""
  8371. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:45
  8372. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1523
  8373. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:169
  8374. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:43
  8375. msgid "Type"
  8376. msgstr ""
  8377. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:189
  8378. msgid "Type of service"
  8379. msgstr ""
  8380. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:56
  8381. msgctxt "nft udp dport"
  8382. msgid "UDP destination port"
  8383. msgstr ""
  8384. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:223
  8385. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:223
  8386. msgid ""
  8387. "UDP destination port number to use to connect to the remote VXLAN tunnel "
  8388. "endpoint"
  8389. msgstr ""
  8390. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:55
  8391. msgctxt "nft udp sport"
  8392. msgid "UDP source port"
  8393. msgstr ""
  8394. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:331
  8395. msgid "UDP:"
  8396. msgstr ""
  8397. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1557
  8398. msgid "ULA for IPv6 is analogous to IPv4 private network addressing."
  8399. msgstr ""
  8400. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:91
  8401. msgid "UMTS only"
  8402. msgstr ""
  8403. #: modules/luci-compat/luasrc/model/network/proto_3g.lua:10
  8404. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:43
  8405. msgid "UMTS/GPRS/EV-DO"
  8406. msgstr ""
  8407. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:138
  8408. msgid "URI"
  8409. msgstr ""
  8410. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:43
  8411. msgid "URI scheme %s not supported"
  8412. msgstr ""
  8413. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:255
  8414. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:359
  8415. msgid "UUID"
  8416. msgstr ""
  8417. #: modules/luci-base/htdocs/luci-static/resources/network.js:16
  8418. #: modules/luci-base/htdocs/luci-static/resources/network.js:17
  8419. #: modules/luci-compat/luasrc/model/network.lua:34
  8420. #: modules/luci-compat/luasrc/model/network.lua:35
  8421. msgid "Unable to determine device name"
  8422. msgstr ""
  8423. #: modules/luci-base/htdocs/luci-static/resources/network.js:18
  8424. #: modules/luci-compat/luasrc/model/network.lua:36
  8425. msgid "Unable to determine external IP address"
  8426. msgstr ""
  8427. #: modules/luci-base/htdocs/luci-static/resources/network.js:19
  8428. #: modules/luci-compat/luasrc/model/network.lua:37
  8429. msgid "Unable to determine upstream interface"
  8430. msgstr ""
  8431. #: modules/luci-base/ucode/template/error404.ut:12
  8432. msgid "Unable to dispatch"
  8433. msgstr ""
  8434. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/dmesg.js:15
  8435. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/syslog.js:18
  8436. msgid "Unable to load log data:"
  8437. msgstr ""
  8438. #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:54
  8439. #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:54
  8440. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:22
  8441. msgid "Unable to obtain client ID"
  8442. msgstr ""
  8443. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:221
  8444. msgid "Unable to obtain mount information"
  8445. msgstr ""
  8446. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:311
  8447. msgid "Unable to reset ip6tables counters: %s"
  8448. msgstr ""
  8449. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:309
  8450. msgid "Unable to reset iptables counters: %s"
  8451. msgstr ""
  8452. #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:64
  8453. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:7
  8454. msgid "Unable to resolve AFTR host name"
  8455. msgstr ""
  8456. #: modules/luci-base/htdocs/luci-static/resources/network.js:20
  8457. #: modules/luci-compat/luasrc/model/network.lua:38
  8458. msgid "Unable to resolve peer host name"
  8459. msgstr ""
  8460. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:317
  8461. msgid "Unable to restart firewall: %s"
  8462. msgstr ""
  8463. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/crontab.js:22
  8464. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:372
  8465. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:56
  8466. msgid "Unable to save contents: %s"
  8467. msgstr ""
  8468. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:14
  8469. msgid "Unable to set allowed mode list."
  8470. msgstr ""
  8471. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:17
  8472. msgid "Unable to set preferred mode."
  8473. msgstr ""
  8474. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:29
  8475. msgid "Unable to verify PIN"
  8476. msgstr ""
  8477. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1380
  8478. msgid "Unconfigure"
  8479. msgstr ""
  8480. #: protocols/luci-proto-xfrm/htdocs/luci-static/resources/protocol/xfrm.js:42
  8481. msgid "Underlying interface"
  8482. msgstr ""
  8483. #: protocols/luci-proto-unet/htdocs/luci-static/resources/protocol/unet.js:8
  8484. msgid "Unet"
  8485. msgstr ""
  8486. #: modules/luci-base/htdocs/luci-static/resources/fs.js:102
  8487. msgid "Unexpected reply data format"
  8488. msgstr ""
  8489. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1556
  8490. msgid ""
  8491. "Unique Local Address (%s) - prefix <code>fd00::/8</code> (the L bit is "
  8492. "always 1)."
  8493. msgstr ""
  8494. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:78
  8495. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:78
  8496. msgid "Units: seconds"
  8497. msgstr ""
  8498. #: modules/luci-base/htdocs/luci-static/resources/network.js:2092
  8499. #: modules/luci-base/htdocs/luci-static/resources/network.js:3913
  8500. #: modules/luci-compat/luasrc/model/network.lua:971
  8501. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:17
  8502. msgid "Unknown"
  8503. msgstr ""
  8504. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:12
  8505. msgid "Unknown and unsupported connection method."
  8506. msgstr ""
  8507. #: modules/luci-base/htdocs/luci-static/resources/network.js:2435
  8508. #: modules/luci-compat/luasrc/model/network.lua:1138
  8509. msgid "Unknown error (%s)"
  8510. msgstr ""
  8511. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:412
  8512. msgid "Unknown error code"
  8513. msgstr ""
  8514. #: modules/luci-base/htdocs/luci-static/resources/network.js:2089
  8515. #: modules/luci-base/htdocs/luci-static/resources/protocol/none.js:6
  8516. #: modules/luci-compat/luasrc/model/network.lua:965
  8517. msgid "Unmanaged"
  8518. msgstr ""
  8519. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:195
  8520. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:217
  8521. msgid "Unmount"
  8522. msgstr ""
  8523. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:370
  8524. msgctxt "Dnsmasq instance"
  8525. msgid "Unnamed instance #%d"
  8526. msgstr ""
  8527. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:121
  8528. msgid "Unnamed key"
  8529. msgstr ""
  8530. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4411
  8531. msgid "Unsaved Changes"
  8532. msgstr ""
  8533. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:410
  8534. msgid "Unspecified error"
  8535. msgstr ""
  8536. #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:67
  8537. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:9
  8538. msgid "Unsupported MAP type"
  8539. msgstr ""
  8540. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:37
  8541. msgid "Unsupported URI scheme in %s"
  8542. msgstr ""
  8543. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:69
  8544. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:31
  8545. msgid "Unsupported modem"
  8546. msgstr ""
  8547. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:116
  8548. msgid "Unsupported protocol"
  8549. msgstr ""
  8550. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:288
  8551. msgid "Unsupported protocol type."
  8552. msgstr ""
  8553. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:215
  8554. msgctxt "VLAN port state"
  8555. msgid "Untagged"
  8556. msgstr ""
  8557. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:520
  8558. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:97
  8559. msgid "Untitled peer"
  8560. msgstr ""
  8561. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:151
  8562. msgid "Up"
  8563. msgstr ""
  8564. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:416
  8565. msgid "Up Delay"
  8566. msgstr ""
  8567. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4299
  8568. msgid "Upload"
  8569. msgstr ""
  8570. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:443
  8571. msgid ""
  8572. "Upload a sysupgrade-compatible image here to replace the running firmware."
  8573. msgstr ""
  8574. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:138
  8575. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:169
  8576. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:414
  8577. msgid "Upload archive..."
  8578. msgstr ""
  8579. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2890
  8580. msgid "Upload file"
  8581. msgstr ""
  8582. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2865
  8583. msgid "Upload file…"
  8584. msgstr ""
  8585. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4217
  8586. msgid "Upload has been cancelled"
  8587. msgstr ""
  8588. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2812
  8589. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4287
  8590. msgid "Upload request failed: %s"
  8591. msgstr ""
  8592. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4210
  8593. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4260
  8594. msgid "Uploading file…"
  8595. msgstr ""
  8596. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:856
  8597. msgid ""
  8598. "Upon pressing \"Continue\", anonymous \"wifi-iface\" sections will be "
  8599. "assigned with a name in the form <em>wifinet#</em> and the network will be "
  8600. "restarted to apply the updated configuration."
  8601. msgstr ""
  8602. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:383
  8603. msgid ""
  8604. "Upon pressing \"Continue\", bridges configuration will be updated and the "
  8605. "network will be restarted to apply the updated configuration."
  8606. msgstr ""
  8607. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:417
  8608. msgid ""
  8609. "Upon pressing \"Continue\", ifname options will get renamed and the network "
  8610. "will be restarted to apply the updated configuration."
  8611. msgstr ""
  8612. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:84
  8613. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:62
  8614. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:142
  8615. msgid "Uptime"
  8616. msgstr ""
  8617. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:106
  8618. msgid "Use DHCP"
  8619. msgstr ""
  8620. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:295
  8621. msgid "Use DHCP advertised servers"
  8622. msgstr ""
  8623. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:167
  8624. msgid "Use DHCP gateway"
  8625. msgstr ""
  8626. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:115
  8627. msgid "Use DHCPv6"
  8628. msgstr ""
  8629. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1015
  8630. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:144
  8631. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:160
  8632. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:139
  8633. msgid "Use DNS servers advertised by peer"
  8634. msgstr ""
  8635. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:683
  8636. msgid "Use ISO/IEC 3166 alpha2 country codes."
  8637. msgstr ""
  8638. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:48
  8639. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:89
  8640. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:69
  8641. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6to4.js:53
  8642. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:69
  8643. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/ipip6.js:78
  8644. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:84
  8645. msgid "Use MTU on tunnel interface"
  8646. msgstr ""
  8647. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:85
  8648. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:65
  8649. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6to4.js:49
  8650. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:80
  8651. msgid "Use TTL on tunnel interface"
  8652. msgstr ""
  8653. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:327
  8654. msgid "Use XOR of hardware MAC addresses (layer2)"
  8655. msgstr ""
  8656. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:328
  8657. msgid "Use XOR of hardware MAC addresses and IP addresses (layer2+3)"
  8658. msgstr ""
  8659. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:330
  8660. msgid ""
  8661. "Use XOR of hardware MAC addresses and IP addresses, rely on skb_flow_dissect "
  8662. "(encap2+3)"
  8663. msgstr ""
  8664. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:295
  8665. msgid "Use as external overlay (/overlay)"
  8666. msgstr ""
  8667. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:294
  8668. msgid "Use as root filesystem (/)"
  8669. msgstr ""
  8670. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34
  8671. msgid "Use broadcast flag"
  8672. msgstr ""
  8673. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1315
  8674. msgid "Use builtin IPv6-management"
  8675. msgstr ""
  8676. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1019
  8677. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:148
  8678. msgid "Use custom DNS servers"
  8679. msgstr ""
  8680. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1011
  8681. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:133
  8682. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:156
  8683. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:128
  8684. msgid "Use default gateway"
  8685. msgstr ""
  8686. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1033
  8687. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/ipip6.js:73
  8688. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:138
  8689. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:164
  8690. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:133
  8691. msgid "Use gateway metric"
  8692. msgstr ""
  8693. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:88
  8694. msgid "Use legacy MAP"
  8695. msgstr ""
  8696. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:88
  8697. msgid ""
  8698. "Use legacy MAP interface identifier format (draft-ietf-softwire-map-00) "
  8699. "instead of RFC7597"
  8700. msgstr ""
  8701. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:179
  8702. msgid "Use routing table"
  8703. msgstr ""
  8704. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:63
  8705. msgctxt "nft nat flag persistent"
  8706. msgid "Use same source and destination for each connection"
  8707. msgstr ""
  8708. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1780
  8709. msgid "Use system certificates"
  8710. msgstr ""
  8711. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1838
  8712. msgid "Use system certificates for inner-tunnel"
  8713. msgstr ""
  8714. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1163
  8715. msgid ""
  8716. "Use the <em>Add</em> Button to add a new lease entry. The <em>MAC address</"
  8717. "em> identifies the host, the <em>IPv4 address</em> specifies the fixed "
  8718. "address to use, and the <em>Hostname</em> is assigned as a symbolic name to "
  8719. "the requesting host. The optional <em>Lease time</em> can be used to set non-"
  8720. "standard host-specific lease time, e.g. 12h, 3d or infinite."
  8721. msgstr ""
  8722. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:329
  8723. msgid "Use upper layer protocol information (layer3+4)"
  8724. msgstr ""
  8725. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:331
  8726. msgid ""
  8727. "Use upper layer protocol information, rely on skb_flow_dissect (encap3+4)"
  8728. msgstr ""
  8729. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:625
  8730. msgid "Use {etc_ethers}"
  8731. msgstr ""
  8732. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:36
  8733. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:194
  8734. msgid "Used"
  8735. msgstr ""
  8736. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1625
  8737. msgid "Used Key Slot"
  8738. msgstr ""
  8739. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1668
  8740. msgid ""
  8741. "Used for two different purposes: RADIUS NAS ID and 802.11r R0KH-ID. Not "
  8742. "needed with normal WPA(2)-PSK."
  8743. msgstr ""
  8744. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:798
  8745. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:806
  8746. msgid "Useful for systems behind firewalls."
  8747. msgstr ""
  8748. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:157
  8749. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:106
  8750. msgid "User certificate (PEM encoded)"
  8751. msgstr ""
  8752. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:194
  8753. msgid "User identifier"
  8754. msgstr ""
  8755. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:169
  8756. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:118
  8757. msgid "User key (PEM encoded)"
  8758. msgstr ""
  8759. #: modules/luci-base/ucode/template/sysauth.ut:23
  8760. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:146
  8761. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:101
  8762. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:56
  8763. #: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:13
  8764. msgid "Username"
  8765. msgstr ""
  8766. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:131
  8767. msgid "Utilize flow table <strong>%h</strong>"
  8768. msgstr ""
  8769. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1675
  8770. msgid "VC-Mux"
  8771. msgstr ""
  8772. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1623
  8773. msgid "VDSL"
  8774. msgstr ""
  8775. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:489
  8776. msgctxt "MACVLAN mode"
  8777. msgid "VEPA (Virtual Ethernet Port Aggregator)"
  8778. msgstr ""
  8779. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:400
  8780. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1486
  8781. msgid "VLAN (802.1ad)"
  8782. msgstr ""
  8783. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:399
  8784. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1483
  8785. msgid "VLAN (802.1q)"
  8786. msgstr ""
  8787. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:468
  8788. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:931
  8789. msgid "VLAN ID"
  8790. msgstr ""
  8791. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:173
  8792. msgid "VLANs on %q"
  8793. msgstr ""
  8794. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:128
  8795. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:246
  8796. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:128
  8797. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:246
  8798. msgid "VNI"
  8799. msgstr ""
  8800. #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:54
  8801. msgid "VPN"
  8802. msgstr ""
  8803. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:42
  8804. msgid "VPN Local address"
  8805. msgstr ""
  8806. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:46
  8807. msgid "VPN Local port"
  8808. msgstr ""
  8809. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:97
  8810. msgid "VPN Protocol"
  8811. msgstr ""
  8812. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:106
  8813. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:93
  8814. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:58
  8815. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:39
  8816. msgid "VPN Server"
  8817. msgstr ""
  8818. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:152
  8819. msgid "VPN Server certificate's SHA256 hash"
  8820. msgstr ""
  8821. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:96
  8822. msgid "VPN Server port"
  8823. msgstr ""
  8824. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:144
  8825. msgid "VPN Server's certificate SHA1 hash"
  8826. msgstr ""
  8827. #: modules/luci-compat/luasrc/model/network/proto_vpnc.lua:9
  8828. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:9
  8829. msgid "VPNC (CISCO 3000 (and others) VPN)"
  8830. msgstr ""
  8831. #: protocols/luci-proto-vti/htdocs/luci-static/resources/protocol/vti.js:10
  8832. msgid "VTI"
  8833. msgstr ""
  8834. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:11
  8835. msgid "VXLAN (RFC7348)"
  8836. msgstr ""
  8837. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:127
  8838. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:127
  8839. msgid "VXLAN network identifier"
  8840. msgstr ""
  8841. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:11
  8842. msgid "VXLANv6 (RFC7348)"
  8843. msgstr ""
  8844. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:719
  8845. msgid ""
  8846. "Validate DNS replies and cache DNSSEC data, requires upstream to support "
  8847. "DNSSEC."
  8848. msgstr ""
  8849. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1780
  8850. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1838
  8851. msgid ""
  8852. "Validate server certificate using built-in system CA bundle,<br />requires "
  8853. "the \"ca-bundle\" package"
  8854. msgstr ""
  8855. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:393
  8856. msgid "Validation for all slaves"
  8857. msgstr ""
  8858. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:391
  8859. msgid "Validation only for active slave"
  8860. msgstr ""
  8861. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:392
  8862. msgid "Validation only for backup slaves"
  8863. msgstr ""
  8864. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:73
  8865. msgid "Vendor"
  8866. msgstr ""
  8867. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:40
  8868. msgid "Vendor Class to send when requesting DHCP"
  8869. msgstr ""
  8870. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:724
  8871. msgid "Verify unsigned domain responses really come from unsigned domains."
  8872. msgstr ""
  8873. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:198
  8874. msgid "Verifying the uploaded image file."
  8875. msgstr ""
  8876. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1018
  8877. msgid "Very High"
  8878. msgstr ""
  8879. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:229
  8880. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:229
  8881. msgid "Via"
  8882. msgstr ""
  8883. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:241
  8884. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:241
  8885. msgid "Via shall be specified when %s is a multicast address"
  8886. msgstr ""
  8887. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:402
  8888. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1498
  8889. msgid "Virtual Ethernet"
  8890. msgstr ""
  8891. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:60
  8892. msgid "Virtual dynamic interface"
  8893. msgstr ""
  8894. #: modules/luci-base/htdocs/luci-static/resources/network.js:3909
  8895. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1168
  8896. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1169
  8897. msgid "WDS"
  8898. msgstr ""
  8899. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1369
  8900. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1461
  8901. msgid "WEP Open System"
  8902. msgstr ""
  8903. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1370
  8904. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1462
  8905. msgid "WEP Shared Key"
  8906. msgstr ""
  8907. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2273
  8908. msgid "WEP passphrase"
  8909. msgstr ""
  8910. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1050
  8911. msgid "WLAN roaming"
  8912. msgstr ""
  8913. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1206
  8914. msgid "WMM Mode"
  8915. msgstr ""
  8916. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1753
  8917. msgid "WNM Sleep Mode"
  8918. msgstr ""
  8919. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1757
  8920. msgid "WNM Sleep Mode Fixes"
  8921. msgstr ""
  8922. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2273
  8923. msgid "WPA passphrase"
  8924. msgstr ""
  8925. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1360
  8926. msgid ""
  8927. "WPA-Encryption requires wpa_supplicant (for client mode) or hostapd (for AP "
  8928. "and ad-hoc mode) to be installed."
  8929. msgstr ""
  8930. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:153
  8931. msgid "WPS status"
  8932. msgstr ""
  8933. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:47
  8934. msgid "Waiting for device..."
  8935. msgstr ""
  8936. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:344
  8937. msgid "Warn"
  8938. msgstr ""
  8939. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:189
  8940. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:199
  8941. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:157
  8942. msgid "Warning"
  8943. msgstr ""
  8944. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:26
  8945. msgid "Warning: There are unsaved changes that will get lost on reboot!"
  8946. msgstr ""
  8947. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:37
  8948. msgid "Weak"
  8949. msgstr ""
  8950. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:974
  8951. msgid "Weight"
  8952. msgstr ""
  8953. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1273
  8954. msgid ""
  8955. "When a host matches an entry then the special tag %s is set. Use %s to match "
  8956. "all known hosts."
  8957. msgstr ""
  8958. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1105
  8959. msgid ""
  8960. "When delegating prefixes to multiple downstreams, interfaces with a higher "
  8961. "preference value are considered first when allocating subnets."
  8962. msgstr ""
  8963. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:105
  8964. msgid ""
  8965. "When enabled network coding increases the WiFi throughput by combining "
  8966. "multiple frames into a single frame, thus reducing the needed air time."
  8967. msgstr ""
  8968. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:76
  8969. msgid ""
  8970. "When enabled the distributed ARP table forms a mesh-wide ARP cache that "
  8971. "helps non-mesh clients to get ARP responses much more reliably and without "
  8972. "much delay."
  8973. msgstr ""
  8974. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:115
  8975. msgid ""
  8976. "When enabled, gateway is on-link even if the gateway does not match any "
  8977. "interface prefix"
  8978. msgstr ""
  8979. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:707
  8980. msgid ""
  8981. "When enabled, new ARP table entries are added from received gratuitous ARP "
  8982. "requests or replies, otherwise only preexisting table entries are updated, "
  8983. "but no new hosts are learned."
  8984. msgstr ""
  8985. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/heartbeat.js:14
  8986. msgid ""
  8987. "When inverted, the LED is continuously lit and flickers instead of it being "
  8988. "off by default and blinking on system activity."
  8989. msgstr ""
  8990. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:66
  8991. msgid ""
  8992. "When running the mesh over multiple WiFi interfaces per node batman-adv is "
  8993. "capable of optimizing the traffic flow to gain maximum performance."
  8994. msgstr ""
  8995. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1691
  8996. msgid ""
  8997. "When using a PSK, the PMK can be automatically generated. When enabled, the "
  8998. "R0/R1 key options below are not applied. Disable this to use the R0 and R1 "
  8999. "key options."
  9000. msgstr ""
  9001. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1206
  9002. msgid ""
  9003. "Where Wi-Fi Multimedia (WMM) Mode QoS is disabled, clients may be limited to "
  9004. "802.11a/802.11g rates."
  9005. msgstr ""
  9006. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1202
  9007. msgid ""
  9008. "Where the ESSID is hidden, clients may fail to roam and airtime efficiency "
  9009. "may be significantly reduced."
  9010. msgstr ""
  9011. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:178
  9012. msgid "Which is used to access this %s"
  9013. msgstr ""
  9014. #: modules/luci-compat/luasrc/view/cbi/wireless_modefreq.htm:194
  9015. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:580
  9016. msgid "Width"
  9017. msgstr ""
  9018. #: protocols/luci-proto-wireguard/root/usr/share/luci/menu.d/luci-proto-wireguard.json:3
  9019. msgid "WireGuard"
  9020. msgstr ""
  9021. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:120
  9022. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:165
  9023. msgid "WireGuard Status"
  9024. msgstr ""
  9025. #: modules/luci-compat/luasrc/model/network/proto_wireguard.lua:9
  9026. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:105
  9027. msgid "WireGuard VPN"
  9028. msgstr ""
  9029. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:527
  9030. msgid "WireGuard peer is disabled"
  9031. msgstr ""
  9032. #: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:17
  9033. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:10
  9034. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:341
  9035. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:148
  9036. msgid "Wireless"
  9037. msgstr ""
  9038. #: modules/luci-base/htdocs/luci-static/resources/network.js:3026
  9039. #: modules/luci-compat/luasrc/model/network.lua:1419
  9040. msgid "Wireless Adapter"
  9041. msgstr ""
  9042. #: modules/luci-base/htdocs/luci-static/resources/network.js:3005
  9043. #: modules/luci-base/htdocs/luci-static/resources/network.js:4332
  9044. #: modules/luci-compat/luasrc/model/network.lua:1405
  9045. #: modules/luci-compat/luasrc/model/network.lua:1868
  9046. msgid "Wireless Network"
  9047. msgstr ""
  9048. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:872
  9049. msgid "Wireless Overview"
  9050. msgstr ""
  9051. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1047
  9052. msgid "Wireless Security"
  9053. msgstr ""
  9054. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:854
  9055. msgid "Wireless configuration migration"
  9056. msgstr ""
  9057. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:153
  9058. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:193
  9059. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:152
  9060. msgid "Wireless is disabled"
  9061. msgstr ""
  9062. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:153
  9063. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:193
  9064. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:152
  9065. msgid "Wireless is not associated"
  9066. msgstr ""
  9067. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:996
  9068. msgid "Wireless network is disabled"
  9069. msgstr ""
  9070. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:996
  9071. msgid "Wireless network is enabled"
  9072. msgstr ""
  9073. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1935
  9074. msgid "Workaround mode can only be used when acting as an access point."
  9075. msgstr ""
  9076. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:437
  9077. msgid "Write received DNS queries to syslog."
  9078. msgstr ""
  9079. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:181
  9080. msgid "Write system log to file"
  9081. msgstr ""
  9082. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:211
  9083. msgid "XOR policy (balance-xor, 2)"
  9084. msgstr ""
  9085. #: modules/luci-base/htdocs/luci-static/resources/form.js:4181
  9086. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:302
  9087. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:350
  9088. msgid "Yes"
  9089. msgstr ""
  9090. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:310
  9091. msgid "Yes (none, 0)"
  9092. msgstr ""
  9093. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:205
  9094. msgid "Yggdrasil Network"
  9095. msgstr ""
  9096. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:163
  9097. msgid ""
  9098. "You appear to be currently connected to the device via the \"%h\" interface. "
  9099. "Do you really want to shut down the interface?"
  9100. msgstr ""
  9101. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:112
  9102. msgid ""
  9103. "You can enable or disable installed init scripts here. Changes will be "
  9104. "applied after a device reboot.<br /><strong>Warning: If you disable "
  9105. "essential init scripts like \"network\", your device might become "
  9106. "inaccessible!</strong>"
  9107. msgstr ""
  9108. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:944
  9109. msgid "You may add multiple records for the same Target."
  9110. msgstr ""
  9111. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:981
  9112. msgid "You may add multiple records for the same domain."
  9113. msgstr ""
  9114. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:559
  9115. msgid "You may add multiple unique Relay To on the same Listen addr."
  9116. msgstr ""
  9117. #: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:79
  9118. #: themes/luci-theme-material/ucode/template/themes/material/header.ut:99
  9119. #: themes/luci-theme-openwrt/ucode/template/themes/openwrt.org/header.ut:65
  9120. msgid ""
  9121. "You must enable JavaScript in your browser or LuCI will not work properly."
  9122. msgstr ""
  9123. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:120
  9124. msgid ""
  9125. "You must select a primary interface which is included in selected slave "
  9126. "interfaces!"
  9127. msgstr ""
  9128. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:101
  9129. msgid ""
  9130. "You must select at least one ARP IP target if ARP monitoring is selected!"
  9131. msgstr ""
  9132. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:213
  9133. msgid "ZRam Compression Algorithm"
  9134. msgstr ""
  9135. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:206
  9136. msgid "ZRam Settings"
  9137. msgstr ""
  9138. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:208
  9139. msgid "ZRam Size"
  9140. msgstr ""
  9141. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:943
  9142. msgid "_proto: _tcp, _udp, _sctp, _quic, … ."
  9143. msgstr ""
  9144. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:942
  9145. msgid ""
  9146. "_service: _sip, _ldap, _imap, _stun, _xmpp-client, … . (Note: while _http is "
  9147. "possible, no browsers support SRV records.)"
  9148. msgstr ""
  9149. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:794
  9150. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:158
  9151. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:169
  9152. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:105
  9153. msgid "any"
  9154. msgstr ""
  9155. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1608
  9156. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1616
  9157. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1621
  9158. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:87
  9159. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:102
  9160. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:139
  9161. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1306
  9162. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:83
  9163. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:48
  9164. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:51
  9165. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:89
  9166. msgid "auto"
  9167. msgstr ""
  9168. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:157
  9169. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:800
  9170. msgid "automatic"
  9171. msgstr ""
  9172. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:198
  9173. msgid "automatic (disabled)"
  9174. msgstr ""
  9175. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:198
  9176. msgid "automatic (enabled)"
  9177. msgstr ""
  9178. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:82
  9179. msgid "baseT"
  9180. msgstr ""
  9181. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1681
  9182. msgid "bridged"
  9183. msgstr ""
  9184. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:155
  9185. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:418
  9186. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:35
  9187. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:99
  9188. #: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:31
  9189. msgid "create"
  9190. msgstr ""
  9191. #: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:69
  9192. msgid "create:"
  9193. msgstr ""
  9194. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:165
  9195. msgid ""
  9196. "custom: Use different options when establishing a connection (these options "
  9197. "are prefixed with %s)."
  9198. msgstr ""
  9199. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:55
  9200. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:57
  9201. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:58
  9202. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:62
  9203. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:63
  9204. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:83
  9205. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:84
  9206. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:87
  9207. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:185
  9208. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:186
  9209. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:187
  9210. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:41
  9211. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:42
  9212. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:276
  9213. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:278
  9214. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:279
  9215. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:283
  9216. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:284
  9217. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:263
  9218. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:266
  9219. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:269
  9220. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:273
  9221. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:276
  9222. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:279
  9223. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:306
  9224. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:307
  9225. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:308
  9226. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:312
  9227. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:313
  9228. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:314
  9229. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:316
  9230. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:317
  9231. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:318
  9232. msgid "dBm"
  9233. msgstr ""
  9234. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:73
  9235. msgctxt "nft unit"
  9236. msgid "day"
  9237. msgstr ""
  9238. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:164
  9239. msgid "default: Use the configuration options above (APN, IP Type, ...)."
  9240. msgstr ""
  9241. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1149
  9242. msgid "disable"
  9243. msgstr ""
  9244. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:157
  9245. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:681
  9246. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:788
  9247. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:913
  9248. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:979
  9249. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1057
  9250. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:91
  9251. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:25
  9252. msgid "disabled"
  9253. msgstr ""
  9254. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:20
  9255. msgctxt "DHCPv6 address request mode"
  9256. msgid "disabled"
  9257. msgstr ""
  9258. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:637
  9259. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:671
  9260. msgid "driver default"
  9261. msgstr ""
  9262. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1229
  9263. msgid "driver default (%s)"
  9264. msgstr ""
  9265. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:70
  9266. msgid "e.g: --proxy 10.10.10.10"
  9267. msgstr ""
  9268. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:72
  9269. msgid "e.g: dump"
  9270. msgstr ""
  9271. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:157
  9272. msgid "enabled"
  9273. msgstr ""
  9274. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:747
  9275. msgid "enabled (default)"
  9276. msgstr ""
  9277. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:60
  9278. msgctxt "WireGuard keep alive interval"
  9279. msgid "every %ds"
  9280. msgstr ""
  9281. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1318
  9282. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1348
  9283. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:101
  9284. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:148
  9285. msgid "expired"
  9286. msgstr ""
  9287. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:19
  9288. msgctxt "DHCPv6 address request mode"
  9289. msgid "force"
  9290. msgstr ""
  9291. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:804
  9292. msgid "forced"
  9293. msgstr ""
  9294. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:94
  9295. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:205
  9296. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:61
  9297. msgid "forward"
  9298. msgstr ""
  9299. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:98
  9300. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:84
  9301. msgid "full-duplex"
  9302. msgstr ""
  9303. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:98
  9304. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:84
  9305. msgid "half-duplex"
  9306. msgstr ""
  9307. #: modules/luci-base/htdocs/luci-static/resources/validation.js:623
  9308. msgid "hexadecimal encoded value"
  9309. msgstr ""
  9310. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2046
  9311. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:353
  9312. msgid "hidden"
  9313. msgstr ""
  9314. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:74
  9315. msgctxt "nft unit"
  9316. msgid "hour"
  9317. msgstr ""
  9318. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:794
  9319. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:919
  9320. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:983
  9321. msgid "hybrid mode"
  9322. msgstr ""
  9323. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:65
  9324. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/ipip6.js:66
  9325. msgid "ignore"
  9326. msgstr ""
  9327. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1252
  9328. msgid "infinite (lease does not expire)"
  9329. msgstr ""
  9330. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:78
  9331. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:201
  9332. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:46
  9333. msgid "input"
  9334. msgstr ""
  9335. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1528
  9336. msgid "integer"
  9337. msgstr ""
  9338. #: modules/luci-base/htdocs/luci-static/resources/validation.js:440
  9339. msgid "key between 8 and 63 characters"
  9340. msgstr ""
  9341. #: modules/luci-base/htdocs/luci-static/resources/validation.js:452
  9342. msgid "key with either 5 or 13 characters"
  9343. msgstr ""
  9344. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1276
  9345. msgid "known"
  9346. msgstr ""
  9347. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1278
  9348. msgid "known-othernet (on different subnet)"
  9349. msgstr ""
  9350. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:111
  9351. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:111
  9352. msgid "l2miss: Layer 2 miss"
  9353. msgstr ""
  9354. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:117
  9355. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:117
  9356. msgid "l3miss: Layer 3 miss"
  9357. msgstr ""
  9358. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:818
  9359. msgid "managed config (M)"
  9360. msgstr ""
  9361. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1471
  9362. msgid "medium security"
  9363. msgstr ""
  9364. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:75
  9365. msgctxt "nft unit"
  9366. msgid "minute"
  9367. msgstr ""
  9368. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1696
  9369. msgid "minutes"
  9370. msgstr ""
  9371. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:822
  9372. msgid "mobile home agent (H)"
  9373. msgstr ""
  9374. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:428
  9375. msgid "netif_carrier_ok()"
  9376. msgstr ""
  9377. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:47
  9378. msgid "no"
  9379. msgstr ""
  9380. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:104
  9381. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:76
  9382. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:232
  9383. msgid "no link"
  9384. msgstr ""
  9385. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1229
  9386. msgid "no override"
  9387. msgstr ""
  9388. #: modules/luci-base/htdocs/luci-static/resources/form.js:2271
  9389. #: modules/luci-base/htdocs/luci-static/resources/validation.js:72
  9390. msgid "non-empty value"
  9391. msgstr ""
  9392. #: modules/luci-base/htdocs/luci-static/resources/form.js:3382
  9393. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:825
  9394. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:166
  9395. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:39
  9396. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:56
  9397. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:60
  9398. msgid "none"
  9399. msgstr ""
  9400. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:163
  9401. msgid "none: Do not set an initial EPS bearer (default behaviour)"
  9402. msgstr ""
  9403. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:41
  9404. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:55
  9405. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:69
  9406. msgid "not present"
  9407. msgstr ""
  9408. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1528
  9409. msgid "octet string"
  9410. msgstr ""
  9411. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:746
  9412. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:349
  9413. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1026
  9414. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1030
  9415. msgid "off"
  9416. msgstr ""
  9417. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:802
  9418. msgid "on available prefix"
  9419. msgstr ""
  9420. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1472
  9421. msgid "open network"
  9422. msgstr ""
  9423. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:820
  9424. msgid "other config (O)"
  9425. msgstr ""
  9426. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:78
  9427. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:46
  9428. msgid "output"
  9429. msgstr ""
  9430. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:28
  9431. msgid "over a day ago"
  9432. msgstr ""
  9433. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:69
  9434. msgctxt "nft unit"
  9435. msgid "packets"
  9436. msgstr ""
  9437. #: modules/luci-base/htdocs/luci-static/resources/validation.js:265
  9438. msgid "positive decimal value"
  9439. msgstr ""
  9440. #: modules/luci-base/htdocs/luci-static/resources/validation.js:257
  9441. msgid "positive integer value"
  9442. msgstr ""
  9443. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:164
  9444. msgid "random"
  9445. msgstr ""
  9446. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1230
  9447. msgid "randomly generated"
  9448. msgstr ""
  9449. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:51
  9450. msgid ""
  9451. "reduces overhead by collecting and aggregating originator messages in a "
  9452. "single packet rather than many small ones"
  9453. msgstr ""
  9454. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:792
  9455. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:917
  9456. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:981
  9457. msgid "relay mode"
  9458. msgstr ""
  9459. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1682
  9460. msgid "routed"
  9461. msgstr ""
  9462. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1241
  9463. msgid "sec"
  9464. msgstr ""
  9465. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:790
  9466. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:915
  9467. msgid "server mode"
  9468. msgstr ""
  9469. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:58
  9470. msgid "sstpc Log-level"
  9471. msgstr ""
  9472. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:466
  9473. msgid "stderr"
  9474. msgstr ""
  9475. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1528
  9476. msgid "string (UTF-8)"
  9477. msgstr ""
  9478. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1470
  9479. msgid "strong security"
  9480. msgstr ""
  9481. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:354
  9482. msgid "tagged"
  9483. msgstr ""
  9484. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:246
  9485. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:246
  9486. msgid ""
  9487. "the VXLAN Network Identifier (or VXLAN Segment ID) to use to connect to the "
  9488. "remote VXLAN tunnel endpoint"
  9489. msgstr ""
  9490. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:251
  9491. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:251
  9492. msgid ""
  9493. "the source VNI Network Identifier (or VXLAN Segment ID) this entry belongs "
  9494. "to. Used only when the VXLAN device is in external or collect metadata mode"
  9495. msgstr ""
  9496. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1679
  9497. msgid "time units (TUs / 1.024 ms) [1000-65535]"
  9498. msgstr ""
  9499. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:18
  9500. msgctxt "DHCPv6 address request mode"
  9501. msgid "try"
  9502. msgstr ""
  9503. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/uhttpd.js:9
  9504. msgid ""
  9505. "uHTTPd offers <abbr title=\"Hypertext Transfer Protocol\">HTTP</abbr> or "
  9506. "<abbr title=\"Hypertext Transfer Protocol Secure\">HTTPS</abbr> network "
  9507. "access."
  9508. msgstr ""
  9509. #: modules/luci-base/htdocs/luci-static/resources/validation.js:613
  9510. msgid "unique value"
  9511. msgstr ""
  9512. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:652
  9513. msgid "unknown"
  9514. msgstr ""
  9515. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:28
  9516. msgid "unknown version"
  9517. msgstr ""
  9518. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1316
  9519. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1346
  9520. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:99
  9521. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:146
  9522. msgid "unlimited"
  9523. msgstr ""
  9524. #: modules/luci-base/htdocs/luci-static/resources/form.js:3747
  9525. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:85
  9526. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:147
  9527. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:382
  9528. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:409
  9529. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:445
  9530. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:482
  9531. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:578
  9532. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:53
  9533. #: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:38
  9534. msgid "unspecified"
  9535. msgstr ""
  9536. #: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:71
  9537. msgid "unspecified -or- create:"
  9538. msgstr ""
  9539. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:352
  9540. msgid "untagged"
  9541. msgstr ""
  9542. #: modules/luci-base/htdocs/luci-static/resources/validation.js:270
  9543. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:192
  9544. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:203
  9545. msgid "valid IP address"
  9546. msgstr ""
  9547. #: modules/luci-base/htdocs/luci-static/resources/validation.js:270
  9548. msgid "valid IP address or prefix"
  9549. msgstr ""
  9550. #: modules/luci-base/htdocs/luci-static/resources/validation.js:351
  9551. msgid "valid IP address range"
  9552. msgstr ""
  9553. #: modules/luci-base/htdocs/luci-static/resources/validation.js:307
  9554. msgid "valid IPv4 CIDR"
  9555. msgstr ""
  9556. #: modules/luci-base/htdocs/luci-static/resources/validation.js:278
  9557. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:196
  9558. msgid "valid IPv4 address"
  9559. msgstr ""
  9560. #: modules/luci-base/htdocs/luci-static/resources/validation.js:278
  9561. msgid "valid IPv4 address or network"
  9562. msgstr ""
  9563. #: modules/luci-base/htdocs/luci-static/resources/validation.js:357
  9564. msgid "valid IPv4 address range"
  9565. msgstr ""
  9566. #: modules/luci-base/htdocs/luci-static/resources/validation.js:419
  9567. msgid "valid IPv4 address:port"
  9568. msgstr ""
  9569. #: modules/luci-base/htdocs/luci-static/resources/validation.js:341
  9570. msgid "valid IPv4 network"
  9571. msgstr ""
  9572. #: modules/luci-base/htdocs/luci-static/resources/validation.js:301
  9573. msgid "valid IPv4 or IPv6 CIDR"
  9574. msgstr ""
  9575. #: modules/luci-base/htdocs/luci-static/resources/validation.js:291
  9576. msgid "valid IPv4 prefix value (0-32)"
  9577. msgstr ""
  9578. #: modules/luci-base/htdocs/luci-static/resources/validation.js:313
  9579. msgid "valid IPv6 CIDR"
  9580. msgstr ""
  9581. #: modules/luci-base/htdocs/luci-static/resources/validation.js:286
  9582. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:200
  9583. msgid "valid IPv6 address"
  9584. msgstr ""
  9585. #: modules/luci-base/htdocs/luci-static/resources/validation.js:286
  9586. msgid "valid IPv6 address or prefix"
  9587. msgstr ""
  9588. #: modules/luci-base/htdocs/luci-static/resources/validation.js:363
  9589. msgid "valid IPv6 address range"
  9590. msgstr ""
  9591. #: modules/luci-base/htdocs/luci-static/resources/validation.js:331
  9592. msgid "valid IPv6 host id"
  9593. msgstr ""
  9594. #: modules/luci-base/htdocs/luci-static/resources/validation.js:346
  9595. msgid "valid IPv6 network"
  9596. msgstr ""
  9597. #: modules/luci-base/htdocs/luci-static/resources/validation.js:296
  9598. msgid "valid IPv6 prefix value (0-128)"
  9599. msgstr ""
  9600. #: modules/luci-base/htdocs/luci-static/resources/validation.js:385
  9601. msgid "valid MAC address"
  9602. msgstr ""
  9603. #: modules/luci-base/htdocs/luci-static/resources/validation.js:456
  9604. msgid "valid UCI identifier"
  9605. msgstr ""
  9606. #: modules/luci-base/htdocs/luci-static/resources/validation.js:407
  9607. msgid "valid UCI identifier, hostname or IP address range"
  9608. msgstr ""
  9609. #: modules/luci-base/htdocs/luci-static/resources/validation.js:428
  9610. #: modules/luci-base/htdocs/luci-static/resources/validation.js:431
  9611. msgid "valid address:port"
  9612. msgstr ""
  9613. #: modules/luci-base/htdocs/luci-static/resources/validation.js:587
  9614. #: modules/luci-base/htdocs/luci-static/resources/validation.js:591
  9615. msgid "valid date (YYYY-MM-DD)"
  9616. msgstr ""
  9617. #: modules/luci-base/htdocs/luci-static/resources/validation.js:261
  9618. msgid "valid decimal value"
  9619. msgstr ""
  9620. #: modules/luci-base/htdocs/luci-static/resources/validation.js:450
  9621. msgid "valid hexadecimal WEP key"
  9622. msgstr ""
  9623. #: modules/luci-base/htdocs/luci-static/resources/validation.js:438
  9624. msgid "valid hexadecimal WPA key"
  9625. msgstr ""
  9626. #: modules/luci-base/htdocs/luci-static/resources/validation.js:413
  9627. msgid "valid host:port"
  9628. msgstr ""
  9629. #: modules/luci-base/htdocs/luci-static/resources/validation.js:400
  9630. #: modules/luci-base/htdocs/luci-static/resources/validation.js:402
  9631. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:142
  9632. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:148
  9633. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:176
  9634. msgid "valid hostname"
  9635. msgstr ""
  9636. #: modules/luci-base/htdocs/luci-static/resources/validation.js:390
  9637. msgid "valid hostname or IP address"
  9638. msgstr ""
  9639. #: modules/luci-base/htdocs/luci-static/resources/validation.js:253
  9640. msgid "valid integer value"
  9641. msgstr ""
  9642. #: modules/luci-base/htdocs/luci-static/resources/validation.js:385
  9643. msgid "valid multicast MAC address"
  9644. msgstr ""
  9645. #: modules/luci-base/htdocs/luci-static/resources/validation.js:465
  9646. msgid ""
  9647. "valid network device name between 1 and 15 characters not containing \":\", "
  9648. "\"/\", \"%\" or spaces"
  9649. msgstr ""
  9650. #: modules/luci-base/htdocs/luci-static/resources/validation.js:463
  9651. msgid "valid network device name, not \".\" or \"..\""
  9652. msgstr ""
  9653. #: modules/luci-base/htdocs/luci-static/resources/validation.js:336
  9654. msgid "valid network in address/netmask notation"
  9655. msgstr ""
  9656. #: modules/luci-base/htdocs/luci-static/resources/validation.js:562
  9657. msgid "valid phone digit (0-9, \"*\", \"#\", \"!\" or \".\")"
  9658. msgstr ""
  9659. #: modules/luci-base/htdocs/luci-static/resources/validation.js:376
  9660. #: modules/luci-base/htdocs/luci-static/resources/validation.js:379
  9661. msgid "valid port or port range (port1-port2)"
  9662. msgstr ""
  9663. #: modules/luci-base/htdocs/luci-static/resources/validation.js:368
  9664. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:207
  9665. msgid "valid port value"
  9666. msgstr ""
  9667. #: modules/luci-base/htdocs/luci-static/resources/validation.js:567
  9668. msgid "valid time (HH:MM:SS)"
  9669. msgstr ""
  9670. #: modules/luci-base/htdocs/luci-static/resources/validation.js:489
  9671. msgid "value between %d and %d characters"
  9672. msgstr ""
  9673. #: modules/luci-base/htdocs/luci-static/resources/validation.js:470
  9674. msgid "value between %f and %f"
  9675. msgstr ""
  9676. #: modules/luci-base/htdocs/luci-static/resources/validation.js:474
  9677. msgid "value greater or equal to %f"
  9678. msgstr ""
  9679. #: modules/luci-base/htdocs/luci-static/resources/validation.js:478
  9680. msgid "value smaller or equal to %f"
  9681. msgstr ""
  9682. #: modules/luci-base/htdocs/luci-static/resources/validation.js:483
  9683. msgid "value with %d characters"
  9684. msgstr ""
  9685. #: modules/luci-base/htdocs/luci-static/resources/validation.js:494
  9686. msgid "value with at least %d characters"
  9687. msgstr ""
  9688. #: modules/luci-base/htdocs/luci-static/resources/validation.js:499
  9689. msgid "value with at most %d characters"
  9690. msgstr ""
  9691. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1472
  9692. msgid "weak security"
  9693. msgstr ""
  9694. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:72
  9695. msgctxt "nft unit"
  9696. msgid "week"
  9697. msgstr ""
  9698. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:47
  9699. msgid "yes"
  9700. msgstr ""
  9701. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:483
  9702. msgctxt "hint: <code>/#/</code> matches any domain (and returns NXDOMAIN)."
  9703. msgid "{any_domain} matches any domain (and returns {nxdomain})."
  9704. msgstr ""
  9705. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:487
  9706. msgctxt ""
  9707. "hint: <code>/example.com/#</code> returns NULL addresses (<code>0.0.0.0</"
  9708. "code>, <code>::</code>) for example.com and its subdomains."
  9709. msgid ""
  9710. "{example_null} returns {null_addr} addresses ({null_ipv4}, {null_ipv6}) for "
  9711. "{example_com} and its subdomains."
  9712. msgstr ""
  9713. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:480
  9714. msgctxt "hint: <code>/example.com/</code> returns <code>NXDOMAIN</code>."
  9715. msgid "{example_nx} returns {nxdomain}."
  9716. msgstr ""
  9717. #: modules/luci-compat/luasrc/view/cbi/delegator.htm:20
  9718. msgid "« Back"
  9719. msgstr ""