1
0

base.pot 401 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954
  1. msgid ""
  2. msgstr "Content-Type: text/plain; charset=UTF-8"
  3. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:925
  4. msgid "!known (not known)"
  5. msgstr ""
  6. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:649
  7. msgctxt "Yet unknown nftables table family (\"family\" table \"name\")"
  8. msgid "\"%h\" table \"%h\""
  9. msgstr ""
  10. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1591
  11. msgid "%.1f dB"
  12. msgstr ""
  13. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:123
  14. msgid "%d Bit"
  15. msgstr ""
  16. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4097
  17. msgid "%d invalid field(s)"
  18. msgstr ""
  19. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:26
  20. msgid "%dh ago"
  21. msgstr ""
  22. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:24
  23. msgid "%dm ago"
  24. msgstr ""
  25. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:22
  26. msgid "%ds ago"
  27. msgstr ""
  28. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:35
  29. msgid "%s is untagged in multiple VLANs!"
  30. msgstr ""
  31. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:296
  32. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:405
  33. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:272
  34. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:309
  35. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:327
  36. msgid "(%d minute window, %d second interval)"
  37. msgstr ""
  38. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:118
  39. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:124
  40. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:259
  41. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:283
  42. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:88
  43. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:91
  44. msgid "(empty)"
  45. msgstr ""
  46. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:352
  47. #: modules/luci-compat/luasrc/view/cbi/network_netinfo.htm:23
  48. #: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:58
  49. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:271
  50. msgid "(no interfaces attached)"
  51. msgstr ""
  52. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:635
  53. msgctxt "Label indicating further amount of allowed ips"
  54. msgid "+ %d more"
  55. msgstr ""
  56. #: modules/luci-compat/luasrc/view/cbi/ucisection.htm:48
  57. msgid "-- Additional Field --"
  58. msgstr ""
  59. #: modules/luci-base/htdocs/luci-static/resources/cbi.js:275
  60. #: modules/luci-base/htdocs/luci-static/resources/form.js:3789
  61. #: modules/luci-base/htdocs/luci-static/resources/form.js:4157
  62. #: modules/luci-base/htdocs/luci-static/resources/ui.js:799
  63. #: modules/luci-base/htdocs/luci-static/resources/ui.js:1037
  64. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2033
  65. #: modules/luci-compat/luasrc/view/cbi/header.htm:8
  66. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:89
  67. msgid "-- Please choose --"
  68. msgstr ""
  69. #: modules/luci-base/htdocs/luci-static/resources/cbi.js:276
  70. #: modules/luci-base/htdocs/luci-static/resources/ui.js:1038
  71. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2034
  72. #: modules/luci-compat/luasrc/view/cbi/header.htm:9
  73. msgid "-- custom --"
  74. msgstr ""
  75. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:271
  76. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:380
  77. msgid "-- match by label --"
  78. msgstr ""
  79. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:257
  80. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:363
  81. msgid "-- match by uuid --"
  82. msgstr ""
  83. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:27
  84. #: modules/luci-compat/luasrc/view/cbi/network_ifacelist.htm:44
  85. #: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:23
  86. msgid "-- please select --"
  87. msgstr ""
  88. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:55
  89. msgctxt "sstp log level value"
  90. msgid "0"
  91. msgstr ""
  92. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:998
  93. msgid "0 = not using RSSI threshold, 1 = do not change driver default"
  94. msgstr ""
  95. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:56
  96. msgctxt "sstp log level value"
  97. msgid "1"
  98. msgstr ""
  99. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:233
  100. msgid "1 Minute Load:"
  101. msgstr ""
  102. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:323
  103. msgctxt "nft amount of flags"
  104. msgid "1 flag"
  105. msgid_plural "%d flags"
  106. msgstr[0] ""
  107. msgstr[1] ""
  108. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:898
  109. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:984
  110. msgid "12h (12 hours - default)"
  111. msgstr ""
  112. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:253
  113. msgid "15 Minute Load:"
  114. msgstr ""
  115. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:57
  116. msgctxt "sstp log level value"
  117. msgid "2"
  118. msgstr ""
  119. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:58
  120. msgctxt "sstp log level value"
  121. msgid "3"
  122. msgstr ""
  123. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:897
  124. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:983
  125. msgid "3h (3 hours)"
  126. msgstr ""
  127. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:59
  128. msgctxt "sstp log level value"
  129. msgid "4"
  130. msgstr ""
  131. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1562
  132. msgid "4-character hexadecimal ID"
  133. msgstr ""
  134. #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:18
  135. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:11
  136. msgid "464XLAT (CLAT)"
  137. msgstr ""
  138. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:243
  139. msgid "5 Minute Load:"
  140. msgstr ""
  141. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:896
  142. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:982
  143. msgid "5m (5 minutes)"
  144. msgstr ""
  145. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1591
  146. msgid "6-octet identifier as a hex string - no colons"
  147. msgstr ""
  148. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:899
  149. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:985
  150. msgid "7d (7 days)"
  151. msgstr ""
  152. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1614
  153. msgid "802.11k RRM"
  154. msgstr ""
  155. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1623
  156. msgid "802.11k: Enable beacon report via radio measurements."
  157. msgstr ""
  158. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1619
  159. msgid "802.11k: Enable neighbor report via radio measurements."
  160. msgstr ""
  161. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1551
  162. msgid "802.11r Fast Transition"
  163. msgstr ""
  164. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1183
  165. msgid "802.11v: BSS Max Idle. Units: seconds."
  166. msgstr ""
  167. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1649
  168. msgid "802.11v: Basic Service Set (BSS) transition management."
  169. msgstr ""
  170. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1638
  171. msgid "802.11v: Local Time Zone Advertisement in management frames."
  172. msgstr ""
  173. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1653
  174. msgid ""
  175. "802.11v: Proxy ARP enables non-AP STA to remain in power-save for longer."
  176. msgstr ""
  177. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1629
  178. msgid "802.11v: Time Advertisement in management frames."
  179. msgstr ""
  180. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1642
  181. msgid ""
  182. "802.11v: Wireless Network Management (WNM) Sleep Mode (extended sleep mode "
  183. "for stations)."
  184. msgstr ""
  185. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1646
  186. msgid ""
  187. "802.11v: Wireless Network Management (WNM) Sleep Mode Fixes: Prevents "
  188. "reinstallation attacks."
  189. msgstr ""
  190. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1796
  191. msgid "802.11w Association SA Query maximum timeout"
  192. msgstr ""
  193. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1803
  194. msgid "802.11w Association SA Query retry timeout"
  195. msgstr ""
  196. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1777
  197. msgid "802.11w Management Frame Protection"
  198. msgstr ""
  199. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1796
  200. msgid "802.11w maximum timeout"
  201. msgstr ""
  202. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1803
  203. msgid "802.11w retry timeout"
  204. msgstr ""
  205. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1015
  206. msgid "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>"
  207. msgstr ""
  208. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1004
  209. msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>"
  210. msgstr ""
  211. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:708
  212. msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Netmask"
  213. msgstr ""
  214. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:58
  215. msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Configuration"
  216. msgstr ""
  217. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:70
  218. msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Name"
  219. msgstr ""
  220. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:961
  221. msgid "<abbr title=\"Neighbour Discovery Protocol\">NDP</abbr>-Proxy"
  222. msgstr ""
  223. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:831
  224. msgid "<abbr title=\"Router Advertisement\">RA</abbr> Flags"
  225. msgstr ""
  226. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:905
  227. msgid "<abbr title=\"Router Advertisement\">RA</abbr> Hop Limit"
  228. msgstr ""
  229. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:879
  230. msgid "<abbr title=\"Router Advertisement\">RA</abbr> Lifetime"
  231. msgstr ""
  232. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:886
  233. msgid "<abbr title=\"Router Advertisement\">RA</abbr> MTU"
  234. msgstr ""
  235. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:803
  236. msgid "<abbr title=\"Router Advertisement\">RA</abbr>-Service"
  237. msgstr ""
  238. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:300
  239. msgid ""
  240. "<code>/#/</code> matches any domain. <code>/example.com/</code> returns "
  241. "NXDOMAIN."
  242. msgstr ""
  243. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301
  244. msgid ""
  245. "<code>/example.com/#</code> returns NULL addresses (<code>0.0.0.0</code> and "
  246. "<code>::</code>) for example.com and its subdomains."
  247. msgstr ""
  248. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:87
  249. msgctxt "nft relational \">\" operator expression"
  250. msgid "<var>%s</var> greater than <strong>%s</strong>"
  251. msgstr ""
  252. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:85
  253. msgctxt "nft relational \">=\" operator expression"
  254. msgid "<var>%s</var> greater than or equal to <strong>%s</strong>"
  255. msgstr ""
  256. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:90
  257. msgctxt "nft set match expression"
  258. msgid "<var>%s</var> in set <strong>%s</strong>"
  259. msgstr ""
  260. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:83
  261. msgctxt "nft relational \"==\" operator expression"
  262. msgid "<var>%s</var> is <strong>%s</strong>"
  263. msgstr ""
  264. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:89
  265. msgctxt "nft relational \"in\" operator expression"
  266. msgid "<var>%s</var> is one of <strong>%s</strong>"
  267. msgstr ""
  268. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:88
  269. msgctxt "nft relational \"<\" operator expression"
  270. msgid "<var>%s</var> lower than <strong>%s</strong>"
  271. msgstr ""
  272. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:86
  273. msgctxt "nft relational \"<=\" operator expression"
  274. msgid "<var>%s</var> lower than or equal to <strong>%s</strong>"
  275. msgstr ""
  276. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:84
  277. msgctxt "nft relational \"!=\" operator expression"
  278. msgid "<var>%s</var> not <strong>%s</strong>"
  279. msgstr ""
  280. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:91
  281. msgctxt "nft not in set match expression"
  282. msgid "<var>%s</var> not in set <strong>%s</strong>"
  283. msgstr ""
  284. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:86
  285. msgid ""
  286. "A batman-adv node can either run in server mode (sharing its internet "
  287. "connection with the mesh) or in client mode (searching for the most suitable "
  288. "internet connection in the mesh) or having the gateway support turned off "
  289. "entirely (which is the default setting)."
  290. msgstr ""
  291. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:424
  292. msgid "A configuration for the device \"%s\" already exists"
  293. msgstr ""
  294. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2779
  295. msgid "A directory with the same name already exists."
  296. msgstr ""
  297. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2666
  298. msgid "A new login is required since the authentication session expired."
  299. msgstr ""
  300. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1571
  301. msgid "A43C + J43 + A43"
  302. msgstr ""
  303. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1572
  304. msgid "A43C + J43 + A43 + V43"
  305. msgstr ""
  306. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1584
  307. msgid "ADSL"
  308. msgstr ""
  309. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1558
  310. msgid "ADSL (G.992.1) Annex A"
  311. msgstr ""
  312. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1559
  313. msgid "ADSL (G.992.1) Annex B"
  314. msgstr ""
  315. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1552
  316. msgid "ADSL (all variants) Annex A/L/M"
  317. msgstr ""
  318. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1548
  319. msgid "ADSL (all variants) Annex A/L/M + VDSL2 Annex A/B/C"
  320. msgstr ""
  321. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1553
  322. msgid "ADSL (all variants) Annex B"
  323. msgstr ""
  324. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1549
  325. msgid "ADSL (all variants) Annex B + VDSL2 Annex A/B/C"
  326. msgstr ""
  327. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1554
  328. msgid "ADSL (all variants) Annex B/J"
  329. msgstr ""
  330. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1550
  331. msgid "ADSL (all variants) Annex B/J + VDSL2 Annex A/B/C"
  332. msgstr ""
  333. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1556
  334. msgid "ADSL (all variants) Annex M"
  335. msgstr ""
  336. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1561
  337. msgid "ADSL2 (G.992.3) Annex A"
  338. msgstr ""
  339. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1562
  340. msgid "ADSL2 (G.992.3) Annex B"
  341. msgstr ""
  342. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1563
  343. msgid "ADSL2 (G.992.3) Annex L"
  344. msgstr ""
  345. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1564
  346. msgid "ADSL2 (G.992.3) Annex M"
  347. msgstr ""
  348. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1565
  349. msgid "ADSL2+ (G.992.5) Annex A"
  350. msgstr ""
  351. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1566
  352. msgid "ADSL2+ (G.992.5) Annex B"
  353. msgstr ""
  354. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1567
  355. msgid "ADSL2+ (G.992.5) Annex M"
  356. msgstr ""
  357. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1557
  358. msgid "ANSI T1.413"
  359. msgstr ""
  360. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:95
  361. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:65
  362. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:65
  363. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:91
  364. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:68
  365. msgid "APN"
  366. msgstr ""
  367. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:353
  368. msgid "ARP"
  369. msgstr ""
  370. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:366
  371. msgid "ARP IP Targets"
  372. msgstr ""
  373. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:358
  374. msgid "ARP Interval"
  375. msgstr ""
  376. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:382
  377. msgid "ARP Validation"
  378. msgstr ""
  379. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:374
  380. msgid "ARP mode to consider a slave as being up"
  381. msgstr ""
  382. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:79
  383. msgid "ARP monitoring is not supported for the selected policy!"
  384. msgstr ""
  385. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:175
  386. msgid "ARP retry threshold"
  387. msgstr ""
  388. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:637
  389. msgid "ARP traffic table \"%h\""
  390. msgstr ""
  391. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1146
  392. msgid ""
  393. "ARP, IPv4 and IPv6 (even 802.1Q) with multicast destination MACs are unicast "
  394. "to the STA MAC address. Note: This is not Directed Multicast Service (DMS) "
  395. "in 802.11v. Note: might break receiver STA multicast expectations."
  396. msgstr ""
  397. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1579
  398. msgid "ATM (Asynchronous Transfer Mode)"
  399. msgstr ""
  400. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1600
  401. msgid "ATM Bridges"
  402. msgstr ""
  403. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1632
  404. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:66
  405. msgid "ATM Virtual Channel Identifier (VCI)"
  406. msgstr ""
  407. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1633
  408. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:70
  409. msgid "ATM Virtual Path Identifier (VPI)"
  410. msgstr ""
  411. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1600
  412. msgid ""
  413. "ATM bridges expose encapsulated ethernet in AAL5 connections as virtual "
  414. "Linux network interfaces which can be used in conjunction with DHCP or PPP "
  415. "to dial into the provider network."
  416. msgstr ""
  417. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1639
  418. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:62
  419. msgid "ATM device number"
  420. msgstr ""
  421. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:266
  422. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:548
  423. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:552
  424. msgid "Absent Interface"
  425. msgstr ""
  426. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:331
  427. msgid "Accept DNS queries only from hosts whose address is on a local subnet."
  428. msgstr ""
  429. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:701
  430. msgid "Accept local"
  431. msgstr ""
  432. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:95
  433. msgctxt "nft accept action"
  434. msgid "Accept packet"
  435. msgstr ""
  436. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:701
  437. msgid "Accept packets with local source addresses"
  438. msgstr ""
  439. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:47
  440. msgid "Access Concentrator"
  441. msgstr ""
  442. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:986
  443. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1101
  444. msgid "Access Point"
  445. msgstr ""
  446. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:60
  447. msgid "Access Point Isolation"
  448. msgstr ""
  449. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:99
  450. msgid "Access Technologies"
  451. msgstr ""
  452. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:388
  453. msgid "Actions"
  454. msgstr ""
  455. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:14
  456. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:134
  457. msgid "Active"
  458. msgstr ""
  459. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:81
  460. msgid "Active Connections"
  461. msgstr ""
  462. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:35
  463. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:182
  464. msgid "Active DHCP Leases"
  465. msgstr ""
  466. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:54
  467. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:184
  468. msgid "Active DHCPv6 Leases"
  469. msgstr ""
  470. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:255
  471. msgid "Active IPv4 Routes"
  472. msgstr ""
  473. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:258
  474. msgid "Active IPv4 Rules"
  475. msgstr ""
  476. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:265
  477. msgid "Active IPv6 Routes"
  478. msgstr ""
  479. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:268
  480. msgid "Active IPv6 Rules"
  481. msgstr ""
  482. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:205
  483. msgid "Active-Backup policy (active-backup, 1)"
  484. msgstr ""
  485. #: modules/luci-base/htdocs/luci-static/resources/network.js:3866
  486. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:988
  487. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:23
  488. msgid "Ad-Hoc"
  489. msgstr ""
  490. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:210
  491. msgid "Adaptive load balancing (balance-alb, 6)"
  492. msgstr ""
  493. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:209
  494. msgid "Adaptive transmit load balancing (balance-tlb, 5)"
  495. msgstr ""
  496. #: modules/luci-base/htdocs/luci-static/resources/form.js:2233
  497. #: modules/luci-base/htdocs/luci-static/resources/form.js:2236
  498. #: modules/luci-base/htdocs/luci-static/resources/form.js:2249
  499. #: modules/luci-base/htdocs/luci-static/resources/form.js:2257
  500. #: modules/luci-base/htdocs/luci-static/resources/form.js:3587
  501. #: modules/luci-compat/luasrc/view/cbi/nsection.htm:25
  502. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:189
  503. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:197
  504. #: modules/luci-compat/luasrc/view/cbi/tsection.htm:39
  505. #: modules/luci-compat/luasrc/view/cbi/tsection.htm:47
  506. #: modules/luci-compat/luasrc/view/cbi/ucisection.htm:54
  507. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:879
  508. msgid "Add"
  509. msgstr ""
  510. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1604
  511. msgid "Add ATM Bridge"
  512. msgstr ""
  513. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:92
  514. msgid "Add IPv4 address…"
  515. msgstr ""
  516. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:185
  517. msgid "Add IPv6 address…"
  518. msgstr ""
  519. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:65
  520. msgid "Add LED action"
  521. msgstr ""
  522. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:221
  523. msgid "Add VLAN"
  524. msgstr ""
  525. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1371
  526. msgid "Add device configuration"
  527. msgstr ""
  528. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1311
  529. msgid "Add device configuration…"
  530. msgstr ""
  531. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:15
  532. msgid "Add instance"
  533. msgstr ""
  534. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:171
  535. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:177
  536. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:274
  537. msgid "Add key"
  538. msgstr ""
  539. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:496
  540. msgid "Add local domain suffix to names served from hosts files."
  541. msgstr ""
  542. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:482
  543. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1195
  544. msgid "Add new interface..."
  545. msgstr ""
  546. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:224
  547. msgid "Add peer"
  548. msgstr ""
  549. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:945
  550. msgid "Add static forward and reverse DNS entries for this host."
  551. msgstr ""
  552. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:335
  553. msgid "Add to Blacklist"
  554. msgstr ""
  555. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:335
  556. msgid "Add to Whitelist"
  557. msgstr ""
  558. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:442
  559. msgid "Additional hosts files"
  560. msgstr ""
  561. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:503
  562. msgid "Additional servers file"
  563. msgstr ""
  564. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:34
  565. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:35
  566. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:36
  567. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:37
  568. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:38
  569. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:39
  570. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:40
  571. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:41
  572. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:42
  573. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:43
  574. msgid "Address"
  575. msgstr ""
  576. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:410
  577. msgid "Address families of \"Relay from\" and \"Relay to address\" must match."
  578. msgstr ""
  579. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:21
  580. msgctxt "nft meta nfproto"
  581. msgid "Address family"
  582. msgstr ""
  583. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:284
  584. msgid "Address setting is invalid"
  585. msgstr ""
  586. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:151
  587. msgid "Address to access local relay bridge"
  588. msgstr ""
  589. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:297
  590. msgid "Addresses"
  591. msgstr ""
  592. #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:3
  593. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:15
  594. msgid "Administration"
  595. msgstr ""
  596. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:257
  597. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:495
  598. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:650
  599. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1630
  600. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:39
  601. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:128
  602. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:918
  603. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:982
  604. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:241
  605. msgid "Advanced Settings"
  606. msgstr ""
  607. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:391
  608. msgid "Advanced device options"
  609. msgstr ""
  610. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:567
  611. msgid "Ageing time"
  612. msgstr ""
  613. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:50
  614. msgid "Aggregate Originator Messages"
  615. msgstr ""
  616. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:260
  617. msgid "Aggregation Selection Logic"
  618. msgstr ""
  619. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:263
  620. msgid "Aggregator: All slaves down or has no slaves (stable, 0)"
  621. msgstr ""
  622. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:265
  623. msgid ""
  624. "Aggregator: Chosen by the largest number of ports + slave added/removed or "
  625. "state changes (count, 2)"
  626. msgstr ""
  627. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:264
  628. msgid "Aggregator: Slave added/removed or state changes (bandwidth, 1)"
  629. msgstr ""
  630. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:192
  631. msgid "Alert"
  632. msgstr ""
  633. #: modules/luci-base/htdocs/luci-static/resources/network.js:2989
  634. #: modules/luci-compat/luasrc/model/network.lua:1417
  635. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:62
  636. msgid "Alias Interface"
  637. msgstr ""
  638. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:146
  639. msgid "Alias of \"%s\""
  640. msgstr ""
  641. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:513
  642. msgid "All servers"
  643. msgstr ""
  644. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:453
  645. msgid ""
  646. "Allocate IP addresses sequentially, starting from the lowest available "
  647. "address."
  648. msgstr ""
  649. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:452
  650. msgid "Allocate IPs sequentially"
  651. msgstr ""
  652. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:25
  653. msgid "Allow <abbr title=\"Secure Shell\">SSH</abbr> password authentication"
  654. msgstr ""
  655. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1193
  656. msgid "Allow AP mode to disconnect STAs based on low ACK condition"
  657. msgstr ""
  658. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1084
  659. msgid "Allow all except listed"
  660. msgstr ""
  661. #: modules/luci-compat/root/usr/share/rpcd/acl.d/luci-compat.json:3
  662. msgid "Allow full UCI access for legacy applications"
  663. msgstr ""
  664. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:938
  665. msgid "Allow legacy 802.11b rates"
  666. msgstr ""
  667. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1083
  668. msgid "Allow listed only"
  669. msgstr ""
  670. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:317
  671. msgid "Allow localhost"
  672. msgstr ""
  673. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:179
  674. msgid "Allow rebooting the device"
  675. msgstr ""
  676. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:36
  677. msgid "Allow remote hosts to connect to local SSH forwarded ports"
  678. msgstr ""
  679. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:31
  680. msgid "Allow root logins with password"
  681. msgstr ""
  682. #: modules/luci-base/root/usr/share/rpcd/acl.d/luci-base.json:3
  683. msgid "Allow system feature probing"
  684. msgstr ""
  685. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:31
  686. msgid "Allow the <em>root</em> user to log in with password"
  687. msgstr ""
  688. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:624
  689. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:781
  690. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:56
  691. msgid "Allowed IPs"
  692. msgstr ""
  693. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:86
  694. msgid "Allowed network technology"
  695. msgstr ""
  696. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:315
  697. msgid "AllowedIPs setting is invalid"
  698. msgstr ""
  699. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:776
  700. msgid "Always"
  701. msgstr ""
  702. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/none.js:6
  703. msgid "Always off (kernel: none)"
  704. msgstr ""
  705. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/default-on.js:5
  706. msgid "Always on (kernel: default-on)"
  707. msgstr ""
  708. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:624
  709. msgid "Always send DHCP Options. Sometimes needed, with e.g. PXELinux."
  710. msgstr ""
  711. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:965
  712. msgid ""
  713. "Always use 40MHz channels even if the secondary channel overlaps. Using this "
  714. "option does not comply with IEEE 802.11n-2009!"
  715. msgstr ""
  716. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:741
  717. msgid "Amount of Duplicate Address Detection probes to send"
  718. msgstr ""
  719. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:119
  720. msgid "Amount of seconds to wait for the modem to become ready"
  721. msgstr ""
  722. #: modules/luci-base/htdocs/luci-static/resources/form.js:608
  723. msgid "An error occurred while saving the form:"
  724. msgstr ""
  725. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:139
  726. msgid "An optional, short description for this device"
  727. msgstr ""
  728. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1546
  729. msgid "Annex"
  730. msgstr ""
  731. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:858
  732. msgid ""
  733. "Announce NAT64 prefix in <abbr title=\"Router Advertisement\">RA</abbr> "
  734. "messages."
  735. msgstr ""
  736. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:945
  737. msgid "Announce this device as IPv6 DNS server."
  738. msgstr ""
  739. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:817
  740. msgid ""
  741. "Announce this device as default router if a local IPv6 default route is "
  742. "present."
  743. msgstr ""
  744. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:819
  745. msgid ""
  746. "Announce this device as default router if a public IPv6 prefix is available, "
  747. "regardless of local default route availability."
  748. msgstr ""
  749. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:821
  750. msgid ""
  751. "Announce this device as default router regardless of whether a prefix or "
  752. "default route is present."
  753. msgstr ""
  754. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:952
  755. msgid "Announced DNS domains"
  756. msgstr ""
  757. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:936
  758. msgid "Announced IPv6 DNS servers"
  759. msgstr ""
  760. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1767
  761. msgid "Anonymous Identity"
  762. msgstr ""
  763. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:162
  764. msgid "Anonymous Mount"
  765. msgstr ""
  766. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:158
  767. msgid "Anonymous Swap"
  768. msgstr ""
  769. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:518
  770. msgctxt "nft match any traffic"
  771. msgid "Any packet"
  772. msgstr ""
  773. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:84
  774. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:174
  775. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:196
  776. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:60
  777. msgid "Any zone"
  778. msgstr ""
  779. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:618
  780. msgid "Apply DHCP Options to this net. (Empty = all clients)."
  781. msgstr ""
  782. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4713
  783. msgid "Apply and keep settings"
  784. msgstr ""
  785. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:119
  786. msgid "Apply backup?"
  787. msgstr ""
  788. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4739
  789. msgid "Apply request failed with status <code>%h</code>"
  790. msgstr ""
  791. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2175
  792. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4456
  793. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4576
  794. msgid "Apply unchecked"
  795. msgstr ""
  796. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4709
  797. msgid "Apply with revert after connectivity loss"
  798. msgstr ""
  799. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4649
  800. msgid "Applying configuration changes… %ds"
  801. msgstr ""
  802. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:57
  803. msgid "Architecture"
  804. msgstr ""
  805. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:152
  806. msgid "Arp-scan"
  807. msgstr ""
  808. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1039
  809. msgid ""
  810. "Assign a part of given length of every public IPv6-prefix to this interface"
  811. msgstr ""
  812. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:917
  813. msgid "Assign new, freeform tags to this entry."
  814. msgstr ""
  815. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1044
  816. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:27
  817. msgid ""
  818. "Assign prefix parts using this hexadecimal subprefix ID for this interface."
  819. msgstr ""
  820. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2266
  821. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:366
  822. msgid "Associated Stations"
  823. msgstr ""
  824. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:151
  825. msgid "Associations"
  826. msgstr ""
  827. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:126
  828. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:127
  829. msgid ""
  830. "At least <strong>%h</strong> per <strong>%h</strong>, burst of <strong>%h</"
  831. "strong>"
  832. msgstr ""
  833. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:124
  834. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:125
  835. msgid ""
  836. "At most <strong>%h</strong> per <strong>%h</strong>, burst of <strong>%h</"
  837. "strong>"
  838. msgstr ""
  839. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:154
  840. msgid "Attempt to enable configured mount points for attached devices"
  841. msgstr ""
  842. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:145
  843. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:64
  844. msgid "Auth Group"
  845. msgstr ""
  846. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1706
  847. msgid "Authentication"
  848. msgstr ""
  849. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:76
  850. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:79
  851. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:82
  852. msgid "Authentication Type"
  853. msgstr ""
  854. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:273
  855. msgid "Authoritative"
  856. msgstr ""
  857. #: modules/luci-base/ucode/template/sysauth.ut:17
  858. #: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:11
  859. msgid "Authorization Required"
  860. msgstr ""
  861. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:120
  862. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:18
  863. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:24
  864. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:107
  865. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:116
  866. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:113
  867. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:51
  868. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:96
  869. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:82
  870. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:56
  871. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:69
  872. msgid "Automatic"
  873. msgstr ""
  874. #: modules/luci-compat/luasrc/model/network/proto_hnet.lua:7
  875. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:7
  876. msgid "Automatic Homenet (HNCP)"
  877. msgstr ""
  878. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:174
  879. msgid "Automatically check filesystem for errors before mounting"
  880. msgstr ""
  881. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1032
  882. msgid ""
  883. "Automatically handle multiple uplink interfaces using source-based policy "
  884. "routing."
  885. msgstr ""
  886. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:170
  887. msgid "Automatically mount filesystems on hotplug"
  888. msgstr ""
  889. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:166
  890. msgid "Automatically mount swap on hotplug"
  891. msgstr ""
  892. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:170
  893. msgid "Automount Filesystem"
  894. msgstr ""
  895. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:166
  896. msgid "Automount Swap"
  897. msgstr ""
  898. #: protocols/luci-proto-autoip/htdocs/luci-static/resources/protocol/autoip.js:6
  899. msgid "Avahi IPv4LL"
  900. msgstr ""
  901. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:193
  902. msgid "Available"
  903. msgstr ""
  904. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:270
  905. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:280
  906. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:331
  907. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:341
  908. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:351
  909. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:236
  910. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:246
  911. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:256
  912. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:265
  913. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:275
  914. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:293
  915. msgid "Average:"
  916. msgstr ""
  917. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:70
  918. msgid "Avoid Bridge Loops"
  919. msgstr ""
  920. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1573
  921. msgid "B43 + B43C"
  922. msgstr ""
  923. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1574
  924. msgid "B43 + B43C + V43"
  925. msgstr ""
  926. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:48
  927. msgid "BR / DMR / AFTR"
  928. msgstr ""
  929. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1649
  930. msgid "BSS Transition"
  931. msgstr ""
  932. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:158
  933. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:182
  934. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1841
  935. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:405
  936. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:149
  937. msgid "BSSID"
  938. msgstr ""
  939. #: modules/luci-base/htdocs/luci-static/resources/form.js:3255
  940. msgid "Back"
  941. msgstr ""
  942. #: modules/luci-compat/luasrc/view/cbi/footer.htm:14
  943. #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:48
  944. msgid "Back to Overview"
  945. msgstr ""
  946. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:839
  947. msgid "Back to peer configuration"
  948. msgstr ""
  949. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:391
  950. msgid "Backup"
  951. msgstr ""
  952. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:128
  953. msgid "Backup / Flash Firmware"
  954. msgstr ""
  955. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:351
  956. msgid "Backup file list"
  957. msgstr ""
  958. #: modules/luci-compat/luasrc/view/cbi/wireless_modefreq.htm:158
  959. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:495
  960. msgid "Band"
  961. msgstr ""
  962. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:431
  963. msgid "Base device"
  964. msgstr ""
  965. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:158
  966. msgid "Base64-encoded public key of this interface for sharing."
  967. msgstr ""
  968. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:10
  969. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv_hardif.js:41
  970. msgid "Batman Device"
  971. msgstr ""
  972. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv_hardif.js:10
  973. msgid "Batman Interface"
  974. msgstr ""
  975. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:81
  976. msgid ""
  977. "Batman-adv has a built-in layer 2 fragmentation for unicast data flowing "
  978. "through the mesh which will allow to run batman-adv over interfaces / "
  979. "connections that don't allow to increase the MTU beyond the standard "
  980. "Ethernet packet size of 1500 bytes. When the fragmentation is enabled batman-"
  981. "adv will automatically fragment over-sized packets and defragment them on "
  982. "the other end. Per default fragmentation is enabled and inactive if the "
  983. "packet fits but it is possible to deactivate the fragmentation entirely."
  984. msgstr ""
  985. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:968
  986. msgid "Beacon Interval"
  987. msgstr ""
  988. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1623
  989. msgid "Beacon Report"
  990. msgstr ""
  991. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:352
  992. msgid ""
  993. "Below is the determined list of files to backup. It consists of changed "
  994. "configuration files marked by opkg, essential base files and the user "
  995. "defined backup patterns."
  996. msgstr ""
  997. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:287
  998. msgid "Bind NTP server"
  999. msgstr ""
  1000. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:337
  1001. msgid "Bind dynamically to interfaces rather than wildcard address."
  1002. msgstr ""
  1003. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:59
  1004. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64
  1005. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64
  1006. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:69
  1007. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:48
  1008. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:142
  1009. #: protocols/luci-proto-vti/htdocs/luci-static/resources/protocol/vti.js:59
  1010. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:57
  1011. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:52
  1012. msgid "Bind interface"
  1013. msgstr ""
  1014. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:676
  1015. msgid ""
  1016. "Bind service records to a domain name: specify the location of services."
  1017. msgstr ""
  1018. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:637
  1019. msgid ""
  1020. "Bind service records to a domain name: specify the location of services. See "
  1021. "<a href=\"%s\">RFC2782</a>."
  1022. msgstr ""
  1023. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:59
  1024. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64
  1025. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64
  1026. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:69
  1027. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:48
  1028. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:142
  1029. #: protocols/luci-proto-vti/htdocs/luci-static/resources/protocol/vti.js:59
  1030. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:57
  1031. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:52
  1032. msgid "Bind the tunnel to this interface (optional)."
  1033. msgstr ""
  1034. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:129
  1035. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:188
  1036. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:171
  1037. msgid "Bitrate"
  1038. msgstr ""
  1039. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:65
  1040. msgid "Bonding Mode"
  1041. msgstr ""
  1042. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:201
  1043. msgid "Bonding Policy"
  1044. msgstr ""
  1045. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:404
  1046. msgid "Both \"Relay from\" and \"Relay to address\" must be specified."
  1047. msgstr ""
  1048. #: modules/luci-base/htdocs/luci-static/resources/network.js:2995
  1049. #: modules/luci-compat/luasrc/model/network.lua:1421
  1050. msgid "Bridge"
  1051. msgstr ""
  1052. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:491
  1053. msgctxt "MACVLAN mode"
  1054. msgid "Bridge (Support direct communication between MAC VLANs)"
  1055. msgstr ""
  1056. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:393
  1057. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:498
  1058. msgid "Bridge VLAN filtering"
  1059. msgstr ""
  1060. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:398
  1061. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1469
  1062. msgid "Bridge device"
  1063. msgstr ""
  1064. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:392
  1065. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:497
  1066. msgid "Bridge port specific options"
  1067. msgstr ""
  1068. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:522
  1069. msgid "Bridge ports"
  1070. msgstr ""
  1071. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:641
  1072. msgid "Bridge traffic table \"%h\""
  1073. msgstr ""
  1074. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1640
  1075. msgid "Bridge unit number"
  1076. msgstr ""
  1077. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:558
  1078. msgid "Bring up empty bridge"
  1079. msgstr ""
  1080. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:592
  1081. msgid "Bring up on boot"
  1082. msgstr ""
  1083. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:558
  1084. msgid "Bring up the bridge interface even if no ports are attached"
  1085. msgstr ""
  1086. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:940
  1087. msgid "Broadcast"
  1088. msgstr ""
  1089. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:207
  1090. msgid "Broadcast policy (broadcast, 3)"
  1091. msgstr ""
  1092. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2869
  1093. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4207
  1094. msgid "Browse…"
  1095. msgstr ""
  1096. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:40
  1097. msgid "Buffered"
  1098. msgstr ""
  1099. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:130
  1100. msgid ""
  1101. "CA certificate (PEM encoded; Use instead of system-wide store to verify the "
  1102. "gateway certificate."
  1103. msgstr ""
  1104. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:182
  1105. msgid "CA certificate; if empty it will be saved after the first connection."
  1106. msgstr ""
  1107. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:79
  1108. msgid "CHAP"
  1109. msgstr ""
  1110. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:7
  1111. msgid "CLAT configuration failed"
  1112. msgstr ""
  1113. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:265
  1114. msgid "CNAME"
  1115. msgstr ""
  1116. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:655
  1117. msgid "CNAME or fqdn"
  1118. msgstr ""
  1119. #: protocols/luci-proto-cni/htdocs/luci-static/resources/protocol/cni.js:6
  1120. msgid "CNI (Externally managed interface)"
  1121. msgstr ""
  1122. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:72
  1123. msgid "CPU usage (%)"
  1124. msgstr ""
  1125. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:43
  1126. msgid "Cached"
  1127. msgstr ""
  1128. #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:53
  1129. #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:53
  1130. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:21
  1131. msgid "Call failed"
  1132. msgstr ""
  1133. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:469
  1134. msgid ""
  1135. "Can be useful if ISP has IPv6 nameservers but does not provide IPv6 routing."
  1136. msgstr ""
  1137. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2957
  1138. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4216
  1139. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4705
  1140. #: modules/luci-compat/luasrc/view/cbi/delegator.htm:14
  1141. #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:52
  1142. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:188
  1143. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1201
  1144. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2140
  1145. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:128
  1146. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:295
  1147. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:209
  1148. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:485
  1149. msgid "Cancel"
  1150. msgstr ""
  1151. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:347
  1152. msgid "Cannot parse configuration: %s"
  1153. msgstr ""
  1154. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:568
  1155. msgctxt "Chain hook: forward"
  1156. msgid "Capture incoming packets addressed to other hosts"
  1157. msgstr ""
  1158. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:560
  1159. msgctxt "Chain hook: prerouting"
  1160. msgid "Capture incoming packets before any routing decision"
  1161. msgstr ""
  1162. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:564
  1163. msgctxt "Chain hook: input"
  1164. msgid "Capture incoming packets routed to the local system"
  1165. msgstr ""
  1166. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:576
  1167. msgctxt "Chain hook: postrouting"
  1168. msgid "Capture outgoing packets after any routing decision"
  1169. msgstr ""
  1170. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:572
  1171. msgctxt "Chain hook: output"
  1172. msgid "Capture outgoing packets originating from the local system"
  1173. msgstr ""
  1174. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:556
  1175. msgctxt "Chain hook: ingress"
  1176. msgid "Capture packets directly after the NIC received them"
  1177. msgstr ""
  1178. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:17
  1179. msgid "Category"
  1180. msgstr ""
  1181. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:114
  1182. msgid "Cell ID"
  1183. msgstr ""
  1184. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:113
  1185. msgid "Cell Location"
  1186. msgstr ""
  1187. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1690
  1188. msgid "Certificate constraint (Domain)"
  1189. msgstr ""
  1190. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1687
  1191. msgid "Certificate constraint (SAN)"
  1192. msgstr ""
  1193. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1684
  1194. msgid "Certificate constraint (Subject)"
  1195. msgstr ""
  1196. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1693
  1197. msgid "Certificate constraint (Wildcard)"
  1198. msgstr ""
  1199. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1684
  1200. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1742
  1201. msgid ""
  1202. "Certificate constraint substring - e.g. /CN=wifi.mycompany.com<br />See "
  1203. "`logread -f` during handshake for actual values"
  1204. msgstr ""
  1205. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1690
  1206. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1748
  1207. msgid ""
  1208. "Certificate constraint(s) against DNS SAN values (if available)<br />or "
  1209. "Subject CN (exact match)"
  1210. msgstr ""
  1211. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1693
  1212. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1751
  1213. msgid ""
  1214. "Certificate constraint(s) against DNS SAN values (if available)<br />or "
  1215. "Subject CN (suffix match)"
  1216. msgstr ""
  1217. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1687
  1218. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1745
  1219. msgid ""
  1220. "Certificate constraint(s) via Subject Alternate Name values<br />(supported "
  1221. "attributes: EMAIL, DNS, URI) - e.g. DNS:wifi.mycompany.com"
  1222. msgstr ""
  1223. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:54
  1224. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:57
  1225. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:212
  1226. msgid "Chain"
  1227. msgstr ""
  1228. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:580
  1229. msgctxt "Yet unknown nftables chain hook"
  1230. msgid "Chain hook \"%h\""
  1231. msgstr ""
  1232. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4436
  1233. msgid "Changes"
  1234. msgstr ""
  1235. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4775
  1236. msgid "Changes have been reverted."
  1237. msgstr ""
  1238. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:46
  1239. msgid "Changes the administrator password for accessing the device"
  1240. msgstr ""
  1241. #: modules/luci-compat/luasrc/view/cbi/wireless_modefreq.htm:162
  1242. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:128
  1243. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:184
  1244. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:504
  1245. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1839
  1246. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:402
  1247. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:170
  1248. msgid "Channel"
  1249. msgstr ""
  1250. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:368
  1251. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:105
  1252. msgid "Channel Analysis"
  1253. msgstr ""
  1254. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:403
  1255. msgid "Channel Width"
  1256. msgstr ""
  1257. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:174
  1258. msgid "Check filesystems before mount"
  1259. msgstr ""
  1260. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2102
  1261. msgid "Check this option to delete the existing networks from this radio."
  1262. msgstr ""
  1263. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:110
  1264. msgid "Checking archive…"
  1265. msgstr ""
  1266. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:193
  1267. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:195
  1268. msgid "Checking image…"
  1269. msgstr ""
  1270. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:427
  1271. msgid "Choose mtdblock"
  1272. msgstr ""
  1273. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:597
  1274. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2130
  1275. msgid ""
  1276. "Choose the firewall zone you want to assign to this interface. Select "
  1277. "<em>unspecified</em> to remove the interface from the associated zone or "
  1278. "fill out the <em>custom</em> field to define a new zone and attach the "
  1279. "interface to it."
  1280. msgstr ""
  1281. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1018
  1282. msgid ""
  1283. "Choose the network(s) you want to attach to this wireless interface or fill "
  1284. "out the <em>custom</em> field to define a new network."
  1285. msgstr ""
  1286. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1229
  1287. msgid "Cipher"
  1288. msgstr ""
  1289. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:91
  1290. msgid "Cisco UDP encapsulation"
  1291. msgstr ""
  1292. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:391
  1293. msgid ""
  1294. "Click \"Generate archive\" to download a tar archive of the current "
  1295. "configuration files."
  1296. msgstr ""
  1297. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:424
  1298. msgid ""
  1299. "Click \"Save mtdblock\" to download specified mtdblock file. (NOTE: THIS "
  1300. "FEATURE IS FOR PROFESSIONALS! )"
  1301. msgstr ""
  1302. #: modules/luci-base/htdocs/luci-static/resources/network.js:3865
  1303. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:987
  1304. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1102
  1305. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:88
  1306. msgid "Client"
  1307. msgstr ""
  1308. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37
  1309. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:33
  1310. msgid "Client ID to send when requesting DHCP"
  1311. msgstr ""
  1312. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4453
  1313. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:173
  1314. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:179
  1315. msgid "Close"
  1316. msgstr ""
  1317. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:156
  1318. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:128
  1319. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:114
  1320. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:92
  1321. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:101
  1322. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:124
  1323. msgid ""
  1324. "Close inactive connection after the given amount of seconds, use 0 to "
  1325. "persist connection"
  1326. msgstr ""
  1327. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:44
  1328. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:63
  1329. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2264
  1330. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:391
  1331. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:352
  1332. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:355
  1333. #: themes/luci-theme-material/ucode/template/themes/material/header.ut:66
  1334. msgid "Collecting data..."
  1335. msgstr ""
  1336. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:250
  1337. msgid "Collisions seen"
  1338. msgstr ""
  1339. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:71
  1340. msgid "Command"
  1341. msgstr ""
  1342. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:401
  1343. msgid "Command OK"
  1344. msgstr ""
  1345. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:33
  1346. msgid "Command failed"
  1347. msgstr ""
  1348. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:73
  1349. msgid "Comment"
  1350. msgstr ""
  1351. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1810
  1352. msgid ""
  1353. "Complicates key reinstallation attacks on the client side by disabling "
  1354. "retransmission of EAPOL-Key frames that are used to install keys. This "
  1355. "workaround might cause interoperability issues and reduced robustness of key "
  1356. "negotiation especially in environments with heavy traffic load."
  1357. msgstr ""
  1358. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:101
  1359. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:106
  1360. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:103
  1361. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:108
  1362. msgid "Compute outgoing checksum (optional)."
  1363. msgstr ""
  1364. #: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:40
  1365. msgid "Config File"
  1366. msgstr ""
  1367. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4436
  1368. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:454
  1369. msgid "Configuration"
  1370. msgstr ""
  1371. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:690
  1372. msgid "Configuration Export"
  1373. msgstr ""
  1374. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4624
  1375. msgid "Configuration changes applied."
  1376. msgstr ""
  1377. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4562
  1378. msgid "Configuration changes have been rolled back!"
  1379. msgstr ""
  1380. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:63
  1381. msgid "Configuration failed"
  1382. msgstr ""
  1383. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:947
  1384. msgid ""
  1385. "Configures data rates based on the coverage cell density. Normal configures "
  1386. "basic rates to 6, 12, 24 Mbps if legacy 802.11b rates are not used else to "
  1387. "5.5, 11 Mbps. High configures basic rates to 12, 24 Mbps if legacy 802.11b "
  1388. "rates are not used else to the 11 Mbps rate. Very High configures 24 Mbps as "
  1389. "the basic rate. Supported rates lower than the minimum basic rate are not "
  1390. "offered."
  1391. msgstr ""
  1392. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:815
  1393. msgid ""
  1394. "Configures the default router advertisement in <abbr title=\"Router "
  1395. "Advertisement\">RA</abbr> messages."
  1396. msgstr ""
  1397. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:804
  1398. msgid ""
  1399. "Configures the operation mode of the <abbr title=\"Router "
  1400. "Advertisement\">RA</abbr> service on this interface."
  1401. msgstr ""
  1402. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:926
  1403. msgid "Configures the operation mode of the DHCPv6 service on this interface."
  1404. msgstr ""
  1405. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:962
  1406. msgid ""
  1407. "Configures the operation mode of the NDP proxy service on this interface."
  1408. msgstr ""
  1409. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1357
  1410. msgid "Configure…"
  1411. msgstr ""
  1412. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:176
  1413. msgid "Confirm disconnect"
  1414. msgstr ""
  1415. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:55
  1416. msgid "Confirmation"
  1417. msgstr ""
  1418. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:98
  1419. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:101
  1420. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:47
  1421. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:232
  1422. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:51
  1423. msgid "Connected"
  1424. msgstr ""
  1425. #: modules/luci-base/htdocs/luci-static/resources/network.js:9
  1426. #: modules/luci-compat/luasrc/model/network.lua:27
  1427. msgid "Connection attempt failed"
  1428. msgstr ""
  1429. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:8
  1430. msgid "Connection attempt failed."
  1431. msgstr ""
  1432. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:776
  1433. msgid "Connection endpoint"
  1434. msgstr ""
  1435. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:411
  1436. msgid "Connection lost"
  1437. msgstr ""
  1438. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:160
  1439. msgid "Connections"
  1440. msgstr ""
  1441. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4698
  1442. msgid "Connectivity change"
  1443. msgstr ""
  1444. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:31
  1445. msgctxt "nft ct state"
  1446. msgid "Conntrack state"
  1447. msgstr ""
  1448. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:33
  1449. msgctxt "nft ct status"
  1450. msgid "Conntrack status"
  1451. msgstr ""
  1452. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:378
  1453. msgid "Consider the slave up when all ARP IP targets are reachable (all, 1)"
  1454. msgstr ""
  1455. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:377
  1456. msgid "Consider the slave up when any ARP IP target is reachable (any, 0)"
  1457. msgstr ""
  1458. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/crontab.js:18
  1459. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:368
  1460. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:55
  1461. msgid "Contents have been saved."
  1462. msgstr ""
  1463. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:416
  1464. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:450
  1465. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:794
  1466. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:132
  1467. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:269
  1468. msgid "Continue"
  1469. msgstr ""
  1470. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:97
  1471. msgctxt "nft jump action"
  1472. msgid "Continue in <strong><a href=\"#%q.%q\">%h</a></strong>"
  1473. msgstr ""
  1474. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:129
  1475. msgid "Continue in calling chain"
  1476. msgstr ""
  1477. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:550
  1478. msgctxt "Chain policy: accept"
  1479. msgid "Continue processing unmatched packets"
  1480. msgstr ""
  1481. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4598
  1482. msgid ""
  1483. "Could not regain access to the device after applying the configuration "
  1484. "changes. You might need to reconnect if you modified network related "
  1485. "settings such as the IP address or wireless security credentials."
  1486. msgstr ""
  1487. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:189
  1488. msgid "Country"
  1489. msgstr ""
  1490. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:944
  1491. msgid "Country Code"
  1492. msgstr ""
  1493. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:947
  1494. msgid "Coverage cell density"
  1495. msgstr ""
  1496. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:597
  1497. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2130
  1498. msgid "Create / Assign firewall-zone"
  1499. msgstr ""
  1500. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1233
  1501. msgid "Create interface"
  1502. msgstr ""
  1503. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:191
  1504. msgid "Critical"
  1505. msgstr ""
  1506. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:195
  1507. msgid "Cron Log Level"
  1508. msgstr ""
  1509. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:584
  1510. msgid "Current power"
  1511. msgstr ""
  1512. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:28
  1513. msgctxt "nft meta hour"
  1514. msgid "Current time"
  1515. msgstr ""
  1516. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:29
  1517. msgctxt "nft meta day"
  1518. msgid "Current weekday"
  1519. msgstr ""
  1520. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:573
  1521. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:575
  1522. #: modules/luci-compat/luasrc/view/cbi/network_ifacelist.htm:51
  1523. #: modules/luci-compat/luasrc/view/cbi/network_ifacelist.htm:53
  1524. #: modules/luci-compat/luasrc/view/cbi/network_ifacelist.htm:82
  1525. #: modules/luci-compat/luasrc/view/cbi/network_ifacelist.htm:83
  1526. msgid "Custom Interface"
  1527. msgstr ""
  1528. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:410
  1529. msgid ""
  1530. "Custom files (certificates, scripts) may remain on the system. To prevent "
  1531. "this, perform a factory-reset first."
  1532. msgstr ""
  1533. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/timer.js:6
  1534. msgid "Custom flash interval (kernel: timer)"
  1535. msgstr ""
  1536. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:59
  1537. msgid ""
  1538. "Customizes the behaviour of the device <abbr title=\"Light Emitting "
  1539. "Diode\">LED</abbr>s if possible."
  1540. msgstr ""
  1541. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:741
  1542. msgid "DAD transmits"
  1543. msgstr ""
  1544. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1468
  1545. msgid "DAE-Client"
  1546. msgstr ""
  1547. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1473
  1548. msgid "DAE-Port"
  1549. msgstr ""
  1550. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1479
  1551. msgid "DAE-Secret"
  1552. msgstr ""
  1553. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:611
  1554. msgid "DHCP Options"
  1555. msgstr ""
  1556. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:500
  1557. msgid "DHCP Server"
  1558. msgstr ""
  1559. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:249
  1560. #: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:62
  1561. msgid "DHCP and DNS"
  1562. msgstr ""
  1563. #: modules/luci-base/htdocs/luci-static/resources/network.js:2091
  1564. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:16
  1565. #: modules/luci-compat/luasrc/model/network.lua:969
  1566. msgid "DHCP client"
  1567. msgstr ""
  1568. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:724
  1569. msgid "DHCP-Options"
  1570. msgstr ""
  1571. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:988
  1572. msgid ""
  1573. "DHCPv4 <code>leasetime</code> is used as limit and preferred lifetime of the "
  1574. "IPv6 prefix."
  1575. msgstr ""
  1576. #: modules/luci-compat/luasrc/model/network/proto_dhcpv6.lua:7
  1577. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:7
  1578. msgid "DHCPv6 client"
  1579. msgstr ""
  1580. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:925
  1581. msgid "DHCPv6-Service"
  1582. msgstr ""
  1583. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:45
  1584. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:46
  1585. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:47
  1586. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:48
  1587. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:49
  1588. msgid "DNS"
  1589. msgstr ""
  1590. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:290
  1591. msgid "DNS forwardings"
  1592. msgstr ""
  1593. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:531
  1594. msgid "DNS query port"
  1595. msgstr ""
  1596. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1008
  1597. msgid "DNS search domains"
  1598. msgstr ""
  1599. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:524
  1600. msgid "DNS server port"
  1601. msgstr ""
  1602. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:292
  1603. msgid "DNS setting is invalid"
  1604. msgstr ""
  1605. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1013
  1606. msgid "DNS weight"
  1607. msgstr ""
  1608. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:33
  1609. msgid "DNS-Label / FQDN"
  1610. msgstr ""
  1611. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:483
  1612. msgid "DNSSEC"
  1613. msgstr ""
  1614. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:488
  1615. msgid "DNSSEC check unsigned"
  1616. msgstr ""
  1617. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:99
  1618. msgid "DPD Idle Timeout"
  1619. msgstr ""
  1620. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:41
  1621. msgid "DS-Lite AFTR address"
  1622. msgstr ""
  1623. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1543
  1624. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:37
  1625. msgid "DSL"
  1626. msgstr ""
  1627. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:21
  1628. msgid "DSL Status"
  1629. msgstr ""
  1630. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1582
  1631. msgid "DSL line mode"
  1632. msgstr ""
  1633. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1169
  1634. msgid "DTIM Interval"
  1635. msgstr ""
  1636. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:59
  1637. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:903
  1638. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:136
  1639. msgid "DUID"
  1640. msgstr ""
  1641. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:29
  1642. msgid "Data Rate"
  1643. msgstr ""
  1644. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:76
  1645. msgid "Data Received"
  1646. msgstr ""
  1647. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:77
  1648. msgid "Data Transmitted"
  1649. msgstr ""
  1650. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:186
  1651. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:197
  1652. msgid "Debug"
  1653. msgstr ""
  1654. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:814
  1655. msgid "Default router"
  1656. msgstr ""
  1657. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/none.js:12
  1658. msgid "Default state"
  1659. msgstr ""
  1660. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:724
  1661. msgid ""
  1662. "Define additional DHCP options, for example "
  1663. "\"<code>6,192.168.2.1,192.168.2.2</code>\" which advertises different DNS "
  1664. "servers to clients."
  1665. msgstr ""
  1666. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:516
  1667. msgid ""
  1668. "Defines a mapping of Linux internal packet priority to VLAN header priority "
  1669. "but for outgoing frames"
  1670. msgstr ""
  1671. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:510
  1672. msgid ""
  1673. "Defines a mapping of VLAN header priority to the Linux internal packet "
  1674. "priority on incoming frames"
  1675. msgstr ""
  1676. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:87
  1677. msgid "Defines a specific MTU for this route"
  1678. msgstr ""
  1679. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1036
  1680. msgid "Delegate IPv6 prefixes"
  1681. msgstr ""
  1682. #: modules/luci-base/htdocs/luci-static/resources/form.js:2310
  1683. #: modules/luci-base/htdocs/luci-static/resources/form.js:2740
  1684. #: modules/luci-base/htdocs/luci-static/resources/form.js:2744
  1685. #: modules/luci-base/htdocs/luci-static/resources/form.js:3571
  1686. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2926
  1687. #: modules/luci-compat/luasrc/view/cbi/nsection.htm:11
  1688. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:162
  1689. #: modules/luci-compat/luasrc/view/cbi/tsection.htm:16
  1690. msgid "Delete"
  1691. msgstr ""
  1692. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:205
  1693. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:211
  1694. msgid "Delete key"
  1695. msgstr ""
  1696. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2828
  1697. msgid "Delete request failed: %s"
  1698. msgstr ""
  1699. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:899
  1700. msgid "Delete this network"
  1701. msgstr ""
  1702. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1169
  1703. msgid "Delivery Traffic Indication Message Interval"
  1704. msgstr ""
  1705. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:342
  1706. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:139
  1707. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:517
  1708. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:53
  1709. msgid "Description"
  1710. msgstr ""
  1711. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2922
  1712. msgid "Deselect"
  1713. msgstr ""
  1714. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:237
  1715. msgid "Design"
  1716. msgstr ""
  1717. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:732
  1718. msgid "Designated master"
  1719. msgstr ""
  1720. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:160
  1721. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:386
  1722. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:71
  1723. msgid "Destination"
  1724. msgstr ""
  1725. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:44
  1726. msgctxt "nft ip daddr"
  1727. msgid "Destination IP"
  1728. msgstr ""
  1729. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:48
  1730. msgctxt "nft ip6 daddr"
  1731. msgid "Destination IPv6"
  1732. msgstr ""
  1733. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:48
  1734. msgid "Destination port"
  1735. msgstr ""
  1736. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:46
  1737. msgctxt "nft ip dport"
  1738. msgid "Destination port"
  1739. msgstr ""
  1740. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:59
  1741. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:165
  1742. msgid "Destination zone"
  1743. msgstr ""
  1744. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:67
  1745. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:192
  1746. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:43
  1747. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:46
  1748. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:81
  1749. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:586
  1750. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1183
  1751. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1485
  1752. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:55
  1753. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:13
  1754. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:248
  1755. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:281
  1756. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:357
  1757. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:393
  1758. msgid "Device"
  1759. msgstr ""
  1760. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:913
  1761. msgid "Device Configuration"
  1762. msgstr ""
  1763. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:88
  1764. msgid "Device Identifier"
  1765. msgstr ""
  1766. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:132
  1767. msgid "Device is not active"
  1768. msgstr ""
  1769. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:233
  1770. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:650
  1771. msgid "Device is restarting…"
  1772. msgstr ""
  1773. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:495
  1774. msgid "Device name"
  1775. msgstr ""
  1776. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:10
  1777. msgid "Device not managed by ModemManager."
  1778. msgstr ""
  1779. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1460
  1780. msgid "Device not present"
  1781. msgstr ""
  1782. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:395
  1783. msgid "Device type"
  1784. msgstr ""
  1785. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4597
  1786. msgid "Device unreachable!"
  1787. msgstr ""
  1788. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:53
  1789. msgid "Device unreachable! Still waiting for device..."
  1790. msgstr ""
  1791. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1308
  1792. msgid "Devices"
  1793. msgstr ""
  1794. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:159
  1795. #: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:76
  1796. msgid "Diagnostics"
  1797. msgstr ""
  1798. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:114
  1799. msgid "Dial number"
  1800. msgstr ""
  1801. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2724
  1802. msgid "Directory"
  1803. msgstr ""
  1804. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:114
  1805. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:201
  1806. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:891
  1807. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:931
  1808. msgid "Disable"
  1809. msgstr ""
  1810. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:683
  1811. msgid ""
  1812. "Disable <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</abbr> for "
  1813. "this interface."
  1814. msgstr ""
  1815. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:174
  1816. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:375
  1817. msgid "Disable DNS lookups"
  1818. msgstr ""
  1819. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:93
  1820. msgid "Disable Encryption"
  1821. msgstr ""
  1822. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1179
  1823. msgid "Disable Inactivity Polling"
  1824. msgstr ""
  1825. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:889
  1826. msgid "Disable this network"
  1827. msgstr ""
  1828. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:948
  1829. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1439
  1830. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1630
  1831. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1778
  1832. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:13
  1833. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:66
  1834. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:121
  1835. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:108
  1836. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:117
  1837. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:114
  1838. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:52
  1839. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:97
  1840. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:83
  1841. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:57
  1842. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:70
  1843. msgid "Disabled"
  1844. msgstr ""
  1845. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:541
  1846. msgctxt "Label indicating that WireGuard peer is disabled"
  1847. msgid "Disabled"
  1848. msgstr ""
  1849. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1193
  1850. msgid "Disassociate On Low Acknowledgement"
  1851. msgstr ""
  1852. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:313
  1853. msgid ""
  1854. "Discard upstream responses containing <a href=\"%s\">RFC1918</a> addresses."
  1855. msgstr ""
  1856. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:198
  1857. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:716
  1858. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:336
  1859. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:351
  1860. msgid "Disconnect"
  1861. msgstr ""
  1862. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:64
  1863. msgid "Disconnection attempt failed"
  1864. msgstr ""
  1865. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:13
  1866. msgid "Disconnection attempt failed."
  1867. msgstr ""
  1868. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:35
  1869. msgid "Disk space"
  1870. msgstr ""
  1871. #: modules/luci-base/htdocs/luci-static/resources/form.js:611
  1872. #: modules/luci-base/htdocs/luci-static/resources/form.js:3022
  1873. #: modules/luci-base/htdocs/luci-static/resources/form.js:3269
  1874. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3715
  1875. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4568
  1876. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1864
  1877. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:358
  1878. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:45
  1879. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:66
  1880. msgid "Dismiss"
  1881. msgstr ""
  1882. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:953
  1883. msgid "Distance Optimization"
  1884. msgstr ""
  1885. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:953
  1886. msgid "Distance to farthest network member in meters."
  1887. msgstr ""
  1888. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:75
  1889. msgid "Distributed ARP Table"
  1890. msgstr ""
  1891. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:931
  1892. msgid ""
  1893. "Dnsmasq instance to which this DHCP host section is bound. If unspecified, "
  1894. "the section is valid for all dnsmasq instances."
  1895. msgstr ""
  1896. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:629
  1897. msgid ""
  1898. "Dnsmasq instance to which this boot section is bound. If unspecified, the "
  1899. "section is valid for all dnsmasq instances."
  1900. msgstr ""
  1901. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:250
  1902. msgid ""
  1903. "Dnsmasq is a lightweight <abbr title=\"Dynamic Host Configuration "
  1904. "Protocol\">DHCP</abbr> server and <abbr title=\"Domain Name System\">DNS</"
  1905. "abbr> forwarder."
  1906. msgstr ""
  1907. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:500
  1908. msgid "Do not cache negative replies, e.g. for non-existent domains."
  1909. msgstr ""
  1910. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:86
  1911. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:91
  1912. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:88
  1913. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:93
  1914. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:70
  1915. msgid "Do not create host route to peer (optional)."
  1916. msgstr ""
  1917. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:270
  1918. msgid "Do not forward DNS queries without dots or domain parts."
  1919. msgstr ""
  1920. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:458
  1921. msgid "Do not forward reverse lookups for local networks."
  1922. msgstr ""
  1923. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:350
  1924. msgid "Do not listen on the specified interfaces."
  1925. msgstr ""
  1926. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:928
  1927. msgid "Do not offer DHCPv6 service on this interface."
  1928. msgstr ""
  1929. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:964
  1930. msgid ""
  1931. "Do not proxy any <abbr title=\"Neighbour Discovery Protocol\">NDP</abbr> "
  1932. "packets."
  1933. msgstr ""
  1934. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:25
  1935. msgid "Do not send a hostname"
  1936. msgstr ""
  1937. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:806
  1938. msgid ""
  1939. "Do not send any <abbr title=\"Router Advertisement, ICMPv6 Type 134\">RA</"
  1940. "abbr> messages on this interface."
  1941. msgstr ""
  1942. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2814
  1943. msgid "Do you really want to delete \"%s\" ?"
  1944. msgstr ""
  1945. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:206
  1946. msgid "Do you really want to delete the following SSH key?"
  1947. msgstr ""
  1948. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:94
  1949. msgid "Do you really want to erase all settings?"
  1950. msgstr ""
  1951. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2812
  1952. msgid "Do you really want to recursively delete the directory \"%s\" ?"
  1953. msgstr ""
  1954. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:613
  1955. msgid "Do you want to replace the current PSK?"
  1956. msgstr ""
  1957. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:100
  1958. msgid "Do you want to replace the current keys?"
  1959. msgstr ""
  1960. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:687
  1961. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:713
  1962. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:766
  1963. msgid "Domain"
  1964. msgstr ""
  1965. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:269
  1966. msgid "Domain required"
  1967. msgstr ""
  1968. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:322
  1969. msgid "Domain whitelist"
  1970. msgstr ""
  1971. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:83
  1972. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:88
  1973. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:67
  1974. msgid "Don't Fragment"
  1975. msgstr ""
  1976. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:152
  1977. msgid "Down"
  1978. msgstr ""
  1979. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:403
  1980. msgid "Down Delay"
  1981. msgstr ""
  1982. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:394
  1983. msgid "Download backup"
  1984. msgstr ""
  1985. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:432
  1986. msgid "Download mtdblock"
  1987. msgstr ""
  1988. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1587
  1989. msgid "Downstream SNR offset"
  1990. msgstr ""
  1991. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:435
  1992. msgid ""
  1993. "Drag or paste a valid <em>*.conf</em> file below to configure the local "
  1994. "WireGuard interface."
  1995. msgstr ""
  1996. #: modules/luci-base/htdocs/luci-static/resources/form.js:2698
  1997. msgid "Drag to reorder"
  1998. msgstr ""
  1999. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:342
  2000. msgid "Drop Duplicate Frames"
  2001. msgstr ""
  2002. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:710
  2003. msgid ""
  2004. "Drop all gratuitous ARP frames, for example if there’s a known good ARP "
  2005. "proxy on the network and such frames need not be used or in the case of "
  2006. "802.11, must not be used to prevent attacks."
  2007. msgstr ""
  2008. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:733
  2009. msgid ""
  2010. "Drop all unsolicited neighbor advertisements, for example if there’s a known "
  2011. "good NA proxy on the network and such frames need not be used or in the case "
  2012. "of 802.11, must not be used to prevent attacks."
  2013. msgstr ""
  2014. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:710
  2015. msgid "Drop gratuitous ARP"
  2016. msgstr ""
  2017. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:787
  2018. msgid "Drop layer 2 multicast frames containing IPv4 unicast packets."
  2019. msgstr ""
  2020. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:791
  2021. msgid "Drop layer 2 multicast frames containing IPv6 unicast packets."
  2022. msgstr ""
  2023. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:787
  2024. msgid "Drop nested IPv4 unicast"
  2025. msgstr ""
  2026. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:791
  2027. msgid "Drop nested IPv6 unicast"
  2028. msgstr ""
  2029. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:96
  2030. msgctxt "nft drop action"
  2031. msgid "Drop packet"
  2032. msgstr ""
  2033. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:546
  2034. msgctxt "Chain policy: drop"
  2035. msgid "Drop unmatched packets"
  2036. msgstr ""
  2037. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:733
  2038. msgid "Drop unsolicited NA"
  2039. msgstr ""
  2040. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:12
  2041. msgid "Dropbear Instance"
  2042. msgstr ""
  2043. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:10
  2044. msgid ""
  2045. "Dropbear offers <abbr title=\"Secure Shell\">SSH</abbr> network shell access "
  2046. "and an integrated <abbr title=\"Secure Copy\">SCP</abbr> server"
  2047. msgstr ""
  2048. #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:14
  2049. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:11
  2050. msgid "Dual-Stack Lite (RFC6333)"
  2051. msgstr ""
  2052. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:700
  2053. msgid "Dynamic <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</abbr>"
  2054. msgstr ""
  2055. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1468
  2056. msgid "Dynamic Authorization Extension client."
  2057. msgstr ""
  2058. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1473
  2059. msgid "Dynamic Authorization Extension port."
  2060. msgstr ""
  2061. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1479
  2062. msgid "Dynamic Authorization Extension secret."
  2063. msgstr ""
  2064. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:60
  2065. msgid "Dynamic tunnel"
  2066. msgstr ""
  2067. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:700
  2068. msgid ""
  2069. "Dynamically allocate DHCP addresses for clients. If disabled, only clients "
  2070. "having static leases will be served."
  2071. msgstr ""
  2072. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1463
  2073. msgid "E.g. <code>br-vlan</code> or <code>brvlan</code>."
  2074. msgstr ""
  2075. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1453
  2076. msgid "E.g. eth0, eth1"
  2077. msgstr ""
  2078. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:67
  2079. msgid "EA-bits length"
  2080. msgstr ""
  2081. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1662
  2082. msgid "EAP-Method"
  2083. msgstr ""
  2084. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1446
  2085. msgid "Each STA is assigned its own AP_VLAN interface."
  2086. msgstr ""
  2087. #: modules/luci-base/htdocs/luci-static/resources/form.js:2718
  2088. #: modules/luci-base/htdocs/luci-static/resources/form.js:2721
  2089. #: modules/luci-base/htdocs/luci-static/resources/form.js:3434
  2090. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:154
  2091. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:160
  2092. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:512
  2093. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:896
  2094. msgid "Edit"
  2095. msgstr ""
  2096. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:226
  2097. msgid "Edit peer"
  2098. msgstr ""
  2099. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:782
  2100. msgid "Edit static lease"
  2101. msgstr ""
  2102. #: modules/luci-compat/luasrc/view/cbi/error.htm:13
  2103. msgid ""
  2104. "Edit the raw configuration data above to fix any error and hit \"Save\" to "
  2105. "reload the page."
  2106. msgstr ""
  2107. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:894
  2108. msgid "Edit this network"
  2109. msgstr ""
  2110. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:845
  2111. msgid "Edit wireless network"
  2112. msgstr ""
  2113. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:65
  2114. msgctxt "nft rt mtu"
  2115. msgid "Effective route MTU"
  2116. msgstr ""
  2117. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:516
  2118. msgid "Egress QoS mapping"
  2119. msgstr ""
  2120. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:12
  2121. msgctxt "nft meta oif"
  2122. msgid "Egress device id"
  2123. msgstr ""
  2124. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:10
  2125. msgctxt "nft meta oifname"
  2126. msgid "Egress device name"
  2127. msgstr ""
  2128. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:193
  2129. msgid "Emergency"
  2130. msgstr ""
  2131. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:891
  2132. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:931
  2133. msgid "Enable"
  2134. msgstr ""
  2135. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:513
  2136. msgid "Enable / Disable peer. Restart wireguard interface to apply changes."
  2137. msgstr ""
  2138. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:592
  2139. msgid ""
  2140. "Enable <abbr title=\"Internet Group Management Protocol\">IGMP</abbr> "
  2141. "snooping"
  2142. msgstr ""
  2143. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:572
  2144. msgid "Enable <abbr title=\"Spanning Tree Protocol\">STP</abbr>"
  2145. msgstr ""
  2146. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:825
  2147. msgid "Enable <abbr title=\"Stateless Address Auto Config\">SLAAC</abbr>"
  2148. msgstr ""
  2149. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:174
  2150. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:369
  2151. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:375
  2152. msgid "Enable DNS lookups"
  2153. msgstr ""
  2154. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:294
  2155. msgid "Enable Dynamic Shuffling Of Flows"
  2156. msgstr ""
  2157. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:60
  2158. msgid "Enable HE.net dynamic endpoint update"
  2159. msgstr ""
  2160. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:725
  2161. msgid "Enable IPv6"
  2162. msgstr ""
  2163. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:101
  2164. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:101
  2165. msgid "Enable IPv6 negotiation"
  2166. msgstr ""
  2167. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:49
  2168. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:94
  2169. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:80
  2170. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:54
  2171. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:67
  2172. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:93
  2173. msgid "Enable IPv6 negotiation on the PPP link"
  2174. msgstr ""
  2175. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:729
  2176. msgid "Enable IPv6 segment routing"
  2177. msgstr ""
  2178. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:194
  2179. msgid "Enable Jumbo Frame passthrough"
  2180. msgstr ""
  2181. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:764
  2182. msgid "Enable MAC address learning"
  2183. msgstr ""
  2184. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:257
  2185. msgid "Enable NTP client"
  2186. msgstr ""
  2187. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:96
  2188. msgid "Enable Single DES"
  2189. msgstr ""
  2190. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:566
  2191. msgid "Enable TFTP server"
  2192. msgstr ""
  2193. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:796
  2194. msgid "Enable VLAN filtering"
  2195. msgstr ""
  2196. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:184
  2197. msgid "Enable VLAN functionality"
  2198. msgstr ""
  2199. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1814
  2200. msgid "Enable WPS pushbutton, requires WPA(2)-PSK/WPA3-SAE"
  2201. msgstr ""
  2202. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/uhttpd.js:14
  2203. msgid ""
  2204. "Enable automatic redirection of <abbr title=\"Hypertext Transfer "
  2205. "Protocol\">HTTP</abbr> requests to <abbr title=\"Hypertext Transfer Protocol "
  2206. "Secure\">HTTPS</abbr> port."
  2207. msgstr ""
  2208. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1036
  2209. msgid ""
  2210. "Enable downstream delegation of IPv6 prefixes available on this interface"
  2211. msgstr ""
  2212. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1810
  2213. msgid "Enable key reinstallation (KRACK) countermeasures"
  2214. msgstr ""
  2215. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:189
  2216. msgid "Enable learning and aging"
  2217. msgstr ""
  2218. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:200
  2219. msgid "Enable mirroring of incoming packets"
  2220. msgstr ""
  2221. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:201
  2222. msgid "Enable mirroring of outgoing packets"
  2223. msgstr ""
  2224. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:783
  2225. msgid "Enable multicast fast leave"
  2226. msgstr ""
  2227. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:601
  2228. msgid "Enable multicast querier"
  2229. msgstr ""
  2230. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:747
  2231. msgid "Enable multicast support"
  2232. msgstr ""
  2233. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1538
  2234. msgid ""
  2235. "Enable packet steering across all CPUs. May help or hinder network speed."
  2236. msgstr ""
  2237. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:676
  2238. msgid "Enable promiscuous mode"
  2239. msgstr ""
  2240. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:71
  2241. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:66
  2242. msgid "Enable rx checksum"
  2243. msgstr ""
  2244. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:89
  2245. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:94
  2246. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:91
  2247. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:96
  2248. msgid "Enable support for multicast traffic (optional)."
  2249. msgstr ""
  2250. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:83
  2251. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:88
  2252. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:67
  2253. msgid "Enable the DF (Don't Fragment) flag of the encapsulating packets."
  2254. msgstr ""
  2255. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:567
  2256. msgid "Enable the built-in single-instance TFTP server."
  2257. msgstr ""
  2258. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:889
  2259. msgid "Enable this network"
  2260. msgstr ""
  2261. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:75
  2262. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:70
  2263. msgid "Enable tx checksum"
  2264. msgstr ""
  2265. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:767
  2266. msgid "Enable unicast flooding"
  2267. msgstr ""
  2268. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1631
  2269. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:243
  2270. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:353
  2271. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:66
  2272. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:109
  2273. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:118
  2274. msgid "Enabled"
  2275. msgstr ""
  2276. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:592
  2277. msgid "Enables IGMP snooping on this bridge"
  2278. msgstr ""
  2279. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1551
  2280. msgid ""
  2281. "Enables fast roaming among access points that belong to the same Mobility "
  2282. "Domain"
  2283. msgstr ""
  2284. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:100
  2285. msgid ""
  2286. "Enables more efficient, group aware multicast forwarding infrastructure in "
  2287. "batman-adv."
  2288. msgstr ""
  2289. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:572
  2290. msgid "Enables the Spanning Tree Protocol on this bridge"
  2291. msgstr ""
  2292. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:59
  2293. msgid "Encapsulation limit"
  2294. msgstr ""
  2295. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1577
  2296. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1635
  2297. msgid "Encapsulation mode"
  2298. msgstr ""
  2299. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:159
  2300. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:183
  2301. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1198
  2302. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1842
  2303. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:150
  2304. msgid "Encryption"
  2305. msgstr ""
  2306. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:55
  2307. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:75
  2308. msgid "Endpoint"
  2309. msgstr ""
  2310. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:662
  2311. msgid "Endpoint Host"
  2312. msgstr ""
  2313. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:678
  2314. msgid "Endpoint Port"
  2315. msgstr ""
  2316. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:325
  2317. msgid "Endpoint setting is invalid"
  2318. msgstr ""
  2319. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:752
  2320. msgid "Enforce IGMPv1"
  2321. msgstr ""
  2322. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:753
  2323. msgid "Enforce IGMPv2"
  2324. msgstr ""
  2325. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:754
  2326. msgid "Enforce IGMPv3"
  2327. msgstr ""
  2328. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:759
  2329. msgid "Enforce MLD version 1"
  2330. msgstr ""
  2331. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:760
  2332. msgid "Enforce MLD version 2"
  2333. msgstr ""
  2334. #: modules/luci-compat/luasrc/view/cbi/dropdown.htm:16
  2335. msgid "Enter custom value"
  2336. msgstr ""
  2337. #: modules/luci-compat/luasrc/view/cbi/dropdown.htm:16
  2338. msgid "Enter custom values"
  2339. msgstr ""
  2340. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:97
  2341. msgid "Erasing..."
  2342. msgstr ""
  2343. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:103
  2344. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:104
  2345. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:105
  2346. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:106
  2347. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:107
  2348. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:190
  2349. msgid "Error"
  2350. msgstr ""
  2351. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:170
  2352. msgid "Error getting PublicKey"
  2353. msgstr ""
  2354. #: modules/luci-base/htdocs/luci-static/resources/network.js:3008
  2355. #: modules/luci-compat/luasrc/model/network.lua:1433
  2356. msgid "Ethernet Adapter"
  2357. msgstr ""
  2358. #: modules/luci-base/htdocs/luci-static/resources/network.js:2999
  2359. #: modules/luci-compat/luasrc/model/network.lua:1423
  2360. msgid "Ethernet Switch"
  2361. msgstr ""
  2362. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:272
  2363. msgid "Every 30 seconds (slow, 0)"
  2364. msgstr ""
  2365. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:273
  2366. msgid "Every second (fast, 1)"
  2367. msgstr ""
  2368. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:349
  2369. msgid "Exclude interfaces"
  2370. msgstr ""
  2371. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:160
  2372. msgid ""
  2373. "Execution of various network commands to check the connection and name "
  2374. "resolution to other systems."
  2375. msgstr ""
  2376. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:318
  2377. msgid ""
  2378. "Exempt <code>127.0.0.0/8</code> and <code>::1</code> from rebinding checks, "
  2379. "e.g. for RBL services."
  2380. msgstr ""
  2381. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:410
  2382. msgid "Existing device"
  2383. msgstr ""
  2384. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:495
  2385. msgid "Expand hosts"
  2386. msgstr ""
  2387. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:399
  2388. msgid "Expected port number."
  2389. msgstr ""
  2390. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1053
  2391. msgid "Expecting a hexadecimal assignment hint"
  2392. msgstr ""
  2393. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:19
  2394. msgid "Expecting a valid IPv4 address"
  2395. msgstr ""
  2396. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:19
  2397. msgid "Expecting a valid IPv6 address"
  2398. msgstr ""
  2399. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:808
  2400. msgid "Expecting a valid MAC address, optionally including wildcards"
  2401. msgstr ""
  2402. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:29
  2403. msgid "Expecting two priority values separated by a colon"
  2404. msgstr ""
  2405. #: modules/luci-base/htdocs/luci-static/resources/form.js:2269
  2406. #: modules/luci-base/htdocs/luci-static/resources/validation.js:64
  2407. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:127
  2408. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:133
  2409. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:161
  2410. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:177
  2411. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:181
  2412. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:185
  2413. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:188
  2414. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:192
  2415. msgid "Expecting: %s"
  2416. msgstr ""
  2417. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:50
  2418. msgid "Expecting: non-empty value"
  2419. msgstr ""
  2420. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:50
  2421. msgid "Expires"
  2422. msgstr ""
  2423. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:696
  2424. msgid ""
  2425. "Expiry time of leased addresses, minimum is 2 minutes (<code>2m</code>)."
  2426. msgstr ""
  2427. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:19
  2428. msgid "External"
  2429. msgstr ""
  2430. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1602
  2431. msgid "External R0 Key Holder List"
  2432. msgstr ""
  2433. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1606
  2434. msgid "External R1 Key Holder List"
  2435. msgstr ""
  2436. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:167
  2437. msgid "External system log server"
  2438. msgstr ""
  2439. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:172
  2440. msgid "External system log server port"
  2441. msgstr ""
  2442. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:177
  2443. msgid "External system log server protocol"
  2444. msgstr ""
  2445. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:79
  2446. msgid "Extra SSH command options"
  2447. msgstr ""
  2448. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:68
  2449. msgid "Extra pppd options"
  2450. msgstr ""
  2451. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:66
  2452. msgid "Extra sstpc options"
  2453. msgstr ""
  2454. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1577
  2455. msgid "FT over DS"
  2456. msgstr ""
  2457. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1576
  2458. msgid "FT over the Air"
  2459. msgstr ""
  2460. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1574
  2461. msgid "FT protocol"
  2462. msgstr ""
  2463. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:91
  2464. msgid "Failed Reason"
  2465. msgstr ""
  2466. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:87
  2467. msgid "Failed to change the system password."
  2468. msgstr ""
  2469. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:21
  2470. msgid "Failed to configure modem"
  2471. msgstr ""
  2472. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4556
  2473. msgid "Failed to confirm apply within %ds, waiting for rollback…"
  2474. msgstr ""
  2475. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:22
  2476. msgid "Failed to connect"
  2477. msgstr ""
  2478. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:23
  2479. msgid "Failed to disconnect"
  2480. msgstr ""
  2481. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:37
  2482. msgid "Failed to execute \"/etc/init.d/%s %s\" action: %s"
  2483. msgstr ""
  2484. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:25
  2485. msgid "Failed to get modem information"
  2486. msgstr ""
  2487. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:26
  2488. msgid "Failed to initialize modem"
  2489. msgstr ""
  2490. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:30
  2491. msgid "Failed to set operating mode"
  2492. msgstr ""
  2493. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2732
  2494. msgid "File"
  2495. msgstr ""
  2496. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:504
  2497. msgid ""
  2498. "File listing upstream resolvers, optionally domain-specific, e.g. "
  2499. "<code>server=1.2.3.4</code>, <code>server=/domain/1.2.3.4</code>."
  2500. msgstr ""
  2501. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2679
  2502. msgid "File not accessible"
  2503. msgstr ""
  2504. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:424
  2505. msgid "File to store DHCP lease information."
  2506. msgstr ""
  2507. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:432
  2508. msgid "File with upstream resolvers."
  2509. msgstr ""
  2510. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2870
  2511. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:593
  2512. msgid "Filename"
  2513. msgstr ""
  2514. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:579
  2515. msgid "Filename of the boot image advertised to clients."
  2516. msgstr ""
  2517. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:191
  2518. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:315
  2519. msgid "Filesystem"
  2520. msgstr ""
  2521. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:473
  2522. msgid "Filter IPv4 A records"
  2523. msgstr ""
  2524. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:467
  2525. msgid "Filter IPv6 AAAA records"
  2526. msgstr ""
  2527. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:462
  2528. msgid "Filter SRV/SOA service discovery"
  2529. msgstr ""
  2530. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:457
  2531. msgid "Filter private"
  2532. msgstr ""
  2533. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:389
  2534. msgid "Filtering for all slaves, no validation"
  2535. msgstr ""
  2536. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:390
  2537. msgid "Filtering for all slaves, validation only for active slave"
  2538. msgstr ""
  2539. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:391
  2540. msgid "Filtering for all slaves, validation only for backup slaves"
  2541. msgstr ""
  2542. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:463
  2543. msgid ""
  2544. "Filters SRV/SOA service discovery, to avoid triggering dial-on-demand links."
  2545. msgstr ""
  2546. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:65
  2547. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:24
  2548. msgid "Finalizing failed"
  2549. msgstr ""
  2550. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:150
  2551. msgid ""
  2552. "Find all currently attached filesystems and swap and replace configuration "
  2553. "with defaults based on what was detected"
  2554. msgstr ""
  2555. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:872
  2556. msgid "Find and join network"
  2557. msgstr ""
  2558. #: modules/luci-compat/luasrc/view/cbi/delegator.htm:9
  2559. msgid "Finish"
  2560. msgstr ""
  2561. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:27
  2562. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:43
  2563. msgid "Firewall"
  2564. msgstr ""
  2565. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:201
  2566. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:39
  2567. msgid "Firewall Mark"
  2568. msgstr ""
  2569. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:499
  2570. msgid "Firewall Settings"
  2571. msgstr ""
  2572. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:326
  2573. msgid "Firewall Status"
  2574. msgstr ""
  2575. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:177
  2576. msgid "Firewall mark"
  2577. msgstr ""
  2578. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1594
  2579. msgid "Firmware File"
  2580. msgstr ""
  2581. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:59
  2582. msgid "Firmware Version"
  2583. msgstr ""
  2584. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:532
  2585. msgid "Fixed source port for outbound DNS queries."
  2586. msgstr ""
  2587. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:312
  2588. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:449
  2589. msgid "Flash image..."
  2590. msgstr ""
  2591. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:308
  2592. msgid "Flash image?"
  2593. msgstr ""
  2594. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:439
  2595. msgid "Flash new firmware image"
  2596. msgstr ""
  2597. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:384
  2598. msgid "Flash operations"
  2599. msgstr ""
  2600. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:317
  2601. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:319
  2602. msgid "Flashing…"
  2603. msgstr ""
  2604. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:988
  2605. msgid "Follow IPv4 Lifetime"
  2606. msgstr ""
  2607. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:623
  2608. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:703
  2609. msgid "Force"
  2610. msgstr ""
  2611. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:965
  2612. msgid "Force 40MHz mode"
  2613. msgstr ""
  2614. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1239
  2615. msgid "Force CCMP (AES)"
  2616. msgstr ""
  2617. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:703
  2618. msgid "Force DHCP on this network even if another server is detected."
  2619. msgstr ""
  2620. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:750
  2621. msgid "Force IGMP version"
  2622. msgstr ""
  2623. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:757
  2624. msgid "Force MLD version"
  2625. msgstr ""
  2626. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1240
  2627. msgid "Force TKIP"
  2628. msgstr ""
  2629. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1241
  2630. msgid "Force TKIP and CCMP (AES)"
  2631. msgstr ""
  2632. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:941
  2633. msgid "Force broadcast DHCP response."
  2634. msgstr ""
  2635. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1299
  2636. msgid "Force link"
  2637. msgstr ""
  2638. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:281
  2639. msgid "Force upgrade"
  2640. msgstr ""
  2641. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:90
  2642. msgid "Force use of NAT-T"
  2643. msgstr ""
  2644. #: modules/luci-base/ucode/template/csrftoken.ut:8
  2645. msgid "Form token mismatch"
  2646. msgstr ""
  2647. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:966
  2648. msgid ""
  2649. "Forward <abbr title=\"Neighbour Discovery Protocol\">NDP</abbr> <abbr "
  2650. "title=\"Neighbour Solicitation, Type 135\">NS</abbr> and <abbr "
  2651. "title=\"Neighbour Advertisement, Type 136\">NA</abbr> messages between the "
  2652. "designated master interface and downstream interfaces."
  2653. msgstr ""
  2654. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:810
  2655. msgid ""
  2656. "Forward <abbr title=\"Router Advertisement, ICMPv6 Type 134\">RA</abbr> "
  2657. "messages received on the designated master interface to downstream "
  2658. "interfaces."
  2659. msgstr ""
  2660. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:164
  2661. msgid "Forward DHCP traffic"
  2662. msgstr ""
  2663. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:932
  2664. msgid ""
  2665. "Forward DHCPv6 messages between the designated master interface and "
  2666. "downstream interfaces."
  2667. msgstr ""
  2668. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:161
  2669. msgid "Forward broadcast traffic"
  2670. msgstr ""
  2671. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:581
  2672. msgid "Forward delay"
  2673. msgstr ""
  2674. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:993
  2675. msgid "Forward mesh peer traffic"
  2676. msgstr ""
  2677. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:779
  2678. msgid "Forward multicast packets as unicast packets on this device."
  2679. msgstr ""
  2680. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:944
  2681. msgid "Forward/reverse DNS"
  2682. msgstr ""
  2683. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1642
  2684. msgid "Forwarding mode"
  2685. msgstr ""
  2686. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:80
  2687. msgid "Fragmentation"
  2688. msgstr ""
  2689. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:957
  2690. msgid "Fragmentation Threshold"
  2691. msgstr ""
  2692. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:62
  2693. msgctxt "nft nat flag fully-random"
  2694. msgid "Full port randomization"
  2695. msgstr ""
  2696. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:214
  2697. msgid ""
  2698. "Further information about WireGuard interfaces and peers at <a href='http://"
  2699. "wireguard.com'>wireguard.com</a>."
  2700. msgstr ""
  2701. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:128
  2702. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:184
  2703. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:170
  2704. msgid "GHz"
  2705. msgstr ""
  2706. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:92
  2707. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:82
  2708. msgid "GPRS only"
  2709. msgstr ""
  2710. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:10
  2711. msgid "GRE tunnel over IPv4"
  2712. msgstr ""
  2713. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:10
  2714. msgid "GRE tunnel over IPv6"
  2715. msgstr ""
  2716. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:10
  2717. msgid "GRETAP tunnel over IPv4"
  2718. msgstr ""
  2719. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:10
  2720. msgid "GRETAP tunnel over IPv6"
  2721. msgstr ""
  2722. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:76
  2723. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:44
  2724. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:188
  2725. msgid "Gateway"
  2726. msgstr ""
  2727. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:85
  2728. msgid "Gateway Mode"
  2729. msgstr ""
  2730. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:36
  2731. msgid "Gateway Ports"
  2732. msgstr ""
  2733. #: modules/luci-base/htdocs/luci-static/resources/network.js:11
  2734. #: modules/luci-compat/luasrc/model/network.lua:29
  2735. msgid "Gateway address is invalid"
  2736. msgstr ""
  2737. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:256
  2738. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:494
  2739. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:38
  2740. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:127
  2741. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:240
  2742. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:122
  2743. msgid "General Settings"
  2744. msgstr ""
  2745. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:649
  2746. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1629
  2747. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:917
  2748. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:979
  2749. msgid "General Setup"
  2750. msgstr ""
  2751. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:390
  2752. msgid "General device options"
  2753. msgstr ""
  2754. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:150
  2755. msgid "Generate Config"
  2756. msgstr ""
  2757. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1580
  2758. msgid "Generate PMK locally"
  2759. msgstr ""
  2760. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:396
  2761. msgid "Generate archive"
  2762. msgstr ""
  2763. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:824
  2764. msgid "Generate configuration"
  2765. msgstr ""
  2766. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:864
  2767. msgid "Generate configuration…"
  2768. msgstr ""
  2769. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:109
  2770. msgid "Generate new key pair"
  2771. msgstr ""
  2772. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:621
  2773. msgid "Generate preshared key"
  2774. msgstr ""
  2775. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:691
  2776. msgid "Generates a configuration suitable for import on a WireGuard peer"
  2777. msgstr ""
  2778. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:798
  2779. msgid "Generating QR code…"
  2780. msgstr ""
  2781. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:79
  2782. msgid "Given password confirmation did not match, password not changed!"
  2783. msgstr ""
  2784. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:146
  2785. msgid "Global Settings"
  2786. msgstr ""
  2787. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1531
  2788. msgid "Global network options"
  2789. msgstr ""
  2790. #: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:70
  2791. #: themes/luci-theme-material/ucode/template/themes/material/header.ut:90
  2792. #: themes/luci-theme-librecmc-2020/ucode/template/themes/librecmc2020/header.ut:67
  2793. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:92
  2794. msgid "Go to firmware upgrade..."
  2795. msgstr ""
  2796. #: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:60
  2797. #: themes/luci-theme-material/ucode/template/themes/material/header.ut:80
  2798. #: themes/luci-theme-librecmc-2020/ucode/template/themes/librecmc2020/header.ut:57
  2799. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:82
  2800. msgid "Go to password configuration..."
  2801. msgstr ""
  2802. #: modules/luci-base/htdocs/luci-static/resources/form.js:2640
  2803. #: modules/luci-base/htdocs/luci-static/resources/form.js:3753
  2804. #: modules/luci-compat/luasrc/view/cbi/full_valueheader.htm:4
  2805. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:58
  2806. msgid "Go to relevant configuration page"
  2807. msgstr ""
  2808. #: modules/luci-mod-network/root/usr/share/rpcd/acl.d/luci-mod-network.json:39
  2809. msgid "Grant access to DHCP configuration"
  2810. msgstr ""
  2811. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status-index.json:23
  2812. msgid "Grant access to DHCP status display"
  2813. msgstr ""
  2814. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status-index.json:32
  2815. msgid "Grant access to DSL status display"
  2816. msgstr ""
  2817. #: protocols/luci-proto-openconnect/root/usr/share/rpcd/acl.d/luci-openconnect.json:3
  2818. msgid "Grant access to LuCI OpenConnect procedures"
  2819. msgstr ""
  2820. #: protocols/luci-proto-wireguard/root/usr/share/rpcd/acl.d/luci-wireguard.json:3
  2821. msgid "Grant access to LuCI Wireguard procedures"
  2822. msgstr ""
  2823. #: protocols/luci-proto-openfortivpn/root/usr/share/rpcd/acl.d/luci-openfortivpn.json:3
  2824. msgid "Grant access to LuCI openfortivpn procedures"
  2825. msgstr ""
  2826. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:20
  2827. msgid "Grant access to SSH configuration"
  2828. msgstr ""
  2829. #: modules/luci-base/root/usr/share/rpcd/acl.d/luci-base.json:12
  2830. msgid "Grant access to basic LuCI procedures"
  2831. msgstr ""
  2832. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:79
  2833. msgid "Grant access to crontab configuration"
  2834. msgstr ""
  2835. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:70
  2836. msgid "Grant access to firewall status"
  2837. msgstr ""
  2838. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:132
  2839. msgid "Grant access to flash operations"
  2840. msgstr ""
  2841. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status-index.json:3
  2842. msgid "Grant access to main status display"
  2843. msgstr ""
  2844. #: protocols/luci-proto-modemmanager/root/usr/share/rpcd/acl.d/luci-proto-modemmanager.json:3
  2845. msgid "Grant access to mmcli"
  2846. msgstr ""
  2847. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:100
  2848. msgid "Grant access to mount configuration"
  2849. msgstr ""
  2850. #: modules/luci-mod-network/root/usr/share/rpcd/acl.d/luci-mod-network.json:3
  2851. msgid "Grant access to network configuration"
  2852. msgstr ""
  2853. #: modules/luci-mod-network/root/usr/share/rpcd/acl.d/luci-mod-network.json:52
  2854. msgid "Grant access to network diagnostic tools"
  2855. msgstr ""
  2856. #: modules/luci-base/root/usr/share/rpcd/acl.d/luci-base.json:36
  2857. msgid "Grant access to network status information"
  2858. msgstr ""
  2859. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status-index.json:41
  2860. msgid "Grant access to port status display"
  2861. msgstr ""
  2862. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:13
  2863. msgid "Grant access to process status"
  2864. msgstr ""
  2865. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:3
  2866. msgid "Grant access to realtime statistics"
  2867. msgstr ""
  2868. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:47
  2869. msgid "Grant access to routing status"
  2870. msgstr ""
  2871. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:57
  2872. msgid "Grant access to startup configuration"
  2873. msgstr ""
  2874. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:3
  2875. msgid "Grant access to system configuration"
  2876. msgstr ""
  2877. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:30
  2878. msgid "Grant access to system logs"
  2879. msgstr ""
  2880. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:43
  2881. msgid "Grant access to uHTTPd configuration"
  2882. msgstr ""
  2883. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:61
  2884. msgid "Grant access to wireless channel status"
  2885. msgstr ""
  2886. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status-index.json:50
  2887. msgid "Grant access to wireless status display"
  2888. msgstr ""
  2889. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:66
  2890. msgid "Group Password"
  2891. msgstr ""
  2892. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:22
  2893. msgid "Guest"
  2894. msgstr ""
  2895. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:81
  2896. msgid "HE.net password"
  2897. msgstr ""
  2898. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:73
  2899. msgid "HE.net username"
  2900. msgstr ""
  2901. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/uhttpd.js:9
  2902. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:64
  2903. msgid "HTTP(S) Access"
  2904. msgstr ""
  2905. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:46
  2906. msgid "Hang Up"
  2907. msgstr ""
  2908. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/heartbeat.js:6
  2909. msgid "Heartbeat interval (kernel: heartbeat)"
  2910. msgstr ""
  2911. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:576
  2912. msgid "Hello interval"
  2913. msgstr ""
  2914. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:114
  2915. msgid ""
  2916. "Here you can configure the basic aspects of your device like its hostname or "
  2917. "the timezone."
  2918. msgstr ""
  2919. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1135
  2920. msgid "Hide <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>"
  2921. msgstr ""
  2922. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:293
  2923. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:332
  2924. msgid "Hide empty chains"
  2925. msgstr ""
  2926. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:950
  2927. msgid "High"
  2928. msgstr ""
  2929. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:707
  2930. msgid "Honor gratuitous ARP"
  2931. msgstr ""
  2932. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:593
  2933. msgctxt "Chain hook description"
  2934. msgid "Hook: <strong>%h</strong> (%h), Priority: <strong>%d</strong>"
  2935. msgstr ""
  2936. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:92
  2937. msgid "Hop Penalty"
  2938. msgstr ""
  2939. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:57
  2940. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2258
  2941. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:134
  2942. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:234
  2943. msgid "Host"
  2944. msgstr ""
  2945. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:171
  2946. msgid "Host expiry timeout"
  2947. msgstr ""
  2948. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:594
  2949. msgid "Host requests this filename from the boot server."
  2950. msgstr ""
  2951. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:88
  2952. msgid "Host-Uniq tag content"
  2953. msgstr ""
  2954. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:894
  2955. msgid ""
  2956. "Host-specific lease time, e.g. <code>5m</code>, <code>3h</code>, <code>7d</"
  2957. "code>."
  2958. msgstr ""
  2959. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:38
  2960. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:732
  2961. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:785
  2962. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:55
  2963. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:87
  2964. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:135
  2965. msgid "Hostname"
  2966. msgstr ""
  2967. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:22
  2968. msgid "Hostname to send when requesting DHCP"
  2969. msgstr ""
  2970. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:260
  2971. msgid "Hostnames"
  2972. msgstr ""
  2973. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:724
  2974. msgid ""
  2975. "Hostnames are used to bind a domain name to an IP address. This setting is "
  2976. "redundant for hostnames already configured with static leases, but it can be "
  2977. "useful to rebind an FQDN."
  2978. msgstr ""
  2979. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/timer.js:19
  2980. msgid "How long (in milliseconds) the LED should be off"
  2981. msgstr ""
  2982. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/timer.js:13
  2983. msgid "How long (in milliseconds) the LED should be on"
  2984. msgstr ""
  2985. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:276
  2986. msgid "Human-readable counters"
  2987. msgstr ""
  2988. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:24
  2989. msgid "Hybrid"
  2990. msgstr ""
  2991. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:49
  2992. msgctxt "nft icmp code"
  2993. msgid "ICMP code"
  2994. msgstr ""
  2995. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:50
  2996. msgctxt "nft icmp type"
  2997. msgid "ICMP type"
  2998. msgstr ""
  2999. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:51
  3000. msgctxt "nft icmpv6 code"
  3001. msgid "ICMPv6 code"
  3002. msgstr ""
  3003. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:52
  3004. msgctxt "nft icmpv6 type"
  3005. msgid "ICMPv6 type"
  3006. msgstr ""
  3007. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:53
  3008. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:48
  3009. msgid "ID used to uniquely identify the VXLAN"
  3010. msgstr ""
  3011. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:208
  3012. msgid "IEEE 802.3ad Dynamic link aggregation (802.3ad, 4)"
  3013. msgstr ""
  3014. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:75
  3015. msgid "IKE DH Group"
  3016. msgstr ""
  3017. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:86
  3018. msgid "IMEI"
  3019. msgstr ""
  3020. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:181
  3021. msgid "IP Addresses"
  3022. msgstr ""
  3023. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:85
  3024. msgid "IP Protocol"
  3025. msgstr ""
  3026. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:261
  3027. msgid "IP Sets"
  3028. msgstr ""
  3029. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:136
  3030. msgid "IP Type"
  3031. msgstr ""
  3032. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:736
  3033. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:178
  3034. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:204
  3035. msgid "IP address"
  3036. msgstr ""
  3037. #: modules/luci-base/htdocs/luci-static/resources/network.js:10
  3038. #: modules/luci-compat/luasrc/model/network.lua:28
  3039. msgid "IP address is invalid"
  3040. msgstr ""
  3041. #: modules/luci-base/htdocs/luci-static/resources/network.js:13
  3042. #: modules/luci-compat/luasrc/model/network.lua:31
  3043. msgid "IP address is missing"
  3044. msgstr ""
  3045. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:781
  3046. msgid ""
  3047. "IP addresses that are allowed inside the tunnel. The peer will accept "
  3048. "tunnelled packets with source IP addresses matching this list and route back "
  3049. "packets with matching destination IP."
  3050. msgstr ""
  3051. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:36
  3052. msgctxt "nft ip protocol"
  3053. msgid "IP protocol"
  3054. msgstr ""
  3055. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:14
  3056. msgctxt "nft meta l4proto"
  3057. msgid "IP protocol"
  3058. msgstr ""
  3059. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:762
  3060. msgid "IP set"
  3061. msgstr ""
  3062. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:306
  3063. msgid "IP sets"
  3064. msgstr ""
  3065. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:518
  3066. msgid "IPs to override with NXDOMAIN"
  3067. msgstr ""
  3068. #: protocols/luci-proto-xfrm/htdocs/luci-static/resources/protocol/xfrm.js:9
  3069. msgid "IPsec XFRM"
  3070. msgstr ""
  3071. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:87
  3072. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:110
  3073. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:86
  3074. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:87
  3075. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:88
  3076. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:89
  3077. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:90
  3078. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:96
  3079. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:87
  3080. msgid "IPv4"
  3081. msgstr ""
  3082. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:351
  3083. msgid "IPv4 Firewall"
  3084. msgstr ""
  3085. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:252
  3086. msgid "IPv4 Neighbours"
  3087. msgstr ""
  3088. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:251
  3089. msgid "IPv4 Routing"
  3090. msgstr ""
  3091. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:121
  3092. msgid "IPv4 Rules"
  3093. msgstr ""
  3094. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:29
  3095. msgid "IPv4 Upstream"
  3096. msgstr ""
  3097. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:178
  3098. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:39
  3099. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:859
  3100. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:88
  3101. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:164
  3102. msgid "IPv4 address"
  3103. msgstr ""
  3104. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:29
  3105. msgid "IPv4 assignment length"
  3106. msgstr ""
  3107. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:181
  3108. msgid "IPv4 broadcast"
  3109. msgstr ""
  3110. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:180
  3111. msgid "IPv4 gateway"
  3112. msgstr ""
  3113. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:179
  3114. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:170
  3115. msgid "IPv4 netmask"
  3116. msgstr ""
  3117. #: modules/luci-base/htdocs/luci-static/resources/validation.js:305
  3118. msgid "IPv4 network in address/netmask notation"
  3119. msgstr ""
  3120. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:138
  3121. msgid "IPv4 only"
  3122. msgstr ""
  3123. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:52
  3124. msgid "IPv4 prefix"
  3125. msgstr ""
  3126. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:61
  3127. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:55
  3128. msgid "IPv4 prefix length"
  3129. msgstr ""
  3130. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:625
  3131. msgid "IPv4 traffic table \"%h\""
  3132. msgstr ""
  3133. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:88
  3134. msgid "IPv4+IPv6"
  3135. msgstr ""
  3136. #: modules/luci-compat/luasrc/model/network/proto_ipip.lua:9
  3137. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:10
  3138. msgid "IPv4-in-IPv4 (RFC2003)"
  3139. msgstr ""
  3140. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:95
  3141. msgid "IPv4/IPv6"
  3142. msgstr ""
  3143. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:137
  3144. msgid "IPv4/IPv6 (both - defaults to IPv4)"
  3145. msgstr ""
  3146. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:633
  3147. msgid "IPv4/IPv6 traffic table \"%h\""
  3148. msgstr ""
  3149. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:88
  3150. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:111
  3151. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:91
  3152. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:92
  3153. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:93
  3154. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:94
  3155. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:95
  3156. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:96
  3157. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:97
  3158. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:98
  3159. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:99
  3160. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:100
  3161. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:97
  3162. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:89
  3163. msgid "IPv6"
  3164. msgstr ""
  3165. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:354
  3166. msgid "IPv6 Firewall"
  3167. msgstr ""
  3168. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:737
  3169. msgid "IPv6 MTU"
  3170. msgstr ""
  3171. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:262
  3172. msgid "IPv6 Neighbours"
  3173. msgstr ""
  3174. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:979
  3175. msgid "IPv6 Prefix Lifetime"
  3176. msgstr ""
  3177. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:652
  3178. msgid "IPv6 RA Settings"
  3179. msgstr ""
  3180. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:261
  3181. msgid "IPv6 Routing"
  3182. msgstr ""
  3183. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:121
  3184. msgid "IPv6 Rules"
  3185. msgstr ""
  3186. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:651
  3187. msgid "IPv6 Settings"
  3188. msgstr ""
  3189. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1535
  3190. msgid "IPv6 ULA-Prefix"
  3191. msgstr ""
  3192. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:29
  3193. msgid "IPv6 Upstream"
  3194. msgstr ""
  3195. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:183
  3196. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:58
  3197. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:135
  3198. msgid "IPv6 address"
  3199. msgstr ""
  3200. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1044
  3201. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:27
  3202. msgid "IPv6 assignment hint"
  3203. msgstr ""
  3204. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1039
  3205. msgid "IPv6 assignment length"
  3206. msgstr ""
  3207. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:188
  3208. msgid "IPv6 gateway"
  3209. msgstr ""
  3210. #: modules/luci-base/htdocs/luci-static/resources/validation.js:310
  3211. msgid "IPv6 network in address/netmask notation"
  3212. msgstr ""
  3213. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:139
  3214. msgid "IPv6 only"
  3215. msgstr ""
  3216. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1088
  3217. msgid "IPv6 preference"
  3218. msgstr ""
  3219. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:53
  3220. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:59
  3221. msgid "IPv6 prefix"
  3222. msgstr ""
  3223. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1061
  3224. msgid "IPv6 prefix filter"
  3225. msgstr ""
  3226. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:57
  3227. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:63
  3228. msgid "IPv6 prefix length"
  3229. msgstr ""
  3230. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:192
  3231. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:57
  3232. msgid "IPv6 routed prefix"
  3233. msgstr ""
  3234. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1032
  3235. msgid "IPv6 source routing"
  3236. msgstr ""
  3237. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1084
  3238. msgid "IPv6 suffix"
  3239. msgstr ""
  3240. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:51
  3241. msgid "IPv6 support"
  3242. msgstr ""
  3243. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:629
  3244. msgid "IPv6 traffic table \"%h\""
  3245. msgstr ""
  3246. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:101
  3247. msgid "IPv6-PD"
  3248. msgstr ""
  3249. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:911
  3250. msgid "IPv6-Suffix (hex)"
  3251. msgstr ""
  3252. #: modules/luci-compat/luasrc/model/network/proto_6x4.lua:13
  3253. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:10
  3254. msgid "IPv6-in-IPv4 (RFC4213)"
  3255. msgstr ""
  3256. #: modules/luci-compat/luasrc/model/network/proto_6x4.lua:17
  3257. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:9
  3258. msgid "IPv6-over-IPv4 (6rd)"
  3259. msgstr ""
  3260. #: modules/luci-compat/luasrc/model/network/proto_6x4.lua:15
  3261. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6to4.js:9
  3262. msgid "IPv6-over-IPv4 (6to4)"
  3263. msgstr ""
  3264. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1764
  3265. msgid "Identity"
  3266. msgstr ""
  3267. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:923
  3268. msgid ""
  3269. "If a host matches an entry which cannot be used because it specifies an "
  3270. "address on a different subnet, the tag <em>known-othernet</em> is set."
  3271. msgstr ""
  3272. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:96
  3273. msgid "If checked, 1DES is enabled"
  3274. msgstr ""
  3275. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:51
  3276. msgid "If checked, adds \"+ipv6\" to the pppd options"
  3277. msgstr ""
  3278. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:93
  3279. msgid "If checked, encryption is disabled"
  3280. msgstr ""
  3281. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1061
  3282. msgid ""
  3283. "If set, downstream subnets are only allocated from the given IPv6 prefix "
  3284. "classes."
  3285. msgstr ""
  3286. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:197
  3287. msgid "If set, the meaning of the match options is inverted"
  3288. msgstr ""
  3289. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:255
  3290. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:361
  3291. msgid ""
  3292. "If specified, mount the device by its UUID instead of a fixed device node"
  3293. msgstr ""
  3294. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:268
  3295. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:377
  3296. msgid ""
  3297. "If specified, mount the device by the partition label instead of a fixed "
  3298. "device node"
  3299. msgstr ""
  3300. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4700
  3301. msgid ""
  3302. "If the IP address used to access LuCI changes, a <strong>manual reconnect to "
  3303. "the new IP</strong> is required within %d seconds to confirm the settings, "
  3304. "otherwise modifications will be reverted."
  3305. msgstr ""
  3306. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:995
  3307. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:134
  3308. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:156
  3309. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:122
  3310. msgid "If unchecked, no default route is configured"
  3311. msgstr ""
  3312. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:999
  3313. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:145
  3314. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:160
  3315. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:133
  3316. msgid "If unchecked, the advertised DNS server addresses are ignored"
  3317. msgstr ""
  3318. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:340
  3319. msgid ""
  3320. "If your physical memory is insufficient unused data can be temporarily "
  3321. "swapped to a swap-device resulting in a higher amount of usable <abbr "
  3322. "title=\"Random Access Memory\">RAM</abbr>. Be aware that swapping data is a "
  3323. "very slow process as the swap-device cannot be accessed with the high "
  3324. "datarates of the <abbr title=\"Random Access Memory\">RAM</abbr>."
  3325. msgstr ""
  3326. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:860
  3327. msgid "Ignore"
  3328. msgstr ""
  3329. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:438
  3330. msgid "Ignore <code>/etc/hosts</code>"
  3331. msgstr ""
  3332. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:683
  3333. msgid "Ignore interface"
  3334. msgstr ""
  3335. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:922
  3336. msgid "Ignore requests from unknown machines using <em>!known</em>."
  3337. msgstr ""
  3338. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:427
  3339. msgid "Ignore resolv file"
  3340. msgstr ""
  3341. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:447
  3342. msgid "Image"
  3343. msgstr ""
  3344. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:273
  3345. msgid "Image check failed:"
  3346. msgstr ""
  3347. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:476
  3348. msgid "Import as peer"
  3349. msgstr ""
  3350. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:188
  3351. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:476
  3352. msgid "Import configuration"
  3353. msgstr ""
  3354. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:504
  3355. msgid "Import configuration as peer…"
  3356. msgstr ""
  3357. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:490
  3358. msgid "Import settings"
  3359. msgstr ""
  3360. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:376
  3361. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:403
  3362. msgid "Imported peer configuration"
  3363. msgstr ""
  3364. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:188
  3365. msgid "Imports settings from an existing WireGuard configuration file"
  3366. msgstr ""
  3367. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:68
  3368. msgid "In"
  3369. msgstr ""
  3370. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:801
  3371. msgid ""
  3372. "In DHCPv4, it is possible to include more than one mac address. This allows "
  3373. "an IP address to be associated with multiple macaddrs, and dnsmasq abandons "
  3374. "a DHCP lease to one of the macaddrs when another asks for a lease. It only "
  3375. "works reliably if only one of the macaddrs is active at any time."
  3376. msgstr ""
  3377. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:71
  3378. msgid ""
  3379. "In bridged LAN setups it is advisable to enable the bridge loop avoidance in "
  3380. "order to avoid broadcast loops that can bring the entire LAN to a standstill."
  3381. msgstr ""
  3382. #: modules/luci-base/ucode/template/csrftoken.ut:13
  3383. msgid ""
  3384. "In order to prevent unauthorized access to the system, your request has been "
  3385. "blocked. Click \"Continue »\" below to return to the previous page."
  3386. msgstr ""
  3387. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:146
  3388. msgid "In seconds"
  3389. msgstr ""
  3390. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:156
  3391. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:128
  3392. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:114
  3393. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:92
  3394. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:101
  3395. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:124
  3396. msgid "Inactivity timeout"
  3397. msgstr ""
  3398. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:267
  3399. msgid "Inbound:"
  3400. msgstr ""
  3401. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:262
  3402. msgid ""
  3403. "Include in backup a list of current installed packages at /etc/backup/"
  3404. "installed_packages.txt"
  3405. msgstr ""
  3406. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:100
  3407. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:105
  3408. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:102
  3409. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:107
  3410. msgid "Incoming checksum"
  3411. msgstr ""
  3412. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:145
  3413. msgid "Incoming interface"
  3414. msgstr ""
  3415. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:92
  3416. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:97
  3417. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:94
  3418. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:99
  3419. #: protocols/luci-proto-vti/htdocs/luci-static/resources/protocol/vti.js:64
  3420. msgid "Incoming key"
  3421. msgstr ""
  3422. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:102
  3423. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:107
  3424. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:104
  3425. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:109
  3426. msgid "Incoming serialization"
  3427. msgstr ""
  3428. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:187
  3429. msgid "Info"
  3430. msgstr ""
  3431. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:102
  3432. msgid "Information"
  3433. msgstr ""
  3434. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:510
  3435. msgid "Ingress QoS mapping"
  3436. msgstr ""
  3437. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:11
  3438. msgctxt "nft meta iif"
  3439. msgid "Ingress device id"
  3440. msgstr ""
  3441. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:9
  3442. msgctxt "nft meta iifname"
  3443. msgid "Ingress device name"
  3444. msgstr ""
  3445. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:67
  3446. msgid "Initialization failure"
  3447. msgstr ""
  3448. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:77
  3449. msgid "Initscript"
  3450. msgstr ""
  3451. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:111
  3452. msgid "Initscripts"
  3453. msgstr ""
  3454. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1748
  3455. msgid "Inner certificate constraint (Domain)"
  3456. msgstr ""
  3457. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1745
  3458. msgid "Inner certificate constraint (SAN)"
  3459. msgstr ""
  3460. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1742
  3461. msgid "Inner certificate constraint (Subject)"
  3462. msgstr ""
  3463. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1751
  3464. msgid "Inner certificate constraint (Wildcard)"
  3465. msgstr ""
  3466. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:317
  3467. msgid "Install protocol extensions..."
  3468. msgstr ""
  3469. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:628
  3470. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:930
  3471. msgid "Instance"
  3472. msgstr ""
  3473. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:125
  3474. msgctxt "WireGuard instance heading"
  3475. msgid "Instance \"%h\""
  3476. msgstr ""
  3477. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:34
  3478. msgid "Instance Details"
  3479. msgstr ""
  3480. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2126
  3481. msgid ""
  3482. "Instead of joining any network with a matching SSID, only connect to the "
  3483. "BSSID <code>%h</code>."
  3484. msgstr ""
  3485. #: modules/luci-compat/luasrc/view/cbi/map.htm:43
  3486. msgid "Insufficient permissions to read UCI configuration."
  3487. msgstr ""
  3488. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:136
  3489. msgid "Integrated Circuit Card Identifier"
  3490. msgstr ""
  3491. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:41
  3492. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:180
  3493. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:206
  3494. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:17
  3495. msgid "Interface"
  3496. msgstr ""
  3497. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:735
  3498. msgid "Interface \"%h\" is already marked as designated master."
  3499. msgstr ""
  3500. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:62
  3501. msgid "Interface %q device auto-migrated from %q to %q."
  3502. msgstr ""
  3503. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:975
  3504. msgid "Interface Configuration"
  3505. msgstr ""
  3506. #: protocols/luci-proto-xfrm/htdocs/luci-static/resources/protocol/xfrm.js:39
  3507. msgid "Interface ID"
  3508. msgstr ""
  3509. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:111
  3510. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:151
  3511. msgid "Interface has %d pending changes"
  3512. msgstr ""
  3513. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:92
  3514. msgid "Interface is disabled"
  3515. msgstr ""
  3516. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:65
  3517. msgid "Interface is marked for deletion"
  3518. msgstr ""
  3519. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:210
  3520. msgid "Interface is reconnecting..."
  3521. msgstr ""
  3522. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:194
  3523. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:204
  3524. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:210
  3525. msgid "Interface is shutting down..."
  3526. msgstr ""
  3527. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:302
  3528. msgid "Interface is starting..."
  3529. msgstr ""
  3530. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:305
  3531. msgid "Interface is stopping..."
  3532. msgstr ""
  3533. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1153
  3534. msgid "Interface name"
  3535. msgstr ""
  3536. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:123
  3537. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:321
  3538. msgid "Interface not present or not connected yet."
  3539. msgstr ""
  3540. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:479
  3541. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:508
  3542. #: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:38
  3543. msgid "Interfaces"
  3544. msgstr ""
  3545. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:20
  3546. msgid "Internal"
  3547. msgstr ""
  3548. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:85
  3549. msgid "International Mobile Station Equipment Identity"
  3550. msgstr ""
  3551. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:139
  3552. msgid "International Mobile Subscriber Identity"
  3553. msgstr ""
  3554. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:285
  3555. msgid "Interval For Sending Learning Packets"
  3556. msgstr ""
  3557. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:610
  3558. msgid ""
  3559. "Interval in centiseconds between multicast general queries. By varying the "
  3560. "value, an administrator may tune the number of IGMP messages on the subnet; "
  3561. "larger values cause IGMP Queries to be sent less often"
  3562. msgstr ""
  3563. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:576
  3564. msgid "Interval in seconds for STP hello packets"
  3565. msgstr ""
  3566. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:192
  3567. #: modules/luci-compat/luasrc/view/cbi/tsection.htm:42
  3568. msgid "Invalid"
  3569. msgstr ""
  3570. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:101
  3571. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:68
  3572. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:71
  3573. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:97
  3574. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:74
  3575. msgid "Invalid APN provided"
  3576. msgstr ""
  3577. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:37
  3578. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:40
  3579. msgid "Invalid Base64 key string"
  3580. msgstr ""
  3581. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:117
  3582. msgid "Invalid IPv6 address"
  3583. msgstr ""
  3584. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:78
  3585. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:83
  3586. msgid "Invalid TOS value, expected 00..FF or inherit"
  3587. msgstr ""
  3588. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:83
  3589. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:88
  3590. msgid "Invalid Traffic Class value, expected 00..FF or inherit"
  3591. msgstr ""
  3592. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:285
  3593. msgid "Invalid VLAN ID given! Only IDs between %d and %d are allowed."
  3594. msgstr ""
  3595. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:294
  3596. msgid "Invalid VLAN ID given! Only unique IDs are allowed"
  3597. msgstr ""
  3598. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:403
  3599. msgid "Invalid argument"
  3600. msgstr ""
  3601. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:11
  3602. msgid ""
  3603. "Invalid bearer list. Possibly too many bearers created. This protocol "
  3604. "supports one and only one bearer."
  3605. msgstr ""
  3606. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:402
  3607. msgid "Invalid command"
  3608. msgstr ""
  3609. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:205
  3610. msgid "Invalid hexadecimal value"
  3611. msgstr ""
  3612. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:126
  3613. msgid "Invalid hostname or IPv4 address"
  3614. msgstr ""
  3615. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:134
  3616. msgid "Invalid port"
  3617. msgstr ""
  3618. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:108
  3619. msgid "Invalid server URL"
  3620. msgstr ""
  3621. #: modules/luci-base/ucode/template/sysauth.ut:12
  3622. #: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:32
  3623. msgid "Invalid username and/or password! Please try again."
  3624. msgstr ""
  3625. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/heartbeat.js:13
  3626. msgid "Invert blinking"
  3627. msgstr ""
  3628. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:197
  3629. msgid "Invert match"
  3630. msgstr ""
  3631. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:223
  3632. msgctxt "VLAN port state"
  3633. msgid "Is Primary VLAN"
  3634. msgstr ""
  3635. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1149
  3636. msgid "Isolate Clients"
  3637. msgstr ""
  3638. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:236
  3639. msgid ""
  3640. "It appears that you are trying to flash an image that does not fit into the "
  3641. "flash memory, please verify the image file!"
  3642. msgstr ""
  3643. #: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:77
  3644. #: themes/luci-theme-material/ucode/template/themes/material/header.ut:97
  3645. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:72
  3646. msgid "JavaScript required!"
  3647. msgstr ""
  3648. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1922
  3649. msgid "Join Network"
  3650. msgstr ""
  3651. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1856
  3652. msgid "Join Network: Wireless Scan"
  3653. msgstr ""
  3654. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2134
  3655. msgid "Joining Network: %q"
  3656. msgstr ""
  3657. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:172
  3658. msgid "Jump to rule"
  3659. msgstr ""
  3660. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:228
  3661. msgid "Keep settings and retain the current configuration"
  3662. msgstr ""
  3663. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:60
  3664. msgid "Keep-Alive"
  3665. msgstr ""
  3666. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/dmesg.js:20
  3667. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:84
  3668. msgid "Kernel Log"
  3669. msgstr ""
  3670. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:60
  3671. msgid "Kernel Version"
  3672. msgstr ""
  3673. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1489
  3674. msgid "Key"
  3675. msgstr ""
  3676. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1517
  3677. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1518
  3678. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1519
  3679. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1520
  3680. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1532
  3681. msgid "Key #%d"
  3682. msgstr ""
  3683. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:92
  3684. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:97
  3685. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:94
  3686. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:99
  3687. #: protocols/luci-proto-vti/htdocs/luci-static/resources/protocol/vti.js:64
  3688. msgid "Key for incoming packets (optional)."
  3689. msgstr ""
  3690. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:96
  3691. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:101
  3692. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:98
  3693. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:103
  3694. #: protocols/luci-proto-vti/htdocs/luci-static/resources/protocol/vti.js:68
  3695. msgid "Key for outgoing packets (optional)."
  3696. msgstr ""
  3697. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:549
  3698. msgctxt "Label indicating that WireGuard peer lacks public key"
  3699. msgid "Key missing"
  3700. msgstr ""
  3701. #: protocols/luci-proto-unet/htdocs/luci-static/resources/protocol/unet.js:44
  3702. msgid "Key used to sign network config"
  3703. msgstr ""
  3704. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:71
  3705. msgctxt "nft unit"
  3706. msgid "KiB"
  3707. msgstr ""
  3708. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:54
  3709. msgid "Kill"
  3710. msgstr ""
  3711. #: modules/luci-compat/luasrc/model/network/proto_ppp.lua:21
  3712. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:10
  3713. msgid "L2TP"
  3714. msgstr ""
  3715. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:40
  3716. msgid "L2TP Server"
  3717. msgstr ""
  3718. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:269
  3719. msgid "LACPDU Packets"
  3720. msgstr ""
  3721. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:130
  3722. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:102
  3723. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:88
  3724. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:62
  3725. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:75
  3726. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:98
  3727. msgid "LCP echo failure threshold"
  3728. msgstr ""
  3729. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:143
  3730. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:115
  3731. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:101
  3732. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:75
  3733. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:88
  3734. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:111
  3735. msgid "LCP echo interval"
  3736. msgstr ""
  3737. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:115
  3738. msgid "LED Configuration"
  3739. msgstr ""
  3740. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1636
  3741. msgid "LLC"
  3742. msgstr ""
  3743. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:268
  3744. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:377
  3745. msgid "Label"
  3746. msgstr ""
  3747. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:225
  3748. msgid "Language"
  3749. msgstr ""
  3750. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:125
  3751. msgid "Language and Style"
  3752. msgstr ""
  3753. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:641
  3754. msgid ""
  3755. "Larger weights (of the same prio) are given a proportionately higher "
  3756. "probability of being selected."
  3757. msgstr ""
  3758. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:629
  3759. msgid "Last member interval"
  3760. msgstr ""
  3761. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:59
  3762. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:78
  3763. msgid "Latest Handshake"
  3764. msgstr ""
  3765. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:21
  3766. msgid "Leaf"
  3767. msgstr ""
  3768. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:775
  3769. msgid "Learn"
  3770. msgstr ""
  3771. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:970
  3772. msgid "Learn routes"
  3773. msgstr ""
  3774. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:423
  3775. msgid "Lease file"
  3776. msgstr ""
  3777. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:893
  3778. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:696
  3779. msgid "Lease time"
  3780. msgstr ""
  3781. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:41
  3782. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:60
  3783. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:90
  3784. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:137
  3785. msgid "Lease time remaining"
  3786. msgstr ""
  3787. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:41
  3788. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:47
  3789. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:50
  3790. msgid "Leave empty to autodetect"
  3791. msgstr ""
  3792. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:40
  3793. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:39
  3794. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6to4.js:39
  3795. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:45
  3796. msgid "Leave empty to use the current WAN address"
  3797. msgstr ""
  3798. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:938
  3799. msgid ""
  3800. "Legacy or badly behaving devices may require legacy 802.11b rates to "
  3801. "interoperate. Airtime efficiency may be significantly reduced where these "
  3802. "are used. It is recommended to not allow 802.11b rates where possible."
  3803. msgstr ""
  3804. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:677
  3805. msgid "Legacy rules detected"
  3806. msgstr ""
  3807. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4438
  3808. msgid "Legend:"
  3809. msgstr ""
  3810. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:691
  3811. msgid "Limit"
  3812. msgstr ""
  3813. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:25
  3814. msgid "Line Mode"
  3815. msgstr ""
  3816. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:24
  3817. msgid "Line State"
  3818. msgstr ""
  3819. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:26
  3820. msgid "Line Uptime"
  3821. msgstr ""
  3822. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:125
  3823. msgid "Link Aggregation (Channel Bonding)"
  3824. msgstr ""
  3825. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:349
  3826. msgid "Link Monitoring"
  3827. msgstr ""
  3828. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:24
  3829. msgid "Link On"
  3830. msgstr ""
  3831. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:77
  3832. msgctxt "nft @ll,off,len"
  3833. msgid "Link layer header bits %d-%d"
  3834. msgstr ""
  3835. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519
  3836. msgid "List of IP addresses to convert into NXDOMAIN responses."
  3837. msgstr ""
  3838. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:307
  3839. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:754
  3840. msgid ""
  3841. "List of IP sets to populate with the IPs of DNS lookup results of the FQDNs "
  3842. "also specified here."
  3843. msgstr ""
  3844. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1602
  3845. msgid ""
  3846. "List of R0KHs in the same Mobility Domain. <br />Format: MAC-address,NAS-"
  3847. "Identifier,128-bit key as hex string. <br />This list is used to map R0KH-ID "
  3848. "(NAS Identifier) to a destination MAC address when requesting PMK-R1 key "
  3849. "from the R0KH that the STA used during the Initial Mobility Domain "
  3850. "Association."
  3851. msgstr ""
  3852. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1606
  3853. msgid ""
  3854. "List of R1KHs in the same Mobility Domain. <br />Format: MAC-address,R1KH-ID "
  3855. "as 6 octets with colons,128-bit key as hex string. <br />This list is used "
  3856. "to map R1KH-ID to a destination MAC address when sending PMK-R1 key from the "
  3857. "R0KH. This is also the list of authorized R1KHs in the MD that can request "
  3858. "PMK-R1 keys."
  3859. msgstr ""
  3860. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:82
  3861. msgid "List of SSH key files for auth"
  3862. msgstr ""
  3863. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:323
  3864. msgid "List of domains to allow RFC1918 responses for."
  3865. msgstr ""
  3866. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:291
  3867. msgid "List of upstream resolvers to forward queries to."
  3868. msgstr ""
  3869. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:176
  3870. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:38
  3871. msgid "Listen Port"
  3872. msgstr ""
  3873. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:343
  3874. msgid "Listen interfaces"
  3875. msgstr ""
  3876. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:17
  3877. msgid "Listen only on the given interface or, if unspecified, on all"
  3878. msgstr ""
  3879. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:344
  3880. msgid ""
  3881. "Listen only on the specified interfaces, and loopback if not excluded "
  3882. "explicitly."
  3883. msgstr ""
  3884. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:299
  3885. msgid "ListenPort setting is invalid"
  3886. msgstr ""
  3887. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:525
  3888. msgid "Listening port for inbound DNS queries."
  3889. msgstr ""
  3890. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:130
  3891. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:54
  3892. msgid "Load"
  3893. msgstr ""
  3894. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:63
  3895. msgid "Load Average"
  3896. msgstr ""
  3897. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:189
  3898. msgid "Load configuration…"
  3899. msgstr ""
  3900. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1229
  3901. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2065
  3902. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:167
  3903. msgid "Loading data…"
  3904. msgstr ""
  3905. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2992
  3906. msgid "Loading directory contents…"
  3907. msgstr ""
  3908. #: modules/luci-base/htdocs/luci-static/resources/luci.js:1942
  3909. #: modules/luci-base/ucode/template/view.ut:4
  3910. #: modules/luci-mod-status/ucode/template/admin_status/index.ut:12
  3911. #: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:40
  3912. msgid "Loading view…"
  3913. msgstr ""
  3914. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:948
  3915. msgid "Local"
  3916. msgstr ""
  3917. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:169
  3918. msgid "Local IP address"
  3919. msgstr ""
  3920. #: modules/luci-base/htdocs/luci-static/resources/network.js:12
  3921. #: modules/luci-compat/luasrc/model/network.lua:30
  3922. msgid "Local IP address is invalid"
  3923. msgstr ""
  3924. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:86
  3925. msgid "Local IP address to assign"
  3926. msgstr ""
  3927. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:46
  3928. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:46
  3929. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:44
  3930. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:40
  3931. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:39
  3932. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6to4.js:39
  3933. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:151
  3934. #: protocols/luci-proto-vti/htdocs/luci-static/resources/protocol/vti.js:44
  3935. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:44
  3936. msgid "Local IPv4 address"
  3937. msgstr ""
  3938. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:944
  3939. msgid "Local IPv6 DNS server"
  3940. msgstr ""
  3941. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:46
  3942. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:53
  3943. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:54
  3944. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:45
  3945. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:44
  3946. msgid "Local IPv6 address"
  3947. msgstr ""
  3948. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:115
  3949. msgid "Local Startup"
  3950. msgstr ""
  3951. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:61
  3952. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:131
  3953. msgid "Local Time"
  3954. msgstr ""
  3955. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1062
  3956. msgid "Local ULA"
  3957. msgstr ""
  3958. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:281
  3959. msgid "Local domain"
  3960. msgstr ""
  3961. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:282
  3962. msgid "Local domain suffix appended to DHCP names and hosts file entries."
  3963. msgstr ""
  3964. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:277
  3965. msgid "Local server"
  3966. msgstr ""
  3967. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:330
  3968. msgid "Local service only"
  3969. msgstr ""
  3970. #: protocols/luci-proto-unet/htdocs/luci-static/resources/protocol/unet.js:41
  3971. msgid "Local wireguard key"
  3972. msgstr ""
  3973. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:478
  3974. msgid "Localise queries"
  3975. msgstr ""
  3976. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:117
  3977. msgid "Location Area Code"
  3978. msgstr ""
  3979. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2126
  3980. msgid "Lock to BSSID"
  3981. msgstr ""
  3982. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:98
  3983. msgctxt "nft log action"
  3984. msgid "Log event \"<strong>%h</strong>…\""
  3985. msgstr ""
  3986. #: modules/luci-base/ucode/template/sysauth.ut:38
  3987. #: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:36
  3988. msgid "Log in"
  3989. msgstr ""
  3990. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2674
  3991. msgid "Log in…"
  3992. msgstr ""
  3993. #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:81
  3994. msgid "Log out"
  3995. msgstr ""
  3996. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:185
  3997. msgid "Log output level"
  3998. msgstr ""
  3999. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:285
  4000. msgid "Log queries"
  4001. msgstr ""
  4002. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:123
  4003. msgid "Logging"
  4004. msgstr ""
  4005. #: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:23
  4006. msgid "Logging in…"
  4007. msgstr ""
  4008. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57
  4009. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:57
  4010. msgid ""
  4011. "Logical network from which to select the local endpoint if local IPv6 "
  4012. "address is empty and no WAN IPv6 is available (optional)."
  4013. msgstr ""
  4014. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:57
  4015. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62
  4016. msgid "Logical network to which the tunnel will be added (bridged) (optional)."
  4017. msgstr ""
  4018. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:682
  4019. msgid "Loose filtering"
  4020. msgstr ""
  4021. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:686
  4022. msgid "Lowest leased address as offset from the network address."
  4023. msgstr ""
  4024. #: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/footer.ut:12
  4025. msgid "Lua compatibility mode active"
  4026. msgstr ""
  4027. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:48
  4028. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:83
  4029. msgid "MAC"
  4030. msgstr ""
  4031. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1507
  4032. msgid "MAC Address"
  4033. msgstr ""
  4034. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1079
  4035. msgid "MAC Address Filter"
  4036. msgstr ""
  4037. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:253
  4038. msgid "MAC Address For The Actor"
  4039. msgstr ""
  4040. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:401
  4041. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1475
  4042. msgid "MAC VLAN"
  4043. msgstr ""
  4044. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:645
  4045. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:40
  4046. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1161
  4047. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2257
  4048. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:56
  4049. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:89
  4050. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:233
  4051. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:179
  4052. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:205
  4053. msgid "MAC address"
  4054. msgstr ""
  4055. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:799
  4056. msgid "MAC address(es)"
  4057. msgstr ""
  4058. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:981
  4059. msgid "MAC-Filter"
  4060. msgstr ""
  4061. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1086
  4062. msgid "MAC-List"
  4063. msgstr ""
  4064. #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:16
  4065. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:13
  4066. msgid "MAP / LW4over6"
  4067. msgstr ""
  4068. #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:62
  4069. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:7
  4070. msgid "MAP rule is invalid"
  4071. msgstr ""
  4072. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:24
  4073. msgid "MBIM Cellular"
  4074. msgstr ""
  4075. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:223
  4076. msgid "MD5"
  4077. msgstr ""
  4078. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:199
  4079. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:28
  4080. msgid "MHz"
  4081. msgstr ""
  4082. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:354
  4083. msgid "MII"
  4084. msgstr ""
  4085. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:422
  4086. msgid "MII / ETHTOOL ioctls"
  4087. msgstr ""
  4088. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:395
  4089. msgid "MII Interval"
  4090. msgstr ""
  4091. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:634
  4092. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1519
  4093. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:87
  4094. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:53
  4095. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:196
  4096. #: protocols/luci-proto-xfrm/htdocs/luci-static/resources/protocol/xfrm.js:46
  4097. msgid "MTU"
  4098. msgstr ""
  4099. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:264
  4100. msgid "MX"
  4101. msgstr ""
  4102. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:303
  4103. msgid ""
  4104. "Make sure to clone the root filesystem using something like the commands "
  4105. "below:"
  4106. msgstr ""
  4107. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:122
  4108. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:115
  4109. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:53
  4110. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:98
  4111. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:84
  4112. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:58
  4113. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:71
  4114. msgid "Manual"
  4115. msgstr ""
  4116. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:82
  4117. msgid "Manufacturer"
  4118. msgstr ""
  4119. #: modules/luci-base/htdocs/luci-static/resources/network.js:3864
  4120. msgid "Master"
  4121. msgstr ""
  4122. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:920
  4123. msgid "Match Tag"
  4124. msgstr ""
  4125. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:865
  4126. msgid "Max <abbr title=\"Router Advertisement\">RA</abbr> interval"
  4127. msgstr ""
  4128. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:538
  4129. msgid "Max. DHCP leases"
  4130. msgstr ""
  4131. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:545
  4132. msgid "Max. EDNS0 packet size"
  4133. msgstr ""
  4134. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:552
  4135. msgid "Max. concurrent queries"
  4136. msgstr ""
  4137. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:586
  4138. msgid "Maximum age"
  4139. msgstr ""
  4140. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1188
  4141. msgid "Maximum allowed Listen Interval"
  4142. msgstr ""
  4143. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:539
  4144. msgid "Maximum allowed number of active DHCP leases."
  4145. msgstr ""
  4146. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:553
  4147. msgid "Maximum allowed number of concurrent DNS queries."
  4148. msgstr ""
  4149. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:546
  4150. msgid "Maximum allowed size of EDNS0 UDP packets."
  4151. msgstr ""
  4152. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:126
  4153. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:124
  4154. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:106
  4155. msgid "Maximum amount of seconds to wait for the modem to become ready"
  4156. msgstr ""
  4157. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:691
  4158. msgid "Maximum number of leased addresses."
  4159. msgstr ""
  4160. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:596
  4161. msgid "Maximum snooping table size"
  4162. msgstr ""
  4163. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:865
  4164. msgid ""
  4165. "Maximum time allowed between sending unsolicited <abbr title=\"Router "
  4166. "Advertisement, ICMPv6 Type 134\">RA</abbr>. Default is 600 seconds."
  4167. msgstr ""
  4168. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:941
  4169. msgid "Maximum transmit power"
  4170. msgstr ""
  4171. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:464
  4172. msgid "May prevent VoIP or other services from working."
  4173. msgstr ""
  4174. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:129
  4175. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:188
  4176. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:199
  4177. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:28
  4178. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:171
  4179. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:323
  4180. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:324
  4181. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:325
  4182. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:329
  4183. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:330
  4184. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:331
  4185. msgid "Mbit/s"
  4186. msgstr ""
  4187. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:35
  4188. msgid "Medium"
  4189. msgstr ""
  4190. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:24
  4191. msgid "Memory"
  4192. msgstr ""
  4193. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:73
  4194. msgid "Memory usage (%)"
  4195. msgstr ""
  4196. #: modules/luci-base/htdocs/luci-static/resources/network.js:3867
  4197. msgid "Mesh"
  4198. msgstr ""
  4199. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:156
  4200. msgid "Mesh ID"
  4201. msgstr ""
  4202. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:990
  4203. msgid "Mesh Id"
  4204. msgstr ""
  4205. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:41
  4206. msgid "Mesh Routing"
  4207. msgstr ""
  4208. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:41
  4209. msgid "Mesh and routing related options"
  4210. msgstr ""
  4211. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:404
  4212. msgid "Method not found"
  4213. msgstr ""
  4214. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:350
  4215. msgid "Method of link monitoring"
  4216. msgstr ""
  4217. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:419
  4218. msgid "Method to determine link status"
  4219. msgstr ""
  4220. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:80
  4221. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:189
  4222. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:215
  4223. msgid "Metric"
  4224. msgstr ""
  4225. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:70
  4226. msgctxt "nft unit"
  4227. msgid "MiB"
  4228. msgstr ""
  4229. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:872
  4230. msgid "Min <abbr title=\"Router Advertisement\">RA</abbr> interval"
  4231. msgstr ""
  4232. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:721
  4233. msgid "Minimum ARP validity time"
  4234. msgstr ""
  4235. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:237
  4236. msgid "Minimum Number of Links"
  4237. msgstr ""
  4238. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:721
  4239. msgid ""
  4240. "Minimum required time in seconds before an ARP entry may be replaced. "
  4241. "Prevents ARP cache thrashing."
  4242. msgstr ""
  4243. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:872
  4244. msgid ""
  4245. "Minimum time allowed between sending unsolicited <abbr title=\"Router "
  4246. "Advertisement, ICMPv6 Type 134\">RA</abbr>. Default is 200 seconds."
  4247. msgstr ""
  4248. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:204
  4249. msgid "Mirror monitor port"
  4250. msgstr ""
  4251. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:203
  4252. msgid "Mirror source port"
  4253. msgstr ""
  4254. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:120
  4255. msgid "Mobile Country Code"
  4256. msgstr ""
  4257. #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:9
  4258. msgid "Mobile Data"
  4259. msgstr ""
  4260. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:123
  4261. msgid "Mobile Network Code"
  4262. msgstr ""
  4263. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:167
  4264. #: protocols/luci-proto-modemmanager/root/usr/share/luci/menu.d/luci-proto-modemmanager.json:3
  4265. msgid "Mobile Service"
  4266. msgstr ""
  4267. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1562
  4268. msgid "Mobility Domain"
  4269. msgstr ""
  4270. #: modules/luci-compat/luasrc/view/cbi/wireless_modefreq.htm:154
  4271. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:488
  4272. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:157
  4273. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:180
  4274. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:486
  4275. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:985
  4276. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1840
  4277. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:404
  4278. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:148
  4279. msgid "Mode"
  4280. msgstr ""
  4281. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:56
  4282. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:83
  4283. msgid "Model"
  4284. msgstr ""
  4285. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:81
  4286. msgid "Modem Info"
  4287. msgstr ""
  4288. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:9
  4289. msgid ""
  4290. "Modem connection in progress. Please wait. This process will timeout after 2 "
  4291. "minutes."
  4292. msgstr ""
  4293. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:77
  4294. msgid "Modem default"
  4295. msgstr ""
  4296. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:73
  4297. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:54
  4298. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:51
  4299. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:65
  4300. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:73
  4301. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:57
  4302. msgid "Modem device"
  4303. msgstr ""
  4304. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:66
  4305. msgid "Modem information query failed"
  4306. msgstr ""
  4307. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:126
  4308. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:124
  4309. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:119
  4310. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:106
  4311. msgid "Modem init timeout"
  4312. msgstr ""
  4313. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:21
  4314. msgid "ModemManager"
  4315. msgstr ""
  4316. #: modules/luci-base/htdocs/luci-static/resources/network.js:3868
  4317. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1073
  4318. msgid "Monitor"
  4319. msgstr ""
  4320. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:31
  4321. msgid "More Characters"
  4322. msgstr ""
  4323. #: modules/luci-base/htdocs/luci-static/resources/form.js:2581
  4324. msgid "More…"
  4325. msgstr ""
  4326. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:192
  4327. msgid "Mount Point"
  4328. msgstr ""
  4329. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:144
  4330. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:228
  4331. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:102
  4332. msgid "Mount Points"
  4333. msgstr ""
  4334. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:229
  4335. msgid "Mount Points - Mount Entry"
  4336. msgstr ""
  4337. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:341
  4338. msgid "Mount Points - Swap Entry"
  4339. msgstr ""
  4340. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:228
  4341. msgid ""
  4342. "Mount Points define at which point a memory device will be attached to the "
  4343. "filesystem"
  4344. msgstr ""
  4345. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:154
  4346. msgid "Mount attached devices"
  4347. msgstr ""
  4348. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:162
  4349. msgid "Mount filesystems not specifically configured"
  4350. msgstr ""
  4351. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:332
  4352. msgid "Mount options"
  4353. msgstr ""
  4354. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:293
  4355. msgid "Mount point"
  4356. msgstr ""
  4357. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:158
  4358. msgid "Mount swap not specifically configured"
  4359. msgstr ""
  4360. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:223
  4361. msgid "Mounted file systems"
  4362. msgstr ""
  4363. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:152
  4364. msgid "Move down"
  4365. msgstr ""
  4366. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:151
  4367. msgid "Move up"
  4368. msgstr ""
  4369. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1146
  4370. msgid "Multi To Unicast"
  4371. msgstr ""
  4372. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:89
  4373. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:94
  4374. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:91
  4375. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:96
  4376. msgid "Multicast"
  4377. msgstr ""
  4378. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:99
  4379. msgid "Multicast Mode"
  4380. msgstr ""
  4381. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:773
  4382. msgid "Multicast routing"
  4383. msgstr ""
  4384. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:779
  4385. msgid "Multicast to unicast"
  4386. msgstr ""
  4387. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1557
  4388. msgid "NAS ID"
  4389. msgstr ""
  4390. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:536
  4391. msgid "NAT action chain \"%h\""
  4392. msgstr ""
  4393. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:87
  4394. msgid "NAT-T Mode"
  4395. msgstr ""
  4396. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:41
  4397. msgid "NAT64 Prefix"
  4398. msgstr ""
  4399. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:858
  4400. msgid "NAT64 prefix"
  4401. msgstr ""
  4402. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:26
  4403. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:35
  4404. msgid "NCM"
  4405. msgstr ""
  4406. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:975
  4407. msgid "NDP-Proxy slave"
  4408. msgstr ""
  4409. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:72
  4410. msgid "NT Domain"
  4411. msgstr ""
  4412. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:300
  4413. msgid "NTP server candidates"
  4414. msgstr ""
  4415. #: modules/luci-base/htdocs/luci-static/resources/form.js:2618
  4416. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4193
  4417. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:27
  4418. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1163
  4419. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:68
  4420. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:36
  4421. msgid "Name"
  4422. msgstr ""
  4423. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2104
  4424. msgid "Name of the new network"
  4425. msgstr ""
  4426. #: protocols/luci-proto-unet/htdocs/luci-static/resources/protocol/unet.js:38
  4427. msgid "Name of the tunnel device"
  4428. msgstr ""
  4429. #: themes/luci-theme-librecmc-2020/ucode/template/themes/librecmc2020/header.ut:39
  4430. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:50
  4431. msgid "Navigation"
  4432. msgstr ""
  4433. #: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:10
  4434. msgid "Nebula Network"
  4435. msgstr ""
  4436. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1619
  4437. msgid "Neighbour Report"
  4438. msgstr ""
  4439. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:713
  4440. msgid "Neighbour cache validity"
  4441. msgstr ""
  4442. #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:45
  4443. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1018
  4444. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2256
  4445. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:383
  4446. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:63
  4447. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:232
  4448. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:186
  4449. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:212
  4450. msgid "Network"
  4451. msgstr ""
  4452. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:104
  4453. msgid "Network Coding"
  4454. msgstr ""
  4455. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:76
  4456. msgid "Network Mode"
  4457. msgstr ""
  4458. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:97
  4459. msgid "Network Registration"
  4460. msgstr ""
  4461. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2098
  4462. msgid "Network SSID"
  4463. msgstr ""
  4464. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:57
  4465. msgid "Network address"
  4466. msgstr ""
  4467. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:578
  4468. msgid "Network boot image"
  4469. msgstr ""
  4470. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:409
  4471. msgid "Network bridge configuration migration"
  4472. msgstr ""
  4473. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:397
  4474. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1481
  4475. msgid "Network device"
  4476. msgstr ""
  4477. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:7
  4478. msgid "Network device activity (kernel: netdev)"
  4479. msgstr ""
  4480. #: modules/luci-base/htdocs/luci-static/resources/network.js:15
  4481. #: modules/luci-compat/luasrc/model/network.lua:33
  4482. msgid "Network device is not present"
  4483. msgstr ""
  4484. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:645
  4485. msgid "Network device table \"%h\""
  4486. msgstr ""
  4487. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:78
  4488. msgctxt "nft @nh,off,len"
  4489. msgid "Network header bits %d-%d"
  4490. msgstr ""
  4491. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:443
  4492. msgid "Network ifname configuration migration"
  4493. msgstr ""
  4494. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:57
  4495. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62
  4496. msgid "Network interface"
  4497. msgstr ""
  4498. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:617
  4499. msgid "Network-ID"
  4500. msgstr ""
  4501. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:774
  4502. msgid "Never"
  4503. msgstr ""
  4504. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:16
  4505. msgctxt "No WireGuard peer handshake yet"
  4506. msgid "Never"
  4507. msgstr ""
  4508. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:278
  4509. msgid ""
  4510. "Never forward matching domains and subdomains, resolve from DHCP or hosts "
  4511. "files only."
  4512. msgstr ""
  4513. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1215
  4514. msgid "New interface for \"%s\" can not be created: %s"
  4515. msgstr ""
  4516. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1166
  4517. msgid "New interface name…"
  4518. msgstr ""
  4519. #: modules/luci-compat/luasrc/view/cbi/delegator.htm:11
  4520. msgid "Next »"
  4521. msgstr ""
  4522. #: modules/luci-base/htdocs/luci-static/resources/form.js:4094
  4523. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:298
  4524. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:346
  4525. msgid "No"
  4526. msgstr ""
  4527. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:660
  4528. msgid "No DHCP Server configured for this interface"
  4529. msgstr ""
  4530. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:202
  4531. msgid "No Data"
  4532. msgstr ""
  4533. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1391
  4534. msgid "No Encryption"
  4535. msgstr ""
  4536. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:185
  4537. msgid "No Host Routes"
  4538. msgstr ""
  4539. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:89
  4540. msgid "No NAT-T"
  4541. msgstr ""
  4542. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:79
  4543. msgid "No RX signal"
  4544. msgstr ""
  4545. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:148
  4546. msgid "No WireGuard interfaces configured."
  4547. msgstr ""
  4548. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:16
  4549. msgid "No allowed mode configuration found."
  4550. msgstr ""
  4551. #: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:68
  4552. #: themes/luci-theme-material/ucode/template/themes/material/header.ut:88
  4553. #: themes/luci-theme-librecmc-2020/ucode/template/themes/librecmc2020/header.ut:65
  4554. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:90
  4555. msgid ""
  4556. "No changes to settings will be stored and are lost after rebooting. This "
  4557. "mode should only be used to install a firmware upgrade"
  4558. msgstr ""
  4559. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69
  4560. msgid "No client associated"
  4561. msgstr ""
  4562. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:27
  4563. msgid "No control device specified"
  4564. msgstr ""
  4565. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3230
  4566. msgctxt "empty table placeholder"
  4567. msgid "No data"
  4568. msgstr ""
  4569. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:406
  4570. msgid "No data received"
  4571. msgstr ""
  4572. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:751
  4573. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:758
  4574. msgid "No enforcement"
  4575. msgstr ""
  4576. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:229
  4577. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:232
  4578. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:235
  4579. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:238
  4580. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:241
  4581. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:244
  4582. msgid "No entries available"
  4583. msgstr ""
  4584. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2932
  4585. msgid "No entries in this directory"
  4586. msgstr ""
  4587. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:846
  4588. msgid ""
  4589. "No fixed interface listening port defined, peers might not be able to "
  4590. "initiate connections to this WireGuard instance!"
  4591. msgstr ""
  4592. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:86
  4593. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:91
  4594. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:88
  4595. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:93
  4596. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:70
  4597. msgid "No host route"
  4598. msgstr ""
  4599. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:725
  4600. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:142
  4601. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:362
  4602. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:59
  4603. msgid "No information available"
  4604. msgstr ""
  4605. #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:63
  4606. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:8
  4607. msgid "No matching prefix delegation"
  4608. msgstr ""
  4609. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:142
  4610. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:145
  4611. msgid "No more slaves available"
  4612. msgstr ""
  4613. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:189
  4614. msgid "No more slaves available, can not save interface"
  4615. msgstr ""
  4616. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:499
  4617. msgid "No negative cache"
  4618. msgstr ""
  4619. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:696
  4620. msgid "No nftables ruleset loaded."
  4621. msgstr ""
  4622. #: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:57
  4623. #: themes/luci-theme-material/ucode/template/themes/material/header.ut:77
  4624. #: themes/luci-theme-librecmc-2020/ucode/template/themes/librecmc2020/header.ut:54
  4625. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:79
  4626. msgid "No password set!"
  4627. msgstr ""
  4628. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:84
  4629. msgid "No peers connected"
  4630. msgstr ""
  4631. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:510
  4632. msgid "No peers defined yet."
  4633. msgstr ""
  4634. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:15
  4635. msgid "No preferred mode configuration found."
  4636. msgstr ""
  4637. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:146
  4638. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:283
  4639. msgid "No public keys present yet."
  4640. msgstr ""
  4641. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:613
  4642. msgctxt "nft chain is empty"
  4643. msgid "No rules in this chain"
  4644. msgstr ""
  4645. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:91
  4646. msgid "No rules in this chain."
  4647. msgstr ""
  4648. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:385
  4649. msgid "No validation or filtering"
  4650. msgstr ""
  4651. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:153
  4652. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1260
  4653. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:259
  4654. msgid "No zone assigned"
  4655. msgstr ""
  4656. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:58
  4657. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:84
  4658. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:187
  4659. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:235
  4660. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:279
  4661. msgid "Noise"
  4662. msgstr ""
  4663. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:30
  4664. msgid "Noise Margin"
  4665. msgstr ""
  4666. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:272
  4667. msgid "Noise:"
  4668. msgstr ""
  4669. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:336
  4670. msgid "Non-wildcard"
  4671. msgstr ""
  4672. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:159
  4673. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:183
  4674. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:80
  4675. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:83
  4676. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:112
  4677. msgid "None"
  4678. msgstr ""
  4679. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:949
  4680. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:198
  4681. msgid "Normal"
  4682. msgstr ""
  4683. #: modules/luci-base/ucode/template/error404.ut:9
  4684. msgid "Not Found"
  4685. msgstr ""
  4686. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:211
  4687. msgctxt "VLAN port state"
  4688. msgid "Not Member"
  4689. msgstr ""
  4690. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:75
  4691. msgid "Not associated"
  4692. msgstr ""
  4693. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:32
  4694. msgid "Not connected"
  4695. msgstr ""
  4696. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:46
  4697. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:81
  4698. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:121
  4699. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:147
  4700. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:329
  4701. msgid "Not present"
  4702. msgstr ""
  4703. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:102
  4704. msgid "Not started on boot"
  4705. msgstr ""
  4706. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:409
  4707. msgid "Not supported"
  4708. msgstr ""
  4709. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1777
  4710. msgid ""
  4711. "Note: Some wireless drivers do not fully support 802.11w. E.g. mwlwifi may "
  4712. "have problems"
  4713. msgstr ""
  4714. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:356
  4715. msgid ""
  4716. "Note: you may also need a DHCP Proxy (currently unavailable) when specifying "
  4717. "a non-standard Relay To port(<code>addr#port</code>)."
  4718. msgstr ""
  4719. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:142
  4720. msgid "Notes"
  4721. msgstr ""
  4722. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:188
  4723. msgid "Notice"
  4724. msgstr ""
  4725. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:135
  4726. msgid "Nslookup"
  4727. msgstr ""
  4728. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:333
  4729. msgid "Number of IGMP membership reports"
  4730. msgstr ""
  4731. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:560
  4732. msgid "Number of cached DNS entries, 10000 is maximum, 0 is no caching."
  4733. msgstr ""
  4734. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:311
  4735. msgid "Number of peer notifications after failover event"
  4736. msgstr ""
  4737. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:69
  4738. msgid "Obfuscated Group Password"
  4739. msgstr ""
  4740. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:61
  4741. msgid "Obfuscated Password"
  4742. msgstr ""
  4743. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:118
  4744. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:111
  4745. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:49
  4746. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:94
  4747. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:80
  4748. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:54
  4749. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:67
  4750. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:93
  4751. msgid "Obtain IPv6 address"
  4752. msgstr ""
  4753. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/none.js:19
  4754. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:87
  4755. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:352
  4756. msgid "Off"
  4757. msgstr ""
  4758. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/timer.js:18
  4759. msgid "Off-State Delay"
  4760. msgstr ""
  4761. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1450
  4762. msgid ""
  4763. "Off: <code>vlanXXX</code>, e.g., <code>vlan1</code>. On: "
  4764. "<code>vlan_tagged_interface.XXX</code>, e.g. <code>eth0.1</code>."
  4765. msgstr ""
  4766. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/none.js:19
  4767. msgid "On"
  4768. msgstr ""
  4769. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/timer.js:12
  4770. msgid "On-State Delay"
  4771. msgstr ""
  4772. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:110
  4773. msgid "On-link"
  4774. msgstr ""
  4775. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:867
  4776. msgid "One of hostname or MAC address must be specified!"
  4777. msgstr ""
  4778. #: modules/luci-base/htdocs/luci-static/resources/validation.js:490
  4779. msgid "One of the following: %s"
  4780. msgstr ""
  4781. #: modules/luci-compat/luasrc/view/cbi/nullsection.htm:17
  4782. #: modules/luci-compat/luasrc/view/cbi/ucisection.htm:22
  4783. msgid "One or more fields contain invalid values!"
  4784. msgstr ""
  4785. #: modules/luci-compat/luasrc/view/cbi/map.htm:32
  4786. msgid "One or more invalid/required values on tab"
  4787. msgstr ""
  4788. #: modules/luci-compat/luasrc/view/cbi/nullsection.htm:19
  4789. #: modules/luci-compat/luasrc/view/cbi/ucisection.htm:24
  4790. msgid "One or more required fields have no value!"
  4791. msgstr ""
  4792. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:413
  4793. msgid "Only accept replies via"
  4794. msgstr ""
  4795. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:770
  4796. msgid "Only allow communication with non-isolated bridge ports when enabled"
  4797. msgstr ""
  4798. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:231
  4799. msgid ""
  4800. "Only if current active slave fails and the primary slave is up (failure, 2)"
  4801. msgstr ""
  4802. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:682
  4803. msgid "Open iptables rules overview…"
  4804. msgstr ""
  4805. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:472
  4806. msgid "Open list..."
  4807. msgstr ""
  4808. #: modules/luci-compat/luasrc/model/network/proto_openconnect.lua:9
  4809. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:65
  4810. msgid "OpenConnect (CISCO AnyConnect)"
  4811. msgstr ""
  4812. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:63
  4813. msgid "OpenFortivpn"
  4814. msgstr ""
  4815. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:741
  4816. msgid ""
  4817. "Operate in <em>relay mode</em> if a designated master interface is "
  4818. "configured and active, otherwise disable <abbr title=\"Neighbour Discovery "
  4819. "Protocol\">NDP</abbr> proxying."
  4820. msgstr ""
  4821. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:740
  4822. msgid ""
  4823. "Operate in <em>relay mode</em> if a designated master interface is "
  4824. "configured and active, otherwise fall back to <em>server mode</em>."
  4825. msgstr ""
  4826. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:742
  4827. msgid ""
  4828. "Operate in <em>relay mode</em> if an upstream IPv6 prefix is present, "
  4829. "otherwise disable service."
  4830. msgstr ""
  4831. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:934
  4832. msgid "Operating frequency"
  4833. msgstr ""
  4834. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:100
  4835. msgid "Operator"
  4836. msgstr ""
  4837. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:101
  4838. msgid "Operator Code"
  4839. msgstr ""
  4840. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:135
  4841. msgid "Operator Name"
  4842. msgstr ""
  4843. #: modules/luci-base/htdocs/luci-static/resources/form.js:2006
  4844. #: modules/luci-base/htdocs/luci-static/resources/form.js:4106
  4845. msgid "Option \"%s\" contains an invalid input value."
  4846. msgstr ""
  4847. #: modules/luci-base/htdocs/luci-static/resources/form.js:2021
  4848. msgid "Option \"%s\" must not be empty."
  4849. msgstr ""
  4850. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4445
  4851. msgid "Option changed"
  4852. msgstr ""
  4853. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4447
  4854. msgid "Option removed"
  4855. msgstr ""
  4856. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1440
  4857. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1779
  4858. msgid "Optional"
  4859. msgstr ""
  4860. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:786
  4861. msgid "Optional hostname to assign"
  4862. msgstr ""
  4863. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:142
  4864. msgid "Optional, free-form notes about this device"
  4865. msgstr ""
  4866. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:147
  4867. msgid "Optional, in seconds. If set to '0', no reconnect is attempted."
  4868. msgstr ""
  4869. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:201
  4870. msgid ""
  4871. "Optional. 32-bit mark for outgoing encrypted packets. Enter value in hex, "
  4872. "starting with <code>0x</code>."
  4873. msgstr ""
  4874. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1084
  4875. msgid ""
  4876. "Optional. Allowed values: 'eui64', 'random', fixed value like '::1' or "
  4877. "'::1:2'. When IPv6 prefix (like 'a:b:c:d::') is received from a delegating "
  4878. "server, use the suffix (like '::1') to form the IPv6 address ('a:b:c:d::1') "
  4879. "for the interface."
  4880. msgstr ""
  4881. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:599
  4882. msgid ""
  4883. "Optional. Base64-encoded preshared key. Adds in an additional layer of "
  4884. "symmetric-key cryptography for post-quantum resistance."
  4885. msgstr ""
  4886. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:659
  4887. msgid "Optional. Create routes for Allowed IPs for this peer."
  4888. msgstr ""
  4889. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:517
  4890. msgid "Optional. Description of peer."
  4891. msgstr ""
  4892. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:185
  4893. msgid "Optional. Do not create host routes to peers."
  4894. msgstr ""
  4895. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:662
  4896. msgid ""
  4897. "Optional. Host of peer. Names are resolved prior to bringing up the "
  4898. "interface."
  4899. msgstr ""
  4900. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:624
  4901. msgid ""
  4902. "Optional. IP addresses and prefixes that this peer is allowed to use inside "
  4903. "the tunnel. Usually the peer's tunnel IP addresses and the networks the peer "
  4904. "routes through the tunnel."
  4905. msgstr ""
  4906. #: protocols/luci-proto-xfrm/htdocs/luci-static/resources/protocol/xfrm.js:46
  4907. msgid "Optional. Maximum Transmission Unit of the XFRM interface."
  4908. msgstr ""
  4909. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:196
  4910. msgid "Optional. Maximum Transmission Unit of tunnel interface."
  4911. msgstr ""
  4912. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:678
  4913. msgid "Optional. Port of peer."
  4914. msgstr ""
  4915. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:590
  4916. msgid ""
  4917. "Optional. Private key of the WireGuard peer. The key is not required for "
  4918. "establishing a connection but allows generating a peer configuration or QR "
  4919. "code if available. It can be removed after the configuration has been "
  4920. "exported."
  4921. msgstr ""
  4922. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:683
  4923. msgid ""
  4924. "Optional. Seconds between keep alive messages. Default is 0 (disabled). "
  4925. "Recommended value if this device is behind a NAT is 25."
  4926. msgstr ""
  4927. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:176
  4928. msgid "Optional. UDP port used for outgoing and incoming packets."
  4929. msgstr ""
  4930. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:72
  4931. msgid "Options"
  4932. msgstr ""
  4933. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:612
  4934. msgid ""
  4935. "Options for the Network-ID. (Note: needs also Network-ID.) E.g. "
  4936. "\"<code>42,192.168.1.4</code>\" for NTP server, \"<code>3,192.168.4.4</"
  4937. "code>\" for default route. <code>0.0.0.0</code> means \"the address of the "
  4938. "system running dnsmasq\"."
  4939. msgstr ""
  4940. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:125
  4941. msgid "Options:"
  4942. msgstr ""
  4943. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:665
  4944. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:697
  4945. msgid "Ordinal: lower comes first."
  4946. msgstr ""
  4947. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:55
  4948. msgid "Originator Interval"
  4949. msgstr ""
  4950. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:348
  4951. msgid "Other:"
  4952. msgstr ""
  4953. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:69
  4954. msgid "Out"
  4955. msgstr ""
  4956. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:277
  4957. msgid "Outbound:"
  4958. msgstr ""
  4959. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:101
  4960. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:106
  4961. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:103
  4962. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:108
  4963. msgid "Outgoing checksum"
  4964. msgstr ""
  4965. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:156
  4966. msgid "Outgoing interface"
  4967. msgstr ""
  4968. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:96
  4969. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:101
  4970. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:98
  4971. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:103
  4972. #: protocols/luci-proto-vti/htdocs/luci-static/resources/protocol/vti.js:68
  4973. msgid "Outgoing key"
  4974. msgstr ""
  4975. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:103
  4976. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:108
  4977. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:105
  4978. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:110
  4979. msgid "Outgoing serialization"
  4980. msgstr ""
  4981. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:50
  4982. msgid "Output Interface"
  4983. msgstr ""
  4984. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:59
  4985. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:165
  4986. msgid "Output zone"
  4987. msgstr ""
  4988. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:16
  4989. msgid "Overlap"
  4990. msgstr ""
  4991. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1021
  4992. msgid "Override IPv4 routing table"
  4993. msgstr ""
  4994. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1026
  4995. msgid "Override IPv6 routing table"
  4996. msgstr ""
  4997. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv_hardif.js:54
  4998. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:64
  4999. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:69
  5000. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:69
  5001. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:74
  5002. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:53
  5003. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:128
  5004. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:142
  5005. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:194
  5006. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:57
  5007. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:132
  5008. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:118
  5009. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:96
  5010. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:105
  5011. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:110
  5012. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:62
  5013. #: protocols/luci-proto-vti/htdocs/luci-static/resources/protocol/vti.js:55
  5014. msgid "Override MTU"
  5015. msgstr ""
  5016. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:74
  5017. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:79
  5018. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:63
  5019. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:67
  5020. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:62
  5021. msgid "Override TOS"
  5022. msgstr ""
  5023. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:69
  5024. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:74
  5025. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:74
  5026. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:79
  5027. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:58
  5028. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:62
  5029. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:57
  5030. msgid "Override TTL"
  5031. msgstr ""
  5032. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1161
  5033. msgid ""
  5034. "Override default MAC address - the range of usable addresses might be "
  5035. "limited by the driver"
  5036. msgstr ""
  5037. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1153
  5038. msgid "Override default interface name"
  5039. msgstr ""
  5040. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:167
  5041. msgid "Override the gateway in DHCP responses"
  5042. msgstr ""
  5043. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:708
  5044. msgid ""
  5045. "Override the netmask sent to clients. Normally it is calculated from the "
  5046. "subnet that is served."
  5047. msgstr ""
  5048. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:179
  5049. msgid "Override the table used for internal routes"
  5050. msgstr ""
  5051. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:3
  5052. msgid "Overview"
  5053. msgstr ""
  5054. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2780
  5055. msgid "Overwrite existing file \"%s\" ?"
  5056. msgstr ""
  5057. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:355
  5058. msgid "Overwrite the current settings with the imported configuration?"
  5059. msgstr ""
  5060. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:98
  5061. msgid "Own Numbers"
  5062. msgstr ""
  5063. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:70
  5064. msgid "Owner"
  5065. msgstr ""
  5066. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:78
  5067. msgid "PAP"
  5068. msgstr ""
  5069. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:77
  5070. msgid "PAP/CHAP"
  5071. msgstr ""
  5072. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:80
  5073. msgid "PAP/CHAP (both)"
  5074. msgstr ""
  5075. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:111
  5076. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:88
  5077. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:130
  5078. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:107
  5079. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:45
  5080. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:90
  5081. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:76
  5082. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:44
  5083. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:63
  5084. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:94
  5085. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:46
  5086. msgid "PAP/CHAP password"
  5087. msgstr ""
  5088. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:109
  5089. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:83
  5090. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:125
  5091. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:105
  5092. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:43
  5093. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:88
  5094. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:74
  5095. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:42
  5096. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:61
  5097. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:89
  5098. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:44
  5099. msgid "PAP/CHAP username"
  5100. msgstr ""
  5101. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:94
  5102. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:114
  5103. msgid "PDP Type"
  5104. msgstr ""
  5105. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:69
  5106. msgid "PID"
  5107. msgstr ""
  5108. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:106
  5109. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:73
  5110. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:76
  5111. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:102
  5112. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:79
  5113. msgid "PIN"
  5114. msgstr ""
  5115. #: modules/luci-base/htdocs/luci-static/resources/network.js:21
  5116. #: modules/luci-compat/luasrc/model/network.lua:39
  5117. msgid "PIN code rejected"
  5118. msgstr ""
  5119. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1597
  5120. msgid "PMK R1 Push"
  5121. msgstr ""
  5122. #: modules/luci-compat/luasrc/model/network/proto_ppp.lua:13
  5123. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:43
  5124. msgid "PPP"
  5125. msgstr ""
  5126. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:58
  5127. msgid "PPPoA Encapsulation"
  5128. msgstr ""
  5129. #: modules/luci-compat/luasrc/model/network/proto_ppp.lua:19
  5130. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:28
  5131. msgid "PPPoATM"
  5132. msgstr ""
  5133. #: modules/luci-compat/luasrc/model/network/proto_ppp.lua:17
  5134. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:28
  5135. msgid "PPPoE"
  5136. msgstr ""
  5137. #: modules/luci-compat/luasrc/model/network/proto_pppossh.lua:9
  5138. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:28
  5139. msgid "PPPoSSH"
  5140. msgstr ""
  5141. #: modules/luci-compat/luasrc/model/network/proto_ppp.lua:15
  5142. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:28
  5143. msgid "PPtP"
  5144. msgstr ""
  5145. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:73
  5146. msgid "PSID offset"
  5147. msgstr ""
  5148. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:70
  5149. msgid "PSID-bits length"
  5150. msgstr ""
  5151. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:571
  5152. msgctxt "Label indicating that WireGuard peer uses a PSK"
  5153. msgid "PSK"
  5154. msgstr ""
  5155. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1580
  5156. msgid "PTM/EFM (Packet Transfer Mode)"
  5157. msgstr ""
  5158. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:266
  5159. msgid "PXE/TFTP Settings"
  5160. msgstr ""
  5161. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:103
  5162. msgid "Packet Service State"
  5163. msgstr ""
  5164. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1538
  5165. msgid "Packet Steering"
  5166. msgstr ""
  5167. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:25
  5168. msgctxt "nft meta mark"
  5169. msgid "Packet mark"
  5170. msgstr ""
  5171. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:27
  5172. msgctxt "nft meta time"
  5173. msgid "Packet receive time"
  5174. msgstr ""
  5175. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:54
  5176. msgid "Packets"
  5177. msgstr ""
  5178. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:277
  5179. msgid "Packets To Transmit Before Moving To Next Slave"
  5180. msgstr ""
  5181. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:291
  5182. msgid "Part of network:"
  5183. msgid_plural "Part of networks:"
  5184. msgstr[0] ""
  5185. msgstr[1] ""
  5186. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:153
  5187. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1260
  5188. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:259
  5189. msgid "Part of zone %q"
  5190. msgstr ""
  5191. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:492
  5192. msgctxt "MACVLAN mode"
  5193. msgid "Pass-through (Mirror physical device to single MAC VLAN)"
  5194. msgstr ""
  5195. #: modules/luci-base/ucode/template/sysauth.ut:29
  5196. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1770
  5197. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:51
  5198. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:149
  5199. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:103
  5200. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:58
  5201. #: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:19
  5202. msgid "Password"
  5203. msgstr ""
  5204. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:25
  5205. msgid "Password authentication"
  5206. msgstr ""
  5207. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1702
  5208. msgid "Password of Private Key"
  5209. msgstr ""
  5210. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1760
  5211. msgid "Password of inner Private Key"
  5212. msgstr ""
  5213. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:31
  5214. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:33
  5215. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:35
  5216. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:37
  5217. msgid "Password strength"
  5218. msgstr ""
  5219. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:152
  5220. msgid "Password2"
  5221. msgstr ""
  5222. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:266
  5223. msgid "Paste or drag SSH key file…"
  5224. msgstr ""
  5225. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:444
  5226. msgid "Paste or drag WireGuard peer configuration (wg0.conf) file…"
  5227. msgstr ""
  5228. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:437
  5229. msgid ""
  5230. "Paste or drag a WireGuard configuration (commonly <em>wg0.conf</em>) from "
  5231. "another system below to create a matching peer entry allowing that system to "
  5232. "connect to the local WireGuard interface."
  5233. msgstr ""
  5234. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:443
  5235. msgid "Paste or drag supplied WireGuard configuration file…"
  5236. msgstr ""
  5237. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1681
  5238. msgid "Path to CA-Certificate"
  5239. msgstr ""
  5240. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1696
  5241. msgid "Path to Client-Certificate"
  5242. msgstr ""
  5243. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1699
  5244. msgid "Path to Private Key"
  5245. msgstr ""
  5246. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1739
  5247. msgid "Path to inner CA-Certificate"
  5248. msgstr ""
  5249. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1754
  5250. msgid "Path to inner Client-Certificate"
  5251. msgstr ""
  5252. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1757
  5253. msgid "Path to inner Private Key"
  5254. msgstr ""
  5255. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2727
  5256. msgid "Paused"
  5257. msgstr ""
  5258. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:273
  5259. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:283
  5260. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:334
  5261. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:344
  5262. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:354
  5263. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:239
  5264. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:249
  5265. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:259
  5266. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:268
  5267. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:278
  5268. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:296
  5269. msgid "Peak:"
  5270. msgstr ""
  5271. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:74
  5272. msgid "Peer"
  5273. msgstr ""
  5274. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:51
  5275. msgid "Peer Details"
  5276. msgstr ""
  5277. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:89
  5278. msgid "Peer IP address to assign"
  5279. msgstr ""
  5280. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:667
  5281. msgid "Peer MAC address"
  5282. msgstr ""
  5283. #: modules/luci-base/htdocs/luci-static/resources/network.js:14
  5284. #: modules/luci-compat/luasrc/model/network.lua:32
  5285. msgid "Peer address is missing"
  5286. msgstr ""
  5287. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:648
  5288. msgid "Peer device name"
  5289. msgstr ""
  5290. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:513
  5291. msgid "Peer disabled"
  5292. msgstr ""
  5293. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:214
  5294. msgid "Peers"
  5295. msgstr ""
  5296. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:80
  5297. msgid "Perfect Forward Secrecy"
  5298. msgstr ""
  5299. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:103
  5300. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:108
  5301. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:105
  5302. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:110
  5303. msgid "Perform outgoing packets serialization (optional)."
  5304. msgstr ""
  5305. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:34
  5306. msgid "Perform reboot"
  5307. msgstr ""
  5308. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:406
  5309. msgid "Perform reset"
  5310. msgstr ""
  5311. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:407
  5312. msgid "Permission denied"
  5313. msgstr ""
  5314. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:683
  5315. msgid "Persistent Keep Alive"
  5316. msgstr ""
  5317. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:147
  5318. msgid "Persistent reconnect interval"
  5319. msgstr ""
  5320. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:334
  5321. msgid "PersistentKeepAlive setting is invalid"
  5322. msgstr ""
  5323. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:290
  5324. msgid "Phy Rate:"
  5325. msgstr ""
  5326. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:496
  5327. msgid "Physical Settings"
  5328. msgstr ""
  5329. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:87
  5330. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:88
  5331. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:98
  5332. msgid "Ping"
  5333. msgstr ""
  5334. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:49
  5335. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:50
  5336. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:84
  5337. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:85
  5338. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:138
  5339. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:64
  5340. msgid "Pkts."
  5341. msgstr ""
  5342. #: modules/luci-base/ucode/template/sysauth.ut:19
  5343. msgid "Please enter your username and password."
  5344. msgstr ""
  5345. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4176
  5346. msgid "Please select the file to upload."
  5347. msgstr ""
  5348. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:54
  5349. msgid "Policy"
  5350. msgstr ""
  5351. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:594
  5352. msgctxt "Chain hook policy"
  5353. msgid "Policy: <strong>%h</strong> (%h)"
  5354. msgstr ""
  5355. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:660
  5356. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:21
  5357. msgid "Port"
  5358. msgstr ""
  5359. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:137
  5360. msgctxt "WireGuard listen port"
  5361. msgid "Port %d"
  5362. msgstr ""
  5363. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:293
  5364. msgid "Port is not part of any network"
  5365. msgstr ""
  5366. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:770
  5367. msgid "Port isolation"
  5368. msgstr ""
  5369. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:299
  5370. msgid "Port status"
  5371. msgstr ""
  5372. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:278
  5373. msgid "Port status:"
  5374. msgstr ""
  5375. #: modules/luci-base/htdocs/luci-static/resources/validation.js:516
  5376. msgid "Potential negation of: %s"
  5377. msgstr ""
  5378. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:89
  5379. msgid "Power State"
  5380. msgstr ""
  5381. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:78
  5382. msgid "Prefer LTE"
  5383. msgstr ""
  5384. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:79
  5385. msgid "Prefer UMTS"
  5386. msgstr ""
  5387. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:979
  5388. msgid "Preferred lifetime for a prefix."
  5389. msgstr ""
  5390. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:106
  5391. msgid "Preferred network technology"
  5392. msgstr ""
  5393. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:33
  5394. msgid "Prefix Delegated"
  5395. msgstr ""
  5396. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:192
  5397. msgid "Prefix suppressor"
  5398. msgstr ""
  5399. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:599
  5400. msgid "Preshared Key"
  5401. msgstr ""
  5402. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:570
  5403. msgid "Preshared key in use"
  5404. msgstr ""
  5405. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:308
  5406. msgid "PresharedKey setting is invalid"
  5407. msgstr ""
  5408. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:130
  5409. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:102
  5410. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:88
  5411. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:62
  5412. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:75
  5413. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:98
  5414. msgid ""
  5415. "Presume peer to be dead after given amount of LCP echo failures, use 0 to "
  5416. "ignore failures"
  5417. msgstr ""
  5418. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1149
  5419. msgid "Prevents client-to-client communication"
  5420. msgstr ""
  5421. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:61
  5422. msgid ""
  5423. "Prevents one wireless client to talk to another. This setting only affects "
  5424. "packets without any VLAN tag (untagged packets)."
  5425. msgstr ""
  5426. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:213
  5427. msgid "Primary Slave"
  5428. msgstr ""
  5429. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:230
  5430. msgid ""
  5431. "Primary becomes active slave when it comes back up if speed and duplex "
  5432. "better than current slave (better, 1)"
  5433. msgstr ""
  5434. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:229
  5435. msgid "Primary becomes active slave whenever it comes back up (always, 0)"
  5436. msgstr ""
  5437. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:562
  5438. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:665
  5439. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:697
  5440. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:130
  5441. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:197
  5442. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:223
  5443. msgid "Priority"
  5444. msgstr ""
  5445. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:565
  5446. msgctxt "Label indicating that WireGuard peer private key is stored"
  5447. msgid "Private"
  5448. msgstr ""
  5449. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:490
  5450. msgctxt "MACVLAN mode"
  5451. msgid "Private (Prevent communication between MAC VLANs)"
  5452. msgstr ""
  5453. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:151
  5454. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:590
  5455. msgid "Private Key"
  5456. msgstr ""
  5457. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:564
  5458. msgid "Private key present"
  5459. msgstr ""
  5460. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:296
  5461. msgid "PrivateKey setting is missing or invalid"
  5462. msgstr ""
  5463. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:64
  5464. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:93
  5465. msgid "Processes"
  5466. msgstr ""
  5467. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:67
  5468. msgid "Prot."
  5469. msgstr ""
  5470. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:80
  5471. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:571
  5472. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1180
  5473. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:384
  5474. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:32
  5475. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:191
  5476. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:217
  5477. msgid "Protocol"
  5478. msgstr ""
  5479. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:282
  5480. msgid "Provide NTP server"
  5481. msgstr ""
  5482. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:930
  5483. msgid ""
  5484. "Provide a DHCPv6 server on this interface and reply to DHCPv6 solicitations "
  5485. "and requests."
  5486. msgstr ""
  5487. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:877
  5488. msgid "Provide new network"
  5489. msgstr ""
  5490. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:288
  5491. msgid ""
  5492. "Provide the NTP server to the selected interface or, if unspecified, to all "
  5493. "interfaces"
  5494. msgstr ""
  5495. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:155
  5496. msgid "Proxy Server"
  5497. msgstr ""
  5498. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1653
  5499. msgid "ProxyARP"
  5500. msgstr ""
  5501. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1072
  5502. msgid "Pseudo Ad-Hoc (ahdemo)"
  5503. msgstr ""
  5504. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:158
  5505. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:585
  5506. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:37
  5507. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:54
  5508. msgid "Public Key"
  5509. msgstr ""
  5510. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:547
  5511. msgid "Public key is missing"
  5512. msgstr ""
  5513. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:556
  5514. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:101
  5515. msgctxt "Tooltip displaying full WireGuard peer public key"
  5516. msgid "Public key: %h"
  5517. msgstr ""
  5518. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:290
  5519. msgid ""
  5520. "Public keys allow for the passwordless SSH logins with a higher security "
  5521. "compared to the use of plain passwords. In order to upload a new key to the "
  5522. "device, paste an OpenSSH compatible public key line or drag a <code>.pub</"
  5523. "code> file into the input field."
  5524. msgstr ""
  5525. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:192
  5526. msgid "Public prefix routed to this device for distribution to clients."
  5527. msgstr ""
  5528. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:305
  5529. msgid "PublicKey setting is invalid"
  5530. msgstr ""
  5531. #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:9
  5532. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:27
  5533. msgid "QMI Cellular"
  5534. msgstr ""
  5535. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:146
  5536. msgid "Quality"
  5537. msgstr ""
  5538. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:514
  5539. msgid "Query all available upstream resolvers."
  5540. msgstr ""
  5541. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:610
  5542. msgid "Query interval"
  5543. msgstr ""
  5544. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:615
  5545. msgid "Query response interval"
  5546. msgstr ""
  5547. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1585
  5548. msgid "R0 Key Lifetime"
  5549. msgstr ""
  5550. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1591
  5551. msgid "R1 Key Holder"
  5552. msgstr ""
  5553. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1425
  5554. msgid "RADIUS Accounting Port"
  5555. msgstr ""
  5556. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1431
  5557. msgid "RADIUS Accounting Secret"
  5558. msgstr ""
  5559. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1420
  5560. msgid "RADIUS Accounting Server"
  5561. msgstr ""
  5562. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1409
  5563. msgid "RADIUS Authentication Port"
  5564. msgstr ""
  5565. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1415
  5566. msgid "RADIUS Authentication Secret"
  5567. msgstr ""
  5568. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1404
  5569. msgid "RADIUS Authentication Server"
  5570. msgstr ""
  5571. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1437
  5572. msgid "RADIUS Dynamic VLAN Assignment"
  5573. msgstr ""
  5574. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1446
  5575. msgid "RADIUS Per STA VLAN"
  5576. msgstr ""
  5577. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1463
  5578. msgid "RADIUS VLAN Bridge Naming Scheme"
  5579. msgstr ""
  5580. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1450
  5581. msgid "RADIUS VLAN Naming"
  5582. msgstr ""
  5583. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1453
  5584. msgid "RADIUS VLAN Tagged Interface"
  5585. msgstr ""
  5586. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:88
  5587. msgid "RFC3947 NAT-T mode"
  5588. msgstr ""
  5589. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1485
  5590. msgid "RSN Preauth"
  5591. msgstr ""
  5592. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:998
  5593. msgid "RSSI threshold for joining"
  5594. msgstr ""
  5595. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:961
  5596. msgid "RTS/CTS Threshold"
  5597. msgstr ""
  5598. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:49
  5599. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:84
  5600. msgid "RX"
  5601. msgstr ""
  5602. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:236
  5603. msgid "RX Rate"
  5604. msgstr ""
  5605. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2260
  5606. msgid "RX Rate / TX Rate"
  5607. msgstr ""
  5608. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1614
  5609. msgid ""
  5610. "Radio Resource Measurement - Sends beacons to assist roaming. Not all "
  5611. "clients support this."
  5612. msgstr ""
  5613. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:61
  5614. msgctxt "nft nat flag random"
  5615. msgid "Randomize source port mapping"
  5616. msgstr ""
  5617. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:88
  5618. msgid "Raw hex-encoded bytes. Leave empty unless your ISP require this"
  5619. msgstr ""
  5620. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:420
  5621. msgid "Read <code>/etc/ethers</code> to configure the DHCP server."
  5622. msgstr ""
  5623. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:576
  5624. msgid "Really switch protocol?"
  5625. msgstr ""
  5626. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:118
  5627. msgid "Realtime Graphs"
  5628. msgstr ""
  5629. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1568
  5630. msgid "Reassociation Deadline"
  5631. msgstr ""
  5632. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:312
  5633. msgid "Rebind protection"
  5634. msgstr ""
  5635. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:20
  5636. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:140
  5637. msgid "Reboot"
  5638. msgstr ""
  5639. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:153
  5640. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:162
  5641. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:46
  5642. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:51
  5643. msgid "Rebooting…"
  5644. msgstr ""
  5645. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:21
  5646. msgid "Reboots the operating system of your device"
  5647. msgstr ""
  5648. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:26
  5649. msgid "Receive"
  5650. msgstr ""
  5651. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:243
  5652. msgid "Receive dropped"
  5653. msgstr ""
  5654. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:242
  5655. msgid "Receive errors"
  5656. msgstr ""
  5657. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:57
  5658. msgid "Received Data"
  5659. msgstr ""
  5660. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:239
  5661. msgid "Received bytes"
  5662. msgstr ""
  5663. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:241
  5664. msgid "Received multicast"
  5665. msgstr ""
  5666. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:240
  5667. msgid "Received packets"
  5668. msgstr ""
  5669. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:181
  5670. msgid "Recommended. IP addresses of the WireGuard interface."
  5671. msgstr ""
  5672. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:199
  5673. msgid "Reconnect Timeout"
  5674. msgstr ""
  5675. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:521
  5676. msgid "Reconnect this interface"
  5677. msgstr ""
  5678. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/uhttpd.js:14
  5679. msgid "Redirect to HTTPS"
  5680. msgstr ""
  5681. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:118
  5682. msgctxt "nft redirect to port"
  5683. msgid "Redirect to local port <strong>%h</strong>"
  5684. msgstr ""
  5685. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:117
  5686. msgctxt "nft redirect"
  5687. msgid "Redirect to local system"
  5688. msgstr ""
  5689. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:57
  5690. msgid "References"
  5691. msgstr ""
  5692. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:373
  5693. msgid "Refresh Channels"
  5694. msgstr ""
  5695. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2721
  5696. msgid "Refreshing"
  5697. msgstr ""
  5698. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:102
  5699. msgid "Registration State"
  5700. msgstr ""
  5701. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:101
  5702. msgctxt "nft reject with icmp type"
  5703. msgid "Reject IPv4 packet with <strong>ICMP type %h</strong>"
  5704. msgstr ""
  5705. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:103
  5706. msgctxt "nft reject with icmpx type"
  5707. msgid "Reject packet with <strong>ICMP type %h</strong>"
  5708. msgstr ""
  5709. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:102
  5710. msgctxt "nft reject with icmpv6 type"
  5711. msgid "Reject packet with <strong>ICMPv6 type %h</strong>"
  5712. msgstr ""
  5713. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:100
  5714. msgctxt "nft reject with tcp reset"
  5715. msgid "Reject packet with <strong>TCP reset</strong>"
  5716. msgstr ""
  5717. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:192
  5718. msgid ""
  5719. "Reject routing decisions that have a prefix length less than or equal to the "
  5720. "specified value"
  5721. msgstr ""
  5722. #: modules/luci-compat/luasrc/model/network/proto_relay.lua:153
  5723. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:262
  5724. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:692
  5725. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:39
  5726. msgid "Relay"
  5727. msgstr ""
  5728. #: modules/luci-compat/luasrc/model/network/proto_relay.lua:157
  5729. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:36
  5730. msgid "Relay Bridge"
  5731. msgstr ""
  5732. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:355
  5733. msgid "Relay DHCP requests elsewhere. OK: v4↔v4, v6↔v6. Not OK: v4↔v6, v6↔v4."
  5734. msgstr ""
  5735. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:154
  5736. msgid "Relay between networks"
  5737. msgstr ""
  5738. #: modules/luci-compat/luasrc/model/network/proto_relay.lua:12
  5739. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:64
  5740. msgid "Relay bridge"
  5741. msgstr ""
  5742. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:367
  5743. msgid "Relay from"
  5744. msgstr ""
  5745. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:387
  5746. msgid "Relay to address"
  5747. msgstr ""
  5748. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:50
  5749. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:49
  5750. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:40
  5751. msgid "Remote IPv4 address"
  5752. msgstr ""
  5753. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:42
  5754. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:42
  5755. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:40
  5756. #: protocols/luci-proto-vti/htdocs/luci-static/resources/protocol/vti.js:40
  5757. msgid "Remote IPv4 address or FQDN"
  5758. msgstr ""
  5759. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:40
  5760. msgid "Remote IPv6 address"
  5761. msgstr ""
  5762. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:42
  5763. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:42
  5764. msgid "Remote IPv6 address or FQDN"
  5765. msgstr ""
  5766. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:901
  5767. msgid "Remove"
  5768. msgstr ""
  5769. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:474
  5770. msgid "Remove IPv4 addresses from the results and only return IPv6 addresses."
  5771. msgstr ""
  5772. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:468
  5773. msgid "Remove IPv6 addresses from the results and only return IPv4 addresses."
  5774. msgstr ""
  5775. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1361
  5776. msgid "Remove related device settings from the configuration"
  5777. msgstr ""
  5778. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2102
  5779. msgid "Replace wireless configuration"
  5780. msgstr ""
  5781. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:17
  5782. msgid "Request IPv6-address"
  5783. msgstr ""
  5784. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:23
  5785. msgid "Request IPv6-prefix of length"
  5786. msgstr ""
  5787. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:408
  5788. msgid "Request timeout"
  5789. msgstr ""
  5790. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:100
  5791. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:105
  5792. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:102
  5793. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:107
  5794. msgid "Require incoming checksum (optional)."
  5795. msgstr ""
  5796. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:102
  5797. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:107
  5798. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:104
  5799. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:109
  5800. msgid "Require incoming packets serialization (optional)."
  5801. msgstr ""
  5802. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1441
  5803. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1780
  5804. msgid "Required"
  5805. msgstr ""
  5806. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34
  5807. msgid "Required for certain ISPs, e.g. Charter with DOCSIS 3"
  5808. msgstr ""
  5809. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:151
  5810. msgid "Required. Base64-encoded private key for this interface."
  5811. msgstr ""
  5812. #: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:40
  5813. msgid "Required. Path to the .yml config file for this interface."
  5814. msgstr ""
  5815. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:585
  5816. msgid "Required. Public key of the WireGuard peer."
  5817. msgstr ""
  5818. #: protocols/luci-proto-xfrm/htdocs/luci-static/resources/protocol/xfrm.js:42
  5819. msgid "Required. Underlying interface."
  5820. msgstr ""
  5821. #: protocols/luci-proto-xfrm/htdocs/luci-static/resources/protocol/xfrm.js:39
  5822. msgid "Required. XFRM interface ID to be used for SA."
  5823. msgstr ""
  5824. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1437
  5825. msgid ""
  5826. "Required: Rejects auth if RADIUS server does not provide appropriate VLAN "
  5827. "attributes."
  5828. msgstr ""
  5829. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1320
  5830. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1321
  5831. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1322
  5832. msgid "Requires hostapd"
  5833. msgstr ""
  5834. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1327
  5835. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1328
  5836. msgid "Requires hostapd with EAP Suite-B support"
  5837. msgstr ""
  5838. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1325
  5839. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1326
  5840. msgid "Requires hostapd with EAP support"
  5841. msgstr ""
  5842. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1329
  5843. msgid "Requires hostapd with OWE support"
  5844. msgstr ""
  5845. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1323
  5846. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1324
  5847. msgid "Requires hostapd with SAE support"
  5848. msgstr ""
  5849. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1318
  5850. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1319
  5851. msgid "Requires hostapd with WEP support"
  5852. msgstr ""
  5853. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1334
  5854. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1335
  5855. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1336
  5856. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1348
  5857. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1349
  5858. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1350
  5859. msgid "Requires wpa-supplicant"
  5860. msgstr ""
  5861. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1341
  5862. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1342
  5863. msgid "Requires wpa-supplicant with EAP Suite-B support"
  5864. msgstr ""
  5865. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1339
  5866. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1340
  5867. msgid "Requires wpa-supplicant with EAP support"
  5868. msgstr ""
  5869. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1343
  5870. msgid "Requires wpa-supplicant with OWE support"
  5871. msgstr ""
  5872. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1337
  5873. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1338
  5874. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1353
  5875. msgid "Requires wpa-supplicant with SAE support"
  5876. msgstr ""
  5877. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1332
  5878. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1333
  5879. msgid "Requires wpa-supplicant with WEP support"
  5880. msgstr ""
  5881. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:226
  5882. msgid "Reselection policy for primary slave"
  5883. msgstr ""
  5884. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2197
  5885. #: modules/luci-base/ucode/template/sysauth.ut:39
  5886. #: modules/luci-compat/luasrc/view/cbi/delegator.htm:17
  5887. #: modules/luci-compat/luasrc/view/cbi/footer.htm:30
  5888. #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:66
  5889. msgid "Reset"
  5890. msgstr ""
  5891. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:343
  5892. msgid "Reset Counters"
  5893. msgstr ""
  5894. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:404
  5895. msgid "Reset to defaults"
  5896. msgstr ""
  5897. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:259
  5898. msgid "Resolv and Hosts Files"
  5899. msgstr ""
  5900. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:431
  5901. msgid "Resolv file"
  5902. msgstr ""
  5903. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:298
  5904. msgid "Resolve specified FQDNs to an IP."
  5905. msgstr ""
  5906. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:405
  5907. msgid "Resource not found"
  5908. msgstr ""
  5909. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:523
  5910. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:869
  5911. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:100
  5912. msgid "Restart"
  5913. msgstr ""
  5914. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:348
  5915. msgid "Restart Firewall"
  5916. msgstr ""
  5917. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:867
  5918. msgid "Restart radio interface"
  5919. msgstr ""
  5920. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:400
  5921. msgid "Restore"
  5922. msgstr ""
  5923. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:410
  5924. msgid "Restore backup"
  5925. msgstr ""
  5926. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:479
  5927. msgid ""
  5928. "Return answers to DNS queries matching the subnet from which the query was "
  5929. "received if multiple IPs are available."
  5930. msgstr ""
  5931. #: modules/luci-base/htdocs/luci-static/resources/ui.js:386
  5932. #: modules/luci-base/htdocs/luci-static/resources/ui.js:387
  5933. msgid "Reveal/hide password"
  5934. msgstr ""
  5935. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:679
  5936. msgid "Reverse path filter"
  5937. msgstr ""
  5938. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4467
  5939. msgid "Revert"
  5940. msgstr ""
  5941. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4572
  5942. msgid "Revert changes"
  5943. msgstr ""
  5944. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4784
  5945. msgid "Revert request failed with status <code>%h</code>"
  5946. msgstr ""
  5947. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4764
  5948. msgid "Reverting configuration…"
  5949. msgstr ""
  5950. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:84
  5951. msgid "Revision"
  5952. msgstr ""
  5953. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:111
  5954. msgctxt "nft dnat ip to addr"
  5955. msgid "Rewrite destination to <strong>%h</strong>"
  5956. msgstr ""
  5957. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:114
  5958. msgctxt "nft dnat ip6 to addr"
  5959. msgid "Rewrite destination to <strong>%h</strong>"
  5960. msgstr ""
  5961. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:112
  5962. msgctxt "nft dnat ip to addr:port"
  5963. msgid "Rewrite destination to <strong>%h</strong>, port <strong>%h</strong>"
  5964. msgstr ""
  5965. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:115
  5966. msgctxt "nft dnat ip6 to addr:port"
  5967. msgid "Rewrite destination to <strong>%h</strong>, port <strong>%h</strong>"
  5968. msgstr ""
  5969. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:105
  5970. msgctxt "nft snat ip to addr"
  5971. msgid "Rewrite source to <strong>%h</strong>"
  5972. msgstr ""
  5973. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:108
  5974. msgctxt "nft snat ip6 to addr"
  5975. msgid "Rewrite source to <strong>%h</strong>"
  5976. msgstr ""
  5977. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:106
  5978. msgctxt "nft snat ip to addr:port"
  5979. msgid "Rewrite source to <strong>%h</strong>, port <strong>%h</strong>"
  5980. msgstr ""
  5981. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:109
  5982. msgctxt "nft snat ip6 to addr:port"
  5983. msgid "Rewrite source to <strong>%h</strong>, port <strong>%h</strong>"
  5984. msgstr ""
  5985. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:120
  5986. msgid "Rewrite to egress device address"
  5987. msgstr ""
  5988. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1485
  5989. msgid ""
  5990. "Robust Security Network (RSN): Allow roaming preauth for WPA2-EAP networks "
  5991. "(and advertise it in WLAN beacons). Only works if the specified network "
  5992. "interface is a bridge. Shortens the time-critical reassociation process."
  5993. msgstr ""
  5994. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:605
  5995. msgid "Robustness"
  5996. msgstr ""
  5997. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:572
  5998. msgid ""
  5999. "Root directory for files served via TFTP. <em>Enable TFTP server</em> and "
  6000. "<em>TFTP server root</em> turn on the TFTP server and serve files from "
  6001. "<em>TFTP server root</em>."
  6002. msgstr ""
  6003. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:298
  6004. msgid "Root preparation"
  6005. msgstr ""
  6006. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:204
  6007. msgid "Round-Robin policy (balance-rr, 0)"
  6008. msgstr ""
  6009. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:659
  6010. msgid "Route Allowed IPs"
  6011. msgstr ""
  6012. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:532
  6013. msgid "Route action chain \"%h\""
  6014. msgstr ""
  6015. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:46
  6016. msgid "Route type"
  6017. msgstr ""
  6018. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:879
  6019. msgid ""
  6020. "Router Lifetime published in <abbr title=\"Router Advertisement, ICMPv6 Type "
  6021. "134\">RA</abbr> messages. Maximum is 9000 seconds."
  6022. msgstr ""
  6023. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:46
  6024. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:26
  6025. msgid "Router Password"
  6026. msgstr ""
  6027. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:28
  6028. #: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:50
  6029. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:248
  6030. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:15
  6031. msgid "Routing"
  6032. msgstr ""
  6033. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:44
  6034. msgid "Routing Algorithm"
  6035. msgstr ""
  6036. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:28
  6037. msgid ""
  6038. "Routing defines over which interface and gateway a certain host or network "
  6039. "can be reached."
  6040. msgstr ""
  6041. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:218
  6042. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:198
  6043. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:224
  6044. msgid "Rule"
  6045. msgstr ""
  6046. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:602
  6047. msgid "Rule actions"
  6048. msgstr ""
  6049. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:475
  6050. msgctxt "nft comment"
  6051. msgid "Rule comment: %s"
  6052. msgstr ""
  6053. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:540
  6054. msgid "Rule container chain \"%h\""
  6055. msgstr ""
  6056. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:601
  6057. msgid "Rule matches"
  6058. msgstr ""
  6059. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:137
  6060. msgid "Rule type"
  6061. msgstr ""
  6062. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:336
  6063. msgid "Run a filesystem check before mounting the device"
  6064. msgstr ""
  6065. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:336
  6066. msgid "Run filesystem check"
  6067. msgstr ""
  6068. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2360
  6069. msgid "Runtime error"
  6070. msgstr ""
  6071. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:224
  6072. msgid "SHA256"
  6073. msgstr ""
  6074. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:145
  6075. msgid "SIM %d"
  6076. msgstr ""
  6077. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:147
  6078. msgid "SIMs"
  6079. msgstr ""
  6080. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:59
  6081. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:280
  6082. msgid "SNR"
  6083. msgstr ""
  6084. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:263
  6085. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:650
  6086. msgid "SRV"
  6087. msgstr ""
  6088. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:10
  6089. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:38
  6090. msgid "SSH Access"
  6091. msgstr ""
  6092. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:70
  6093. msgid "SSH server address"
  6094. msgstr ""
  6095. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:74
  6096. msgid "SSH server port"
  6097. msgstr ""
  6098. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:58
  6099. msgid "SSH username"
  6100. msgstr ""
  6101. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:289
  6102. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:51
  6103. msgid "SSH-Keys"
  6104. msgstr ""
  6105. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:156
  6106. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:181
  6107. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1838
  6108. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:401
  6109. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:147
  6110. msgid "SSID"
  6111. msgstr ""
  6112. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:9
  6113. msgid "SSTP"
  6114. msgstr ""
  6115. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:41
  6116. msgid "SSTP Server"
  6117. msgstr ""
  6118. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:340
  6119. msgid "SWAP"
  6120. msgstr ""
  6121. #: modules/luci-base/htdocs/luci-static/resources/form.js:3274
  6122. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2192
  6123. #: modules/luci-compat/luasrc/view/cbi/error.htm:17
  6124. #: modules/luci-compat/luasrc/view/cbi/footer.htm:26
  6125. #: modules/luci-compat/luasrc/view/cbi/header.htm:20
  6126. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:463
  6127. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:123
  6128. msgid "Save"
  6129. msgstr ""
  6130. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2174
  6131. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4455
  6132. #: modules/luci-compat/luasrc/view/cbi/footer.htm:22
  6133. msgid "Save & Apply"
  6134. msgstr ""
  6135. #: modules/luci-base/htdocs/luci-static/resources/form.js:607
  6136. msgid "Save error"
  6137. msgstr ""
  6138. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:434
  6139. msgid "Save mtdblock"
  6140. msgstr ""
  6141. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:424
  6142. msgid "Save mtdblock contents"
  6143. msgstr ""
  6144. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:874
  6145. msgid "Scan"
  6146. msgstr ""
  6147. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/crontab.js:28
  6148. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:90
  6149. msgid "Scheduled Tasks"
  6150. msgstr ""
  6151. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:39
  6152. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:62
  6153. msgid "Section %s is empty."
  6154. msgstr ""
  6155. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4441
  6156. msgid "Section added"
  6157. msgstr ""
  6158. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4443
  6159. msgid "Section removed"
  6160. msgstr ""
  6161. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:332
  6162. msgid "See \"mount\" manpage for details"
  6163. msgstr ""
  6164. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:283
  6165. msgid ""
  6166. "Select 'Force upgrade' to flash the image even if the image format check "
  6167. "fails. Use only if you are sure that the firmware is correct and meant for "
  6168. "your device!"
  6169. msgstr ""
  6170. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2681
  6171. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2821
  6172. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2981
  6173. msgid "Select file…"
  6174. msgstr ""
  6175. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:320
  6176. msgid "Selects the transmit hash policy to use for slave selection"
  6177. msgstr ""
  6178. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:808
  6179. msgid ""
  6180. "Send <abbr title=\"Router Advertisement, ICMPv6 Type 134\">RA</abbr> "
  6181. "messages advertising this device as IPv6 router."
  6182. msgstr ""
  6183. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:704
  6184. msgid "Send ICMP redirects"
  6185. msgstr ""
  6186. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:143
  6187. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:115
  6188. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:101
  6189. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:75
  6190. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:88
  6191. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:111
  6192. msgid ""
  6193. "Send LCP echo requests at the given interval in seconds, only effective in "
  6194. "conjunction with failure threshold"
  6195. msgstr ""
  6196. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:24
  6197. msgid "Send the hostname of this device"
  6198. msgstr ""
  6199. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:89
  6200. msgid "Server"
  6201. msgstr ""
  6202. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:605
  6203. msgid "Server address"
  6204. msgstr ""
  6205. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:599
  6206. msgid "Server name"
  6207. msgstr ""
  6208. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:50
  6209. msgid "Service Name"
  6210. msgstr ""
  6211. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:88
  6212. msgid "Service Type"
  6213. msgstr ""
  6214. #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:36
  6215. msgid "Services"
  6216. msgstr ""
  6217. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2664
  6218. msgid "Session expired"
  6219. msgstr ""
  6220. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:126
  6221. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:175
  6222. msgid "Set Static"
  6223. msgstr ""
  6224. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:703
  6225. msgid "Set an alias for a hostname."
  6226. msgstr ""
  6227. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:122
  6228. msgctxt "nft mangle"
  6229. msgid "Set header field <var>%s</var> to <strong>%s</strong>"
  6230. msgstr ""
  6231. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:975
  6232. msgid "Set interface as NDP-Proxy external slave. Default is off."
  6233. msgstr ""
  6234. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1299
  6235. msgid ""
  6236. "Set interface properties regardless of the link carrier (If set, carrier "
  6237. "sense events do not invoke hotplug handlers)."
  6238. msgstr ""
  6239. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:302
  6240. msgid "Set same MAC Address to all slaves"
  6241. msgstr ""
  6242. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:826
  6243. msgid ""
  6244. "Set the autonomous address-configuration flag in the prefix information "
  6245. "options of sent <abbr title=\"Router Advertisement\">RA</abbr> messages. "
  6246. "When enabled, clients will perform stateless IPv6 address autoconfiguration."
  6247. msgstr ""
  6248. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:736
  6249. msgid ""
  6250. "Set this interface as master for RA and DHCPv6 relaying as well as NDP "
  6251. "proxying."
  6252. msgstr ""
  6253. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:306
  6254. msgid "Set to currently active slave (active, 1)"
  6255. msgstr ""
  6256. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:307
  6257. msgid "Set to first slave added to the bond (follow, 2)"
  6258. msgstr ""
  6259. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:663
  6260. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:679
  6261. msgid "Set up DHCP Server"
  6262. msgstr ""
  6263. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:970
  6264. msgid "Set up routes for proxied IPv6 neighbours."
  6265. msgstr ""
  6266. #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:55
  6267. #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:55
  6268. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:23
  6269. msgid "Setting PLMN failed"
  6270. msgstr ""
  6271. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:68
  6272. msgid "Setting operation mode failed"
  6273. msgstr ""
  6274. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:87
  6275. msgid "Setting the allowed network technology."
  6276. msgstr ""
  6277. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:107
  6278. msgid "Setting the preferred network technology."
  6279. msgstr ""
  6280. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/uhttpd.js:11
  6281. msgid "Settings"
  6282. msgstr ""
  6283. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:983
  6284. msgid ""
  6285. "Settings for assisting wireless clients in roaming between multiple APs: "
  6286. "802.11r, 802.11k and 802.11v"
  6287. msgstr ""
  6288. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:210
  6289. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:39
  6290. msgid "Short GI"
  6291. msgstr ""
  6292. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1166
  6293. msgid "Short Preamble"
  6294. msgstr ""
  6295. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:470
  6296. msgid "Show current backup file list"
  6297. msgstr ""
  6298. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:293
  6299. msgid "Show empty chains"
  6300. msgstr ""
  6301. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:276
  6302. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:338
  6303. msgid "Show raw counters"
  6304. msgstr ""
  6305. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:527
  6306. msgid "Shutdown this interface"
  6307. msgstr ""
  6308. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:57
  6309. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:63
  6310. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:186
  6311. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1837
  6312. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:42
  6313. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:400
  6314. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:146
  6315. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:235
  6316. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:278
  6317. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:284
  6318. msgid "Signal"
  6319. msgstr ""
  6320. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2259
  6321. msgid "Signal / Noise"
  6322. msgstr ""
  6323. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:104
  6324. msgid "Signal Quality"
  6325. msgstr ""
  6326. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:146
  6327. msgid "Signal Refresh Rate"
  6328. msgstr ""
  6329. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:262
  6330. msgid "Signal:"
  6331. msgstr ""
  6332. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4194
  6333. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:222
  6334. msgid "Size"
  6335. msgstr ""
  6336. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:559
  6337. msgid "Size of DNS query cache"
  6338. msgstr ""
  6339. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:208
  6340. msgid "Size of the ZRam device in megabytes"
  6341. msgstr ""
  6342. #: modules/luci-compat/luasrc/view/cbi/footer.htm:18
  6343. #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:57
  6344. msgid "Skip"
  6345. msgstr ""
  6346. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:257
  6347. msgid "Skip from backup files that are equal to those in /rom"
  6348. msgstr ""
  6349. #: themes/luci-theme-librecmc-2020/ucode/template/themes/librecmc2020/header.ut:35
  6350. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:46
  6351. msgid "Skip to content"
  6352. msgstr ""
  6353. #: themes/luci-theme-librecmc-2020/ucode/template/themes/librecmc2020/header.ut:34
  6354. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:45
  6355. msgid "Skip to navigation"
  6356. msgstr ""
  6357. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:180
  6358. msgid "Slave Interfaces"
  6359. msgstr ""
  6360. #: modules/luci-base/htdocs/luci-static/resources/network.js:3002
  6361. #: modules/luci-compat/luasrc/model/network.lua:1428
  6362. msgid "Software VLAN"
  6363. msgstr ""
  6364. #: modules/luci-compat/luasrc/view/cbi/header.htm:5
  6365. msgid "Some fields are invalid, cannot save values!"
  6366. msgstr ""
  6367. #: modules/luci-base/ucode/template/error404.ut:10
  6368. msgid "Sorry, the object you requested was not found."
  6369. msgstr ""
  6370. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:442
  6371. msgid ""
  6372. "Sorry, there is no sysupgrade support present; a new firmware image must be "
  6373. "flashed manually. Please refer to the wiki for device specific install "
  6374. "instructions."
  6375. msgstr ""
  6376. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:100
  6377. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:149
  6378. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:385
  6379. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:70
  6380. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:214
  6381. msgid "Source"
  6382. msgstr ""
  6383. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:43
  6384. msgctxt "nft ip saddr"
  6385. msgid "Source IP"
  6386. msgstr ""
  6387. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:47
  6388. msgctxt "nft ip6 saddr"
  6389. msgid "Source IPv6"
  6390. msgstr ""
  6391. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57
  6392. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:57
  6393. msgid "Source interface"
  6394. msgstr ""
  6395. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:45
  6396. msgctxt "nft ip sport"
  6397. msgid "Source port"
  6398. msgstr ""
  6399. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:586
  6400. msgid ""
  6401. "Special <abbr title=\"Preboot eXecution Environment\">PXE</abbr> boot "
  6402. "options for Dnsmasq."
  6403. msgstr ""
  6404. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:953
  6405. msgid ""
  6406. "Specifies a fixed list of DNS search domains to announce via DHCPv6. If left "
  6407. "unspecified, the local device DNS search domain will be announced."
  6408. msgstr ""
  6409. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:937
  6410. msgid ""
  6411. "Specifies a fixed list of IPv6 DNS server addresses to announce via DHCPv6. "
  6412. "If left unspecified, the device will announce itself as IPv6 DNS server "
  6413. "unless the <em>Local IPv6 DNS server</em> option is disabled."
  6414. msgstr ""
  6415. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:187
  6416. msgid ""
  6417. "Specifies an individual UID or range of UIDs to match, e.g. 1000 to match "
  6418. "corresponding UID or 1000-1005 to inclusively match all UIDs within the "
  6419. "corresponding range"
  6420. msgstr ""
  6421. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:343
  6422. msgid ""
  6423. "Specifies that duplicate frames (received on inactive ports) should be "
  6424. "dropped or delivered"
  6425. msgstr ""
  6426. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:359
  6427. msgid "Specifies the ARP link monitoring frequency in milliseconds"
  6428. msgstr ""
  6429. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:367
  6430. msgid "Specifies the IP addresses to use for ARP monitoring"
  6431. msgstr ""
  6432. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:396
  6433. msgid "Specifies the MII link monitoring frequency in milliseconds"
  6434. msgstr ""
  6435. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:182
  6436. msgid "Specifies the TOS value to match in IP headers"
  6437. msgstr ""
  6438. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:261
  6439. msgid "Specifies the aggregation selection logic to use"
  6440. msgstr ""
  6441. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:160
  6442. msgid "Specifies the destination subnet to match (CIDR notation)"
  6443. msgstr ""
  6444. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:293
  6445. msgid "Specifies the directory the device is attached to"
  6446. msgstr ""
  6447. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:832
  6448. msgid ""
  6449. "Specifies the flags sent in <abbr title=\"Router Advertisement\">RA</abbr> "
  6450. "messages, for example to instruct clients to request further information via "
  6451. "stateful DHCPv6."
  6452. msgstr ""
  6453. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:177
  6454. msgid ""
  6455. "Specifies the fwmark and optionally its mask to match, e.g. 0xFF to match "
  6456. "mark 255 or 0x0/0x1 to match any even mark value"
  6457. msgstr ""
  6458. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:145
  6459. msgid "Specifies the incoming logical interface name"
  6460. msgstr ""
  6461. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:41
  6462. msgid ""
  6463. "Specifies the logical interface name of the parent (or master) interface "
  6464. "this route belongs to"
  6465. msgstr ""
  6466. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:254
  6467. msgid ""
  6468. "Specifies the mac-address for the actor in protocol packet exchanges "
  6469. "(LACPDUs). If empty, masters' mac address defaults to system default"
  6470. msgstr ""
  6471. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:175
  6472. msgid ""
  6473. "Specifies the maximum amount of failed ARP requests until hosts are presumed "
  6474. "to be dead"
  6475. msgstr ""
  6476. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:171
  6477. msgid ""
  6478. "Specifies the maximum amount of seconds after which hosts are presumed to be "
  6479. "dead"
  6480. msgstr ""
  6481. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:941
  6482. msgid ""
  6483. "Specifies the maximum transmit power the wireless radio may use. Depending "
  6484. "on regulatory requirements and wireless usage, the actual transmit power may "
  6485. "be reduced by the driver."
  6486. msgstr ""
  6487. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:238
  6488. msgid ""
  6489. "Specifies the minimum number of links that must be active before asserting "
  6490. "carrier"
  6491. msgstr ""
  6492. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:202
  6493. msgid "Specifies the mode to be used for this bonding interface"
  6494. msgstr ""
  6495. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:76
  6496. msgid ""
  6497. "Specifies the network gateway. If omitted, the gateway from the parent "
  6498. "interface is taken if any, otherwise creates a link scope route. If set to "
  6499. "0.0.0.0 no gateway will be specified for the route"
  6500. msgstr ""
  6501. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:334
  6502. msgid ""
  6503. "Specifies the number of IGMP membership reports to be issued after a "
  6504. "failover event in 200ms intervals"
  6505. msgstr ""
  6506. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:278
  6507. msgid ""
  6508. "Specifies the number of packets to transmit through a slave before moving to "
  6509. "the next one"
  6510. msgstr ""
  6511. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:312
  6512. msgid ""
  6513. "Specifies the number of peer notifications (gratuitous ARPs and unsolicited "
  6514. "IPv6 Neighbor Advertisements) to be issued after a failover event"
  6515. msgstr ""
  6516. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:286
  6517. msgid ""
  6518. "Specifies the number of seconds between instances where the bonding driver "
  6519. "sends learning packets to each slaves peer switch"
  6520. msgstr ""
  6521. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:130
  6522. msgid "Specifies the ordering of the IP rules"
  6523. msgstr ""
  6524. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:156
  6525. msgid "Specifies the outgoing logical interface name"
  6526. msgstr ""
  6527. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:100
  6528. msgid ""
  6529. "Specifies the preferred source address when sending to destinations covered "
  6530. "by the target"
  6531. msgstr ""
  6532. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:375
  6533. msgid "Specifies the quantity of ARP IP targets that must be reachable"
  6534. msgstr ""
  6535. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:270
  6536. msgid ""
  6537. "Specifies the rate in which the link partner will be asked to transmit "
  6538. "LACPDU packets"
  6539. msgstr ""
  6540. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:227
  6541. msgid ""
  6542. "Specifies the reselection policy for the primary slave when failure of the "
  6543. "active slave or recovery of the primary slave occurs"
  6544. msgstr ""
  6545. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:80
  6546. msgid "Specifies the route metric to use"
  6547. msgstr ""
  6548. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:46
  6549. msgid "Specifies the route type to be created"
  6550. msgstr ""
  6551. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:137
  6552. msgid "Specifies the rule target routing action"
  6553. msgstr ""
  6554. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:149
  6555. msgid "Specifies the source subnet to match (CIDR notation)"
  6556. msgstr ""
  6557. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:246
  6558. msgid "Specifies the system priority"
  6559. msgstr ""
  6560. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:404
  6561. msgid ""
  6562. "Specifies the time in milliseconds to wait before disabling a slave after a "
  6563. "link failure detection"
  6564. msgstr ""
  6565. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:412
  6566. msgid ""
  6567. "Specifies the time in milliseconds to wait before enabling a slave after a "
  6568. "link recovery detection"
  6569. msgstr ""
  6570. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:548
  6571. msgid ""
  6572. "Specifies the wired ports to attach to this bridge. In order to attach "
  6573. "wireless networks, choose the associated interface as network in the "
  6574. "wireless settings."
  6575. msgstr ""
  6576. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:383
  6577. msgid ""
  6578. "Specifies whether ARP probes and replies should be validated or non-ARP "
  6579. "traffic should be filtered for link monitoring"
  6580. msgstr ""
  6581. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:303
  6582. msgid ""
  6583. "Specifies whether active-backup mode should set all slaves to the same MAC "
  6584. "address at enslavement"
  6585. msgstr ""
  6586. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:420
  6587. msgid ""
  6588. "Specifies whether or not miimon should use MII or ETHTOOL ioctls vs. "
  6589. "netif_carrier_ok()"
  6590. msgstr ""
  6591. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:295
  6592. msgid ""
  6593. "Specifies whether to shuffle active flows across slaves based on the load"
  6594. msgstr ""
  6595. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:181
  6596. msgid ""
  6597. "Specifies which slave interfaces should be attached to this bonding interface"
  6598. msgstr ""
  6599. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:214
  6600. msgid ""
  6601. "Specifies which slave is the primary device. It will always be the active "
  6602. "slave while it is available"
  6603. msgstr ""
  6604. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:63
  6605. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:67
  6606. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:62
  6607. msgid "Specify a TOS (Type of Service)."
  6608. msgstr ""
  6609. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:74
  6610. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:79
  6611. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:79
  6612. msgid ""
  6613. "Specify a TOS (Type of Service). Can be <code>inherit</code> (the outer "
  6614. "header inherits the value of the inner header) or an hexadecimal value "
  6615. "<code>00..FF</code> (optional)."
  6616. msgstr ""
  6617. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:74
  6618. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:74
  6619. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:79
  6620. msgid ""
  6621. "Specify a TTL (Time to Live) for the encapsulating packet other than the "
  6622. "default (64) (optional)."
  6623. msgstr ""
  6624. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:69
  6625. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:58
  6626. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:62
  6627. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:57
  6628. msgid ""
  6629. "Specify a TTL (Time to Live) for the encapsulating packet other than the "
  6630. "default (64)."
  6631. msgstr ""
  6632. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:84
  6633. msgid ""
  6634. "Specify a Traffic Class. Can be <code>inherit</code> (the outer header "
  6635. "inherits the value of the inner header) or an hexadecimal value <code>00.."
  6636. "FF</code> (optional)."
  6637. msgstr ""
  6638. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:64
  6639. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:69
  6640. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:69
  6641. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:74
  6642. msgid ""
  6643. "Specify an MTU (Maximum Transmission Unit) other than the default (1280 "
  6644. "bytes) (optional)."
  6645. msgstr ""
  6646. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:53
  6647. msgid ""
  6648. "Specify an MTU (Maximum Transmission Unit) other than the default (1280 "
  6649. "bytes)."
  6650. msgstr ""
  6651. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2119
  6652. msgid "Specify the secret encryption key here."
  6653. msgstr ""
  6654. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:215
  6655. msgid "Speed: %d Mibit/s, Duplex: %s"
  6656. msgstr ""
  6657. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1560
  6658. msgid "Splitterless ADSL (G.992.2) Annex A"
  6659. msgstr ""
  6660. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:717
  6661. msgid "Stale neighbour cache timeout"
  6662. msgstr ""
  6663. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:686
  6664. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:99
  6665. msgid "Start"
  6666. msgstr ""
  6667. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:140
  6668. msgid "Start WPS"
  6669. msgstr ""
  6670. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:76
  6671. msgid "Start priority"
  6672. msgstr ""
  6673. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1941
  6674. msgid "Start refresh"
  6675. msgstr ""
  6676. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4687
  6677. msgid "Starting configuration apply…"
  6678. msgstr ""
  6679. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1854
  6680. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:425
  6681. msgid "Starting wireless scan..."
  6682. msgstr ""
  6683. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:109
  6684. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:78
  6685. msgid "Startup"
  6686. msgstr ""
  6687. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:90
  6688. msgid "State"
  6689. msgstr ""
  6690. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:32
  6691. msgid "Static IPv4 Routes"
  6692. msgstr ""
  6693. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:32
  6694. msgid "Static IPv6 Routes"
  6695. msgstr ""
  6696. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:91
  6697. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:138
  6698. msgid "Static Lease"
  6699. msgstr ""
  6700. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:258
  6701. msgid "Static Leases"
  6702. msgstr ""
  6703. #: modules/luci-base/htdocs/luci-static/resources/network.js:2090
  6704. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:172
  6705. #: modules/luci-compat/luasrc/model/network.lua:967
  6706. msgid "Static address"
  6707. msgstr ""
  6708. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:771
  6709. msgid ""
  6710. "Static leases are used to assign fixed IP addresses and symbolic hostnames "
  6711. "to DHCP clients. They are also required for non-dynamic interface "
  6712. "configurations where only hosts with a corresponding lease are served."
  6713. msgstr ""
  6714. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1183
  6715. msgid "Station inactivity limit"
  6716. msgstr ""
  6717. #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:16
  6718. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:558
  6719. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:923
  6720. #: modules/luci-mod-status/ucode/template/admin_status/index.ut:9
  6721. msgid "Status"
  6722. msgstr ""
  6723. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:529
  6724. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:101
  6725. msgid "Stop"
  6726. msgstr ""
  6727. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:135
  6728. msgid "Stop WPS"
  6729. msgstr ""
  6730. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1852
  6731. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1946
  6732. msgid "Stop refresh"
  6733. msgstr ""
  6734. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:24
  6735. msgid "Storage"
  6736. msgstr ""
  6737. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:683
  6738. msgid "Strict filtering"
  6739. msgstr ""
  6740. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:508
  6741. msgid "Strict order"
  6742. msgstr ""
  6743. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:33
  6744. msgid "Strong"
  6745. msgstr ""
  6746. #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:61
  6747. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2144
  6748. msgid "Submit"
  6749. msgstr ""
  6750. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:447
  6751. msgid "Suppress logging"
  6752. msgstr ""
  6753. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:448
  6754. msgid "Suppress logging of the routine operation for the DHCP protocol."
  6755. msgstr ""
  6756. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:46
  6757. msgid "Swap free"
  6758. msgstr ""
  6759. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:139
  6760. #: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:3
  6761. msgid "Switch"
  6762. msgstr ""
  6763. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:172
  6764. msgid "Switch %q"
  6765. msgstr ""
  6766. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:150
  6767. msgid ""
  6768. "Switch %q has an unknown topology - the VLAN settings might not be accurate."
  6769. msgstr ""
  6770. #: modules/luci-base/htdocs/luci-static/resources/network.js:3002
  6771. #: modules/luci-compat/luasrc/model/network.lua:1426
  6772. msgid "Switch VLAN"
  6773. msgstr ""
  6774. #: modules/luci-base/htdocs/luci-static/resources/network.js:2999
  6775. msgid "Switch port"
  6776. msgstr ""
  6777. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:577
  6778. msgid "Switch protocol"
  6779. msgstr ""
  6780. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:103
  6781. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:104
  6782. #: modules/luci-compat/luasrc/view/cbi/ipaddr.htm:26
  6783. msgid "Switch to CIDR list notation"
  6784. msgstr ""
  6785. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2716
  6786. msgid "Symbolic link"
  6787. msgstr ""
  6788. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:89
  6789. msgid "Sync with NTP-Server"
  6790. msgstr ""
  6791. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:81
  6792. msgid "Sync with browser"
  6793. msgstr ""
  6794. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:299
  6795. msgid "Syntax: <code>/fqdn[/fqdn…]/[ipaddr]</code>."
  6796. msgstr ""
  6797. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:650
  6798. msgid "Syntax: <code>_service._proto.example.com</code>."
  6799. msgstr ""
  6800. #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:26
  6801. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:22
  6802. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:113
  6803. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:3
  6804. msgid "System"
  6805. msgstr ""
  6806. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/syslog.js:25
  6807. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:63
  6808. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:75
  6809. msgid "System Log"
  6810. msgstr ""
  6811. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:245
  6812. msgid "System Priority"
  6813. msgstr ""
  6814. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:118
  6815. msgid "System Properties"
  6816. msgstr ""
  6817. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:162
  6818. msgid "System log buffer size"
  6819. msgstr ""
  6820. #: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:67
  6821. #: themes/luci-theme-material/ucode/template/themes/material/header.ut:87
  6822. #: themes/luci-theme-librecmc-2020/ucode/template/themes/librecmc2020/header.ut:64
  6823. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:89
  6824. msgid "System running in recovery (initramfs) mode."
  6825. msgstr ""
  6826. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:67
  6827. msgctxt "nft tcp option maxseg size"
  6828. msgid "TCP MSS"
  6829. msgstr ""
  6830. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:54
  6831. msgctxt "nft tcp dport"
  6832. msgid "TCP destination port"
  6833. msgstr ""
  6834. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:57
  6835. msgctxt "nft tcp flags"
  6836. msgid "TCP flags"
  6837. msgstr ""
  6838. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:53
  6839. msgctxt "nft tcp sport"
  6840. msgid "TCP source port"
  6841. msgstr ""
  6842. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:338
  6843. msgid "TCP:"
  6844. msgstr ""
  6845. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:571
  6846. msgid "TFTP server root"
  6847. msgstr ""
  6848. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:50
  6849. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:85
  6850. msgid "TX"
  6851. msgstr ""
  6852. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:236
  6853. msgid "TX Rate"
  6854. msgstr ""
  6855. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:672
  6856. msgid "TX queue length"
  6857. msgstr ""
  6858. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:92
  6859. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:167
  6860. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:18
  6861. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:190
  6862. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:216
  6863. msgid "Table"
  6864. msgstr ""
  6865. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:916
  6866. msgid "Tag"
  6867. msgstr ""
  6868. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:219
  6869. msgctxt "VLAN port state"
  6870. msgid "Tagged"
  6871. msgstr ""
  6872. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:655
  6873. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:718
  6874. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:57
  6875. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:66
  6876. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:187
  6877. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:213
  6878. msgid "Target"
  6879. msgstr ""
  6880. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:58
  6881. msgid "Target Platform"
  6882. msgstr ""
  6883. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:103
  6884. msgid "Target network"
  6885. msgstr ""
  6886. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:36
  6887. msgid "Temp space"
  6888. msgstr ""
  6889. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:50
  6890. msgid "Terminate"
  6891. msgstr ""
  6892. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:886
  6893. msgid ""
  6894. "The <abbr title=\"Maximum Transmission Unit\">MTU</abbr> to be published in "
  6895. "<abbr title=\"Router Advertisement, ICMPv6 Type 134\">RA</abbr> messages. "
  6896. "Minimum is 1280 bytes."
  6897. msgstr ""
  6898. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:834
  6899. msgid ""
  6900. "The <em>Managed address configuration</em> (M) flag indicates that IPv6 "
  6901. "addresses are available via DHCPv6."
  6902. msgstr ""
  6903. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:838
  6904. msgid ""
  6905. "The <em>Mobile IPv6 Home Agent</em> (H) flag indicates that the device is "
  6906. "also acting as Mobile IPv6 home agent on this link."
  6907. msgstr ""
  6908. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:836
  6909. msgid ""
  6910. "The <em>Other configuration</em> (O) flag indicates that other information, "
  6911. "such as DNS servers, is available via DHCPv6."
  6912. msgstr ""
  6913. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:84
  6914. msgid "The <em>block mount</em> command failed with code %d"
  6915. msgstr ""
  6916. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:80
  6917. msgid ""
  6918. "The <em>qrencode</em> package is required for generating an QR code image of "
  6919. "the configuration."
  6920. msgstr ""
  6921. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:904
  6922. msgid "The DHCPv6-DUID (DHCP unique identifier) of this host."
  6923. msgstr ""
  6924. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1013
  6925. msgid ""
  6926. "The DNS server entries in the local resolv.conf are primarily sorted by the "
  6927. "weight specified here"
  6928. msgstr ""
  6929. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:77
  6930. msgid ""
  6931. "The HE.net endpoint update configuration changed, you must now use the plain "
  6932. "username instead of the user ID!"
  6933. msgstr ""
  6934. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:876
  6935. msgid "The IP address %h is already used by another static lease"
  6936. msgstr ""
  6937. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:885
  6938. msgid "The IP address is outside of any DHCP pool address range"
  6939. msgstr ""
  6940. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:606
  6941. msgid "The IP address of the boot server"
  6942. msgstr ""
  6943. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:859
  6944. msgid ""
  6945. "The IP address to be used for this host, or <em>ignore</em> to ignore any "
  6946. "DHCP request from this host."
  6947. msgstr ""
  6948. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:40
  6949. msgid "The IPv4 address or the fully-qualified domain name of the remote end."
  6950. msgstr ""
  6951. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:42
  6952. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:42
  6953. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:40
  6954. #: protocols/luci-proto-vti/htdocs/luci-static/resources/protocol/vti.js:40
  6955. msgid ""
  6956. "The IPv4 address or the fully-qualified domain name of the remote tunnel end."
  6957. msgstr ""
  6958. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:40
  6959. msgid "The IPv6 address or the fully-qualified domain name of the remote end."
  6960. msgstr ""
  6961. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:42
  6962. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:42
  6963. msgid ""
  6964. "The IPv6 address or the fully-qualified domain name of the remote tunnel end."
  6965. msgstr ""
  6966. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:912
  6967. msgid ""
  6968. "The IPv6 interface identifier (address suffix) as hexadecimal number (max. 8 "
  6969. "chars)."
  6970. msgstr ""
  6971. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:53
  6972. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:59
  6973. msgid ""
  6974. "The IPv6 prefix assigned to the provider, usually ends with <code>::</code>"
  6975. msgstr ""
  6976. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/timer.js:7
  6977. msgid "The LED blinks with the configured on/off frequency"
  6978. msgstr ""
  6979. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/heartbeat.js:7
  6980. msgid "The LED flashes to simulate actual heart beat."
  6981. msgstr ""
  6982. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:8
  6983. msgid ""
  6984. "The LED flashes with link status and activity on the configured interface."
  6985. msgstr ""
  6986. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/none.js:7
  6987. msgid "The LED is always in default state off."
  6988. msgstr ""
  6989. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/default-on.js:6
  6990. msgid "The LED is always in default state on."
  6991. msgstr ""
  6992. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:224
  6993. msgid ""
  6994. "The MAC address %h is already used by another static lease in the same DHCP "
  6995. "pool"
  6996. msgstr ""
  6997. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:640
  6998. msgid "The MTU must not exceed the parent device MTU of %d bytes"
  6999. msgstr ""
  7000. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:942
  7001. msgid "The VLAN ID must be unique"
  7002. msgstr ""
  7003. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:45
  7004. msgid "The algorithm that is used to discover mesh routes"
  7005. msgstr ""
  7006. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2104
  7007. msgid ""
  7008. "The allowed characters are: <code>A-Z</code>, <code>a-z</code>, <code>0-9</"
  7009. "code> and <code>_</code>"
  7010. msgstr ""
  7011. #: modules/luci-compat/luasrc/view/cbi/error.htm:6
  7012. msgid "The configuration file could not be loaded due to the following error:"
  7013. msgstr ""
  7014. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2098
  7015. msgid ""
  7016. "The correct SSID must be manually specified when joining a hidden wireless "
  7017. "network"
  7018. msgstr ""
  7019. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4563
  7020. msgid ""
  7021. "The device could not be reached within %d seconds after applying the pending "
  7022. "changes, which caused the configuration to be rolled back for safety "
  7023. "reasons. If you believe that the configuration changes are correct "
  7024. "nonetheless, perform an unchecked configuration apply. Alternatively, you "
  7025. "can dismiss this warning and edit changes before attempting to apply again, "
  7026. "or revert all pending changes to keep the currently working configuration "
  7027. "state."
  7028. msgstr ""
  7029. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:281
  7030. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:393
  7031. msgid ""
  7032. "The device file of the memory or partition (<abbr title=\"for example\">e.g."
  7033. "</abbr> <code>/dev/sda1</code>)"
  7034. msgstr ""
  7035. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:504
  7036. msgid "The device name \"%s\" is already taken"
  7037. msgstr ""
  7038. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:410
  7039. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:444
  7040. msgid ""
  7041. "The existing network configuration needs to be changed for LuCI to function "
  7042. "properly."
  7043. msgstr ""
  7044. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:788
  7045. msgid ""
  7046. "The existing wireless configuration needs to be changed for LuCI to function "
  7047. "properly."
  7048. msgstr ""
  7049. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:220
  7050. msgid ""
  7051. "The flash image was uploaded. Below is the checksum and file size listed, "
  7052. "compare them with the original file to ensure data integrity. <br /> Click "
  7053. "'Continue' below to start the flash procedure."
  7054. msgstr ""
  7055. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:249
  7056. msgid "The following rules are currently active on this system."
  7057. msgstr ""
  7058. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/heartbeat.js:8
  7059. msgid "The frequency is in direct proportion to 1-minute average CPU load."
  7060. msgstr ""
  7061. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:154
  7062. msgid "The gateway address must not be a local IP address"
  7063. msgstr ""
  7064. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:757
  7065. msgid ""
  7066. "The generated configuration can be imported into a WireGuard client "
  7067. "application to set up a connection towards this device."
  7068. msgstr ""
  7069. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:172
  7070. msgid "The given SSH public key has already been added."
  7071. msgstr ""
  7072. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:178
  7073. msgid ""
  7074. "The given SSH public key is invalid. Please supply proper public RSA, "
  7075. "ED25519 or ECDSA keys."
  7076. msgstr ""
  7077. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:800
  7078. msgid "The hardware address(es) of this entry/host, separated by spaces."
  7079. msgstr ""
  7080. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:93
  7081. msgid ""
  7082. "The hop penalty setting allows to modify batman-adv's preference for "
  7083. "multihop routes vs. short routes. The value is applied to the TQ of each "
  7084. "forwarded OGM, thereby propagating the cost of an extra hop (the packet has "
  7085. "to be received and retransmitted which costs airtime)"
  7086. msgstr ""
  7087. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:600
  7088. msgid "The hostname of the boot server"
  7089. msgstr ""
  7090. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:28
  7091. msgid "The interface could not be found"
  7092. msgstr ""
  7093. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1169
  7094. msgid "The interface name is already used"
  7095. msgstr ""
  7096. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1175
  7097. msgid "The interface name is too long"
  7098. msgstr ""
  7099. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:61
  7100. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:55
  7101. msgid ""
  7102. "The length of the IPv4 prefix in bits, the remainder is used in the IPv6 "
  7103. "addresses."
  7104. msgstr ""
  7105. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:57
  7106. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:63
  7107. msgid "The length of the IPv6 prefix in bits"
  7108. msgstr ""
  7109. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:165
  7110. msgid "The local IPv4 address"
  7111. msgstr ""
  7112. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:46
  7113. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:46
  7114. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:44
  7115. #: protocols/luci-proto-vti/htdocs/luci-static/resources/protocol/vti.js:44
  7116. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:44
  7117. msgid "The local IPv4 address over which the tunnel is created (optional)."
  7118. msgstr ""
  7119. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:171
  7120. msgid "The local IPv4 netmask"
  7121. msgstr ""
  7122. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:46
  7123. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:53
  7124. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:44
  7125. msgid "The local IPv6 address over which the tunnel is created (optional)."
  7126. msgstr ""
  7127. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:629
  7128. msgid ""
  7129. "The max response time in centiseconds inserted into group-specific queries "
  7130. "sent in response to leave group messages. It is also the amount of time "
  7131. "between group-specific query messages. This value may be tuned to modify the "
  7132. "\"leave latency\" of the network. A reduced value results in reduced time to "
  7133. "detect the loss of the last member of a group"
  7134. msgstr ""
  7135. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:615
  7136. msgid ""
  7137. "The max response time in centiseconds inserted into the periodic general "
  7138. "queries. By varying the value, an administrator may tune the burstiness of "
  7139. "IGMP messages on the subnet; larger values make the traffic less bursty, as "
  7140. "host responses are spread out over a larger interval"
  7141. msgstr ""
  7142. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:905
  7143. msgid ""
  7144. "The maximum hops to be published in <abbr title=\"Router Advertisement\">RA</"
  7145. "abbr> messages. Maximum is 255 hops."
  7146. msgstr ""
  7147. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4699
  7148. msgid ""
  7149. "The network access to this device could be interrupted by changing settings "
  7150. "of the \"%h\" interface."
  7151. msgstr ""
  7152. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2110
  7153. msgid "The network name is already used"
  7154. msgstr ""
  7155. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:139
  7156. msgid ""
  7157. "The network ports on this device can be combined to several <abbr "
  7158. "title=\"Virtual Local Area Network\">VLAN</abbr>s in which computers can "
  7159. "communicate directly with each other. <abbr title=\"Virtual Local Area "
  7160. "Network\">VLAN</abbr>s are often used to separate different network "
  7161. "segments. Often there is by default one Uplink port for a connection to the "
  7162. "next greater network like the internet and other ports for a local network."
  7163. msgstr ""
  7164. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:776
  7165. msgid ""
  7166. "The public hostname or IP address of this system the peer should connect to. "
  7167. "This usually is a static public IP address, a static hostname or a DDNS "
  7168. "domain."
  7169. msgstr ""
  7170. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:623
  7171. msgid "The query response interval must be lower than the query interval value"
  7172. msgstr ""
  7173. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:158
  7174. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:42
  7175. msgid "The reboot command failed with code %d"
  7176. msgstr ""
  7177. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:147
  7178. msgid "The restore command failed with code %d"
  7179. msgstr ""
  7180. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:605
  7181. msgid ""
  7182. "The robustness value allows tuning for the expected packet loss on the "
  7183. "network. If a network is expected to be lossy, the robustness value may be "
  7184. "increased. IGMP is robust to (Robustness-1) packet losses"
  7185. msgstr ""
  7186. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:172
  7187. msgid ""
  7188. "The rule target is a jump to another rule specified by its priority value"
  7189. msgstr ""
  7190. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:92
  7191. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:167
  7192. msgid ""
  7193. "The rule target is a table lookup ID: a numeric table index ranging from 0 "
  7194. "to 65535 or symbol alias declared in /etc/iproute2/rt_tables. Special "
  7195. "aliases local (255), main (254) and default (253) are also valid"
  7196. msgstr ""
  7197. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1378
  7198. msgid "The selected %s mode is incompatible with %s encryption"
  7199. msgstr ""
  7200. #: modules/luci-base/ucode/template/csrftoken.ut:11
  7201. msgid "The submitted security token is invalid or already expired!"
  7202. msgstr ""
  7203. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:98
  7204. msgid ""
  7205. "The system is erasing the configuration partition now and will reboot itself "
  7206. "when finished."
  7207. msgstr ""
  7208. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:320
  7209. msgid ""
  7210. "The system is flashing now.<br /> DO NOT POWER OFF THE DEVICE!<br /> Wait a "
  7211. "few minutes before you try to reconnect. It might be necessary to renew the "
  7212. "address of your computer to reach the device again, depending on your "
  7213. "settings."
  7214. msgstr ""
  7215. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:163
  7216. msgid ""
  7217. "The system is rebooting now. If the restored configuration changed the "
  7218. "current LAN IP address, you might need to reconnect manually."
  7219. msgstr ""
  7220. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:85
  7221. msgid "The system password has been successfully changed."
  7222. msgstr ""
  7223. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:345
  7224. msgid "The sysupgrade command failed with code %d"
  7225. msgstr ""
  7226. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:773
  7227. msgid ""
  7228. "The tag construct filters which host directives are used; more than one tag "
  7229. "can be provided, in this case the request must match all of them. Tagged "
  7230. "directives are used in preference to untagged ones. Note that one of mac, "
  7231. "duid or hostname still needs to be specified (can be a wildcard)."
  7232. msgstr ""
  7233. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:120
  7234. msgid ""
  7235. "The uploaded backup archive appears to be valid and contains the files "
  7236. "listed below. Press \"Continue\" to restore the backup and reboot, or "
  7237. "\"Cancel\" to abort the operation."
  7238. msgstr ""
  7239. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:115
  7240. msgid "The uploaded backup archive is not readable"
  7241. msgstr ""
  7242. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:249
  7243. msgid "The uploaded firmware does not allow keeping current configuration."
  7244. msgstr ""
  7245. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:244
  7246. msgid ""
  7247. "The uploaded image file does not contain a supported format. Make sure that "
  7248. "you choose the generic image format for your platform."
  7249. msgstr ""
  7250. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1515
  7251. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1527
  7252. msgid "The value is overridden by configuration."
  7253. msgstr ""
  7254. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:56
  7255. msgid ""
  7256. "The value specifies the interval (milliseconds) in which batman-adv floods "
  7257. "the network with its protocol information."
  7258. msgstr ""
  7259. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:678
  7260. msgid ""
  7261. "There are legacy iptables rules present on the system. Mixing iptables and "
  7262. "nftables rules is discouraged and may lead to incomplete traffic filtering."
  7263. msgstr ""
  7264. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:985
  7265. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1017
  7266. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:130
  7267. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:179
  7268. msgid "There are no active leases"
  7269. msgstr ""
  7270. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4731
  7271. msgid "There are no changes to apply"
  7272. msgstr ""
  7273. #: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:58
  7274. #: themes/luci-theme-material/ucode/template/themes/material/header.ut:78
  7275. #: themes/luci-theme-librecmc-2020/ucode/template/themes/librecmc2020/header.ut:55
  7276. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:80
  7277. msgid ""
  7278. "There is no password set on this router. Please configure a root password to "
  7279. "protect the web interface."
  7280. msgstr ""
  7281. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:49
  7282. msgid "This IPv4 address of the relay"
  7283. msgstr ""
  7284. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1722
  7285. msgid "This authentication type is not applicable to the selected EAP method."
  7286. msgstr ""
  7287. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:58
  7288. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:56
  7289. msgid "This does not look like a valid PEM file"
  7290. msgstr ""
  7291. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:454
  7292. msgid ""
  7293. "This is a list of shell glob patterns for matching files and directories to "
  7294. "include during sysupgrade. Modified files in /etc/config/ and certain other "
  7295. "configurations are automatically preserved."
  7296. msgstr ""
  7297. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:81
  7298. msgid ""
  7299. "This is either the \"Update Key\" configured for the tunnel or the account "
  7300. "password if no update key has been configured"
  7301. msgstr ""
  7302. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv_hardif.js:42
  7303. msgid ""
  7304. "This is the batman-adv device where you want to link the physical Device "
  7305. "from above to. If this list is empty, then you need to create one first. If "
  7306. "you want to route mesh traffic over a wired network device, then please "
  7307. "select it from the above Device selector. If you want to assign the batman-"
  7308. "adv interface to a Wi-fi mesh then do not select a Device in the Device "
  7309. "selector but rather go to the Wireless settings and select this Interface as "
  7310. "a network from there."
  7311. msgstr ""
  7312. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:116
  7313. msgid ""
  7314. "This is the content of /etc/rc.local. Insert your own commands here (in "
  7315. "front of 'exit 0') to execute them at the end of the boot process."
  7316. msgstr ""
  7317. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:54
  7318. msgid ""
  7319. "This is the local endpoint address assigned by the tunnel broker, it usually "
  7320. "ends with <code>...:2/64</code>"
  7321. msgstr ""
  7322. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:274
  7323. msgid "This is the only DHCP server in the local network."
  7324. msgstr ""
  7325. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:73
  7326. msgid "This is the plain username for logging into the account"
  7327. msgstr ""
  7328. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:57
  7329. msgid ""
  7330. "This is the prefix routed to you by the tunnel broker for use by clients"
  7331. msgstr ""
  7332. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/crontab.js:29
  7333. msgid "This is the system crontab in which scheduled tasks can be defined."
  7334. msgstr ""
  7335. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:50
  7336. msgid ""
  7337. "This is usually the address of the nearest PoP operated by the tunnel broker"
  7338. msgstr ""
  7339. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:65
  7340. msgid ""
  7341. "This list gives an overview over currently running system processes and "
  7342. "their status."
  7343. msgstr ""
  7344. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1676
  7345. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1734
  7346. msgid ""
  7347. "This option cannot be used because the ca-bundle package is not installed."
  7348. msgstr ""
  7349. #: modules/luci-base/htdocs/luci-static/resources/form.js:2280
  7350. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:172
  7351. #: modules/luci-compat/luasrc/view/cbi/tsection.htm:32
  7352. msgid "This section contains no values yet"
  7353. msgstr ""
  7354. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:124
  7355. msgid "Time Synchronization"
  7356. msgstr ""
  7357. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1629
  7358. msgid "Time advertisement"
  7359. msgstr ""
  7360. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:713
  7361. msgid "Time in milliseconds"
  7362. msgstr ""
  7363. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:581
  7364. msgid "Time in seconds to spend in listening and learning states"
  7365. msgstr ""
  7366. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1174
  7367. msgid "Time interval for rekeying GTK"
  7368. msgstr ""
  7369. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1638
  7370. msgid "Time zone"
  7371. msgstr ""
  7372. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:15
  7373. msgid "Timed-out"
  7374. msgstr ""
  7375. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:717
  7376. msgid "Timeout in seconds"
  7377. msgstr ""
  7378. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:567
  7379. msgid "Timeout in seconds for learned MAC addresses in the forwarding database"
  7380. msgstr ""
  7381. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:586
  7382. msgid "Timeout in seconds until topology updates on link loss"
  7383. msgstr ""
  7384. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:145
  7385. msgid "Timezone"
  7386. msgstr ""
  7387. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:438
  7388. msgid ""
  7389. "To fully configure the local WireGuard interface from an existing (e.g. "
  7390. "provider supplied) configuration file, use the <strong><a class=\"full-"
  7391. "import\" href=\"#\">configuration import</a></strong> instead."
  7392. msgstr ""
  7393. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:400
  7394. msgid ""
  7395. "To restore configuration files, you can upload a previously generated backup "
  7396. "archive here. To reset the firmware to its initial state, click \"Perform "
  7397. "reset\" (only possible with squashfs images)."
  7398. msgstr ""
  7399. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1569
  7400. msgid "Tone"
  7401. msgstr ""
  7402. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:35
  7403. msgid "Total Available"
  7404. msgstr ""
  7405. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:110
  7406. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:111
  7407. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:121
  7408. msgid "Traceroute"
  7409. msgstr ""
  7410. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:126
  7411. msgid "Tracking Area Code"
  7412. msgstr ""
  7413. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:54
  7414. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:65
  7415. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:139
  7416. msgid "Traffic"
  7417. msgstr ""
  7418. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:79
  7419. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:84
  7420. msgid "Traffic Class"
  7421. msgstr ""
  7422. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:528
  7423. msgid "Traffic filter chain \"%h\""
  7424. msgstr ""
  7425. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:466
  7426. msgctxt "nft counter"
  7427. msgid "Traffic matched by rule: %.1000mPackets, %.1024mBytes"
  7428. msgstr ""
  7429. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:387
  7430. msgid "Transfer"
  7431. msgstr ""
  7432. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:25
  7433. msgid "Transmit"
  7434. msgstr ""
  7435. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:319
  7436. msgid "Transmit Hash Policy"
  7437. msgstr ""
  7438. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:248
  7439. msgid "Transmit dropped"
  7440. msgstr ""
  7441. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:247
  7442. msgid "Transmit errors"
  7443. msgstr ""
  7444. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:58
  7445. msgid "Transmitted Data"
  7446. msgstr ""
  7447. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:245
  7448. msgid "Transmitted bytes"
  7449. msgstr ""
  7450. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:246
  7451. msgid "Transmitted packets"
  7452. msgstr ""
  7453. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:79
  7454. msgctxt "nft @th,off,len"
  7455. msgid "Transport header bits %d-%d"
  7456. msgstr ""
  7457. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:59
  7458. msgctxt "nft th dport"
  7459. msgid "Transport header destination port"
  7460. msgstr ""
  7461. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:58
  7462. msgctxt "nft th sport"
  7463. msgid "Transport header source port"
  7464. msgstr ""
  7465. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:75
  7466. msgid "Trigger"
  7467. msgstr ""
  7468. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:20
  7469. msgid "Trigger Mode"
  7470. msgstr ""
  7471. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:69
  7472. msgid "Tunnel ID"
  7473. msgstr ""
  7474. #: modules/luci-base/htdocs/luci-static/resources/network.js:3005
  7475. #: modules/luci-compat/luasrc/model/network.lua:1431
  7476. msgid "Tunnel Interface"
  7477. msgstr ""
  7478. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:44
  7479. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:55
  7480. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:76
  7481. msgid "Tunnel Link"
  7482. msgstr ""
  7483. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1472
  7484. msgid "Tunnel device"
  7485. msgstr ""
  7486. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:185
  7487. msgid "Tx-Power"
  7488. msgstr ""
  7489. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:45
  7490. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1503
  7491. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:169
  7492. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:43
  7493. msgid "Type"
  7494. msgstr ""
  7495. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:182
  7496. msgid "Type of service"
  7497. msgstr ""
  7498. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:56
  7499. msgctxt "nft udp dport"
  7500. msgid "UDP destination port"
  7501. msgstr ""
  7502. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:55
  7503. msgctxt "nft udp sport"
  7504. msgid "UDP source port"
  7505. msgstr ""
  7506. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:328
  7507. msgid "UDP:"
  7508. msgstr ""
  7509. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:91
  7510. msgid "UMTS only"
  7511. msgstr ""
  7512. #: modules/luci-compat/luasrc/model/network/proto_3g.lua:10
  7513. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:43
  7514. msgid "UMTS/GPRS/EV-DO"
  7515. msgstr ""
  7516. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:255
  7517. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:361
  7518. msgid "UUID"
  7519. msgstr ""
  7520. #: modules/luci-base/htdocs/luci-static/resources/network.js:16
  7521. #: modules/luci-base/htdocs/luci-static/resources/network.js:17
  7522. #: modules/luci-compat/luasrc/model/network.lua:34
  7523. #: modules/luci-compat/luasrc/model/network.lua:35
  7524. msgid "Unable to determine device name"
  7525. msgstr ""
  7526. #: modules/luci-base/htdocs/luci-static/resources/network.js:18
  7527. #: modules/luci-compat/luasrc/model/network.lua:36
  7528. msgid "Unable to determine external IP address"
  7529. msgstr ""
  7530. #: modules/luci-base/htdocs/luci-static/resources/network.js:19
  7531. #: modules/luci-compat/luasrc/model/network.lua:37
  7532. msgid "Unable to determine upstream interface"
  7533. msgstr ""
  7534. #: modules/luci-base/ucode/template/error404.ut:12
  7535. msgid "Unable to dispatch"
  7536. msgstr ""
  7537. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:85
  7538. msgid "Unable to generate QR code: %s"
  7539. msgstr ""
  7540. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/dmesg.js:9
  7541. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/syslog.js:15
  7542. msgid "Unable to load log data:"
  7543. msgstr ""
  7544. #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:54
  7545. #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:54
  7546. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:22
  7547. msgid "Unable to obtain client ID"
  7548. msgstr ""
  7549. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:221
  7550. msgid "Unable to obtain mount information"
  7551. msgstr ""
  7552. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:307
  7553. msgid "Unable to reset ip6tables counters: %s"
  7554. msgstr ""
  7555. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:305
  7556. msgid "Unable to reset iptables counters: %s"
  7557. msgstr ""
  7558. #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:61
  7559. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:7
  7560. msgid "Unable to resolve AFTR host name"
  7561. msgstr ""
  7562. #: modules/luci-base/htdocs/luci-static/resources/network.js:20
  7563. #: modules/luci-compat/luasrc/model/network.lua:38
  7564. msgid "Unable to resolve peer host name"
  7565. msgstr ""
  7566. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:313
  7567. msgid "Unable to restart firewall: %s"
  7568. msgstr ""
  7569. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/crontab.js:22
  7570. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:370
  7571. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:57
  7572. msgid "Unable to save contents: %s"
  7573. msgstr ""
  7574. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:14
  7575. msgid "Unable to set allowed mode list."
  7576. msgstr ""
  7577. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:17
  7578. msgid "Unable to set preferred mode."
  7579. msgstr ""
  7580. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:29
  7581. msgid "Unable to verify PIN"
  7582. msgstr ""
  7583. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1360
  7584. msgid "Unconfigure"
  7585. msgstr ""
  7586. #: protocols/luci-proto-unet/htdocs/luci-static/resources/protocol/unet.js:8
  7587. msgid "Unet"
  7588. msgstr ""
  7589. #: modules/luci-base/htdocs/luci-static/resources/fs.js:102
  7590. msgid "Unexpected reply data format"
  7591. msgstr ""
  7592. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1535
  7593. msgid ""
  7594. "Unique Local Address - in the range <code>fc00::/7</code>. Typically only "
  7595. "within the &#8216;local&#8217; half <code>fd00::/8</code>. ULA for IPv6 is "
  7596. "analogous to IPv4 private network addressing. This prefix is randomly "
  7597. "generated at first install."
  7598. msgstr ""
  7599. #: modules/luci-base/htdocs/luci-static/resources/network.js:2092
  7600. #: modules/luci-compat/luasrc/model/network.lua:971
  7601. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:17
  7602. msgid "Unknown"
  7603. msgstr ""
  7604. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:12
  7605. msgid "Unknown and unsupported connection method."
  7606. msgstr ""
  7607. #: modules/luci-base/htdocs/luci-static/resources/network.js:2401
  7608. #: modules/luci-compat/luasrc/model/network.lua:1138
  7609. msgid "Unknown error (%s)"
  7610. msgstr ""
  7611. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:412
  7612. msgid "Unknown error code"
  7613. msgstr ""
  7614. #: modules/luci-base/htdocs/luci-static/resources/network.js:2089
  7615. #: modules/luci-base/htdocs/luci-static/resources/protocol/none.js:6
  7616. #: modules/luci-compat/luasrc/model/network.lua:965
  7617. msgid "Unmanaged"
  7618. msgstr ""
  7619. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:195
  7620. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:217
  7621. msgid "Unmount"
  7622. msgstr ""
  7623. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:121
  7624. msgid "Unnamed key"
  7625. msgstr ""
  7626. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4381
  7627. msgid "Unsaved Changes"
  7628. msgstr ""
  7629. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:410
  7630. msgid "Unspecified error"
  7631. msgstr ""
  7632. #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:64
  7633. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:9
  7634. msgid "Unsupported MAP type"
  7635. msgstr ""
  7636. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:69
  7637. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:31
  7638. msgid "Unsupported modem"
  7639. msgstr ""
  7640. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:112
  7641. msgid "Unsupported protocol"
  7642. msgstr ""
  7643. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:316
  7644. msgid "Unsupported protocol type."
  7645. msgstr ""
  7646. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:215
  7647. msgctxt "VLAN port state"
  7648. msgid "Untagged"
  7649. msgstr ""
  7650. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:532
  7651. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:97
  7652. msgid "Untitled peer"
  7653. msgstr ""
  7654. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:151
  7655. msgid "Up"
  7656. msgstr ""
  7657. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:411
  7658. msgid "Up Delay"
  7659. msgstr ""
  7660. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4268
  7661. msgid "Upload"
  7662. msgstr ""
  7663. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:441
  7664. msgid ""
  7665. "Upload a sysupgrade-compatible image here to replace the running firmware."
  7666. msgstr ""
  7667. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:138
  7668. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:169
  7669. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:412
  7670. msgid "Upload archive..."
  7671. msgstr ""
  7672. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2875
  7673. msgid "Upload file"
  7674. msgstr ""
  7675. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2850
  7676. msgid "Upload file…"
  7677. msgstr ""
  7678. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4214
  7679. msgid "Upload has been cancelled"
  7680. msgstr ""
  7681. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2797
  7682. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4256
  7683. msgid "Upload request failed: %s"
  7684. msgstr ""
  7685. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4175
  7686. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4229
  7687. msgid "Uploading file…"
  7688. msgstr ""
  7689. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:789
  7690. msgid ""
  7691. "Upon pressing \"Continue\", anonymous \"wifi-iface\" sections will be "
  7692. "assigned with a name in the form <em>wifinet#</em> and the network will be "
  7693. "restarted to apply the updated configuration."
  7694. msgstr ""
  7695. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:411
  7696. msgid ""
  7697. "Upon pressing \"Continue\", bridges configuration will be updated and the "
  7698. "network will be restarted to apply the updated configuration."
  7699. msgstr ""
  7700. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:445
  7701. msgid ""
  7702. "Upon pressing \"Continue\", ifname options will get renamed and the network "
  7703. "will be restarted to apply the updated configuration."
  7704. msgstr ""
  7705. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:509
  7706. msgid "Upstream resolvers will be queried in the order of the resolv file."
  7707. msgstr ""
  7708. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:82
  7709. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:62
  7710. msgid "Uptime"
  7711. msgstr ""
  7712. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:419
  7713. msgid "Use <code>/etc/ethers</code>"
  7714. msgstr ""
  7715. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:106
  7716. msgid "Use DHCP"
  7717. msgstr ""
  7718. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:295
  7719. msgid "Use DHCP advertised servers"
  7720. msgstr ""
  7721. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:167
  7722. msgid "Use DHCP gateway"
  7723. msgstr ""
  7724. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:115
  7725. msgid "Use DHCPv6"
  7726. msgstr ""
  7727. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:999
  7728. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:144
  7729. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:160
  7730. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:132
  7731. msgid "Use DNS servers advertised by peer"
  7732. msgstr ""
  7733. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:616
  7734. msgid "Use ISO/IEC 3166 alpha2 country codes."
  7735. msgstr ""
  7736. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:48
  7737. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:89
  7738. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:69
  7739. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6to4.js:53
  7740. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:67
  7741. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:84
  7742. msgid "Use MTU on tunnel interface"
  7743. msgstr ""
  7744. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:85
  7745. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:65
  7746. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6to4.js:49
  7747. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:80
  7748. msgid "Use TTL on tunnel interface"
  7749. msgstr ""
  7750. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:322
  7751. msgid "Use XOR of hardware MAC addresses (layer2)"
  7752. msgstr ""
  7753. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:323
  7754. msgid "Use XOR of hardware MAC addresses and IP addresses (layer2+3)"
  7755. msgstr ""
  7756. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:325
  7757. msgid ""
  7758. "Use XOR of hardware MAC addresses and IP addresses, rely on skb_flow_dissect "
  7759. "(encap2+3)"
  7760. msgstr ""
  7761. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:295
  7762. msgid "Use as external overlay (/overlay)"
  7763. msgstr ""
  7764. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:294
  7765. msgid "Use as root filesystem (/)"
  7766. msgstr ""
  7767. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34
  7768. msgid "Use broadcast flag"
  7769. msgstr ""
  7770. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1295
  7771. msgid "Use builtin IPv6-management"
  7772. msgstr ""
  7773. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1003
  7774. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:148
  7775. msgid "Use custom DNS servers"
  7776. msgstr ""
  7777. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:995
  7778. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:133
  7779. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:156
  7780. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:121
  7781. msgid "Use default gateway"
  7782. msgstr ""
  7783. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1017
  7784. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:138
  7785. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:164
  7786. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:126
  7787. msgid "Use gateway metric"
  7788. msgstr ""
  7789. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:88
  7790. msgid "Use legacy MAP"
  7791. msgstr ""
  7792. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:88
  7793. msgid ""
  7794. "Use legacy MAP interface identifier format (draft-ietf-softwire-map-00) "
  7795. "instead of RFC7597"
  7796. msgstr ""
  7797. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:179
  7798. msgid "Use routing table"
  7799. msgstr ""
  7800. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:63
  7801. msgctxt "nft nat flag persistent"
  7802. msgid "Use same source and destination for each connection"
  7803. msgstr ""
  7804. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1669
  7805. msgid "Use system certificates"
  7806. msgstr ""
  7807. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1727
  7808. msgid "Use system certificates for inner-tunnel"
  7809. msgstr ""
  7810. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:772
  7811. msgid ""
  7812. "Use the <em>Add</em> Button to add a new lease entry. The <em>MAC address</"
  7813. "em> identifies the host, the <em>IPv4 address</em> specifies the fixed "
  7814. "address to use, and the <em>Hostname</em> is assigned as a symbolic name to "
  7815. "the requesting host. The optional <em>Lease time</em> can be used to set non-"
  7816. "standard host-specific lease time, e.g. 12h, 3d or infinite."
  7817. msgstr ""
  7818. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:324
  7819. msgid "Use upper layer protocol information (layer3+4)"
  7820. msgstr ""
  7821. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:326
  7822. msgid ""
  7823. "Use upper layer protocol information, rely on skb_flow_dissect (encap3+4)"
  7824. msgstr ""
  7825. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:36
  7826. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:194
  7827. msgid "Used"
  7828. msgstr ""
  7829. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1514
  7830. msgid "Used Key Slot"
  7831. msgstr ""
  7832. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1557
  7833. msgid ""
  7834. "Used for two different purposes: RADIUS NAS ID and 802.11r R0KH-ID. Not "
  7835. "needed with normal WPA(2)-PSK."
  7836. msgstr ""
  7837. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:146
  7838. msgid "User Group"
  7839. msgstr ""
  7840. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:158
  7841. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:106
  7842. msgid "User certificate (PEM encoded)"
  7843. msgstr ""
  7844. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:187
  7845. msgid "User identifier"
  7846. msgstr ""
  7847. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:170
  7848. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:118
  7849. msgid "User key (PEM encoded)"
  7850. msgstr ""
  7851. #: modules/luci-base/ucode/template/sysauth.ut:23
  7852. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:147
  7853. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:101
  7854. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:56
  7855. #: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:13
  7856. msgid "Username"
  7857. msgstr ""
  7858. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:131
  7859. msgid "Utilize flow table <strong>%h</strong>"
  7860. msgstr ""
  7861. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1637
  7862. msgid "VC-Mux"
  7863. msgstr ""
  7864. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1585
  7865. msgid "VDSL"
  7866. msgstr ""
  7867. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:489
  7868. msgctxt "MACVLAN mode"
  7869. msgid "VEPA (Virtual Ethernet Port Aggregator)"
  7870. msgstr ""
  7871. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:400
  7872. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1466
  7873. msgid "VLAN (802.1ad)"
  7874. msgstr ""
  7875. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:399
  7876. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1463
  7877. msgid "VLAN (802.1q)"
  7878. msgstr ""
  7879. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:468
  7880. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:923
  7881. msgid "VLAN ID"
  7882. msgstr ""
  7883. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:173
  7884. msgid "VLANs on %q"
  7885. msgstr ""
  7886. #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:54
  7887. msgid "VPN"
  7888. msgstr ""
  7889. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:42
  7890. msgid "VPN Local address"
  7891. msgstr ""
  7892. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:46
  7893. msgid "VPN Local port"
  7894. msgstr ""
  7895. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:97
  7896. msgid "VPN Protocol"
  7897. msgstr ""
  7898. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:103
  7899. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:93
  7900. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:58
  7901. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:39
  7902. msgid "VPN Server"
  7903. msgstr ""
  7904. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:152
  7905. msgid "VPN Server certificate's SHA256 hash"
  7906. msgstr ""
  7907. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:140
  7908. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:96
  7909. msgid "VPN Server port"
  7910. msgstr ""
  7911. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:144
  7912. msgid "VPN Server's certificate SHA1 hash"
  7913. msgstr ""
  7914. #: modules/luci-compat/luasrc/model/network/proto_vpnc.lua:9
  7915. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:9
  7916. msgid "VPNC (CISCO 3000 (and others) VPN)"
  7917. msgstr ""
  7918. #: protocols/luci-proto-vti/htdocs/luci-static/resources/protocol/vti.js:10
  7919. msgid "VTI"
  7920. msgstr ""
  7921. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:10
  7922. msgid "VXLAN (RFC7348)"
  7923. msgstr ""
  7924. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:53
  7925. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:48
  7926. msgid "VXLAN network identifier"
  7927. msgstr ""
  7928. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:10
  7929. msgid "VXLANv6 (RFC7348)"
  7930. msgstr ""
  7931. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:484
  7932. msgid ""
  7933. "Validate DNS replies and cache DNSSEC data, requires upstream to support "
  7934. "DNSSEC."
  7935. msgstr ""
  7936. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1669
  7937. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1727
  7938. msgid ""
  7939. "Validate server certificate using built-in system CA bundle,<br />requires "
  7940. "the \"ca-bundle\" package"
  7941. msgstr ""
  7942. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:388
  7943. msgid "Validation for all slaves"
  7944. msgstr ""
  7945. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:386
  7946. msgid "Validation only for active slave"
  7947. msgstr ""
  7948. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:387
  7949. msgid "Validation only for backup slaves"
  7950. msgstr ""
  7951. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:73
  7952. msgid "Vendor"
  7953. msgstr ""
  7954. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:40
  7955. msgid "Vendor Class to send when requesting DHCP"
  7956. msgstr ""
  7957. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:489
  7958. msgid "Verify unsigned domain responses really come from unsigned domains."
  7959. msgstr ""
  7960. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:196
  7961. msgid "Verifying the uploaded image file."
  7962. msgstr ""
  7963. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:951
  7964. msgid "Very High"
  7965. msgstr ""
  7966. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:402
  7967. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1478
  7968. msgid "Virtual Ethernet"
  7969. msgstr ""
  7970. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:60
  7971. msgid "Virtual dynamic interface"
  7972. msgstr ""
  7973. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1101
  7974. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1102
  7975. msgid "WDS"
  7976. msgstr ""
  7977. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1298
  7978. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1387
  7979. msgid "WEP Open System"
  7980. msgstr ""
  7981. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1299
  7982. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1388
  7983. msgid "WEP Shared Key"
  7984. msgstr ""
  7985. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2119
  7986. msgid "WEP passphrase"
  7987. msgstr ""
  7988. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:983
  7989. msgid "WLAN roaming"
  7990. msgstr ""
  7991. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1139
  7992. msgid "WMM Mode"
  7993. msgstr ""
  7994. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1642
  7995. msgid "WNM Sleep Mode"
  7996. msgstr ""
  7997. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1646
  7998. msgid "WNM Sleep Mode Fixes"
  7999. msgstr ""
  8000. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2119
  8001. msgid "WPA passphrase"
  8002. msgstr ""
  8003. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1289
  8004. msgid ""
  8005. "WPA-Encryption requires wpa_supplicant (for client mode) or hostapd (for AP "
  8006. "and ad-hoc mode) to be installed."
  8007. msgstr ""
  8008. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:153
  8009. msgid "WPS status"
  8010. msgstr ""
  8011. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:47
  8012. msgid "Waiting for device..."
  8013. msgstr ""
  8014. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:189
  8015. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:199
  8016. msgid "Warning"
  8017. msgstr ""
  8018. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:26
  8019. msgid "Warning: There are unsaved changes that will get lost on reboot!"
  8020. msgstr ""
  8021. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:37
  8022. msgid "Weak"
  8023. msgstr ""
  8024. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:670
  8025. msgid "Weight"
  8026. msgstr ""
  8027. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:921
  8028. msgid ""
  8029. "When a host matches an entry then the special tag <em>known</em> is set. Use "
  8030. "<em>known</em> to match all known hosts."
  8031. msgstr ""
  8032. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1088
  8033. msgid ""
  8034. "When delegating prefixes to multiple downstreams, interfaces with a higher "
  8035. "preference value are considered first when allocating subnets."
  8036. msgstr ""
  8037. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:105
  8038. msgid ""
  8039. "When enabled network coding increases the WiFi throughput by combining "
  8040. "multiple frames into a single frame, thus reducing the needed air time."
  8041. msgstr ""
  8042. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:76
  8043. msgid ""
  8044. "When enabled the distributed ARP table forms a mesh-wide ARP cache that "
  8045. "helps non-mesh clients to get ARP responses much more reliably and without "
  8046. "much delay."
  8047. msgstr ""
  8048. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:110
  8049. msgid ""
  8050. "When enabled, gateway is on-link even if the gateway does not match any "
  8051. "interface prefix"
  8052. msgstr ""
  8053. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:707
  8054. msgid ""
  8055. "When enabled, new ARP table entries are added from received gratuitous APR "
  8056. "requests or replies, otherwise only preexisting table entries are updated, "
  8057. "but no new hosts are learned."
  8058. msgstr ""
  8059. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/heartbeat.js:14
  8060. msgid ""
  8061. "When inverted, the LED is continuously lit and flickers instead of it being "
  8062. "off by default and blinking on system activity."
  8063. msgstr ""
  8064. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:66
  8065. msgid ""
  8066. "When running the mesh over multiple WiFi interfaces per node batman-adv is "
  8067. "capable of optimizing the traffic flow to gain maximum performance."
  8068. msgstr ""
  8069. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1580
  8070. msgid ""
  8071. "When using a PSK, the PMK can be automatically generated. When enabled, the "
  8072. "R0/R1 key options below are not applied. Disable this to use the R0 and R1 "
  8073. "key options."
  8074. msgstr ""
  8075. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1139
  8076. msgid ""
  8077. "Where Wi-Fi Multimedia (WMM) Mode QoS is disabled, clients may be limited to "
  8078. "802.11a/802.11g rates."
  8079. msgstr ""
  8080. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1135
  8081. msgid ""
  8082. "Where the ESSID is hidden, clients may fail to roam and airtime efficiency "
  8083. "may be significantly reduced."
  8084. msgstr ""
  8085. #: modules/luci-compat/luasrc/view/cbi/wireless_modefreq.htm:166
  8086. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:513
  8087. msgid "Width"
  8088. msgstr ""
  8089. #: protocols/luci-proto-wireguard/root/usr/share/luci/menu.d/luci-proto-wireguard.json:3
  8090. msgid "WireGuard"
  8091. msgstr ""
  8092. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:120
  8093. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:165
  8094. msgid "WireGuard Status"
  8095. msgstr ""
  8096. #: modules/luci-compat/luasrc/model/network/proto_wireguard.lua:9
  8097. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:119
  8098. msgid "WireGuard VPN"
  8099. msgstr ""
  8100. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:539
  8101. msgid "WireGuard peer is disabled"
  8102. msgstr ""
  8103. #: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:17
  8104. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:10
  8105. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:148
  8106. msgid "Wireless"
  8107. msgstr ""
  8108. #: modules/luci-base/htdocs/luci-static/resources/network.js:2992
  8109. #: modules/luci-compat/luasrc/model/network.lua:1419
  8110. msgid "Wireless Adapter"
  8111. msgstr ""
  8112. #: modules/luci-base/htdocs/luci-static/resources/network.js:2971
  8113. #: modules/luci-base/htdocs/luci-static/resources/network.js:4276
  8114. #: modules/luci-compat/luasrc/model/network.lua:1405
  8115. #: modules/luci-compat/luasrc/model/network.lua:1868
  8116. msgid "Wireless Network"
  8117. msgstr ""
  8118. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:805
  8119. msgid "Wireless Overview"
  8120. msgstr ""
  8121. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:980
  8122. msgid "Wireless Security"
  8123. msgstr ""
  8124. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:787
  8125. msgid "Wireless configuration migration"
  8126. msgstr ""
  8127. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:153
  8128. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:193
  8129. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:152
  8130. msgid "Wireless is disabled"
  8131. msgstr ""
  8132. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:153
  8133. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:193
  8134. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:152
  8135. msgid "Wireless is not associated"
  8136. msgstr ""
  8137. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:929
  8138. msgid "Wireless network is disabled"
  8139. msgstr ""
  8140. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:929
  8141. msgid "Wireless network is enabled"
  8142. msgstr ""
  8143. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:286
  8144. msgid "Write received DNS queries to syslog."
  8145. msgstr ""
  8146. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:181
  8147. msgid "Write system log to file"
  8148. msgstr ""
  8149. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:206
  8150. msgid "XOR policy (balance-xor, 2)"
  8151. msgstr ""
  8152. #: modules/luci-base/htdocs/luci-static/resources/form.js:4094
  8153. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:297
  8154. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:345
  8155. msgid "Yes"
  8156. msgstr ""
  8157. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:305
  8158. msgid "Yes (none, 0)"
  8159. msgstr ""
  8160. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:177
  8161. msgid ""
  8162. "You appear to be currently connected to the device via the \"%h\" interface. "
  8163. "Do you really want to shut down the interface?"
  8164. msgstr ""
  8165. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:112
  8166. msgid ""
  8167. "You can enable or disable installed init scripts here. Changes will applied "
  8168. "after a device reboot.<br /><strong>Warning: If you disable essential init "
  8169. "scripts like \"network\", your device might become inaccessible!</strong>"
  8170. msgstr ""
  8171. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:640
  8172. msgid "You may add multiple records for the same Target."
  8173. msgstr ""
  8174. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:677
  8175. msgid "You may add multiple records for the same domain."
  8176. msgstr ""
  8177. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:357
  8178. msgid "You may add multiple unique Relay To on the same Listen addr."
  8179. msgstr ""
  8180. #: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:78
  8181. #: themes/luci-theme-material/ucode/template/themes/material/header.ut:98
  8182. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:73
  8183. msgid ""
  8184. "You must enable JavaScript in your browser or LuCI will not work properly."
  8185. msgstr ""
  8186. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:117
  8187. msgid ""
  8188. "You must select a primary interface which is included in selected slave "
  8189. "interfaces!"
  8190. msgstr ""
  8191. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:98
  8192. msgid ""
  8193. "You must select at least one ARP IP target if ARP monitoring is selected!"
  8194. msgstr ""
  8195. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:213
  8196. msgid "ZRam Compression Algorithm"
  8197. msgstr ""
  8198. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:206
  8199. msgid "ZRam Settings"
  8200. msgstr ""
  8201. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:208
  8202. msgid "ZRam Size"
  8203. msgstr ""
  8204. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:639
  8205. msgid "_proto: _tcp, _udp, _sctp, _quic, … ."
  8206. msgstr ""
  8207. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:638
  8208. msgid ""
  8209. "_service: _sip, _ldap, _imap, _stun, _xmpp-client, … . (Note: while _http is "
  8210. "possible, no browsers support SRV records.)"
  8211. msgstr ""
  8212. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:535
  8213. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:153
  8214. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:164
  8215. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:103
  8216. msgid "any"
  8217. msgstr ""
  8218. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1570
  8219. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1578
  8220. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1583
  8221. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:103
  8222. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:134
  8223. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1238
  8224. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:83
  8225. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:48
  8226. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:51
  8227. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:89
  8228. msgid "auto"
  8229. msgstr ""
  8230. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:157
  8231. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:816
  8232. msgid "automatic"
  8233. msgstr ""
  8234. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:198
  8235. msgid "automatic (disabled)"
  8236. msgstr ""
  8237. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:198
  8238. msgid "automatic (enabled)"
  8239. msgstr ""
  8240. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:82
  8241. msgid "baseT"
  8242. msgstr ""
  8243. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1643
  8244. msgid "bridged"
  8245. msgstr ""
  8246. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:146
  8247. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:406
  8248. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:35
  8249. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:99
  8250. #: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:31
  8251. msgid "create"
  8252. msgstr ""
  8253. #: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:69
  8254. msgid "create:"
  8255. msgstr ""
  8256. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:55
  8257. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:57
  8258. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:58
  8259. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:62
  8260. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:63
  8261. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:83
  8262. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:84
  8263. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:87
  8264. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:185
  8265. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:186
  8266. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:187
  8267. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:41
  8268. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:42
  8269. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:276
  8270. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:278
  8271. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:279
  8272. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:283
  8273. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:284
  8274. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:263
  8275. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:266
  8276. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:269
  8277. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:273
  8278. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:276
  8279. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:279
  8280. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:305
  8281. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:306
  8282. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:307
  8283. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:311
  8284. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:312
  8285. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:313
  8286. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:315
  8287. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:316
  8288. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:317
  8289. msgid "dBm"
  8290. msgstr ""
  8291. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:73
  8292. msgctxt "nft unit"
  8293. msgid "day"
  8294. msgstr ""
  8295. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1082
  8296. msgid "disable"
  8297. msgstr ""
  8298. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:157
  8299. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:681
  8300. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:805
  8301. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:927
  8302. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:963
  8303. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1040
  8304. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:91
  8305. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:25
  8306. msgid "disabled"
  8307. msgstr ""
  8308. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:570
  8309. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:604
  8310. msgid "driver default"
  8311. msgstr ""
  8312. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1162
  8313. msgid "driver default (%s)"
  8314. msgstr ""
  8315. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:66
  8316. msgid "e.g: --proxy 10.10.10.10"
  8317. msgstr ""
  8318. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:68
  8319. msgid "e.g: dump"
  8320. msgstr ""
  8321. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:157
  8322. msgid "enabled"
  8323. msgstr ""
  8324. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:60
  8325. msgctxt "WireGuard keep alive interval"
  8326. msgid "every %ds"
  8327. msgstr ""
  8328. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:965
  8329. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:995
  8330. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:101
  8331. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:148
  8332. msgid "expired"
  8333. msgstr ""
  8334. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:820
  8335. msgid "forced"
  8336. msgstr ""
  8337. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:85
  8338. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:196
  8339. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:61
  8340. msgid "forward"
  8341. msgstr ""
  8342. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:98
  8343. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:84
  8344. msgid "full-duplex"
  8345. msgstr ""
  8346. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:98
  8347. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:84
  8348. msgid "half-duplex"
  8349. msgstr ""
  8350. #: modules/luci-base/htdocs/luci-static/resources/validation.js:593
  8351. msgid "hexadecimal encoded value"
  8352. msgstr ""
  8353. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1914
  8354. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:309
  8355. msgid "hidden"
  8356. msgstr ""
  8357. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:74
  8358. msgctxt "nft unit"
  8359. msgid "hour"
  8360. msgstr ""
  8361. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:811
  8362. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:933
  8363. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:967
  8364. msgid "hybrid mode"
  8365. msgstr ""
  8366. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:63
  8367. msgid "ignore"
  8368. msgstr ""
  8369. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:900
  8370. msgid "infinite (lease does not expire)"
  8371. msgstr ""
  8372. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:69
  8373. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:192
  8374. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:46
  8375. msgid "input"
  8376. msgstr ""
  8377. #: modules/luci-base/htdocs/luci-static/resources/validation.js:410
  8378. msgid "key between 8 and 63 characters"
  8379. msgstr ""
  8380. #: modules/luci-base/htdocs/luci-static/resources/validation.js:422
  8381. msgid "key with either 5 or 13 characters"
  8382. msgstr ""
  8383. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:924
  8384. msgid "known"
  8385. msgstr ""
  8386. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:926
  8387. msgid "known-othernet (on different subnet)"
  8388. msgstr ""
  8389. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:833
  8390. msgid "managed config (M)"
  8391. msgstr ""
  8392. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1397
  8393. msgid "medium security"
  8394. msgstr ""
  8395. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:75
  8396. msgctxt "nft unit"
  8397. msgid "minute"
  8398. msgstr ""
  8399. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1585
  8400. msgid "minutes"
  8401. msgstr ""
  8402. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:837
  8403. msgid "mobile home agent (H)"
  8404. msgstr ""
  8405. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:423
  8406. msgid "netif_carrier_ok()"
  8407. msgstr ""
  8408. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:47
  8409. msgid "no"
  8410. msgstr ""
  8411. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:104
  8412. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:76
  8413. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:232
  8414. msgid "no link"
  8415. msgstr ""
  8416. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1162
  8417. msgid "no override"
  8418. msgstr ""
  8419. #: modules/luci-base/htdocs/luci-static/resources/form.js:2269
  8420. #: modules/luci-base/htdocs/luci-static/resources/validation.js:59
  8421. msgid "non-empty value"
  8422. msgstr ""
  8423. #: modules/luci-base/htdocs/luci-static/resources/form.js:3424
  8424. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:840
  8425. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:39
  8426. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:56
  8427. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:60
  8428. msgid "none"
  8429. msgstr ""
  8430. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:41
  8431. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:55
  8432. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:69
  8433. msgid "not present"
  8434. msgstr ""
  8435. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:349
  8436. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:959
  8437. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:963
  8438. msgid "off"
  8439. msgstr ""
  8440. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:818
  8441. msgid "on available prefix"
  8442. msgstr ""
  8443. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1398
  8444. msgid "open network"
  8445. msgstr ""
  8446. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:835
  8447. msgid "other config (O)"
  8448. msgstr ""
  8449. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:69
  8450. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:46
  8451. msgid "output"
  8452. msgstr ""
  8453. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:28
  8454. msgid "over a day ago"
  8455. msgstr ""
  8456. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:69
  8457. msgctxt "nft unit"
  8458. msgid "packets"
  8459. msgstr ""
  8460. #: modules/luci-base/htdocs/luci-static/resources/validation.js:252
  8461. msgid "positive decimal value"
  8462. msgstr ""
  8463. #: modules/luci-base/htdocs/luci-static/resources/validation.js:244
  8464. msgid "positive integer value"
  8465. msgstr ""
  8466. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:178
  8467. msgid "random"
  8468. msgstr ""
  8469. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1163
  8470. msgid "randomly generated"
  8471. msgstr ""
  8472. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:51
  8473. msgid ""
  8474. "reduces overhead by collecting and aggregating originator messages in a "
  8475. "single packet rather than many small ones"
  8476. msgstr ""
  8477. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:809
  8478. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:931
  8479. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:965
  8480. msgid "relay mode"
  8481. msgstr ""
  8482. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1644
  8483. msgid "routed"
  8484. msgstr ""
  8485. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1174
  8486. msgid "sec"
  8487. msgstr ""
  8488. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:807
  8489. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:929
  8490. msgid "server mode"
  8491. msgstr ""
  8492. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:54
  8493. msgid "sstpc Log-level"
  8494. msgstr ""
  8495. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1396
  8496. msgid "strong security"
  8497. msgstr ""
  8498. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:354
  8499. msgid "tagged"
  8500. msgstr ""
  8501. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1568
  8502. msgid "time units (TUs / 1.024 ms) [1000-65535]"
  8503. msgstr ""
  8504. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/uhttpd.js:9
  8505. msgid ""
  8506. "uHTTPd offers <abbr title=\"Hypertext Transfer Protocol\">HTTP</abbr> or "
  8507. "<abbr title=\"Hypertext Transfer Protocol Secure\">HTTPS</abbr> network "
  8508. "access."
  8509. msgstr ""
  8510. #: modules/luci-base/htdocs/luci-static/resources/validation.js:583
  8511. msgid "unique value"
  8512. msgstr ""
  8513. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:585
  8514. msgid "unknown"
  8515. msgstr ""
  8516. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:28
  8517. msgid "unknown version"
  8518. msgstr ""
  8519. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542
  8520. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:963
  8521. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:993
  8522. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:99
  8523. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:146
  8524. msgid "unlimited"
  8525. msgstr ""
  8526. #: modules/luci-base/htdocs/luci-static/resources/form.js:3789
  8527. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:76
  8528. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:138
  8529. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:370
  8530. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:397
  8531. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:433
  8532. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:470
  8533. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:566
  8534. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:53
  8535. #: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:38
  8536. msgid "unspecified"
  8537. msgstr ""
  8538. #: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:71
  8539. msgid "unspecified -or- create:"
  8540. msgstr ""
  8541. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:352
  8542. msgid "untagged"
  8543. msgstr ""
  8544. #: modules/luci-base/htdocs/luci-static/resources/validation.js:257
  8545. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:177
  8546. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:188
  8547. msgid "valid IP address"
  8548. msgstr ""
  8549. #: modules/luci-base/htdocs/luci-static/resources/validation.js:257
  8550. msgid "valid IP address or prefix"
  8551. msgstr ""
  8552. #: modules/luci-base/htdocs/luci-static/resources/validation.js:294
  8553. msgid "valid IPv4 CIDR"
  8554. msgstr ""
  8555. #: modules/luci-base/htdocs/luci-static/resources/validation.js:265
  8556. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:181
  8557. msgid "valid IPv4 address"
  8558. msgstr ""
  8559. #: modules/luci-base/htdocs/luci-static/resources/validation.js:265
  8560. msgid "valid IPv4 address or network"
  8561. msgstr ""
  8562. #: modules/luci-base/htdocs/luci-static/resources/validation.js:389
  8563. msgid "valid IPv4 address:port"
  8564. msgstr ""
  8565. #: modules/luci-base/htdocs/luci-static/resources/validation.js:328
  8566. msgid "valid IPv4 network"
  8567. msgstr ""
  8568. #: modules/luci-base/htdocs/luci-static/resources/validation.js:288
  8569. msgid "valid IPv4 or IPv6 CIDR"
  8570. msgstr ""
  8571. #: modules/luci-base/htdocs/luci-static/resources/validation.js:278
  8572. msgid "valid IPv4 prefix value (0-32)"
  8573. msgstr ""
  8574. #: modules/luci-base/htdocs/luci-static/resources/validation.js:300
  8575. msgid "valid IPv6 CIDR"
  8576. msgstr ""
  8577. #: modules/luci-base/htdocs/luci-static/resources/validation.js:273
  8578. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:185
  8579. msgid "valid IPv6 address"
  8580. msgstr ""
  8581. #: modules/luci-base/htdocs/luci-static/resources/validation.js:273
  8582. msgid "valid IPv6 address or prefix"
  8583. msgstr ""
  8584. #: modules/luci-base/htdocs/luci-static/resources/validation.js:318
  8585. msgid "valid IPv6 host id"
  8586. msgstr ""
  8587. #: modules/luci-base/htdocs/luci-static/resources/validation.js:333
  8588. msgid "valid IPv6 network"
  8589. msgstr ""
  8590. #: modules/luci-base/htdocs/luci-static/resources/validation.js:283
  8591. msgid "valid IPv6 prefix value (0-128)"
  8592. msgstr ""
  8593. #: modules/luci-base/htdocs/luci-static/resources/validation.js:355
  8594. msgid "valid MAC address"
  8595. msgstr ""
  8596. #: modules/luci-base/htdocs/luci-static/resources/validation.js:426
  8597. msgid "valid UCI identifier"
  8598. msgstr ""
  8599. #: modules/luci-base/htdocs/luci-static/resources/validation.js:377
  8600. msgid "valid UCI identifier, hostname or IP address range"
  8601. msgstr ""
  8602. #: modules/luci-base/htdocs/luci-static/resources/validation.js:398
  8603. #: modules/luci-base/htdocs/luci-static/resources/validation.js:401
  8604. msgid "valid address:port"
  8605. msgstr ""
  8606. #: modules/luci-base/htdocs/luci-static/resources/validation.js:557
  8607. #: modules/luci-base/htdocs/luci-static/resources/validation.js:561
  8608. msgid "valid date (YYYY-MM-DD)"
  8609. msgstr ""
  8610. #: modules/luci-base/htdocs/luci-static/resources/validation.js:248
  8611. msgid "valid decimal value"
  8612. msgstr ""
  8613. #: modules/luci-base/htdocs/luci-static/resources/validation.js:420
  8614. msgid "valid hexadecimal WEP key"
  8615. msgstr ""
  8616. #: modules/luci-base/htdocs/luci-static/resources/validation.js:408
  8617. msgid "valid hexadecimal WPA key"
  8618. msgstr ""
  8619. #: modules/luci-base/htdocs/luci-static/resources/validation.js:383
  8620. msgid "valid host:port"
  8621. msgstr ""
  8622. #: modules/luci-base/htdocs/luci-static/resources/validation.js:370
  8623. #: modules/luci-base/htdocs/luci-static/resources/validation.js:372
  8624. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:127
  8625. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:133
  8626. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:161
  8627. msgid "valid hostname"
  8628. msgstr ""
  8629. #: modules/luci-base/htdocs/luci-static/resources/validation.js:360
  8630. msgid "valid hostname or IP address"
  8631. msgstr ""
  8632. #: modules/luci-base/htdocs/luci-static/resources/validation.js:240
  8633. msgid "valid integer value"
  8634. msgstr ""
  8635. #: modules/luci-base/htdocs/luci-static/resources/validation.js:355
  8636. msgid "valid multicast MAC address"
  8637. msgstr ""
  8638. #: modules/luci-base/htdocs/luci-static/resources/validation.js:435
  8639. msgid ""
  8640. "valid network device name between 1 and 15 characters not containing \":\", "
  8641. "\"/\", \"%\" or spaces"
  8642. msgstr ""
  8643. #: modules/luci-base/htdocs/luci-static/resources/validation.js:433
  8644. msgid "valid network device name, not \".\" or \"..\""
  8645. msgstr ""
  8646. #: modules/luci-base/htdocs/luci-static/resources/validation.js:323
  8647. msgid "valid network in address/netmask notation"
  8648. msgstr ""
  8649. #: modules/luci-base/htdocs/luci-static/resources/validation.js:532
  8650. msgid "valid phone digit (0-9, \"*\", \"#\", \"!\" or \".\")"
  8651. msgstr ""
  8652. #: modules/luci-base/htdocs/luci-static/resources/validation.js:346
  8653. #: modules/luci-base/htdocs/luci-static/resources/validation.js:349
  8654. msgid "valid port or port range (port1-port2)"
  8655. msgstr ""
  8656. #: modules/luci-base/htdocs/luci-static/resources/validation.js:338
  8657. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:192
  8658. msgid "valid port value"
  8659. msgstr ""
  8660. #: modules/luci-base/htdocs/luci-static/resources/validation.js:537
  8661. msgid "valid time (HH:MM:SS)"
  8662. msgstr ""
  8663. #: modules/luci-base/htdocs/luci-static/resources/validation.js:459
  8664. msgid "value between %d and %d characters"
  8665. msgstr ""
  8666. #: modules/luci-base/htdocs/luci-static/resources/validation.js:440
  8667. msgid "value between %f and %f"
  8668. msgstr ""
  8669. #: modules/luci-base/htdocs/luci-static/resources/validation.js:444
  8670. msgid "value greater or equal to %f"
  8671. msgstr ""
  8672. #: modules/luci-base/htdocs/luci-static/resources/validation.js:448
  8673. msgid "value smaller or equal to %f"
  8674. msgstr ""
  8675. #: modules/luci-base/htdocs/luci-static/resources/validation.js:453
  8676. msgid "value with %d characters"
  8677. msgstr ""
  8678. #: modules/luci-base/htdocs/luci-static/resources/validation.js:464
  8679. msgid "value with at least %d characters"
  8680. msgstr ""
  8681. #: modules/luci-base/htdocs/luci-static/resources/validation.js:469
  8682. msgid "value with at most %d characters"
  8683. msgstr ""
  8684. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1398
  8685. msgid "weak security"
  8686. msgstr ""
  8687. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:72
  8688. msgctxt "nft unit"
  8689. msgid "week"
  8690. msgstr ""
  8691. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:47
  8692. msgid "yes"
  8693. msgstr ""
  8694. #: modules/luci-compat/luasrc/view/cbi/delegator.htm:20
  8695. msgid "« Back"
  8696. msgstr ""