base.po 326 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813
  1. msgid ""
  2. msgstr ""
  3. "Project-Id-Version: PACKAGE VERSION\n"
  4. "Report-Msgid-Bugs-To: \n"
  5. "POT-Creation-Date: 2009-06-10 03:40+0200\n"
  6. "PO-Revision-Date: 2021-06-24 10:23+0000\n"
  7. "Last-Translator: Hannu Nyman <hannu.nyman@iki.fi>\n"
  8. "Language-Team: English <https://hosted.weblate.org/projects/openwrt/luci/en/>"
  9. "\n"
  10. "Language: en\n"
  11. "MIME-Version: 1.0\n"
  12. "Content-Type: text/plain; charset=UTF-8\n"
  13. "Content-Transfer-Encoding: 8bit\n"
  14. "Plural-Forms: nplurals=2; plural=n != 1;\n"
  15. "X-Generator: Weblate 4.7.1-dev\n"
  16. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1484
  17. msgid "%.1f dB"
  18. msgstr "%.1f dB"
  19. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:117
  20. msgid "%d Bit"
  21. msgstr ""
  22. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3712
  23. msgid "%d invalid field(s)"
  24. msgstr ""
  25. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:35
  26. msgid "%s is untagged in multiple VLANs!"
  27. msgstr ""
  28. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:296
  29. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:405
  30. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:272
  31. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:309
  32. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:327
  33. msgid "(%d minute window, %d second interval)"
  34. msgstr "(%d minute window, %d second interval)"
  35. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:118
  36. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:124
  37. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:258
  38. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:282
  39. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:88
  40. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:91
  41. msgid "(empty)"
  42. msgstr "(empty)"
  43. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:351
  44. #: modules/luci-compat/luasrc/view/cbi/network_netinfo.htm:23
  45. #: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:58
  46. msgid "(no interfaces attached)"
  47. msgstr "(no interfaces attached)"
  48. #: modules/luci-compat/luasrc/view/cbi/ucisection.htm:48
  49. msgid "-- Additional Field --"
  50. msgstr "-- Additional Field --"
  51. #: modules/luci-base/htdocs/luci-static/resources/cbi.js:275
  52. #: modules/luci-base/htdocs/luci-static/resources/form.js:3397
  53. #: modules/luci-base/htdocs/luci-static/resources/form.js:3763
  54. #: modules/luci-base/htdocs/luci-static/resources/ui.js:784
  55. #: modules/luci-base/htdocs/luci-static/resources/ui.js:1022
  56. #: modules/luci-base/htdocs/luci-static/resources/ui.js:1995
  57. #: modules/luci-compat/luasrc/view/cbi/header.htm:8
  58. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:89
  59. msgid "-- Please choose --"
  60. msgstr "-- Please choose --"
  61. #: modules/luci-base/htdocs/luci-static/resources/cbi.js:276
  62. #: modules/luci-base/htdocs/luci-static/resources/ui.js:1023
  63. #: modules/luci-base/htdocs/luci-static/resources/ui.js:1996
  64. #: modules/luci-compat/luasrc/view/cbi/header.htm:9
  65. msgid "-- custom --"
  66. msgstr "-- custom --"
  67. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:270
  68. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:379
  69. msgid "-- match by label --"
  70. msgstr ""
  71. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:256
  72. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:362
  73. msgid "-- match by uuid --"
  74. msgstr ""
  75. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:27
  76. #: modules/luci-compat/luasrc/view/cbi/network_ifacelist.htm:44
  77. #: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:23
  78. msgid "-- please select --"
  79. msgstr ""
  80. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:55
  81. msgctxt "sstp log level value"
  82. msgid "0"
  83. msgstr ""
  84. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1002
  85. msgid "0 = not using RSSI threshold, 1 = do not change driver default"
  86. msgstr ""
  87. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:56
  88. msgctxt "sstp log level value"
  89. msgid "1"
  90. msgstr ""
  91. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:233
  92. msgid "1 Minute Load:"
  93. msgstr "1 Minute Load:"
  94. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:253
  95. msgid "15 Minute Load:"
  96. msgstr "15 Minute Load:"
  97. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:57
  98. msgctxt "sstp log level value"
  99. msgid "2"
  100. msgstr ""
  101. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:58
  102. msgctxt "sstp log level value"
  103. msgid "3"
  104. msgstr ""
  105. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:59
  106. msgctxt "sstp log level value"
  107. msgid "4"
  108. msgstr ""
  109. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1514
  110. msgid "4-character hexadecimal ID"
  111. msgstr ""
  112. #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:18
  113. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:11
  114. msgid "464XLAT (CLAT)"
  115. msgstr ""
  116. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:243
  117. msgid "5 Minute Load:"
  118. msgstr "5 Minute Load:"
  119. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1543
  120. msgid "6-octet identifier as a hex string - no colons"
  121. msgstr ""
  122. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1503
  123. msgid "802.11r Fast Transition"
  124. msgstr ""
  125. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1690
  126. msgid "802.11w Association SA Query maximum timeout"
  127. msgstr ""
  128. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1697
  129. msgid "802.11w Association SA Query retry timeout"
  130. msgstr ""
  131. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1678
  132. msgid "802.11w Management Frame Protection"
  133. msgstr ""
  134. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1690
  135. msgid "802.11w maximum timeout"
  136. msgstr ""
  137. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1697
  138. msgid "802.11w retry timeout"
  139. msgstr ""
  140. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1019
  141. msgid "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>"
  142. msgstr "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>"
  143. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:326
  144. msgid "<abbr title=\"Domain Name System\">DNS</abbr> query port"
  145. msgstr "<abbr title=\"Domain Name System\">DNS</abbr> query port"
  146. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:317
  147. msgid "<abbr title=\"Domain Name System\">DNS</abbr> server port"
  148. msgstr "<abbr title=\"Domain Name System\">DNS</abbr> server port"
  149. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:260
  150. msgid ""
  151. "<abbr title=\"Domain Name System\">DNS</abbr> servers will be queried in the "
  152. "order of the resolvfile"
  153. msgstr ""
  154. "<abbr title=\"Domain Name System\">DNS</abbr> servers will be queried in the "
  155. "order of the resolvfile"
  156. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1008
  157. msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>"
  158. msgstr "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>"
  159. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:495
  160. msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Address"
  161. msgstr "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Address"
  162. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:42
  163. msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Gateway"
  164. msgstr "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Gateway"
  165. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:691
  166. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:36
  167. msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Netmask"
  168. msgstr "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Netmask"
  169. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:31
  170. msgid ""
  171. "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Address or Network "
  172. "(CIDR)"
  173. msgstr ""
  174. "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Address or Network "
  175. "(CIDR)"
  176. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:42
  177. msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Gateway"
  178. msgstr "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Gateway"
  179. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:531
  180. msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Suffix (hex)"
  181. msgstr ""
  182. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:58
  183. msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Configuration"
  184. msgstr "<abbr title=\"Light Emitting Diode\">LED</abbr> Configuration"
  185. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:69
  186. msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Name"
  187. msgstr "<abbr title=\"Light Emitting Diode\">LED</abbr> Name"
  188. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:431
  189. msgid "<abbr title=\"Media Access Control\">MAC</abbr>-Address"
  190. msgstr "<abbr title=\"Media Access Control\">MAC</abbr>-Address"
  191. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:897
  192. msgid "<abbr title=\"Neighbour Discovery Protocol\">NDP</abbr>-Proxy"
  193. msgstr ""
  194. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:791
  195. msgid "<abbr title=\"Router Advertisement\">RA</abbr> Flags"
  196. msgstr ""
  197. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:849
  198. msgid "<abbr title=\"Router Advertisement\">RA</abbr> Hop Limit"
  199. msgstr ""
  200. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:825
  201. msgid "<abbr title=\"Router Advertisement\">RA</abbr> Lifetime"
  202. msgstr ""
  203. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:832
  204. msgid "<abbr title=\"Router Advertisement\">RA</abbr> MTU"
  205. msgstr ""
  206. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:763
  207. msgid "<abbr title=\"Router Advertisement\">RA</abbr>-Service"
  208. msgstr ""
  209. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:525
  210. msgid "<abbr title=\"The DHCP Unique Identifier\">DUID</abbr>"
  211. msgstr ""
  212. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:335
  213. msgid ""
  214. "<abbr title=\"maximal\">Max.</abbr> <abbr title=\"Dynamic Host Configuration "
  215. "Protocol\">DHCP</abbr> leases"
  216. msgstr ""
  217. "<abbr title=\"maximal\">Max.</abbr> <abbr title=\"Dynamic Host Configuration "
  218. "Protocol\">DHCP</abbr> leases"
  219. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:344
  220. msgid ""
  221. "<abbr title=\"maximal\">Max.</abbr> <abbr title=\"Extension Mechanisms for "
  222. "Domain Name System\">EDNS0</abbr> packet size"
  223. msgstr ""
  224. "<abbr title=\"maximal\">Max.</abbr> <abbr title=\"Extension Mechanisms for "
  225. "Domain Name System\">EDNS0</abbr> packet size"
  226. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:353
  227. msgid "<abbr title=\"maximal\">Max.</abbr> concurrent queries"
  228. msgstr "<abbr title=\"maximal\">Max.</abbr> concurrent queries"
  229. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/crontab.js:29
  230. msgid ""
  231. "<br/>Note: you need to manually restart the cron service if the crontab file "
  232. "was empty before editing."
  233. msgstr ""
  234. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:370
  235. msgid "A configuration for the device \"%s\" already exists"
  236. msgstr ""
  237. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2741
  238. msgid "A directory with the same name already exists."
  239. msgstr ""
  240. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2671
  241. msgid "A new login is required since the authentication session expired."
  242. msgstr ""
  243. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1464
  244. msgid "A43C + J43 + A43"
  245. msgstr ""
  246. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1465
  247. msgid "A43C + J43 + A43 + V43"
  248. msgstr ""
  249. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1477
  250. msgid "ADSL"
  251. msgstr ""
  252. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1453
  253. msgid "ANSI T1.413"
  254. msgstr ""
  255. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:95
  256. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:94
  257. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:87
  258. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:68
  259. msgid "APN"
  260. msgstr "APN"
  261. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:200
  262. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:352
  263. msgid "ARP"
  264. msgstr ""
  265. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:365
  266. msgid "ARP IP Targets"
  267. msgstr ""
  268. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:357
  269. msgid "ARP Interval"
  270. msgstr ""
  271. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:381
  272. msgid "ARP Validation"
  273. msgstr ""
  274. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:373
  275. msgid "ARP mode to consider a slave as being up"
  276. msgstr ""
  277. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:77
  278. msgid "ARP monitoring is not supported for the selected policy!"
  279. msgstr ""
  280. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:175
  281. msgid "ARP retry threshold"
  282. msgstr "ARP retry threshold"
  283. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1472
  284. msgid "ATM (Asynchronous Transfer Mode)"
  285. msgstr ""
  286. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1493
  287. msgid "ATM Bridges"
  288. msgstr "ATM Bridges"
  289. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1525
  290. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:66
  291. msgid "ATM Virtual Channel Identifier (VCI)"
  292. msgstr "ATM Virtual Channel Identifier (VCI)"
  293. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1526
  294. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:70
  295. msgid "ATM Virtual Path Identifier (VPI)"
  296. msgstr "ATM Virtual Path Identifier (VPI)"
  297. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1493
  298. msgid ""
  299. "ATM bridges expose encapsulated ethernet in AAL5 connections as virtual "
  300. "Linux network interfaces which can be used in conjunction with DHCP or PPP "
  301. "to dial into the provider network."
  302. msgstr ""
  303. "ATM bridges expose encapsulated ethernet in AAL5 connections as virtual "
  304. "Linux network interfaces which can be used in conjunction with DHCP or PPP "
  305. "to dial into the provider network."
  306. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1532
  307. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:62
  308. msgid "ATM device number"
  309. msgstr "ATM device number"
  310. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:36
  311. msgid "ATU-C System Vendor ID"
  312. msgstr ""
  313. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:265
  314. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:544
  315. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:548
  316. msgid "Absent Interface"
  317. msgstr ""
  318. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:647
  319. msgid "Accept local"
  320. msgstr ""
  321. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:647
  322. msgid "Accept packets with local source addresses"
  323. msgstr ""
  324. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:47
  325. msgid "Access Concentrator"
  326. msgstr "Access Concentrator"
  327. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:990
  328. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1104
  329. msgid "Access Point"
  330. msgstr "Access Point"
  331. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:358
  332. msgid "Actions"
  333. msgstr "Actions"
  334. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:14
  335. msgid "Active"
  336. msgstr ""
  337. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:203
  338. msgid "Active <abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Routes"
  339. msgstr "Active <abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Routes"
  340. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:209
  341. msgid "Active <abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Routes"
  342. msgstr "Active <abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Routes"
  343. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:81
  344. msgid "Active Connections"
  345. msgstr "Active Connections"
  346. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:33
  347. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:173
  348. msgid "Active DHCP Leases"
  349. msgstr ""
  350. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:52
  351. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:175
  352. msgid "Active DHCPv6 Leases"
  353. msgstr ""
  354. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:203
  355. msgid "Active-Backup policy (active-backup, 1)"
  356. msgstr ""
  357. #: modules/luci-base/htdocs/luci-static/resources/network.js:3864
  358. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:992
  359. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:23
  360. msgid "Ad-Hoc"
  361. msgstr "Ad-Hoc"
  362. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:208
  363. msgid "Adaptive load balancing (balance-alb, 6)"
  364. msgstr ""
  365. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:207
  366. msgid "Adaptive transmit load balancing (balance-tlb, 5)"
  367. msgstr ""
  368. #: modules/luci-base/htdocs/luci-static/resources/form.js:2192
  369. #: modules/luci-base/htdocs/luci-static/resources/form.js:2195
  370. #: modules/luci-base/htdocs/luci-static/resources/form.js:2209
  371. #: modules/luci-base/htdocs/luci-static/resources/form.js:2210
  372. #: modules/luci-base/htdocs/luci-static/resources/form.js:3195
  373. #: modules/luci-compat/luasrc/view/cbi/nsection.htm:25
  374. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:189
  375. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:197
  376. #: modules/luci-compat/luasrc/view/cbi/tsection.htm:39
  377. #: modules/luci-compat/luasrc/view/cbi/tsection.htm:47
  378. #: modules/luci-compat/luasrc/view/cbi/ucisection.htm:54
  379. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:884
  380. msgid "Add"
  381. msgstr "Add"
  382. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1497
  383. msgid "Add ATM Bridge"
  384. msgstr ""
  385. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:92
  386. msgid "Add IPv4 address…"
  387. msgstr ""
  388. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:185
  389. msgid "Add IPv6 address…"
  390. msgstr ""
  391. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:65
  392. msgid "Add LED action"
  393. msgstr ""
  394. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:219
  395. msgid "Add VLAN"
  396. msgstr ""
  397. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1287
  398. msgid "Add device configuration"
  399. msgstr ""
  400. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1227
  401. msgid "Add device configuration…"
  402. msgstr ""
  403. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:15
  404. msgid "Add instance"
  405. msgstr ""
  406. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:165
  407. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:171
  408. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:268
  409. msgid "Add key"
  410. msgstr ""
  411. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:248
  412. msgid "Add local domain suffix to names served from hosts files"
  413. msgstr "Add local domain suffix to names served from hosts files"
  414. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:465
  415. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1114
  416. msgid "Add new interface..."
  417. msgstr "Add new interface..."
  418. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:120
  419. msgid "Add peer"
  420. msgstr ""
  421. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:331
  422. msgid "Add to Blacklist"
  423. msgstr ""
  424. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:331
  425. msgid "Add to Whitelist"
  426. msgstr ""
  427. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:200
  428. msgid "Additional Hosts files"
  429. msgstr "Additional Hosts files"
  430. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:255
  431. msgid "Additional servers file"
  432. msgstr ""
  433. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:34
  434. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:35
  435. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:36
  436. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:37
  437. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:38
  438. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:39
  439. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:40
  440. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:41
  441. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:42
  442. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:43
  443. msgid "Address"
  444. msgstr "Address"
  445. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:151
  446. msgid "Address to access local relay bridge"
  447. msgstr "Address to access local relay bridge"
  448. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:285
  449. msgid "Addresses"
  450. msgstr ""
  451. #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:3
  452. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:15
  453. msgid "Administration"
  454. msgstr "Administration"
  455. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:164
  456. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:478
  457. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:633
  458. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1523
  459. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:25
  460. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:923
  461. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:987
  462. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:241
  463. msgid "Advanced Settings"
  464. msgstr "Advanced Settings"
  465. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:337
  466. msgid "Advanced device options"
  467. msgstr ""
  468. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:513
  469. msgid "Ageing time"
  470. msgstr ""
  471. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:27
  472. msgid "Aggregate Transmit Power (ACTATP)"
  473. msgstr ""
  474. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:258
  475. msgid "Aggregation Selection Logic"
  476. msgstr ""
  477. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:261
  478. msgid "Aggregator: All slaves down or has no slaves (stable, 0)"
  479. msgstr ""
  480. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:263
  481. msgid ""
  482. "Aggregator: Chosen by the largest number of ports + slave added/removed or "
  483. "state changes (count, 2)"
  484. msgstr ""
  485. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:262
  486. msgid "Aggregator: Slave added/removed or state changes (bandwidth, 1)"
  487. msgstr ""
  488. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:178
  489. msgid "Alert"
  490. msgstr "Alert"
  491. #: modules/luci-base/htdocs/luci-static/resources/network.js:2985
  492. #: modules/luci-compat/luasrc/model/network.lua:1417
  493. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:62
  494. msgid "Alias Interface"
  495. msgstr ""
  496. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:146
  497. msgid "Alias of \"%s\""
  498. msgstr ""
  499. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:263
  500. msgid "All Servers"
  501. msgstr ""
  502. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:209
  503. msgid ""
  504. "Allocate IP addresses sequentially, starting from the lowest available "
  505. "address"
  506. msgstr ""
  507. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:208
  508. msgid "Allocate IP sequentially"
  509. msgstr ""
  510. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:25
  511. msgid "Allow <abbr title=\"Secure Shell\">SSH</abbr> password authentication"
  512. msgstr "Allow <abbr title=\"Secure Shell\">SSH</abbr> password authentication"
  513. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1184
  514. msgid "Allow AP mode to disconnect STAs based on low ACK condition"
  515. msgstr ""
  516. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1088
  517. msgid "Allow all except listed"
  518. msgstr "Allow all except listed"
  519. #: modules/luci-compat/root/usr/share/rpcd/acl.d/luci-compat.json:3
  520. msgid "Allow full UCI access for legacy applications"
  521. msgstr ""
  522. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:943
  523. msgid "Allow legacy 802.11b rates"
  524. msgstr ""
  525. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1087
  526. msgid "Allow listed only"
  527. msgstr "Allow listed only"
  528. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:300
  529. msgid "Allow localhost"
  530. msgstr "Allow localhost"
  531. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:157
  532. msgid "Allow rebooting the device"
  533. msgstr ""
  534. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:36
  535. msgid "Allow remote hosts to connect to local SSH forwarded ports"
  536. msgstr "Allow remote hosts to connect to local SSH forwarded ports"
  537. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:31
  538. msgid "Allow root logins with password"
  539. msgstr "Allow root logins with password"
  540. #: modules/luci-base/root/usr/share/rpcd/acl.d/luci-base.json:3
  541. msgid "Allow system feature probing"
  542. msgstr ""
  543. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:31
  544. msgid "Allow the <em>root</em> user to login with password"
  545. msgstr "Allow the <em>root</em> user to login with password"
  546. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301
  547. msgid ""
  548. "Allow upstream responses in the 127.0.0.0/8 range, e.g. for RBL services"
  549. msgstr ""
  550. "Allow upstream responses in the 127.0.0.0/8 range, e.g. for RBL services"
  551. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:143
  552. msgid "Allowed IPs"
  553. msgstr ""
  554. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:708
  555. msgid "Always"
  556. msgstr ""
  557. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/none.js:5
  558. msgid "Always off (kernel: none)"
  559. msgstr ""
  560. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/default-on.js:6
  561. msgid "Always on (kernel: default-on)"
  562. msgstr ""
  563. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:970
  564. msgid ""
  565. "Always use 40MHz channels even if the secondary channel overlaps. Using this "
  566. "option does not comply with IEEE 802.11n-2009!"
  567. msgstr ""
  568. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:673
  569. msgid "Amount of Duplicate Address Detection probes to send"
  570. msgstr ""
  571. #: modules/luci-base/htdocs/luci-static/resources/form.js:603
  572. msgid "An error occurred while saving the form:"
  573. msgstr ""
  574. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:125
  575. msgid "An optional, short description for this device"
  576. msgstr ""
  577. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1445
  578. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:20
  579. msgid "Annex"
  580. msgstr ""
  581. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1446
  582. msgid "Annex A + L + M (all)"
  583. msgstr ""
  584. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1454
  585. msgid "Annex A G.992.1"
  586. msgstr ""
  587. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1455
  588. msgid "Annex A G.992.2"
  589. msgstr ""
  590. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1456
  591. msgid "Annex A G.992.3"
  592. msgstr ""
  593. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1457
  594. msgid "Annex A G.992.5"
  595. msgstr ""
  596. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1447
  597. msgid "Annex B (all)"
  598. msgstr ""
  599. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1450
  600. msgid "Annex B G.992.1"
  601. msgstr ""
  602. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1451
  603. msgid "Annex B G.992.3"
  604. msgstr ""
  605. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1452
  606. msgid "Annex B G.992.5"
  607. msgstr ""
  608. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1448
  609. msgid "Annex J (all)"
  610. msgstr ""
  611. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1458
  612. msgid "Annex L G.992.3 POTS 1"
  613. msgstr ""
  614. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1449
  615. msgid "Annex M (all)"
  616. msgstr ""
  617. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1459
  618. msgid "Annex M G.992.3"
  619. msgstr ""
  620. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1460
  621. msgid "Annex M G.992.5"
  622. msgstr ""
  623. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:885
  624. msgid "Announce this device as IPv6 DNS server."
  625. msgstr ""
  626. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:777
  627. msgid ""
  628. "Announce this device as default router if a local IPv6 default route is "
  629. "present."
  630. msgstr ""
  631. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:779
  632. msgid ""
  633. "Announce this device as default router if a public IPv6 prefix is available, "
  634. "regardless of local default route availability."
  635. msgstr ""
  636. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:781
  637. msgid ""
  638. "Announce this device as default router regardless of whether a prefix or "
  639. "default route is present."
  640. msgstr ""
  641. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:890
  642. msgid "Announced DNS domains"
  643. msgstr ""
  644. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:878
  645. msgid "Announced IPv6 DNS servers"
  646. msgstr ""
  647. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1668
  648. msgid "Anonymous Identity"
  649. msgstr ""
  650. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:162
  651. msgid "Anonymous Mount"
  652. msgstr ""
  653. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:158
  654. msgid "Anonymous Swap"
  655. msgstr ""
  656. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:84
  657. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:174
  658. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:195
  659. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:60
  660. msgid "Any zone"
  661. msgstr "Any zone"
  662. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:119
  663. msgid "Apply backup?"
  664. msgstr ""
  665. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4299
  666. msgid "Apply request failed with status <code>%h</code>"
  667. msgstr ""
  668. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2182
  669. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4165
  670. msgid "Apply unchecked"
  671. msgstr ""
  672. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4238
  673. msgid "Applying configuration changes… %ds"
  674. msgstr ""
  675. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:56
  676. msgid "Architecture"
  677. msgstr ""
  678. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:958
  679. msgid ""
  680. "Assign a part of given length of every public IPv6-prefix to this interface"
  681. msgstr ""
  682. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:963
  683. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:27
  684. msgid ""
  685. "Assign prefix parts using this hexadecimal subprefix ID for this interface."
  686. msgstr ""
  687. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2158
  688. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:362
  689. msgid "Associated Stations"
  690. msgstr "Associated Stations"
  691. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:145
  692. msgid "Associations"
  693. msgstr ""
  694. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:154
  695. msgid "Attempt to enable configured mount points for attached devices"
  696. msgstr ""
  697. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:110
  698. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:64
  699. msgid "Auth Group"
  700. msgstr ""
  701. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1607
  702. msgid "Authentication"
  703. msgstr "Authentication"
  704. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:97
  705. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:71
  706. msgid "Authentication Type"
  707. msgstr ""
  708. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:172
  709. msgid "Authoritative"
  710. msgstr "Authoritative"
  711. #: modules/luci-base/luasrc/view/sysauth.htm:17
  712. msgid "Authorization Required"
  713. msgstr "Authorization Required"
  714. #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:196
  715. #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:197
  716. msgid "Auto Refresh"
  717. msgstr "Auto Refresh"
  718. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:108
  719. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:18
  720. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:24
  721. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:100
  722. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:51
  723. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:96
  724. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:82
  725. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:56
  726. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:69
  727. msgid "Automatic"
  728. msgstr ""
  729. #: modules/luci-compat/luasrc/model/network/proto_hnet.lua:7
  730. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:7
  731. msgid "Automatic Homenet (HNCP)"
  732. msgstr ""
  733. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:174
  734. msgid "Automatically check filesystem for errors before mounting"
  735. msgstr ""
  736. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:170
  737. msgid "Automatically mount filesystems on hotplug"
  738. msgstr ""
  739. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:166
  740. msgid "Automatically mount swap on hotplug"
  741. msgstr ""
  742. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:170
  743. msgid "Automount Filesystem"
  744. msgstr ""
  745. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:166
  746. msgid "Automount Swap"
  747. msgstr ""
  748. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:193
  749. msgid "Available"
  750. msgstr "Available"
  751. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:270
  752. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:280
  753. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:331
  754. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:341
  755. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:351
  756. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:236
  757. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:246
  758. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:256
  759. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:265
  760. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:275
  761. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:293
  762. msgid "Average:"
  763. msgstr "Average:"
  764. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1466
  765. msgid "B43 + B43C"
  766. msgstr ""
  767. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1467
  768. msgid "B43 + B43C + V43"
  769. msgstr ""
  770. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:48
  771. msgid "BR / DMR / AFTR"
  772. msgstr ""
  773. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:158
  774. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:182
  775. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1735
  776. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:379
  777. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:143
  778. msgid "BSSID"
  779. msgstr "BSSID"
  780. #: modules/luci-compat/luasrc/view/cbi/footer.htm:14
  781. #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:48
  782. msgid "Back to Overview"
  783. msgstr "Back to Overview"
  784. #: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:48
  785. msgid "Back to configuration"
  786. msgstr "Back to configuration"
  787. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:361
  788. msgid "Backup"
  789. msgstr ""
  790. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:114
  791. msgid "Backup / Flash Firmware"
  792. msgstr "Backup / Flash Firmware"
  793. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:321
  794. #: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:12
  795. msgid "Backup file list"
  796. msgstr "Backup file list"
  797. #: modules/luci-compat/luasrc/view/cbi/wireless_modefreq.htm:158
  798. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:501
  799. msgid "Band"
  800. msgstr ""
  801. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:377
  802. msgid "Base device"
  803. msgstr ""
  804. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:973
  805. msgid "Beacon Interval"
  806. msgstr ""
  807. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:322
  808. #: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:46
  809. msgid ""
  810. "Below is the determined list of files to backup. It consists of changed "
  811. "configuration files marked by opkg, essential base files and the user "
  812. "defined backup patterns."
  813. msgstr ""
  814. "Below is the determined list of files to backup. It consists of changed "
  815. "configuration files marked by opkg, essential base files and the user "
  816. "defined backup patterns."
  817. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:395
  818. msgid ""
  819. "Bind dynamically to interfaces rather than wildcard address (recommended as "
  820. "linux default)"
  821. msgstr ""
  822. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:59
  823. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64
  824. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64
  825. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:69
  826. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:48
  827. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:55
  828. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:57
  829. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:52
  830. msgid "Bind interface"
  831. msgstr ""
  832. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:59
  833. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64
  834. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64
  835. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:69
  836. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:48
  837. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:55
  838. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:57
  839. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:52
  840. msgid "Bind the tunnel to this interface (optional)."
  841. msgstr ""
  842. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:129
  843. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:188
  844. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:165
  845. msgid "Bitrate"
  846. msgstr "Bitrate"
  847. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:266
  848. msgid "Bogus NX Domain Override"
  849. msgstr "Bogus NX Domain Override"
  850. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:199
  851. msgid "Bonding Policy"
  852. msgstr ""
  853. #: modules/luci-base/htdocs/luci-static/resources/network.js:2991
  854. #: modules/luci-compat/luasrc/model/network.lua:1421
  855. msgid "Bridge"
  856. msgstr "Bridge"
  857. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:437
  858. msgctxt "MACVLAN mode"
  859. msgid "Bridge (Support direct communication between MAC VLANs)"
  860. msgstr ""
  861. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:339
  862. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:481
  863. msgid "Bridge VLAN filtering"
  864. msgstr ""
  865. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:344
  866. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1368
  867. msgid "Bridge device"
  868. msgstr ""
  869. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:338
  870. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:480
  871. msgid "Bridge port specific options"
  872. msgstr ""
  873. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:468
  874. msgid "Bridge ports"
  875. msgstr ""
  876. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1533
  877. msgid "Bridge unit number"
  878. msgstr "Bridge unit number"
  879. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:504
  880. msgid "Bring up empty bridge"
  881. msgstr ""
  882. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:575
  883. msgid "Bring up on boot"
  884. msgstr "Bring up on boot"
  885. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:504
  886. msgid "Bring up the bridge interface even if no ports are attached"
  887. msgstr ""
  888. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:205
  889. msgid "Broadcast policy (broadcast, 3)"
  890. msgstr ""
  891. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2831
  892. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3822
  893. msgid "Browse…"
  894. msgstr ""
  895. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:37
  896. msgid "Buffered"
  897. msgstr "Buffered"
  898. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:144
  899. msgid "CA certificate; if empty it will be saved after the first connection."
  900. msgstr ""
  901. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:7
  902. msgid "CLAT configuration failed"
  903. msgstr ""
  904. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:72
  905. msgid "CPU usage (%)"
  906. msgstr "CPU usage (%)"
  907. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:41
  908. msgid "Cached"
  909. msgstr ""
  910. #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:53
  911. #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:53
  912. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:21
  913. msgid "Call failed"
  914. msgstr ""
  915. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2924
  916. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3831
  917. #: modules/luci-compat/luasrc/view/cbi/delegator.htm:14
  918. #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:52
  919. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:188
  920. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1120
  921. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2032
  922. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:128
  923. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:270
  924. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:203
  925. msgid "Cancel"
  926. msgstr "Cancel"
  927. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:17
  928. msgid "Category"
  929. msgstr ""
  930. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1591
  931. msgid "Certificate constraint (Domain)"
  932. msgstr ""
  933. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1588
  934. msgid "Certificate constraint (SAN)"
  935. msgstr ""
  936. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1585
  937. msgid "Certificate constraint (Subject)"
  938. msgstr ""
  939. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1594
  940. msgid "Certificate constraint (Wildcard)"
  941. msgstr ""
  942. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1585
  943. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1643
  944. msgid ""
  945. "Certificate constraint substring - e.g. /CN=wifi.mycompany.com<br />See "
  946. "`logread -f` during handshake for actual values"
  947. msgstr ""
  948. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1591
  949. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1649
  950. msgid ""
  951. "Certificate constraint(s) against DNS SAN values (if available)<br />or "
  952. "Subject CN (exact match)"
  953. msgstr ""
  954. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1594
  955. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1652
  956. msgid ""
  957. "Certificate constraint(s) against DNS SAN values (if available)<br />or "
  958. "Subject CN (suffix match)"
  959. msgstr ""
  960. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1588
  961. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1646
  962. msgid ""
  963. "Certificate constraint(s) via Subject Alternate Name values<br />(supported "
  964. "attributes: EMAIL, DNS, URI) - e.g. DNS:wifi.mycompany.com"
  965. msgstr ""
  966. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:54
  967. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:57
  968. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:212
  969. msgid "Chain"
  970. msgstr "Chain"
  971. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4051
  972. msgid "Changes"
  973. msgstr "Changes"
  974. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4334
  975. msgid "Changes have been reverted."
  976. msgstr ""
  977. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:46
  978. msgid "Changes the administrator password for accessing the device"
  979. msgstr "Changes the administrator password for accessing the device"
  980. #: modules/luci-compat/luasrc/view/cbi/wireless_modefreq.htm:162
  981. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:128
  982. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:184
  983. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:510
  984. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1733
  985. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:376
  986. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:164
  987. msgid "Channel"
  988. msgstr "Channel"
  989. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:75
  990. msgid "Channel Analysis"
  991. msgstr ""
  992. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:377
  993. msgid "Channel Width"
  994. msgstr ""
  995. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:174
  996. msgid "Check filesystems before mount"
  997. msgstr ""
  998. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1994
  999. msgid "Check this option to delete the existing networks from this radio."
  1000. msgstr ""
  1001. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:110
  1002. msgid "Checking archive…"
  1003. msgstr ""
  1004. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:193
  1005. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:195
  1006. msgid "Checking image…"
  1007. msgstr ""
  1008. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:397
  1009. msgid "Choose mtdblock"
  1010. msgstr ""
  1011. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:580
  1012. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2022
  1013. msgid ""
  1014. "Choose the firewall zone you want to assign to this interface. Select "
  1015. "<em>unspecified</em> to remove the interface from the associated zone or "
  1016. "fill out the <em>custom</em> field to define a new zone and attach the "
  1017. "interface to it."
  1018. msgstr ""
  1019. "Choose the firewall zone you want to assign to this interface. Select "
  1020. "<em>unspecified</em> to remove the interface from the associated zone or "
  1021. "fill out the <em>custom</em> field to define a new zone and attach the "
  1022. "interface to it."
  1023. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1022
  1024. msgid ""
  1025. "Choose the network(s) you want to attach to this wireless interface or fill "
  1026. "out the <em>custom</em> field to define a new network."
  1027. msgstr ""
  1028. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1220
  1029. msgid "Cipher"
  1030. msgstr "Cipher"
  1031. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:91
  1032. msgid "Cisco UDP encapsulation"
  1033. msgstr ""
  1034. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:361
  1035. msgid ""
  1036. "Click \"Generate archive\" to download a tar archive of the current "
  1037. "configuration files."
  1038. msgstr ""
  1039. "Click \"Generate archive\" to download a tar archive of the current "
  1040. "configuration files."
  1041. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:394
  1042. msgid ""
  1043. "Click \"Save mtdblock\" to download specified mtdblock file. (NOTE: THIS "
  1044. "FEATURE IS FOR PROFESSIONALS! )"
  1045. msgstr ""
  1046. #: modules/luci-base/htdocs/luci-static/resources/network.js:3863
  1047. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:991
  1048. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1105
  1049. msgid "Client"
  1050. msgstr "Client"
  1051. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37
  1052. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:33
  1053. msgid "Client ID to send when requesting DHCP"
  1054. msgstr "Client ID to send when requesting DHCP"
  1055. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4068
  1056. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:167
  1057. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:173
  1058. msgid "Close"
  1059. msgstr ""
  1060. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:144
  1061. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:128
  1062. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:114
  1063. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:92
  1064. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:101
  1065. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:124
  1066. msgid ""
  1067. "Close inactive connection after the given amount of seconds, use 0 to "
  1068. "persist connection"
  1069. msgstr ""
  1070. "Close inactive connection after the given amount of seconds, use 0 to "
  1071. "persist connection"
  1072. #: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:49
  1073. msgid "Close list..."
  1074. msgstr "Close list..."
  1075. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:42
  1076. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:61
  1077. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2156
  1078. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:391
  1079. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:352
  1080. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:355
  1081. #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:204
  1082. msgid "Collecting data..."
  1083. msgstr "Collecting data..."
  1084. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:71
  1085. msgid "Command"
  1086. msgstr "Command"
  1087. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:401
  1088. msgid "Command OK"
  1089. msgstr ""
  1090. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:33
  1091. msgid "Command failed"
  1092. msgstr ""
  1093. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:73
  1094. msgid "Comment"
  1095. msgstr ""
  1096. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1704
  1097. msgid ""
  1098. "Complicates key reinstallation attacks on the client side by disabling "
  1099. "retransmission of EAPOL-Key frames that are used to install keys. This "
  1100. "workaround might cause interoperability issues and reduced robustness of key "
  1101. "negotiation especially in environments with heavy traffic load."
  1102. msgstr ""
  1103. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:101
  1104. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:106
  1105. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:103
  1106. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:108
  1107. msgid "Compute outgoing checksum (optional)."
  1108. msgstr ""
  1109. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4051
  1110. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:424
  1111. msgid "Configuration"
  1112. msgstr "Configuration"
  1113. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4213
  1114. msgid "Configuration changes applied."
  1115. msgstr ""
  1116. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4151
  1117. msgid "Configuration changes have been rolled back!"
  1118. msgstr ""
  1119. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:63
  1120. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:21
  1121. msgid "Configuration failed"
  1122. msgstr ""
  1123. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:952
  1124. msgid ""
  1125. "Configures data rates based on the coverage cell density. Normal configures "
  1126. "basic rates to 6, 12, 24 Mbps if legacy 802.11b rates are not used else to "
  1127. "5.5, 11 Mbps. High configures basic rates to 12, 24 Mbps if legacy 802.11b "
  1128. "rates are not used else to the 11 Mbps rate. Very High configures 24 Mbps as "
  1129. "the basic rate. Supported rates lower than the minimum basic rate are not "
  1130. "offered."
  1131. msgstr ""
  1132. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:775
  1133. msgid ""
  1134. "Configures the default router advertisement in <abbr title=\"Router "
  1135. "Advertisement\">RA</abbr> messages."
  1136. msgstr ""
  1137. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:764
  1138. msgid ""
  1139. "Configures the operation mode of the <abbr title=\"Router Advertisement"
  1140. "\">RA</abbr> service on this interface."
  1141. msgstr ""
  1142. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:868
  1143. msgid "Configures the operation mode of the DHCPv6 service on this interface."
  1144. msgstr ""
  1145. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:898
  1146. msgid ""
  1147. "Configures the operation mode of the NDP proxy service on this interface."
  1148. msgstr ""
  1149. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1273
  1150. msgid "Configure…"
  1151. msgstr ""
  1152. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:176
  1153. msgid "Confirm disconnect"
  1154. msgstr ""
  1155. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:55
  1156. msgid "Confirmation"
  1157. msgstr "Confirmation"
  1158. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:97
  1159. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:100
  1160. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:47
  1161. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:51
  1162. msgid "Connected"
  1163. msgstr "Connected"
  1164. #: modules/luci-base/htdocs/luci-static/resources/network.js:9
  1165. #: modules/luci-compat/luasrc/model/network.lua:27
  1166. msgid "Connection attempt failed"
  1167. msgstr ""
  1168. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:40
  1169. msgid "Connection attempt failed."
  1170. msgstr ""
  1171. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:411
  1172. msgid "Connection lost"
  1173. msgstr ""
  1174. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:130
  1175. msgid "Connections"
  1176. msgstr "Connections"
  1177. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:377
  1178. msgid "Consider the slave up when all ARP IP targets are reachable (all, 1)"
  1179. msgstr ""
  1180. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:376
  1181. msgid "Consider the slave up when any ARP IP target is reachable (any, 0)"
  1182. msgstr ""
  1183. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/crontab.js:18
  1184. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:338
  1185. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:55
  1186. msgid "Contents have been saved."
  1187. msgstr ""
  1188. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:399
  1189. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:433
  1190. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:799
  1191. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:132
  1192. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:262
  1193. msgid "Continue"
  1194. msgstr ""
  1195. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4187
  1196. msgid ""
  1197. "Could not regain access to the device after applying the configuration "
  1198. "changes. You might need to reconnect if you modified network related "
  1199. "settings such as the IP address or wireless security credentials."
  1200. msgstr ""
  1201. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:189
  1202. msgid "Country"
  1203. msgstr "Country"
  1204. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:949
  1205. msgid "Country Code"
  1206. msgstr "Country Code"
  1207. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:952
  1208. msgid "Coverage cell density"
  1209. msgstr ""
  1210. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:580
  1211. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2022
  1212. msgid "Create / Assign firewall-zone"
  1213. msgstr "Create / Assign firewall-zone"
  1214. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1149
  1215. msgid "Create interface"
  1216. msgstr ""
  1217. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:177
  1218. msgid "Critical"
  1219. msgstr "Critical"
  1220. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:181
  1221. msgid "Cron Log Level"
  1222. msgstr "Cron Log Level"
  1223. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:590
  1224. msgid "Current power"
  1225. msgstr ""
  1226. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:569
  1227. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:571
  1228. #: modules/luci-compat/luasrc/view/cbi/network_ifacelist.htm:51
  1229. #: modules/luci-compat/luasrc/view/cbi/network_ifacelist.htm:53
  1230. #: modules/luci-compat/luasrc/view/cbi/network_ifacelist.htm:82
  1231. #: modules/luci-compat/luasrc/view/cbi/network_ifacelist.htm:83
  1232. msgid "Custom Interface"
  1233. msgstr "Custom Interface"
  1234. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:380
  1235. msgid ""
  1236. "Custom files (certificates, scripts) may remain on the system. To prevent "
  1237. "this, perform a factory-reset first."
  1238. msgstr ""
  1239. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/timer.js:6
  1240. msgid "Custom flash interval (kernel: timer)"
  1241. msgstr ""
  1242. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:59
  1243. msgid ""
  1244. "Customizes the behaviour of the device <abbr title=\"Light Emitting Diode"
  1245. "\">LED</abbr>s if possible."
  1246. msgstr ""
  1247. "Customizes the behaviour of the device <abbr title=\"Light Emitting Diode"
  1248. "\">LED</abbr>s if possible."
  1249. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:673
  1250. msgid "DAD transmits"
  1251. msgstr ""
  1252. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1425
  1253. msgid "DAE-Client"
  1254. msgstr ""
  1255. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1430
  1256. msgid "DAE-Port"
  1257. msgstr ""
  1258. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1435
  1259. msgid "DAE-Secret"
  1260. msgstr ""
  1261. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:483
  1262. msgid "DHCP Server"
  1263. msgstr "DHCP Server"
  1264. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:155
  1265. #: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:50
  1266. msgid "DHCP and DNS"
  1267. msgstr "DHCP and DNS"
  1268. #: modules/luci-base/htdocs/luci-static/resources/network.js:2100
  1269. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:16
  1270. #: modules/luci-compat/luasrc/model/network.lua:969
  1271. msgid "DHCP client"
  1272. msgstr "DHCP client"
  1273. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:707
  1274. msgid "DHCP-Options"
  1275. msgstr "DHCP-Options"
  1276. #: modules/luci-compat/luasrc/model/network/proto_dhcpv6.lua:7
  1277. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:7
  1278. msgid "DHCPv6 client"
  1279. msgstr ""
  1280. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:867
  1281. msgid "DHCPv6-Service"
  1282. msgstr ""
  1283. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:45
  1284. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:46
  1285. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:47
  1286. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:48
  1287. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:49
  1288. msgid "DNS"
  1289. msgstr "DNS"
  1290. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:277
  1291. msgid "DNS forwardings"
  1292. msgstr "DNS forwardings"
  1293. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:932
  1294. msgid "DNS search domains"
  1295. msgstr ""
  1296. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:937
  1297. msgid "DNS weight"
  1298. msgstr ""
  1299. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:33
  1300. msgid "DNS-Label / FQDN"
  1301. msgstr ""
  1302. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:228
  1303. msgid "DNSSEC"
  1304. msgstr ""
  1305. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:232
  1306. msgid "DNSSEC check unsigned"
  1307. msgstr ""
  1308. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:99
  1309. msgid "DPD Idle Timeout"
  1310. msgstr ""
  1311. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:41
  1312. msgid "DS-Lite AFTR address"
  1313. msgstr ""
  1314. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1442
  1315. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:44
  1316. msgid "DSL"
  1317. msgstr ""
  1318. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:14
  1319. msgid "DSL Status"
  1320. msgstr ""
  1321. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1475
  1322. msgid "DSL line mode"
  1323. msgstr ""
  1324. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1160
  1325. msgid "DTIM Interval"
  1326. msgstr ""
  1327. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:57
  1328. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:127
  1329. msgid "DUID"
  1330. msgstr ""
  1331. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:21
  1332. msgid "Data Rate"
  1333. msgstr ""
  1334. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:172
  1335. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:183
  1336. msgid "Debug"
  1337. msgstr "Debug"
  1338. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1400
  1339. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1415
  1340. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1430
  1341. msgid "Default %d"
  1342. msgstr "Default %d"
  1343. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:774
  1344. msgid "Default router"
  1345. msgstr ""
  1346. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/default-on.js:11
  1347. msgid "Default state"
  1348. msgstr "Default state"
  1349. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:707
  1350. msgid ""
  1351. "Define additional DHCP options, for example "
  1352. "\"<code>6,192.168.2.1,192.168.2.2</code>\" which advertises different DNS "
  1353. "servers to clients."
  1354. msgstr ""
  1355. "Define additional DHCP options, for example "
  1356. "\"<code>6,192.168.2.1,192.168.2.2</code>\" which advertises different DNS "
  1357. "servers to clients."
  1358. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:462
  1359. msgid ""
  1360. "Defines a mapping of Linux internal packet priority to VLAN header priority "
  1361. "but for outgoing frames"
  1362. msgstr ""
  1363. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:456
  1364. msgid ""
  1365. "Defines a mapping of VLAN header priority to the Linux internal packet "
  1366. "priority on incoming frames"
  1367. msgstr ""
  1368. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:955
  1369. msgid "Delegate IPv6 prefixes"
  1370. msgstr ""
  1371. #: modules/luci-base/htdocs/luci-static/resources/form.js:2262
  1372. #: modules/luci-base/htdocs/luci-static/resources/form.js:2687
  1373. #: modules/luci-base/htdocs/luci-static/resources/form.js:2691
  1374. #: modules/luci-base/htdocs/luci-static/resources/form.js:3179
  1375. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2893
  1376. #: modules/luci-compat/luasrc/view/cbi/nsection.htm:11
  1377. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:162
  1378. #: modules/luci-compat/luasrc/view/cbi/tsection.htm:16
  1379. msgid "Delete"
  1380. msgstr "Delete"
  1381. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:199
  1382. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:205
  1383. msgid "Delete key"
  1384. msgstr ""
  1385. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2790
  1386. msgid "Delete request failed: %s"
  1387. msgstr ""
  1388. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:904
  1389. msgid "Delete this network"
  1390. msgstr "Delete this network"
  1391. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1160
  1392. msgid "Delivery Traffic Indication Message Interval"
  1393. msgstr ""
  1394. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:340
  1395. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:125
  1396. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:129
  1397. msgid "Description"
  1398. msgstr "Description"
  1399. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2889
  1400. msgid "Deselect"
  1401. msgstr ""
  1402. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:222
  1403. msgid "Design"
  1404. msgstr "Design"
  1405. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:715
  1406. msgid "Designated master"
  1407. msgstr ""
  1408. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:386
  1409. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:71
  1410. msgid "Destination"
  1411. msgstr "Destination"
  1412. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:48
  1413. msgid "Destination port"
  1414. msgstr ""
  1415. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:59
  1416. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:165
  1417. msgid "Destination zone"
  1418. msgstr ""
  1419. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:67
  1420. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:191
  1421. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:43
  1422. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:46
  1423. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:81
  1424. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:569
  1425. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1102
  1426. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1384
  1427. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:55
  1428. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:12
  1429. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:247
  1430. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:280
  1431. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:356
  1432. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:392
  1433. msgid "Device"
  1434. msgstr "Device"
  1435. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:918
  1436. msgid "Device Configuration"
  1437. msgstr "Device Configuration"
  1438. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:132
  1439. msgid "Device is not active"
  1440. msgstr ""
  1441. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:233
  1442. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:656
  1443. msgid "Device is restarting…"
  1444. msgstr ""
  1445. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:441
  1446. msgid "Device name"
  1447. msgstr ""
  1448. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:45
  1449. msgid "Device not managed by ModemManager."
  1450. msgstr ""
  1451. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1359
  1452. msgid "Device not present"
  1453. msgstr ""
  1454. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:341
  1455. msgid "Device type"
  1456. msgstr ""
  1457. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4186
  1458. msgid "Device unreachable!"
  1459. msgstr ""
  1460. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:53
  1461. msgid "Device unreachable! Still waiting for device..."
  1462. msgstr ""
  1463. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1224
  1464. msgid "Devices"
  1465. msgstr ""
  1466. #: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:88
  1467. msgid "Diagnostics"
  1468. msgstr "Diagnostics"
  1469. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:102
  1470. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:94
  1471. msgid "Dial number"
  1472. msgstr ""
  1473. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2686
  1474. msgid "Directory"
  1475. msgstr "Directory"
  1476. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:896
  1477. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:936
  1478. msgid "Disable"
  1479. msgstr ""
  1480. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:666
  1481. msgid ""
  1482. "Disable <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</abbr> for "
  1483. "this interface."
  1484. msgstr ""
  1485. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:174
  1486. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:375
  1487. msgid "Disable DNS lookups"
  1488. msgstr ""
  1489. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:93
  1490. msgid "Disable Encryption"
  1491. msgstr ""
  1492. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1170
  1493. msgid "Disable Inactivity Polling"
  1494. msgstr ""
  1495. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:894
  1496. msgid "Disable this network"
  1497. msgstr ""
  1498. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:953
  1499. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1679
  1500. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:13
  1501. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:66
  1502. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:109
  1503. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:101
  1504. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:52
  1505. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:97
  1506. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:83
  1507. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:57
  1508. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:70
  1509. msgid "Disabled"
  1510. msgstr "Disabled"
  1511. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1184
  1512. msgid "Disassociate On Low Acknowledgement"
  1513. msgstr ""
  1514. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:294
  1515. msgid "Discard upstream RFC1918 responses"
  1516. msgstr ""
  1517. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:198
  1518. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:722
  1519. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:332
  1520. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:347
  1521. msgid "Disconnect"
  1522. msgstr ""
  1523. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:64
  1524. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:22
  1525. msgid "Disconnection attempt failed"
  1526. msgstr ""
  1527. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:48
  1528. msgid "Disconnection attempt failed."
  1529. msgstr ""
  1530. #: modules/luci-base/htdocs/luci-static/resources/form.js:606
  1531. #: modules/luci-base/htdocs/luci-static/resources/form.js:2886
  1532. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3330
  1533. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4157
  1534. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1758
  1535. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:328
  1536. msgid "Dismiss"
  1537. msgstr ""
  1538. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:958
  1539. msgid "Distance Optimization"
  1540. msgstr "Distance Optimization"
  1541. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:958
  1542. msgid "Distance to farthest network member in meters."
  1543. msgstr "Distance to farthest network member in meters."
  1544. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:155
  1545. msgid ""
  1546. "Dnsmasq is a combined <abbr title=\"Dynamic Host Configuration Protocol"
  1547. "\">DHCP</abbr>-Server and <abbr title=\"Domain Name System\">DNS</abbr>-"
  1548. "Forwarder for <abbr title=\"Network Address Translation\">NAT</abbr> "
  1549. "firewalls"
  1550. msgstr ""
  1551. "Dnsmasq is a combined <abbr title=\"Dynamic Host Configuration Protocol"
  1552. "\">DHCP</abbr>-Server and <abbr title=\"Domain Name System\">DNS</abbr>-"
  1553. "Forwarder for <abbr title=\"Network Address Translation\">NAT</abbr> "
  1554. "firewalls"
  1555. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:252
  1556. msgid "Do not cache negative replies, e.g. for not existing domains"
  1557. msgstr "Do not cache negative replies, e.g. for not existing domains"
  1558. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:86
  1559. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:91
  1560. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:88
  1561. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:93
  1562. msgid "Do not create host route to peer (optional)."
  1563. msgstr ""
  1564. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:219
  1565. msgid "Do not forward requests that cannot be answered by public name servers"
  1566. msgstr ""
  1567. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:214
  1568. msgid "Do not forward reverse lookups for local networks"
  1569. msgstr ""
  1570. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:870
  1571. msgid "Do not offer DHCPv6 service on this interface."
  1572. msgstr ""
  1573. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:158
  1574. msgctxt "VLAN port state"
  1575. msgid "Do not participate"
  1576. msgstr ""
  1577. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:900
  1578. msgid ""
  1579. "Do not proxy any <abbr title=\"Neighbour Discovery Protocol\">NDP</abbr> "
  1580. "packets."
  1581. msgstr ""
  1582. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:25
  1583. msgid "Do not send a hostname"
  1584. msgstr ""
  1585. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:766
  1586. msgid ""
  1587. "Do not send any <abbr title=\"Router Advertisement, ICMPv6 Type 134\">RA</"
  1588. "abbr> messages on this interface."
  1589. msgstr ""
  1590. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2776
  1591. msgid "Do you really want to delete \"%s\" ?"
  1592. msgstr ""
  1593. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:200
  1594. msgid "Do you really want to delete the following SSH key?"
  1595. msgstr ""
  1596. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:94
  1597. msgid "Do you really want to erase all settings?"
  1598. msgstr ""
  1599. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2774
  1600. msgid "Do you really want to recursively delete the directory \"%s\" ?"
  1601. msgstr ""
  1602. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:168
  1603. msgid "Domain required"
  1604. msgstr "Domain required"
  1605. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:307
  1606. msgid "Domain whitelist"
  1607. msgstr ""
  1608. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:83
  1609. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:88
  1610. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:67
  1611. msgid "Don't Fragment"
  1612. msgstr ""
  1613. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:169
  1614. msgid ""
  1615. "Don't forward <abbr title=\"Domain Name System\">DNS</abbr>-Requests without "
  1616. "<abbr title=\"Domain Name System\">DNS</abbr>-Name"
  1617. msgstr ""
  1618. "Don&#39;t forward <abbr title=\"Domain Name System\">DNS</abbr>-Requests "
  1619. "without <abbr title=\"Domain Name System\">DNS</abbr>-Name"
  1620. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:152
  1621. msgid "Down"
  1622. msgstr ""
  1623. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:402
  1624. msgid "Down Delay"
  1625. msgstr ""
  1626. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:364
  1627. msgid "Download backup"
  1628. msgstr ""
  1629. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:402
  1630. msgid "Download mtdblock"
  1631. msgstr ""
  1632. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1480
  1633. msgid "Downstream SNR offset"
  1634. msgstr ""
  1635. #: modules/luci-base/htdocs/luci-static/resources/form.js:2645
  1636. msgid "Drag to reorder"
  1637. msgstr ""
  1638. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:341
  1639. msgid "Drop Duplicate Frames"
  1640. msgstr ""
  1641. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:12
  1642. msgid "Dropbear Instance"
  1643. msgstr ""
  1644. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:10
  1645. msgid ""
  1646. "Dropbear offers <abbr title=\"Secure Shell\">SSH</abbr> network shell access "
  1647. "and an integrated <abbr title=\"Secure Copy\">SCP</abbr> server"
  1648. msgstr ""
  1649. "Dropbear offers <abbr title=\"Secure Shell\">SSH</abbr> network shell access "
  1650. "and an integrated <abbr title=\"Secure Copy\">SCP</abbr> server"
  1651. #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:14
  1652. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:11
  1653. msgid "Dual-Stack Lite (RFC6333)"
  1654. msgstr ""
  1655. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:683
  1656. msgid "Dynamic <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</abbr>"
  1657. msgstr ""
  1658. "Dynamic <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</abbr>"
  1659. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:60
  1660. msgid "Dynamic tunnel"
  1661. msgstr ""
  1662. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:683
  1663. msgid ""
  1664. "Dynamically allocate DHCP addresses for clients. If disabled, only clients "
  1665. "having static leases will be served."
  1666. msgstr ""
  1667. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:67
  1668. msgid "EA-bits length"
  1669. msgstr ""
  1670. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1563
  1671. msgid "EAP-Method"
  1672. msgstr "EAP-Method"
  1673. #: modules/luci-base/htdocs/luci-static/resources/form.js:2665
  1674. #: modules/luci-base/htdocs/luci-static/resources/form.js:2668
  1675. #: modules/luci-base/htdocs/luci-static/resources/form.js:3042
  1676. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:154
  1677. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:160
  1678. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:495
  1679. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:901
  1680. msgid "Edit"
  1681. msgstr "Edit"
  1682. #: modules/luci-compat/luasrc/view/cbi/error.htm:13
  1683. msgid ""
  1684. "Edit the raw configuration data above to fix any error and hit \"Save\" to "
  1685. "reload the page."
  1686. msgstr ""
  1687. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:899
  1688. msgid "Edit this network"
  1689. msgstr ""
  1690. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:850
  1691. msgid "Edit wireless network"
  1692. msgstr ""
  1693. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:462
  1694. msgid "Egress QoS mapping"
  1695. msgstr ""
  1696. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:166
  1697. msgctxt "VLAN port state"
  1698. msgid "Egress tagged"
  1699. msgstr ""
  1700. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:162
  1701. msgctxt "VLAN port state"
  1702. msgid "Egress untagged"
  1703. msgstr ""
  1704. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:179
  1705. msgid "Emergency"
  1706. msgstr ""
  1707. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:896
  1708. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:936
  1709. msgid "Enable"
  1710. msgstr ""
  1711. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:538
  1712. msgid ""
  1713. "Enable <abbr title=\"Internet Group Management Protocol\">IGMP</abbr> "
  1714. "snooping"
  1715. msgstr ""
  1716. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:518
  1717. msgid "Enable <abbr title=\"Spanning Tree Protocol\">STP</abbr>"
  1718. msgstr "Enable <abbr title=\"Spanning Tree Protocol\">STP</abbr>"
  1719. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:785
  1720. msgid "Enable <abbr title=\"Stateless Address Auto Config\">SLAAC</abbr>"
  1721. msgstr ""
  1722. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:174
  1723. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:369
  1724. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:375
  1725. msgid "Enable DNS lookups"
  1726. msgstr ""
  1727. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:292
  1728. msgid "Enable Dynamic Shuffling Of Flows"
  1729. msgstr ""
  1730. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:60
  1731. msgid "Enable HE.net dynamic endpoint update"
  1732. msgstr ""
  1733. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:665
  1734. msgid "Enable IPv6"
  1735. msgstr ""
  1736. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:90
  1737. msgid "Enable IPv6 negotiation"
  1738. msgstr ""
  1739. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:49
  1740. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:94
  1741. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:80
  1742. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:54
  1743. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:67
  1744. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:93
  1745. msgid "Enable IPv6 negotiation on the PPP link"
  1746. msgstr ""
  1747. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:192
  1748. msgid "Enable Jumbo Frame passthrough"
  1749. msgstr ""
  1750. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:696
  1751. msgid "Enable MAC address learning"
  1752. msgstr ""
  1753. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:242
  1754. msgid "Enable NTP client"
  1755. msgstr ""
  1756. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:96
  1757. msgid "Enable Single DES"
  1758. msgstr ""
  1759. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:368
  1760. msgid "Enable TFTP server"
  1761. msgstr ""
  1762. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:720
  1763. msgid "Enable VLAN filtering"
  1764. msgstr ""
  1765. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:184
  1766. msgid "Enable VLAN functionality"
  1767. msgstr ""
  1768. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1708
  1769. msgid "Enable WPS pushbutton, requires WPA(2)-PSK/WPA3-SAE"
  1770. msgstr ""
  1771. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:955
  1772. msgid ""
  1773. "Enable downstream delegation of IPv6 prefixes available on this interface"
  1774. msgstr ""
  1775. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1704
  1776. msgid "Enable key reinstallation (KRACK) countermeasures"
  1777. msgstr ""
  1778. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:187
  1779. msgid "Enable learning and aging"
  1780. msgstr ""
  1781. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:198
  1782. msgid "Enable mirroring of incoming packets"
  1783. msgstr ""
  1784. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:199
  1785. msgid "Enable mirroring of outgoing packets"
  1786. msgstr ""
  1787. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:715
  1788. msgid "Enable multicast fast leave"
  1789. msgstr ""
  1790. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:547
  1791. msgid "Enable multicast querier"
  1792. msgstr ""
  1793. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:679
  1794. msgid "Enable multicast support"
  1795. msgstr ""
  1796. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1437
  1797. msgid ""
  1798. "Enable packet steering across all CPUs. May help or hinder network speed."
  1799. msgstr ""
  1800. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:622
  1801. msgid "Enable promiscuous mode"
  1802. msgstr ""
  1803. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:71
  1804. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:66
  1805. msgid "Enable rx checksum"
  1806. msgstr ""
  1807. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:89
  1808. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:94
  1809. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:91
  1810. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:96
  1811. msgid "Enable support for multicast traffic (optional)."
  1812. msgstr ""
  1813. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:83
  1814. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:88
  1815. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:67
  1816. msgid "Enable the DF (Don't Fragment) flag of the encapsulating packets."
  1817. msgstr ""
  1818. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:894
  1819. msgid "Enable this network"
  1820. msgstr ""
  1821. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:75
  1822. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:70
  1823. msgid "Enable tx checksum"
  1824. msgstr ""
  1825. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:699
  1826. msgid "Enable unicast flooding"
  1827. msgstr ""
  1828. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:243
  1829. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:352
  1830. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:66
  1831. msgid "Enabled"
  1832. msgstr "Enabled"
  1833. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:538
  1834. msgid "Enables IGMP snooping on this bridge"
  1835. msgstr ""
  1836. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1503
  1837. msgid ""
  1838. "Enables fast roaming among access points that belong to the same Mobility "
  1839. "Domain"
  1840. msgstr ""
  1841. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:518
  1842. msgid "Enables the Spanning Tree Protocol on this bridge"
  1843. msgstr "Enables the Spanning Tree Protocol on this bridge"
  1844. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:59
  1845. msgid "Encapsulation limit"
  1846. msgstr ""
  1847. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1470
  1848. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1528
  1849. msgid "Encapsulation mode"
  1850. msgstr ""
  1851. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:159
  1852. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:183
  1853. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1189
  1854. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1736
  1855. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:144
  1856. msgid "Encryption"
  1857. msgstr "Encryption"
  1858. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:156
  1859. msgid "Endpoint Host"
  1860. msgstr ""
  1861. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:160
  1862. msgid "Endpoint Port"
  1863. msgstr ""
  1864. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:684
  1865. msgid "Enforce IGMPv1"
  1866. msgstr ""
  1867. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:685
  1868. msgid "Enforce IGMPv2"
  1869. msgstr ""
  1870. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:686
  1871. msgid "Enforce IGMPv3"
  1872. msgstr ""
  1873. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:691
  1874. msgid "Enforce MLD version 1"
  1875. msgstr ""
  1876. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:692
  1877. msgid "Enforce MLD version 2"
  1878. msgstr ""
  1879. #: modules/luci-compat/luasrc/view/cbi/dropdown.htm:16
  1880. msgid "Enter custom value"
  1881. msgstr ""
  1882. #: modules/luci-compat/luasrc/view/cbi/dropdown.htm:16
  1883. msgid "Enter custom values"
  1884. msgstr ""
  1885. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:97
  1886. msgid "Erasing..."
  1887. msgstr ""
  1888. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:103
  1889. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:104
  1890. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:105
  1891. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:106
  1892. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:107
  1893. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:176
  1894. msgid "Error"
  1895. msgstr "Error"
  1896. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:29
  1897. msgid "Errored seconds (ES)"
  1898. msgstr ""
  1899. #: modules/luci-base/htdocs/luci-static/resources/network.js:3004
  1900. #: modules/luci-compat/luasrc/model/network.lua:1433
  1901. msgid "Ethernet Adapter"
  1902. msgstr "Ethernet Adapter"
  1903. #: modules/luci-base/htdocs/luci-static/resources/network.js:2995
  1904. #: modules/luci-compat/luasrc/model/network.lua:1423
  1905. msgid "Ethernet Switch"
  1906. msgstr "Ethernet Switch"
  1907. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:270
  1908. msgid "Every 30 seconds (slow, 0)"
  1909. msgstr ""
  1910. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:271
  1911. msgid "Every second (fast, 1)"
  1912. msgstr ""
  1913. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:406
  1914. msgid "Exclude interfaces"
  1915. msgstr ""
  1916. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:356
  1917. msgid "Existing device"
  1918. msgstr ""
  1919. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:247
  1920. msgid "Expand hosts"
  1921. msgstr ""
  1922. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:972
  1923. msgid "Expecting a hexadecimal assignment hint"
  1924. msgstr ""
  1925. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:18
  1926. msgid "Expecting a valid IPv4 address"
  1927. msgstr ""
  1928. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:18
  1929. msgid "Expecting a valid IPv6 address"
  1930. msgstr ""
  1931. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:28
  1932. msgid "Expecting two priority values separated by a colon"
  1933. msgstr ""
  1934. #: modules/luci-base/htdocs/luci-static/resources/validation.js:64
  1935. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:73
  1936. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:79
  1937. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:107
  1938. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:121
  1939. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:125
  1940. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:129
  1941. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:132
  1942. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:136
  1943. msgid "Expecting: %s"
  1944. msgstr ""
  1945. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:48
  1946. msgid "Expecting: non-empty value"
  1947. msgstr ""
  1948. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:50
  1949. msgid "Expires"
  1950. msgstr ""
  1951. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:679
  1952. msgid ""
  1953. "Expiry time of leased addresses, minimum is 2 minutes (<code>2m</code>)."
  1954. msgstr ""
  1955. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:19
  1956. msgid "External"
  1957. msgstr ""
  1958. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1554
  1959. msgid "External R0 Key Holder List"
  1960. msgstr ""
  1961. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1558
  1962. msgid "External R1 Key Holder List"
  1963. msgstr ""
  1964. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:153
  1965. msgid "External system log server"
  1966. msgstr ""
  1967. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:158
  1968. msgid "External system log server port"
  1969. msgstr ""
  1970. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:163
  1971. msgid "External system log server protocol"
  1972. msgstr ""
  1973. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:79
  1974. msgid "Extra SSH command options"
  1975. msgstr ""
  1976. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:68
  1977. msgid "Extra pppd options"
  1978. msgstr ""
  1979. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:66
  1980. msgid "Extra sstpc options"
  1981. msgstr ""
  1982. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1528
  1983. msgid "FT over DS"
  1984. msgstr ""
  1985. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1529
  1986. msgid "FT over the Air"
  1987. msgstr ""
  1988. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1526
  1989. msgid "FT protocol"
  1990. msgstr ""
  1991. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:87
  1992. msgid "Failed to change the system password."
  1993. msgstr ""
  1994. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4145
  1995. msgid "Failed to confirm apply within %ds, waiting for rollback…"
  1996. msgstr ""
  1997. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:37
  1998. msgid "Failed to execute \"/etc/init.d/%s %s\" action: %s"
  1999. msgstr ""
  2000. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2694
  2001. msgid "File"
  2002. msgstr ""
  2003. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2641
  2004. msgid "File not accessible"
  2005. msgstr ""
  2006. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2832
  2007. msgid "Filename"
  2008. msgstr ""
  2009. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:381
  2010. msgid "Filename of the boot image advertised to clients"
  2011. msgstr ""
  2012. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:191
  2013. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:314
  2014. msgid "Filesystem"
  2015. msgstr "Filesystem"
  2016. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:213
  2017. msgid "Filter private"
  2018. msgstr "Filter private"
  2019. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:218
  2020. msgid "Filter useless"
  2021. msgstr "Filter useless"
  2022. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:388
  2023. msgid "Filtering for all slaves, no validation"
  2024. msgstr ""
  2025. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:389
  2026. msgid "Filtering for all slaves, validation only for active slave"
  2027. msgstr ""
  2028. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:390
  2029. msgid "Filtering for all slaves, validation only for backup slaves"
  2030. msgstr ""
  2031. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:65
  2032. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:23
  2033. msgid "Finalizing failed"
  2034. msgstr ""
  2035. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:150
  2036. msgid ""
  2037. "Find all currently attached filesystems and swap and replace configuration "
  2038. "with defaults based on what was detected"
  2039. msgstr ""
  2040. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:877
  2041. msgid "Find and join network"
  2042. msgstr ""
  2043. #: modules/luci-compat/luasrc/view/cbi/delegator.htm:9
  2044. msgid "Finish"
  2045. msgstr ""
  2046. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:15
  2047. msgid "Firewall"
  2048. msgstr "Firewall"
  2049. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:97
  2050. msgid "Firewall Mark"
  2051. msgstr ""
  2052. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:482
  2053. msgid "Firewall Settings"
  2054. msgstr "Firewall Settings"
  2055. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:326
  2056. msgid "Firewall Status"
  2057. msgstr "Firewall Status"
  2058. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1487
  2059. msgid "Firmware File"
  2060. msgstr ""
  2061. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:57
  2062. msgid "Firmware Version"
  2063. msgstr ""
  2064. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:327
  2065. msgid "Fixed source port for outbound DNS queries"
  2066. msgstr ""
  2067. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:281
  2068. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:419
  2069. msgid "Flash image..."
  2070. msgstr ""
  2071. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:277
  2072. msgid "Flash image?"
  2073. msgstr ""
  2074. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:409
  2075. msgid "Flash new firmware image"
  2076. msgstr ""
  2077. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:354
  2078. msgid "Flash operations"
  2079. msgstr ""
  2080. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:286
  2081. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:288
  2082. msgid "Flashing…"
  2083. msgstr ""
  2084. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:686
  2085. msgid "Force"
  2086. msgstr "Force"
  2087. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:970
  2088. msgid "Force 40MHz mode"
  2089. msgstr ""
  2090. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1230
  2091. msgid "Force CCMP (AES)"
  2092. msgstr ""
  2093. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:686
  2094. msgid "Force DHCP on this network even if another server is detected."
  2095. msgstr ""
  2096. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:682
  2097. msgid "Force IGMP version"
  2098. msgstr ""
  2099. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:689
  2100. msgid "Force MLD version"
  2101. msgstr ""
  2102. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1231
  2103. msgid "Force TKIP"
  2104. msgstr ""
  2105. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1232
  2106. msgid "Force TKIP and CCMP (AES)"
  2107. msgstr ""
  2108. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1215
  2109. msgid "Force link"
  2110. msgstr ""
  2111. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:255
  2112. msgid ""
  2113. "Force upgrade: Select 'Force upgrade' to flash the image even if the image "
  2114. "format check fails. Use only if you are sure that the firmware is correct "
  2115. "and meant for your device!"
  2116. msgstr ""
  2117. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:90
  2118. msgid "Force use of NAT-T"
  2119. msgstr ""
  2120. #: modules/luci-base/luasrc/view/csrftoken.htm:8
  2121. msgid "Form token mismatch"
  2122. msgstr ""
  2123. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:902
  2124. msgid ""
  2125. "Forward <abbr title=\"Neighbour Discovery Protocol\">NDP</abbr> <abbr title="
  2126. "\"Neighbour Solicitation, Type 135\">NS</abbr> and <abbr title=\"Neighbour "
  2127. "Advertisement, Type 136\">NA</abbr> messages between the designated master "
  2128. "interface and downstream interfaces."
  2129. msgstr ""
  2130. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:770
  2131. msgid ""
  2132. "Forward <abbr title=\"Router Advertisement, ICMPv6 Type 134\">RA</abbr> "
  2133. "messages received on the designated master interface to downstream "
  2134. "interfaces."
  2135. msgstr ""
  2136. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:164
  2137. msgid "Forward DHCP traffic"
  2138. msgstr ""
  2139. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:874
  2140. msgid ""
  2141. "Forward DHCPv6 messages between the designated master interface and "
  2142. "downstream interfaces."
  2143. msgstr ""
  2144. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:28
  2145. msgid "Forward Error Correction Seconds (FECS)"
  2146. msgstr ""
  2147. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:161
  2148. msgid "Forward broadcast traffic"
  2149. msgstr ""
  2150. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:527
  2151. msgid "Forward delay"
  2152. msgstr ""
  2153. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:997
  2154. msgid "Forward mesh peer traffic"
  2155. msgstr ""
  2156. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:711
  2157. msgid "Forward multicast packets as unicast packets on this device."
  2158. msgstr ""
  2159. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1535
  2160. msgid "Forwarding mode"
  2161. msgstr ""
  2162. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:962
  2163. msgid "Fragmentation Threshold"
  2164. msgstr "Fragmentation Threshold"
  2165. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:110
  2166. msgid ""
  2167. "Further information about WireGuard interfaces and peers at <a href='http://"
  2168. "wireguard.com'>wireguard.com</a>."
  2169. msgstr ""
  2170. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:128
  2171. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:184
  2172. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:164
  2173. msgid "GHz"
  2174. msgstr ""
  2175. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:92
  2176. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:78
  2177. msgid "GPRS only"
  2178. msgstr ""
  2179. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:10
  2180. msgid "GRE tunnel over IPv4"
  2181. msgstr ""
  2182. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:10
  2183. msgid "GRE tunnel over IPv6"
  2184. msgstr ""
  2185. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:10
  2186. msgid "GRETAP tunnel over IPv4"
  2187. msgstr ""
  2188. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:10
  2189. msgid "GRETAP tunnel over IPv6"
  2190. msgstr ""
  2191. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:44
  2192. msgid "Gateway"
  2193. msgstr ""
  2194. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:36
  2195. msgid "Gateway Ports"
  2196. msgstr ""
  2197. #: modules/luci-base/htdocs/luci-static/resources/network.js:11
  2198. #: modules/luci-compat/luasrc/model/network.lua:29
  2199. msgid "Gateway address is invalid"
  2200. msgstr ""
  2201. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:161
  2202. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:477
  2203. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:24
  2204. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:240
  2205. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:108
  2206. msgid "General Settings"
  2207. msgstr ""
  2208. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:632
  2209. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1522
  2210. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:922
  2211. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:984
  2212. msgid "General Setup"
  2213. msgstr "General Setup"
  2214. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:336
  2215. msgid "General device options"
  2216. msgstr ""
  2217. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:150
  2218. msgid "Generate Config"
  2219. msgstr ""
  2220. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:66
  2221. msgid "Generate Key"
  2222. msgstr ""
  2223. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1532
  2224. msgid "Generate PMK locally"
  2225. msgstr ""
  2226. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:366
  2227. msgid "Generate archive"
  2228. msgstr ""
  2229. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:79
  2230. msgid "Given password confirmation did not match, password not changed!"
  2231. msgstr ""
  2232. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:146
  2233. msgid "Global Settings"
  2234. msgstr ""
  2235. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1430
  2236. msgid "Global network options"
  2237. msgstr ""
  2238. #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:57
  2239. #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215
  2240. #: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:62
  2241. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:82
  2242. msgid "Go to password configuration..."
  2243. msgstr ""
  2244. #: modules/luci-base/htdocs/luci-static/resources/form.js:2587
  2245. #: modules/luci-base/htdocs/luci-static/resources/form.js:3361
  2246. #: modules/luci-compat/luasrc/view/cbi/full_valueheader.htm:4
  2247. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:58
  2248. msgid "Go to relevant configuration page"
  2249. msgstr "Go to relevant configuration page"
  2250. #: modules/luci-mod-network/root/usr/share/rpcd/acl.d/luci-mod-network.json:37
  2251. msgid "Grant access to DHCP configuration"
  2252. msgstr ""
  2253. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:111
  2254. msgid "Grant access to DHCP status display"
  2255. msgstr ""
  2256. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:120
  2257. msgid "Grant access to DSL status display"
  2258. msgstr ""
  2259. #: protocols/luci-proto-openconnect/root/usr/share/rpcd/acl.d/luci-openconnect.json:3
  2260. msgid "Grant access to LuCI OpenConnect procedures"
  2261. msgstr ""
  2262. #: protocols/luci-proto-wireguard/root/usr/share/rpcd/acl.d/luci-wireguard.json:3
  2263. msgid "Grant access to LuCI Wireguard procedures"
  2264. msgstr ""
  2265. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:19
  2266. msgid "Grant access to SSH configuration"
  2267. msgstr ""
  2268. #: modules/luci-base/root/usr/share/rpcd/acl.d/luci-base.json:12
  2269. msgid "Grant access to basic LuCI procedures"
  2270. msgstr ""
  2271. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:64
  2272. msgid "Grant access to crontab configuration"
  2273. msgstr ""
  2274. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:69
  2275. msgid "Grant access to firewall status"
  2276. msgstr ""
  2277. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:116
  2278. msgid "Grant access to flash operations"
  2279. msgstr ""
  2280. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:95
  2281. msgid "Grant access to main status display"
  2282. msgstr ""
  2283. #: protocols/luci-proto-modemmanager/root/usr/share/rpcd/acl.d/luci-proto-modemmanager.json:3
  2284. msgid "Grant access to mmcli"
  2285. msgstr ""
  2286. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:84
  2287. msgid "Grant access to mount configuration"
  2288. msgstr ""
  2289. #: modules/luci-mod-network/root/usr/share/rpcd/acl.d/luci-mod-network.json:3
  2290. msgid "Grant access to network configuration"
  2291. msgstr ""
  2292. #: modules/luci-mod-network/root/usr/share/rpcd/acl.d/luci-mod-network.json:50
  2293. msgid "Grant access to network diagnostic tools"
  2294. msgstr ""
  2295. #: modules/luci-base/root/usr/share/rpcd/acl.d/luci-base.json:36
  2296. msgid "Grant access to network status information"
  2297. msgstr ""
  2298. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:13
  2299. msgid "Grant access to process status"
  2300. msgstr ""
  2301. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:3
  2302. msgid "Grant access to realtime statistics"
  2303. msgstr ""
  2304. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:42
  2305. msgid "Grant access to startup configuration"
  2306. msgstr ""
  2307. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:3
  2308. msgid "Grant access to system configuration"
  2309. msgstr ""
  2310. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:30
  2311. msgid "Grant access to system logs"
  2312. msgstr ""
  2313. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:47
  2314. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:60
  2315. msgid "Grant access to the system route status"
  2316. msgstr ""
  2317. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:129
  2318. msgid "Grant access to wireless status display"
  2319. msgstr ""
  2320. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:66
  2321. msgid "Group Password"
  2322. msgstr ""
  2323. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:22
  2324. msgid "Guest"
  2325. msgstr ""
  2326. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:81
  2327. msgid "HE.net password"
  2328. msgstr ""
  2329. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:73
  2330. msgid "HE.net username"
  2331. msgstr ""
  2332. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:46
  2333. msgid "Hang Up"
  2334. msgstr "Hang Up"
  2335. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:33
  2336. msgid "Header Error Code Errors (HEC)"
  2337. msgstr ""
  2338. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/heartbeat.js:5
  2339. msgid "Heartbeat interval (kernel: heartbeat)"
  2340. msgstr ""
  2341. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:522
  2342. msgid "Hello interval"
  2343. msgstr ""
  2344. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:100
  2345. msgid ""
  2346. "Here you can configure the basic aspects of your device like its hostname or "
  2347. "the timezone."
  2348. msgstr ""
  2349. "Here you can configure the basic aspects of your device like its hostname or "
  2350. "the timezone."
  2351. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1138
  2352. msgid "Hide <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>"
  2353. msgstr "Hide <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>"
  2354. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:293
  2355. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:332
  2356. msgid "Hide empty chains"
  2357. msgstr ""
  2358. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:955
  2359. msgid "High"
  2360. msgstr ""
  2361. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:55
  2362. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2150
  2363. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:125
  2364. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:230
  2365. msgid "Host"
  2366. msgstr ""
  2367. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/hosts.js:22
  2368. msgid "Host entries"
  2369. msgstr "Host entries"
  2370. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:171
  2371. msgid "Host expiry timeout"
  2372. msgstr ""
  2373. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:31
  2374. msgid "Host-<abbr title=\"Internet Protocol Address\">IP</abbr> or Network"
  2375. msgstr "Host-<abbr title=\"Internet Protocol Address\">IP</abbr> or Network"
  2376. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:88
  2377. msgid "Host-Uniq tag content"
  2378. msgstr ""
  2379. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:36
  2380. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:419
  2381. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/hosts.js:27
  2382. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:54
  2383. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:86
  2384. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:121
  2385. msgid "Hostname"
  2386. msgstr "Hostname"
  2387. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:22
  2388. msgid "Hostname to send when requesting DHCP"
  2389. msgstr ""
  2390. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/hosts.js:20
  2391. #: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:63
  2392. msgid "Hostnames"
  2393. msgstr "Hostnames"
  2394. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:276
  2395. msgid "Human-readable counters"
  2396. msgstr ""
  2397. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:24
  2398. msgid "Hybrid"
  2399. msgstr ""
  2400. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:53
  2401. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:48
  2402. msgid "ID used to uniquely identify the VXLAN"
  2403. msgstr ""
  2404. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:206
  2405. msgid "IEEE 802.3ad Dynamic link aggregation (802.3ad, 4)"
  2406. msgstr ""
  2407. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:75
  2408. msgid "IKE DH Group"
  2409. msgstr ""
  2410. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:83
  2411. msgid "IP Addresses"
  2412. msgstr ""
  2413. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:81
  2414. msgid "IP Protocol"
  2415. msgstr ""
  2416. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:115
  2417. msgid "IP Type"
  2418. msgstr ""
  2419. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/hosts.js:31
  2420. msgid "IP address"
  2421. msgstr "IP address"
  2422. #: modules/luci-base/htdocs/luci-static/resources/network.js:10
  2423. #: modules/luci-compat/luasrc/model/network.lua:28
  2424. msgid "IP address is invalid"
  2425. msgstr ""
  2426. #: modules/luci-base/htdocs/luci-static/resources/network.js:13
  2427. #: modules/luci-compat/luasrc/model/network.lua:31
  2428. msgid "IP address is missing"
  2429. msgstr ""
  2430. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:79
  2431. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:102
  2432. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:86
  2433. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:87
  2434. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:88
  2435. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:89
  2436. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:90
  2437. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:83
  2438. msgid "IPv4"
  2439. msgstr ""
  2440. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:351
  2441. msgid "IPv4 Firewall"
  2442. msgstr ""
  2443. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:29
  2444. msgid "IPv4 Upstream"
  2445. msgstr ""
  2446. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:178
  2447. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:37
  2448. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:87
  2449. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:155
  2450. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:162
  2451. msgid "IPv4 address"
  2452. msgstr ""
  2453. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:29
  2454. msgid "IPv4 assignment length"
  2455. msgstr ""
  2456. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:181
  2457. msgid "IPv4 broadcast"
  2458. msgstr ""
  2459. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:180
  2460. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:165
  2461. msgid "IPv4 gateway"
  2462. msgstr ""
  2463. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:179
  2464. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:168
  2465. msgid "IPv4 netmask"
  2466. msgstr ""
  2467. #: modules/luci-base/htdocs/luci-static/resources/validation.js:294
  2468. msgid "IPv4 network in address/netmask notation"
  2469. msgstr ""
  2470. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:117
  2471. msgid "IPv4 only"
  2472. msgstr ""
  2473. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:52
  2474. msgid "IPv4 prefix"
  2475. msgstr ""
  2476. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:61
  2477. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:55
  2478. msgid "IPv4 prefix length"
  2479. msgstr ""
  2480. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:84
  2481. msgid "IPv4+IPv6"
  2482. msgstr ""
  2483. #: modules/luci-compat/luasrc/model/network/proto_ipip.lua:9
  2484. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:10
  2485. msgid "IPv4-in-IPv4 (RFC2003)"
  2486. msgstr ""
  2487. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:116
  2488. msgid "IPv4/IPv6 (both - defaults to IPv4)"
  2489. msgstr ""
  2490. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:80
  2491. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:103
  2492. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:91
  2493. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:92
  2494. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:93
  2495. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:94
  2496. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:95
  2497. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:96
  2498. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:97
  2499. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:98
  2500. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:99
  2501. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:100
  2502. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:85
  2503. msgid "IPv6"
  2504. msgstr "IPv6"
  2505. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:354
  2506. msgid "IPv6 Firewall"
  2507. msgstr ""
  2508. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:669
  2509. msgid "IPv6 MTU"
  2510. msgstr ""
  2511. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:206
  2512. msgid "IPv6 Neighbours"
  2513. msgstr ""
  2514. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:635
  2515. msgid "IPv6 RA Settings"
  2516. msgstr ""
  2517. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:634
  2518. msgid "IPv6 Settings"
  2519. msgstr ""
  2520. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1434
  2521. msgid "IPv6 ULA-Prefix"
  2522. msgstr ""
  2523. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:29
  2524. msgid "IPv6 Upstream"
  2525. msgstr ""
  2526. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:183
  2527. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:56
  2528. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:126
  2529. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:174
  2530. msgid "IPv6 address"
  2531. msgstr ""
  2532. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:963
  2533. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:27
  2534. msgid "IPv6 assignment hint"
  2535. msgstr ""
  2536. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:958
  2537. msgid "IPv6 assignment length"
  2538. msgstr ""
  2539. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:188
  2540. msgid "IPv6 gateway"
  2541. msgstr ""
  2542. #: modules/luci-base/htdocs/luci-static/resources/validation.js:299
  2543. msgid "IPv6 network in address/netmask notation"
  2544. msgstr ""
  2545. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:118
  2546. msgid "IPv6 only"
  2547. msgstr ""
  2548. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1007
  2549. msgid "IPv6 preference"
  2550. msgstr ""
  2551. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:53
  2552. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:59
  2553. msgid "IPv6 prefix"
  2554. msgstr ""
  2555. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:980
  2556. msgid "IPv6 prefix filter"
  2557. msgstr ""
  2558. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:57
  2559. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:63
  2560. msgid "IPv6 prefix length"
  2561. msgstr ""
  2562. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:192
  2563. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:57
  2564. msgid "IPv6 routed prefix"
  2565. msgstr ""
  2566. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1003
  2567. msgid "IPv6 suffix"
  2568. msgstr ""
  2569. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:51
  2570. msgid "IPv6 support"
  2571. msgstr ""
  2572. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:101
  2573. msgid "IPv6-PD"
  2574. msgstr ""
  2575. #: modules/luci-compat/luasrc/model/network/proto_6x4.lua:13
  2576. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:10
  2577. msgid "IPv6-in-IPv4 (RFC4213)"
  2578. msgstr ""
  2579. #: modules/luci-compat/luasrc/model/network/proto_6x4.lua:17
  2580. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:9
  2581. msgid "IPv6-over-IPv4 (6rd)"
  2582. msgstr ""
  2583. #: modules/luci-compat/luasrc/model/network/proto_6x4.lua:15
  2584. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6to4.js:9
  2585. msgid "IPv6-over-IPv4 (6to4)"
  2586. msgstr ""
  2587. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1665
  2588. msgid "Identity"
  2589. msgstr "Identity"
  2590. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:96
  2591. msgid "If checked, 1DES is enabled"
  2592. msgstr ""
  2593. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:51
  2594. msgid "If checked, adds \"+ipv6\" to the pppd options"
  2595. msgstr ""
  2596. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:93
  2597. msgid "If checked, encryption is disabled"
  2598. msgstr ""
  2599. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:980
  2600. msgid ""
  2601. "If set, downstream subnets are only allocated from the given IPv6 prefix "
  2602. "classes."
  2603. msgstr ""
  2604. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:254
  2605. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:360
  2606. msgid ""
  2607. "If specified, mount the device by its UUID instead of a fixed device node"
  2608. msgstr ""
  2609. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:267
  2610. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:376
  2611. msgid ""
  2612. "If specified, mount the device by the partition label instead of a fixed "
  2613. "device node"
  2614. msgstr ""
  2615. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:919
  2616. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:64
  2617. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:111
  2618. msgid "If unchecked, no default route is configured"
  2619. msgstr ""
  2620. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:923
  2621. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:68
  2622. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:122
  2623. msgid "If unchecked, the advertised DNS server addresses are ignored"
  2624. msgstr ""
  2625. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:339
  2626. msgid ""
  2627. "If your physical memory is insufficient unused data can be temporarily "
  2628. "swapped to a swap-device resulting in a higher amount of usable <abbr title="
  2629. "\"Random Access Memory\">RAM</abbr>. Be aware that swapping data is a very "
  2630. "slow process as the swap-device cannot be accessed with the high datarates "
  2631. "of the <abbr title=\"Random Access Memory\">RAM</abbr>."
  2632. msgstr ""
  2633. "If your physical memory is insufficient unused data can be temporarily "
  2634. "swapped to a swap-device resulting in a higher amount of usable <abbr title="
  2635. "\"Random Access Memory\">RAM</abbr>. Be aware that swapping data is a very "
  2636. "slow process as the swap-device cannot be accessed with the high datarates "
  2637. "of the <abbr title=\"Random Access Memory\">RAM</abbr>."
  2638. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:197
  2639. msgid "Ignore <code>/etc/hosts</code>"
  2640. msgstr "Ignore <code>/etc/hosts</code>"
  2641. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:666
  2642. msgid "Ignore interface"
  2643. msgstr "Ignore interface"
  2644. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:185
  2645. msgid "Ignore resolve file"
  2646. msgstr "Ignore resolve file"
  2647. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:417
  2648. msgid "Image"
  2649. msgstr ""
  2650. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:68
  2651. msgid "In"
  2652. msgstr "In"
  2653. #: modules/luci-base/luasrc/view/csrftoken.htm:13
  2654. msgid ""
  2655. "In order to prevent unauthorized access to the system, your request has been "
  2656. "blocked. Click \"Continue »\" below to return to the previous page."
  2657. msgstr ""
  2658. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:125
  2659. msgid "In seconds"
  2660. msgstr ""
  2661. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:144
  2662. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:128
  2663. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:114
  2664. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:92
  2665. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:101
  2666. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:124
  2667. msgid "Inactivity timeout"
  2668. msgstr ""
  2669. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:267
  2670. msgid "Inbound:"
  2671. msgstr ""
  2672. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:100
  2673. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:105
  2674. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:102
  2675. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:107
  2676. msgid "Incoming checksum"
  2677. msgstr ""
  2678. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:92
  2679. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:97
  2680. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:94
  2681. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:99
  2682. msgid "Incoming key"
  2683. msgstr ""
  2684. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:102
  2685. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:107
  2686. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:104
  2687. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:109
  2688. msgid "Incoming serialization"
  2689. msgstr ""
  2690. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:173
  2691. msgid "Info"
  2692. msgstr ""
  2693. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:102
  2694. msgid "Information"
  2695. msgstr ""
  2696. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:456
  2697. msgid "Ingress QoS mapping"
  2698. msgstr ""
  2699. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:67
  2700. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:25
  2701. msgid "Initialization failure"
  2702. msgstr ""
  2703. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:77
  2704. msgid "Initscript"
  2705. msgstr "Initscript"
  2706. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:111
  2707. msgid "Initscripts"
  2708. msgstr "Initscripts"
  2709. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1649
  2710. msgid "Inner certificate constraint (Domain)"
  2711. msgstr ""
  2712. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1646
  2713. msgid "Inner certificate constraint (SAN)"
  2714. msgstr ""
  2715. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1643
  2716. msgid "Inner certificate constraint (Subject)"
  2717. msgstr ""
  2718. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1652
  2719. msgid "Inner certificate constraint (Wildcard)"
  2720. msgstr ""
  2721. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:300
  2722. msgid "Install protocol extensions..."
  2723. msgstr ""
  2724. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2018
  2725. msgid ""
  2726. "Instead of joining any network with a matching SSID, only connect to the "
  2727. "BSSID <code>%h</code>."
  2728. msgstr ""
  2729. #: modules/luci-compat/luasrc/view/cbi/map.htm:43
  2730. msgid "Insufficient permissions to read UCI configuration."
  2731. msgstr ""
  2732. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:27
  2733. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:157
  2734. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:176
  2735. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:17
  2736. msgid "Interface"
  2737. msgstr "Interface"
  2738. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:718
  2739. msgid "Interface \"%h\" is already marked as designated master."
  2740. msgstr ""
  2741. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:62
  2742. msgid "Interface %q device auto-migrated from %q to %q."
  2743. msgstr ""
  2744. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:980
  2745. msgid "Interface Configuration"
  2746. msgstr ""
  2747. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:111
  2748. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:151
  2749. msgid "Interface has %d pending changes"
  2750. msgstr ""
  2751. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:92
  2752. msgid "Interface is disabled"
  2753. msgstr ""
  2754. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:65
  2755. msgid "Interface is marked for deletion"
  2756. msgstr ""
  2757. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:210
  2758. msgid "Interface is reconnecting..."
  2759. msgstr ""
  2760. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:194
  2761. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:204
  2762. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:210
  2763. msgid "Interface is shutting down..."
  2764. msgstr ""
  2765. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:285
  2766. msgid "Interface is starting..."
  2767. msgstr ""
  2768. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:288
  2769. msgid "Interface is stopping..."
  2770. msgstr ""
  2771. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1151
  2772. msgid "Interface name"
  2773. msgstr ""
  2774. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:123
  2775. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:304
  2776. msgid "Interface not present or not connected yet."
  2777. msgstr ""
  2778. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:462
  2779. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:491
  2780. #: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:38
  2781. msgid "Interfaces"
  2782. msgstr "Interfaces"
  2783. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:20
  2784. msgid "Internal"
  2785. msgstr ""
  2786. #: modules/luci-base/luasrc/view/error500.htm:8
  2787. msgid "Internal Server Error"
  2788. msgstr ""
  2789. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:283
  2790. msgid "Interval For Sending Learning Packets"
  2791. msgstr ""
  2792. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:556
  2793. msgid ""
  2794. "Interval in centiseconds between multicast general queries. By varying the "
  2795. "value, an administrator may tune the number of IGMP messages on the subnet; "
  2796. "larger values cause IGMP Queries to be sent less often"
  2797. msgstr ""
  2798. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:522
  2799. msgid "Interval in seconds for STP hello packets"
  2800. msgstr ""
  2801. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:192
  2802. #: modules/luci-compat/luasrc/view/cbi/tsection.htm:42
  2803. msgid "Invalid"
  2804. msgstr "Invalid input value"
  2805. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:19
  2806. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:22
  2807. msgid "Invalid Base64 key string"
  2808. msgstr ""
  2809. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:78
  2810. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:83
  2811. msgid "Invalid TOS value, expected 00..FF or inherit"
  2812. msgstr ""
  2813. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:83
  2814. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:88
  2815. msgid "Invalid Traffic Class value, expected 00..FF or inherit"
  2816. msgstr ""
  2817. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:285
  2818. msgid "Invalid VLAN ID given! Only IDs between %d and %d are allowed."
  2819. msgstr ""
  2820. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:294
  2821. msgid "Invalid VLAN ID given! Only unique IDs are allowed"
  2822. msgstr ""
  2823. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:403
  2824. msgid "Invalid argument"
  2825. msgstr ""
  2826. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:46
  2827. msgid ""
  2828. "Invalid bearer list. Possibly too many bearers created. This protocol "
  2829. "supports one and only one bearer."
  2830. msgstr ""
  2831. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:402
  2832. msgid "Invalid command"
  2833. msgstr ""
  2834. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:101
  2835. msgid "Invalid hexadecimal value"
  2836. msgstr ""
  2837. #: modules/luci-base/luasrc/view/sysauth.htm:12
  2838. msgid "Invalid username and/or password! Please try again."
  2839. msgstr "Invalid username and/or password! Please try again."
  2840. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1147
  2841. msgid "Isolate Clients"
  2842. msgstr ""
  2843. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:231
  2844. #, fuzzy
  2845. msgid ""
  2846. "It appears that you are trying to flash an image that does not fit into the "
  2847. "flash memory, please verify the image file!"
  2848. msgstr ""
  2849. "It appears that you try to flash an image that does not fit into the flash "
  2850. "memory, please verify the image file!"
  2851. #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:64
  2852. #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:222
  2853. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:72
  2854. msgid "JavaScript required!"
  2855. msgstr ""
  2856. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1816
  2857. msgid "Join Network"
  2858. msgstr "Join Network"
  2859. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1750
  2860. msgid "Join Network: Wireless Scan"
  2861. msgstr ""
  2862. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2026
  2863. msgid "Joining Network: %q"
  2864. msgstr ""
  2865. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:223
  2866. msgid "Keep settings and retain the current configuration"
  2867. msgstr ""
  2868. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/dmesg.js:20
  2869. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:51
  2870. msgid "Kernel Log"
  2871. msgstr "Kernel Log"
  2872. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:58
  2873. msgid "Kernel Version"
  2874. msgstr ""
  2875. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1441
  2876. msgid "Key"
  2877. msgstr "Key"
  2878. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1469
  2879. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1470
  2880. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1471
  2881. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1472
  2882. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1484
  2883. msgid "Key #%d"
  2884. msgstr ""
  2885. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:92
  2886. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:97
  2887. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:94
  2888. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:99
  2889. msgid "Key for incoming packets (optional)."
  2890. msgstr ""
  2891. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:96
  2892. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:101
  2893. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:98
  2894. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:103
  2895. msgid "Key for outgoing packets (optional)."
  2896. msgstr ""
  2897. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:54
  2898. msgid "Kill"
  2899. msgstr "Kill"
  2900. #: modules/luci-compat/luasrc/model/network/proto_ppp.lua:21
  2901. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:10
  2902. msgid "L2TP"
  2903. msgstr ""
  2904. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:40
  2905. msgid "L2TP Server"
  2906. msgstr ""
  2907. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:267
  2908. msgid "LACPDU Packets"
  2909. msgstr ""
  2910. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:118
  2911. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:102
  2912. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:88
  2913. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:62
  2914. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:75
  2915. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:98
  2916. msgid "LCP echo failure threshold"
  2917. msgstr ""
  2918. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:131
  2919. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:115
  2920. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:101
  2921. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:75
  2922. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:88
  2923. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:111
  2924. msgid "LCP echo interval"
  2925. msgstr ""
  2926. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:101
  2927. msgid "LED Configuration"
  2928. msgstr ""
  2929. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1529
  2930. msgid "LLC"
  2931. msgstr ""
  2932. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:267
  2933. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:376
  2934. msgid "Label"
  2935. msgstr ""
  2936. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:211
  2937. msgid "Language"
  2938. msgstr "Language"
  2939. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:111
  2940. msgid "Language and Style"
  2941. msgstr ""
  2942. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:575
  2943. msgid "Last member interval"
  2944. msgstr ""
  2945. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:23
  2946. msgid "Latency"
  2947. msgstr ""
  2948. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:21
  2949. msgid "Leaf"
  2950. msgstr ""
  2951. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:707
  2952. msgid "Learn"
  2953. msgstr ""
  2954. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:906
  2955. msgid "Learn routes"
  2956. msgstr ""
  2957. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:522
  2958. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:679
  2959. msgid "Lease time"
  2960. msgstr ""
  2961. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:39
  2962. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:58
  2963. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:89
  2964. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:128
  2965. msgid "Lease time remaining"
  2966. msgstr "Lease time remaining"
  2967. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:181
  2968. msgid "Leasefile"
  2969. msgstr "Leasefile"
  2970. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:41
  2971. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:47
  2972. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:50
  2973. msgid "Leave empty to autodetect"
  2974. msgstr ""
  2975. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:40
  2976. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:39
  2977. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6to4.js:39
  2978. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:45
  2979. msgid "Leave empty to use the current WAN address"
  2980. msgstr ""
  2981. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:943
  2982. msgid ""
  2983. "Legacy or badly behaving devices may require legacy 802.11b rates to "
  2984. "interoperate. Airtime efficiency may be significantly reduced where these "
  2985. "are used. It is recommended to not allow 802.11b rates where possible."
  2986. msgstr ""
  2987. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4053
  2988. msgid "Legend:"
  2989. msgstr ""
  2990. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:674
  2991. msgid "Limit"
  2992. msgstr "Limit"
  2993. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:389
  2994. msgid "Limit DNS service to subnets interfaces on which we are serving DNS."
  2995. msgstr ""
  2996. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:402
  2997. msgid "Limit listening to these interfaces, and loopback."
  2998. msgstr ""
  2999. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:24
  3000. msgid "Line Attenuation (LATN)"
  3001. msgstr ""
  3002. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:18
  3003. msgid "Line Mode"
  3004. msgstr ""
  3005. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:17
  3006. msgid "Line State"
  3007. msgstr ""
  3008. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:19
  3009. msgid "Line Uptime"
  3010. msgstr ""
  3011. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:123
  3012. msgid "Link Aggregation (Channel Bonding)"
  3013. msgstr ""
  3014. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:348
  3015. msgid "Link Monitoring"
  3016. msgstr ""
  3017. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:23
  3018. msgid "Link On"
  3019. msgstr "Link On"
  3020. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:278
  3021. msgid ""
  3022. "List of <abbr title=\"Domain Name System\">DNS</abbr> servers to forward "
  3023. "requests to"
  3024. msgstr ""
  3025. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1554
  3026. msgid ""
  3027. "List of R0KHs in the same Mobility Domain. <br />Format: MAC-address,NAS-"
  3028. "Identifier,128-bit key as hex string. <br />This list is used to map R0KH-ID "
  3029. "(NAS Identifier) to a destination MAC address when requesting PMK-R1 key "
  3030. "from the R0KH that the STA used during the Initial Mobility Domain "
  3031. "Association."
  3032. msgstr ""
  3033. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1558
  3034. msgid ""
  3035. "List of R1KHs in the same Mobility Domain. <br />Format: MAC-address,R1KH-ID "
  3036. "as 6 octets with colons,128-bit key as hex string. <br />This list is used "
  3037. "to map R1KH-ID to a destination MAC address when sending PMK-R1 key from the "
  3038. "R0KH. This is also the list of authorized R1KHs in the MD that can request "
  3039. "PMK-R1 keys."
  3040. msgstr ""
  3041. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:82
  3042. msgid "List of SSH key files for auth"
  3043. msgstr ""
  3044. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:308
  3045. msgid "List of domains to allow RFC1918 responses for"
  3046. msgstr ""
  3047. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:286
  3048. msgid "List of domains to force to an IP address."
  3049. msgstr ""
  3050. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:267
  3051. msgid "List of hosts that supply bogus NX domain results"
  3052. msgstr ""
  3053. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:401
  3054. msgid "Listen Interfaces"
  3055. msgstr ""
  3056. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:78
  3057. msgid "Listen Port"
  3058. msgstr ""
  3059. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:17
  3060. msgid "Listen only on the given interface or, if unspecified, on all"
  3061. msgstr ""
  3062. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:318
  3063. msgid "Listening port for inbound DNS queries"
  3064. msgstr ""
  3065. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:100
  3066. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:54
  3067. msgid "Load"
  3068. msgstr "Load"
  3069. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:61
  3070. msgid "Load Average"
  3071. msgstr ""
  3072. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2959
  3073. msgid "Loading directory contents…"
  3074. msgstr ""
  3075. #: modules/luci-base/htdocs/luci-static/resources/luci.js:1949
  3076. #: modules/luci-base/luasrc/view/view.htm:4
  3077. #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:12
  3078. msgid "Loading view…"
  3079. msgstr ""
  3080. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:870
  3081. msgid "Local"
  3082. msgstr ""
  3083. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:77
  3084. msgid "Local IP address"
  3085. msgstr ""
  3086. #: modules/luci-base/htdocs/luci-static/resources/network.js:12
  3087. #: modules/luci-compat/luasrc/model/network.lua:30
  3088. msgid "Local IP address is invalid"
  3089. msgstr ""
  3090. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:86
  3091. msgid "Local IP address to assign"
  3092. msgstr ""
  3093. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:46
  3094. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:46
  3095. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:44
  3096. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:40
  3097. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:39
  3098. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6to4.js:39
  3099. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:151
  3100. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:44
  3101. msgid "Local IPv4 address"
  3102. msgstr ""
  3103. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:884
  3104. msgid "Local IPv6 DNS server"
  3105. msgstr ""
  3106. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:46
  3107. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:53
  3108. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:54
  3109. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:45
  3110. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:44
  3111. msgid "Local IPv6 address"
  3112. msgstr ""
  3113. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388
  3114. msgid "Local Service Only"
  3115. msgstr ""
  3116. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:115
  3117. msgid "Local Startup"
  3118. msgstr ""
  3119. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:59
  3120. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:117
  3121. msgid "Local Time"
  3122. msgstr "Local Time"
  3123. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:981
  3124. msgid "Local ULA"
  3125. msgstr ""
  3126. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:243
  3127. msgid "Local domain"
  3128. msgstr ""
  3129. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:240
  3130. msgid ""
  3131. "Local domain specification. Names matching this domain are never forwarded "
  3132. "and are resolved from DHCP or hosts files only"
  3133. msgstr ""
  3134. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:244
  3135. msgid "Local domain suffix appended to DHCP names and hosts file entries"
  3136. msgstr ""
  3137. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:239
  3138. msgid "Local server"
  3139. msgstr ""
  3140. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:224
  3141. msgid ""
  3142. "Localise hostname depending on the requesting subnet if multiple IPs are "
  3143. "available"
  3144. msgstr ""
  3145. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:223
  3146. msgid "Localise queries"
  3147. msgstr "Localise queries"
  3148. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2018
  3149. msgid "Lock to BSSID"
  3150. msgstr ""
  3151. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:171
  3152. msgid "Log output level"
  3153. msgstr ""
  3154. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:274
  3155. msgid "Log queries"
  3156. msgstr "Log queries"
  3157. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:109
  3158. msgid "Logging"
  3159. msgstr ""
  3160. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57
  3161. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:57
  3162. msgid ""
  3163. "Logical network from which to select the local endpoint if local IPv6 "
  3164. "address is empty and no WAN IPv6 is available (optional)."
  3165. msgstr ""
  3166. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:57
  3167. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62
  3168. msgid "Logical network to which the tunnel will be added (bridged) (optional)."
  3169. msgstr ""
  3170. #: modules/luci-base/luasrc/view/sysauth.htm:38
  3171. msgid "Login"
  3172. msgstr "Login"
  3173. #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:81
  3174. msgid "Logout"
  3175. msgstr "Logout"
  3176. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:628
  3177. msgid "Loose filtering"
  3178. msgstr ""
  3179. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:31
  3180. msgid "Loss of Signal Seconds (LOSS)"
  3181. msgstr ""
  3182. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:669
  3183. msgid "Lowest leased address as offset from the network address."
  3184. msgstr ""
  3185. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:48
  3186. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:83
  3187. msgid "MAC"
  3188. msgstr ""
  3189. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1406
  3190. msgid "MAC Address"
  3191. msgstr ""
  3192. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1083
  3193. msgid "MAC Address Filter"
  3194. msgstr "MAC Address Filter"
  3195. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:251
  3196. msgid "MAC Address For The Actor"
  3197. msgstr ""
  3198. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:347
  3199. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1374
  3200. msgid "MAC VLAN"
  3201. msgstr ""
  3202. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:591
  3203. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:38
  3204. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2149
  3205. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:56
  3206. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:88
  3207. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:229
  3208. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:156
  3209. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:175
  3210. msgid "MAC address"
  3211. msgstr ""
  3212. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:986
  3213. msgid "MAC-Filter"
  3214. msgstr "MAC-Filter"
  3215. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1090
  3216. msgid "MAC-List"
  3217. msgstr "MAC-List"
  3218. #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:16
  3219. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:13
  3220. msgid "MAP / LW4over6"
  3221. msgstr ""
  3222. #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:62
  3223. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:7
  3224. msgid "MAP rule is invalid"
  3225. msgstr ""
  3226. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:218
  3227. msgid "MD5"
  3228. msgstr ""
  3229. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:199
  3230. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:28
  3231. msgid "MHz"
  3232. msgstr ""
  3233. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:353
  3234. msgid "MII"
  3235. msgstr ""
  3236. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:421
  3237. msgid "MII / ETHTOOL ioctls"
  3238. msgstr ""
  3239. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:394
  3240. msgid "MII Interval"
  3241. msgstr ""
  3242. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:580
  3243. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1418
  3244. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:54
  3245. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:53
  3246. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:92
  3247. msgid "MTU"
  3248. msgstr ""
  3249. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:302
  3250. msgid ""
  3251. "Make sure to clone the root filesystem using something like the commands "
  3252. "below:"
  3253. msgstr ""
  3254. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:110
  3255. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:102
  3256. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:53
  3257. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:98
  3258. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:84
  3259. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:58
  3260. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:71
  3261. msgid "Manual"
  3262. msgstr ""
  3263. #: modules/luci-base/htdocs/luci-static/resources/network.js:3862
  3264. msgid "Master"
  3265. msgstr ""
  3266. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:811
  3267. msgid "Max <abbr title=\"Router Advertisement\">RA</abbr> interval"
  3268. msgstr ""
  3269. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:22
  3270. msgid "Max. Attainable Data Rate (ATTNDR)"
  3271. msgstr ""
  3272. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:532
  3273. msgid "Maximum age"
  3274. msgstr ""
  3275. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1179
  3276. msgid "Maximum allowed Listen Interval"
  3277. msgstr ""
  3278. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:336
  3279. msgid "Maximum allowed number of active DHCP leases"
  3280. msgstr ""
  3281. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:354
  3282. msgid "Maximum allowed number of concurrent DNS queries"
  3283. msgstr ""
  3284. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:345
  3285. msgid "Maximum allowed size of EDNS.0 UDP packets"
  3286. msgstr ""
  3287. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:114
  3288. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:106
  3289. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:95
  3290. msgid "Maximum amount of seconds to wait for the modem to become ready"
  3291. msgstr ""
  3292. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:674
  3293. msgid "Maximum number of leased addresses."
  3294. msgstr ""
  3295. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:542
  3296. msgid "Maximum snooping table size"
  3297. msgstr ""
  3298. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:811
  3299. msgid ""
  3300. "Maximum time allowed between sending unsolicited <abbr title=\"Router "
  3301. "Advertisement, ICMPv6 Type 134\">RA</abbr>. Default is 600 seconds."
  3302. msgstr ""
  3303. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:946
  3304. msgid "Maximum transmit power"
  3305. msgstr ""
  3306. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:129
  3307. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:188
  3308. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:199
  3309. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:28
  3310. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:165
  3311. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:323
  3312. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:324
  3313. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:325
  3314. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:329
  3315. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:330
  3316. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:331
  3317. msgid "Mbit/s"
  3318. msgstr ""
  3319. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:35
  3320. msgid "Medium"
  3321. msgstr ""
  3322. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:24
  3323. msgid "Memory"
  3324. msgstr "Memory"
  3325. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:73
  3326. msgid "Memory usage (%)"
  3327. msgstr "Memory usage (%)"
  3328. #: modules/luci-base/htdocs/luci-static/resources/network.js:3865
  3329. msgid "Mesh"
  3330. msgstr ""
  3331. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:156
  3332. msgid "Mesh ID"
  3333. msgstr ""
  3334. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:994
  3335. msgid "Mesh Id"
  3336. msgstr ""
  3337. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:404
  3338. msgid "Method not found"
  3339. msgstr ""
  3340. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:349
  3341. msgid "Method of link monitoring"
  3342. msgstr ""
  3343. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:418
  3344. msgid "Method to determine link status"
  3345. msgstr ""
  3346. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:46
  3347. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:166
  3348. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:185
  3349. msgid "Metric"
  3350. msgstr "Metric"
  3351. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:818
  3352. msgid "Min <abbr title=\"Router Advertisement\">RA</abbr> interval"
  3353. msgstr ""
  3354. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:661
  3355. msgid "Minimum ARP validity time"
  3356. msgstr ""
  3357. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:235
  3358. msgid "Minimum Number of Links"
  3359. msgstr ""
  3360. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:661
  3361. msgid ""
  3362. "Minimum required time in seconds before an ARP entry may be replaced. "
  3363. "Prevents ARP cache thrashing."
  3364. msgstr ""
  3365. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:818
  3366. msgid ""
  3367. "Minimum time allowed between sending unsolicited <abbr title=\"Router "
  3368. "Advertisement, ICMPv6 Type 134\">RA</abbr>. Default is 200 seconds."
  3369. msgstr ""
  3370. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:202
  3371. msgid "Mirror monitor port"
  3372. msgstr ""
  3373. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:201
  3374. msgid "Mirror source port"
  3375. msgstr ""
  3376. #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:9
  3377. msgid "Mobile Data"
  3378. msgstr ""
  3379. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1514
  3380. msgid "Mobility Domain"
  3381. msgstr ""
  3382. #: modules/luci-compat/luasrc/view/cbi/wireless_modefreq.htm:154
  3383. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:434
  3384. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:157
  3385. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:180
  3386. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:492
  3387. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:989
  3388. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1734
  3389. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:378
  3390. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:142
  3391. msgid "Mode"
  3392. msgstr "Mode"
  3393. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:55
  3394. msgid "Model"
  3395. msgstr ""
  3396. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:43
  3397. msgid "Modem bearer teardown in progress."
  3398. msgstr ""
  3399. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:42
  3400. msgid ""
  3401. "Modem connection in progress. Please wait. This process will timeout after 2 "
  3402. "minutes."
  3403. msgstr ""
  3404. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:73
  3405. msgid "Modem default"
  3406. msgstr ""
  3407. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:73
  3408. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:82
  3409. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:61
  3410. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:73
  3411. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:57
  3412. msgid "Modem device"
  3413. msgstr "Modem device"
  3414. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:41
  3415. msgid "Modem disconnection in progress. Please wait."
  3416. msgstr ""
  3417. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:66
  3418. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:24
  3419. msgid "Modem information query failed"
  3420. msgstr ""
  3421. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:114
  3422. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:106
  3423. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:95
  3424. msgid "Modem init timeout"
  3425. msgstr ""
  3426. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:44
  3427. msgid "Modem is disabled."
  3428. msgstr ""
  3429. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:52
  3430. msgid "ModemManager"
  3431. msgstr ""
  3432. #: modules/luci-base/htdocs/luci-static/resources/network.js:3866
  3433. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1077
  3434. msgid "Monitor"
  3435. msgstr "Monitor"
  3436. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:31
  3437. msgid "More Characters"
  3438. msgstr ""
  3439. #: modules/luci-base/htdocs/luci-static/resources/form.js:2529
  3440. msgid "More…"
  3441. msgstr ""
  3442. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:192
  3443. msgid "Mount Point"
  3444. msgstr "Mount Point"
  3445. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:144
  3446. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:228
  3447. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:88
  3448. msgid "Mount Points"
  3449. msgstr "Mount Points"
  3450. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:229
  3451. msgid "Mount Points - Mount Entry"
  3452. msgstr ""
  3453. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:340
  3454. msgid "Mount Points - Swap Entry"
  3455. msgstr ""
  3456. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:228
  3457. msgid ""
  3458. "Mount Points define at which point a memory device will be attached to the "
  3459. "filesystem"
  3460. msgstr ""
  3461. "Mount Points define at which point a memory device will be attached to the "
  3462. "filesystem"
  3463. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:154
  3464. msgid "Mount attached devices"
  3465. msgstr ""
  3466. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:162
  3467. msgid "Mount filesystems not specifically configured"
  3468. msgstr ""
  3469. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:331
  3470. msgid "Mount options"
  3471. msgstr ""
  3472. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:292
  3473. msgid "Mount point"
  3474. msgstr ""
  3475. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:158
  3476. msgid "Mount swap not specifically configured"
  3477. msgstr ""
  3478. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:223
  3479. msgid "Mounted file systems"
  3480. msgstr "Mounted file systems"
  3481. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:152
  3482. msgid "Move down"
  3483. msgstr ""
  3484. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:151
  3485. msgid "Move up"
  3486. msgstr ""
  3487. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:89
  3488. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:94
  3489. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:91
  3490. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:96
  3491. msgid "Multicast"
  3492. msgstr ""
  3493. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:705
  3494. msgid "Multicast routing"
  3495. msgstr ""
  3496. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:711
  3497. msgid "Multicast to unicast"
  3498. msgstr ""
  3499. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1509
  3500. msgid "NAS ID"
  3501. msgstr "NAS ID"
  3502. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:87
  3503. msgid "NAT-T Mode"
  3504. msgstr ""
  3505. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:41
  3506. msgid "NAT64 Prefix"
  3507. msgstr ""
  3508. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:26
  3509. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:31
  3510. msgid "NCM"
  3511. msgstr ""
  3512. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:911
  3513. msgid "NDP-Proxy slave"
  3514. msgstr ""
  3515. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:72
  3516. msgid "NT Domain"
  3517. msgstr ""
  3518. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:276
  3519. msgid "NTP server candidates"
  3520. msgstr ""
  3521. #: modules/luci-base/htdocs/luci-static/resources/form.js:2567
  3522. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3808
  3523. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:27
  3524. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1082
  3525. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:67
  3526. msgid "Name"
  3527. msgstr "Name"
  3528. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1996
  3529. msgid "Name of the new network"
  3530. msgstr "Name of the new network"
  3531. #: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:44
  3532. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:50
  3533. msgid "Navigation"
  3534. msgstr "Navigation"
  3535. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:653
  3536. msgid "Neighbour cache validity"
  3537. msgstr ""
  3538. #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:45
  3539. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1022
  3540. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2148
  3541. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:383
  3542. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:63
  3543. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:228
  3544. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:163
  3545. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:182
  3546. msgid "Network"
  3547. msgstr "Network"
  3548. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1990
  3549. msgid "Network SSID"
  3550. msgstr ""
  3551. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:68
  3552. msgid "Network Utilities"
  3553. msgstr ""
  3554. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:380
  3555. msgid "Network boot image"
  3556. msgstr ""
  3557. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:392
  3558. msgid "Network bridge configuration migration"
  3559. msgstr ""
  3560. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:343
  3561. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1380
  3562. msgid "Network device"
  3563. msgstr ""
  3564. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:7
  3565. msgid "Network device activity (kernel: netdev)"
  3566. msgstr ""
  3567. #: modules/luci-base/htdocs/luci-static/resources/network.js:15
  3568. #: modules/luci-compat/luasrc/model/network.lua:33
  3569. msgid "Network device is not present"
  3570. msgstr ""
  3571. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:426
  3572. msgid "Network ifname configuration migration"
  3573. msgstr ""
  3574. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:57
  3575. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62
  3576. msgid "Network interface"
  3577. msgstr ""
  3578. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:706
  3579. msgid "Never"
  3580. msgstr ""
  3581. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1134
  3582. msgid "New interface for \"%s\" can not be created: %s"
  3583. msgstr ""
  3584. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1085
  3585. msgid "New interface name…"
  3586. msgstr ""
  3587. #: modules/luci-compat/luasrc/view/cbi/delegator.htm:11
  3588. msgid "Next »"
  3589. msgstr ""
  3590. #: modules/luci-base/htdocs/luci-static/resources/form.js:3702
  3591. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:296
  3592. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:345
  3593. msgid "No"
  3594. msgstr ""
  3595. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:643
  3596. msgid "No DHCP Server configured for this interface"
  3597. msgstr ""
  3598. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:196
  3599. msgid "No Data"
  3600. msgstr ""
  3601. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1382
  3602. msgid "No Encryption"
  3603. msgstr ""
  3604. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:87
  3605. msgid "No Host Routes"
  3606. msgstr ""
  3607. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:89
  3608. msgid "No NAT-T"
  3609. msgstr ""
  3610. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:79
  3611. msgid "No RX signal"
  3612. msgstr ""
  3613. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69
  3614. msgid "No client associated"
  3615. msgstr ""
  3616. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:406
  3617. msgid "No data received"
  3618. msgstr ""
  3619. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:683
  3620. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:690
  3621. msgid "No enforcement"
  3622. msgstr ""
  3623. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2899
  3624. msgid "No entries in this directory"
  3625. msgstr ""
  3626. #: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:82
  3627. msgid "No files found"
  3628. msgstr ""
  3629. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:86
  3630. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:91
  3631. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:88
  3632. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:93
  3633. msgid "No host route"
  3634. msgstr ""
  3635. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:731
  3636. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:142
  3637. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:358
  3638. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:59
  3639. msgid "No information available"
  3640. msgstr ""
  3641. #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:63
  3642. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:8
  3643. msgid "No matching prefix delegation"
  3644. msgstr ""
  3645. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:140
  3646. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:143
  3647. msgid "No more slaves available"
  3648. msgstr ""
  3649. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:187
  3650. msgid "No more slaves available, can not save interface"
  3651. msgstr ""
  3652. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:251
  3653. msgid "No negative cache"
  3654. msgstr ""
  3655. #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:54
  3656. #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:212
  3657. #: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:59
  3658. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:79
  3659. msgid "No password set!"
  3660. msgstr ""
  3661. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:125
  3662. msgid "No peers defined yet"
  3663. msgstr ""
  3664. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:140
  3665. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:277
  3666. msgid "No public keys present yet."
  3667. msgstr ""
  3668. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:91
  3669. msgid "No rules in this chain."
  3670. msgstr "No rules in this chain."
  3671. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:384
  3672. msgid "No validation or filtering"
  3673. msgstr ""
  3674. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:153
  3675. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1176
  3676. msgid "No zone assigned"
  3677. msgstr ""
  3678. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:58
  3679. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:84
  3680. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:187
  3681. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:231
  3682. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:275
  3683. msgid "Noise"
  3684. msgstr "Noise"
  3685. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:26
  3686. msgid "Noise Margin (SNR)"
  3687. msgstr ""
  3688. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:272
  3689. msgid "Noise:"
  3690. msgstr ""
  3691. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:34
  3692. msgid "Non Pre-emptive CRC errors (CRC_P)"
  3693. msgstr ""
  3694. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:394
  3695. msgid "Non-wildcard"
  3696. msgstr ""
  3697. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:159
  3698. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:183
  3699. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:101
  3700. msgid "None"
  3701. msgstr ""
  3702. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:954
  3703. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:184
  3704. msgid "Normal"
  3705. msgstr ""
  3706. #: modules/luci-base/luasrc/view/error404.htm:8
  3707. msgid "Not Found"
  3708. msgstr ""
  3709. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:75
  3710. msgid "Not associated"
  3711. msgstr ""
  3712. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:32
  3713. msgid "Not connected"
  3714. msgstr ""
  3715. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:46
  3716. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:81
  3717. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:121
  3718. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:147
  3719. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:312
  3720. msgid "Not present"
  3721. msgstr ""
  3722. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:102
  3723. msgid "Not started on boot"
  3724. msgstr ""
  3725. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:409
  3726. msgid "Not supported"
  3727. msgstr ""
  3728. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1678
  3729. msgid ""
  3730. "Note: Some wireless drivers do not fully support 802.11w. E.g. mwlwifi may "
  3731. "have problems"
  3732. msgstr ""
  3733. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:128
  3734. msgid "Notes"
  3735. msgstr ""
  3736. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:174
  3737. msgid "Notice"
  3738. msgstr ""
  3739. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:127
  3740. msgid "Nslookup"
  3741. msgstr ""
  3742. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:332
  3743. msgid "Number of IGMP membership reports"
  3744. msgstr ""
  3745. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:362
  3746. msgid "Number of cached DNS entries (max is 10000, 0 is no caching)"
  3747. msgstr ""
  3748. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:309
  3749. msgid "Number of peer notifications after failover event"
  3750. msgstr ""
  3751. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:69
  3752. msgid "Obfuscated Group Password"
  3753. msgstr ""
  3754. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:61
  3755. msgid "Obfuscated Password"
  3756. msgstr ""
  3757. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:106
  3758. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:98
  3759. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:49
  3760. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:94
  3761. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:80
  3762. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:54
  3763. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:67
  3764. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:93
  3765. msgid "Obtain IPv6 address"
  3766. msgstr ""
  3767. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/default-on.js:18
  3768. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:351
  3769. msgid "Off"
  3770. msgstr ""
  3771. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/timer.js:15
  3772. msgid "Off-State Delay"
  3773. msgstr ""
  3774. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/default-on.js:18
  3775. msgid "On"
  3776. msgstr ""
  3777. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:96
  3778. msgid "On-Link route"
  3779. msgstr ""
  3780. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/timer.js:11
  3781. msgid "On-State Delay"
  3782. msgstr ""
  3783. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:504
  3784. msgid "One of hostname or mac address must be specified!"
  3785. msgstr ""
  3786. #: modules/luci-base/htdocs/luci-static/resources/validation.js:469
  3787. msgid "One of the following: %s"
  3788. msgstr ""
  3789. #: modules/luci-compat/luasrc/view/cbi/nullsection.htm:17
  3790. #: modules/luci-compat/luasrc/view/cbi/ucisection.htm:22
  3791. msgid "One or more fields contain invalid values!"
  3792. msgstr ""
  3793. #: modules/luci-compat/luasrc/view/cbi/map.htm:32
  3794. msgid "One or more invalid/required values on tab"
  3795. msgstr ""
  3796. #: modules/luci-compat/luasrc/view/cbi/nullsection.htm:19
  3797. #: modules/luci-compat/luasrc/view/cbi/ucisection.htm:24
  3798. msgid "One or more required fields have no value!"
  3799. msgstr ""
  3800. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:702
  3801. msgid "Only allow communication with non-isolated bridge ports when enabled"
  3802. msgstr ""
  3803. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:229
  3804. msgid ""
  3805. "Only if current active slave fails and the primary slave is up (failure, 2)"
  3806. msgstr ""
  3807. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:442
  3808. #: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:19
  3809. msgid "Open list..."
  3810. msgstr ""
  3811. #: modules/luci-compat/luasrc/model/network/proto_openconnect.lua:9
  3812. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:64
  3813. msgid "OpenConnect (CISCO AnyConnect)"
  3814. msgstr ""
  3815. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:12
  3816. msgid "OpenFortivpn"
  3817. msgstr ""
  3818. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:724
  3819. msgid ""
  3820. "Operate in <em>relay mode</em> if a designated master interface is "
  3821. "configured and active, otherwise disable <abbr title=\"Neighbour Discovery "
  3822. "Protocol\">NDP</abbr> proxying."
  3823. msgstr ""
  3824. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:723
  3825. msgid ""
  3826. "Operate in <em>relay mode</em> if a designated master interface is "
  3827. "configured and active, otherwise fall back to <em>server mode</em>."
  3828. msgstr ""
  3829. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:725
  3830. msgid ""
  3831. "Operate in <em>relay mode</em> if an upstream IPv6 prefix is present, "
  3832. "otherwise disable service."
  3833. msgstr ""
  3834. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:939
  3835. msgid "Operating frequency"
  3836. msgstr ""
  3837. #: modules/luci-base/htdocs/luci-static/resources/form.js:1974
  3838. #: modules/luci-base/htdocs/luci-static/resources/form.js:3712
  3839. msgid "Option \"%s\" contains an invalid input value."
  3840. msgstr ""
  3841. #: modules/luci-base/htdocs/luci-static/resources/form.js:1987
  3842. msgid "Option \"%s\" must not be empty."
  3843. msgstr ""
  3844. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4060
  3845. msgid "Option changed"
  3846. msgstr ""
  3847. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4062
  3848. msgid "Option removed"
  3849. msgstr ""
  3850. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1680
  3851. msgid "Optional"
  3852. msgstr ""
  3853. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:128
  3854. msgid "Optional, free-form notes about this device"
  3855. msgstr ""
  3856. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:97
  3857. msgid ""
  3858. "Optional. 32-bit mark for outgoing encrypted packets. Enter value in hex, "
  3859. "starting with <code>0x</code>."
  3860. msgstr ""
  3861. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1003
  3862. msgid ""
  3863. "Optional. Allowed values: 'eui64', 'random', fixed value like '::1' or "
  3864. "'::1:2'. When IPv6 prefix (like 'a:b:c:d::') is received from a delegating "
  3865. "server, use the suffix (like '::1') to form the IPv6 address ('a:b:c:d::1') "
  3866. "for the interface."
  3867. msgstr ""
  3868. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:138
  3869. msgid ""
  3870. "Optional. Base64-encoded preshared key. Adds in an additional layer of "
  3871. "symmetric-key cryptography for post-quantum resistance."
  3872. msgstr ""
  3873. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
  3874. msgid "Optional. Create routes for Allowed IPs for this peer."
  3875. msgstr ""
  3876. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:129
  3877. msgid "Optional. Description of peer."
  3878. msgstr ""
  3879. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:87
  3880. msgid "Optional. Do not create host routes to peers."
  3881. msgstr ""
  3882. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:156
  3883. msgid ""
  3884. "Optional. Host of peer. Names are resolved prior to bringing up the "
  3885. "interface."
  3886. msgstr ""
  3887. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:92
  3888. msgid "Optional. Maximum Transmission Unit of tunnel interface."
  3889. msgstr ""
  3890. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:160
  3891. msgid "Optional. Port of peer."
  3892. msgstr ""
  3893. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:164
  3894. msgid ""
  3895. "Optional. Seconds between keep alive messages. Default is 0 (disabled). "
  3896. "Recommended value if this device is behind a NAT is 25."
  3897. msgstr ""
  3898. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:78
  3899. msgid "Optional. UDP port used for outgoing and incoming packets."
  3900. msgstr ""
  3901. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:72
  3902. msgid "Options"
  3903. msgstr "Options"
  3904. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:119
  3905. msgid "Options:"
  3906. msgstr ""
  3907. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:348
  3908. msgid "Other:"
  3909. msgstr ""
  3910. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:69
  3911. msgid "Out"
  3912. msgstr "Out"
  3913. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:277
  3914. msgid "Outbound:"
  3915. msgstr ""
  3916. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:101
  3917. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:106
  3918. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:103
  3919. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:108
  3920. msgid "Outgoing checksum"
  3921. msgstr ""
  3922. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:96
  3923. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:101
  3924. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:98
  3925. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:103
  3926. msgid "Outgoing key"
  3927. msgstr ""
  3928. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:103
  3929. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:108
  3930. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:105
  3931. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:110
  3932. msgid "Outgoing serialization"
  3933. msgstr ""
  3934. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:50
  3935. msgid "Output Interface"
  3936. msgstr ""
  3937. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:59
  3938. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:165
  3939. msgid "Output zone"
  3940. msgstr ""
  3941. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:16
  3942. msgid "Overlap"
  3943. msgstr ""
  3944. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:945
  3945. msgid "Override IPv4 routing table"
  3946. msgstr ""
  3947. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:950
  3948. msgid "Override IPv6 routing table"
  3949. msgstr ""
  3950. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:64
  3951. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:69
  3952. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:69
  3953. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:74
  3954. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:53
  3955. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:121
  3956. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:156
  3957. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:57
  3958. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:132
  3959. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:118
  3960. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:96
  3961. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:105
  3962. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:99
  3963. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:62
  3964. msgid "Override MTU"
  3965. msgstr ""
  3966. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:74
  3967. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:79
  3968. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:63
  3969. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:67
  3970. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:62
  3971. msgid "Override TOS"
  3972. msgstr ""
  3973. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:69
  3974. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:74
  3975. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:74
  3976. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:79
  3977. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:58
  3978. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:62
  3979. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:57
  3980. msgid "Override TTL"
  3981. msgstr ""
  3982. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1151
  3983. msgid "Override default interface name"
  3984. msgstr ""
  3985. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:167
  3986. msgid "Override the gateway in DHCP responses"
  3987. msgstr ""
  3988. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:691
  3989. msgid ""
  3990. "Override the netmask sent to clients. Normally it is calculated from the "
  3991. "subnet that is served."
  3992. msgstr ""
  3993. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:179
  3994. msgid "Override the table used for internal routes"
  3995. msgstr ""
  3996. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:3
  3997. msgid "Overview"
  3998. msgstr "Overview"
  3999. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2742
  4000. msgid "Overwrite existing file \"%s\" ?"
  4001. msgstr ""
  4002. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:70
  4003. msgid "Owner"
  4004. msgstr "Owner"
  4005. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:98
  4006. msgid "PAP/CHAP (both)"
  4007. msgstr ""
  4008. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:99
  4009. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:109
  4010. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:91
  4011. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:45
  4012. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:90
  4013. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:76
  4014. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:44
  4015. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:63
  4016. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:83
  4017. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:46
  4018. msgid "PAP/CHAP password"
  4019. msgstr ""
  4020. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:97
  4021. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:104
  4022. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:89
  4023. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:43
  4024. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:88
  4025. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:74
  4026. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:42
  4027. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:61
  4028. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:78
  4029. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:44
  4030. msgid "PAP/CHAP username"
  4031. msgstr ""
  4032. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:103
  4033. msgid "PDP Type"
  4034. msgstr ""
  4035. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:69
  4036. msgid "PID"
  4037. msgstr "PID"
  4038. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:96
  4039. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:95
  4040. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:88
  4041. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:69
  4042. msgid "PIN"
  4043. msgstr ""
  4044. #: modules/luci-base/htdocs/luci-static/resources/network.js:21
  4045. #: modules/luci-compat/luasrc/model/network.lua:39
  4046. msgid "PIN code rejected"
  4047. msgstr ""
  4048. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1549
  4049. msgid "PMK R1 Push"
  4050. msgstr ""
  4051. #: modules/luci-compat/luasrc/model/network/proto_ppp.lua:13
  4052. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:43
  4053. msgid "PPP"
  4054. msgstr ""
  4055. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:58
  4056. msgid "PPPoA Encapsulation"
  4057. msgstr "PPPoA Encapsulation"
  4058. #: modules/luci-compat/luasrc/model/network/proto_ppp.lua:19
  4059. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:28
  4060. msgid "PPPoATM"
  4061. msgstr ""
  4062. #: modules/luci-compat/luasrc/model/network/proto_ppp.lua:17
  4063. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:28
  4064. msgid "PPPoE"
  4065. msgstr ""
  4066. #: modules/luci-compat/luasrc/model/network/proto_pppossh.lua:9
  4067. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:28
  4068. msgid "PPPoSSH"
  4069. msgstr ""
  4070. #: modules/luci-compat/luasrc/model/network/proto_ppp.lua:15
  4071. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:28
  4072. msgid "PPtP"
  4073. msgstr ""
  4074. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:73
  4075. msgid "PSID offset"
  4076. msgstr ""
  4077. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:70
  4078. msgid "PSID-bits length"
  4079. msgstr ""
  4080. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1473
  4081. msgid "PTM/EFM (Packet Transfer Mode)"
  4082. msgstr ""
  4083. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1437
  4084. msgid "Packet Steering"
  4085. msgstr ""
  4086. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:54
  4087. msgid "Packets"
  4088. msgstr "Packets"
  4089. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:275
  4090. msgid "Packets To Transmit Before Moving To Next Slave"
  4091. msgstr ""
  4092. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:153
  4093. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1176
  4094. msgid "Part of zone %q"
  4095. msgstr ""
  4096. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:438
  4097. msgctxt "MACVLAN mode"
  4098. msgid "Pass-through (Mirror physical device to single MAC VLAN)"
  4099. msgstr ""
  4100. #: modules/luci-base/luasrc/view/sysauth.htm:29
  4101. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1671
  4102. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:51
  4103. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:114
  4104. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:52
  4105. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:58
  4106. msgid "Password"
  4107. msgstr "Password"
  4108. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:25
  4109. msgid "Password authentication"
  4110. msgstr "Password authentication"
  4111. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1603
  4112. msgid "Password of Private Key"
  4113. msgstr "Password of Private Key"
  4114. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1661
  4115. msgid "Password of inner Private Key"
  4116. msgstr ""
  4117. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:31
  4118. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:33
  4119. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:35
  4120. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:37
  4121. msgid "Password strength"
  4122. msgstr ""
  4123. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:117
  4124. msgid "Password2"
  4125. msgstr ""
  4126. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:260
  4127. msgid "Paste or drag SSH key file…"
  4128. msgstr ""
  4129. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1582
  4130. msgid "Path to CA-Certificate"
  4131. msgstr "Path to CA-Certificate"
  4132. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1597
  4133. msgid "Path to Client-Certificate"
  4134. msgstr ""
  4135. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1600
  4136. msgid "Path to Private Key"
  4137. msgstr "Path to Private Key"
  4138. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1640
  4139. msgid "Path to inner CA-Certificate"
  4140. msgstr ""
  4141. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1655
  4142. msgid "Path to inner Client-Certificate"
  4143. msgstr ""
  4144. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1658
  4145. msgid "Path to inner Private Key"
  4146. msgstr ""
  4147. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2732
  4148. msgid "Paused"
  4149. msgstr ""
  4150. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:273
  4151. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:283
  4152. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:334
  4153. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:344
  4154. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:354
  4155. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:239
  4156. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:249
  4157. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:259
  4158. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:268
  4159. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:278
  4160. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:296
  4161. msgid "Peak:"
  4162. msgstr ""
  4163. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:89
  4164. msgid "Peer IP address to assign"
  4165. msgstr ""
  4166. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:613
  4167. msgid "Peer MAC address"
  4168. msgstr ""
  4169. #: modules/luci-base/htdocs/luci-static/resources/network.js:14
  4170. #: modules/luci-compat/luasrc/model/network.lua:32
  4171. msgid "Peer address is missing"
  4172. msgstr ""
  4173. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:594
  4174. msgid "Peer device name"
  4175. msgstr ""
  4176. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:110
  4177. msgid "Peers"
  4178. msgstr ""
  4179. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:80
  4180. msgid "Perfect Forward Secrecy"
  4181. msgstr ""
  4182. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:103
  4183. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:108
  4184. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:105
  4185. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:110
  4186. msgid "Perform outgoing packets serialization (optional)."
  4187. msgstr ""
  4188. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:34
  4189. msgid "Perform reboot"
  4190. msgstr "Perform reboot"
  4191. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:376
  4192. msgid "Perform reset"
  4193. msgstr ""
  4194. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:407
  4195. msgid "Permission denied"
  4196. msgstr ""
  4197. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:164
  4198. msgid "Persistent Keep Alive"
  4199. msgstr ""
  4200. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:290
  4201. msgid "Phy Rate:"
  4202. msgstr ""
  4203. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:479
  4204. msgid "Physical Settings"
  4205. msgstr "Physical Settings"
  4206. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:79
  4207. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:80
  4208. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:90
  4209. msgid "Ping"
  4210. msgstr ""
  4211. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:49
  4212. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:50
  4213. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:84
  4214. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:85
  4215. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:138
  4216. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:64
  4217. msgid "Pkts."
  4218. msgstr "Pkts."
  4219. #: modules/luci-base/luasrc/view/sysauth.htm:19
  4220. msgid "Please enter your username and password."
  4221. msgstr "Please enter your username and password."
  4222. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3791
  4223. msgid "Please select the file to upload."
  4224. msgstr ""
  4225. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:54
  4226. msgid "Policy"
  4227. msgstr "Policy"
  4228. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:21
  4229. msgid "Port"
  4230. msgstr "Port"
  4231. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:702
  4232. msgid "Port isolation"
  4233. msgstr ""
  4234. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:278
  4235. msgid "Port status:"
  4236. msgstr ""
  4237. #: modules/luci-base/htdocs/luci-static/resources/validation.js:495
  4238. msgid "Potential negation of: %s"
  4239. msgstr ""
  4240. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:37
  4241. msgid "Power Management Mode"
  4242. msgstr ""
  4243. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:35
  4244. msgid "Pre-emptive CRC errors (CRCP_P)"
  4245. msgstr ""
  4246. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:74
  4247. msgid "Prefer LTE"
  4248. msgstr ""
  4249. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:75
  4250. msgid "Prefer UMTS"
  4251. msgstr ""
  4252. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:33
  4253. msgid "Prefix Delegated"
  4254. msgstr ""
  4255. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:138
  4256. msgid "Preshared Key"
  4257. msgstr ""
  4258. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:118
  4259. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:102
  4260. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:88
  4261. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:62
  4262. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:75
  4263. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:98
  4264. msgid ""
  4265. "Presume peer to be dead after given amount of LCP echo failures, use 0 to "
  4266. "ignore failures"
  4267. msgstr ""
  4268. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:407
  4269. msgid "Prevent listening on these interfaces."
  4270. msgstr ""
  4271. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1147
  4272. msgid "Prevents client-to-client communication"
  4273. msgstr "Prevents client-to-client communication"
  4274. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:211
  4275. msgid "Primary Slave"
  4276. msgstr ""
  4277. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:170
  4278. msgctxt "VLAN port state"
  4279. msgid "Primary VLAN ID"
  4280. msgstr ""
  4281. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:228
  4282. msgid ""
  4283. "Primary becomes active slave when it comes back up if speed and duplex "
  4284. "better than current slave (better, 1)"
  4285. msgstr ""
  4286. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:227
  4287. msgid "Primary becomes active slave whenever it comes back up (always, 0)"
  4288. msgstr ""
  4289. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:508
  4290. msgid "Priority"
  4291. msgstr ""
  4292. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:436
  4293. msgctxt "MACVLAN mode"
  4294. msgid "Private (Prevent communication between MAC VLANs)"
  4295. msgstr ""
  4296. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:61
  4297. msgid "Private Key"
  4298. msgstr ""
  4299. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:64
  4300. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:63
  4301. msgid "Processes"
  4302. msgstr "Processes"
  4303. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:67
  4304. msgid "Prot."
  4305. msgstr "Prot."
  4306. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:80
  4307. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:554
  4308. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1099
  4309. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:384
  4310. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:32
  4311. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:168
  4312. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:187
  4313. msgid "Protocol"
  4314. msgstr "Protocol"
  4315. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:267
  4316. msgid "Provide NTP server"
  4317. msgstr ""
  4318. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:872
  4319. msgid ""
  4320. "Provide a DHCPv6 server on this interface and reply to DHCPv6 solicitations "
  4321. "and requests."
  4322. msgstr ""
  4323. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:882
  4324. msgid "Provide new network"
  4325. msgstr ""
  4326. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1076
  4327. msgid "Pseudo Ad-Hoc (ahdemo)"
  4328. msgstr "Pseudo Ad-Hoc (ahdemo)"
  4329. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:134
  4330. msgid "Public Key"
  4331. msgstr ""
  4332. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:284
  4333. msgid ""
  4334. "Public keys allow for the passwordless SSH logins with a higher security "
  4335. "compared to the use of plain passwords. In order to upload a new key to the "
  4336. "device, paste an OpenSSH compatible public key line or drag a <code>.pub</"
  4337. "code> file into the input field."
  4338. msgstr ""
  4339. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:192
  4340. msgid "Public prefix routed to this device for distribution to clients."
  4341. msgstr ""
  4342. #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:9
  4343. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:27
  4344. msgid "QMI Cellular"
  4345. msgstr ""
  4346. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:140
  4347. msgid "Quality"
  4348. msgstr ""
  4349. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:264
  4350. msgid ""
  4351. "Query all available upstream <abbr title=\"Domain Name System\">DNS</abbr> "
  4352. "servers"
  4353. msgstr ""
  4354. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:556
  4355. msgid "Query interval"
  4356. msgstr ""
  4357. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:561
  4358. msgid "Query response interval"
  4359. msgstr ""
  4360. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1537
  4361. msgid "R0 Key Lifetime"
  4362. msgstr ""
  4363. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1543
  4364. msgid "R1 Key Holder"
  4365. msgstr ""
  4366. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:88
  4367. msgid "RFC3947 NAT-T mode"
  4368. msgstr ""
  4369. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1002
  4370. msgid "RSSI threshold for joining"
  4371. msgstr ""
  4372. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:966
  4373. msgid "RTS/CTS Threshold"
  4374. msgstr "RTS/CTS Threshold"
  4375. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:49
  4376. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:84
  4377. msgid "RX"
  4378. msgstr "RX"
  4379. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:232
  4380. msgid "RX Rate"
  4381. msgstr ""
  4382. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2152
  4383. msgid "RX Rate / TX Rate"
  4384. msgstr ""
  4385. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1415
  4386. msgid "Radius-Accounting-Port"
  4387. msgstr ""
  4388. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1420
  4389. msgid "Radius-Accounting-Secret"
  4390. msgstr ""
  4391. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1410
  4392. msgid "Radius-Accounting-Server"
  4393. msgstr ""
  4394. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1400
  4395. msgid "Radius-Authentication-Port"
  4396. msgstr ""
  4397. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1405
  4398. msgid "Radius-Authentication-Secret"
  4399. msgstr ""
  4400. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1395
  4401. msgid "Radius-Authentication-Server"
  4402. msgstr ""
  4403. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:88
  4404. msgid "Raw hex-encoded bytes. Leave empty unless your ISP require this"
  4405. msgstr ""
  4406. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:178
  4407. msgid ""
  4408. "Read <code>/etc/ethers</code> to configure the <abbr title=\"Dynamic Host "
  4409. "Configuration Protocol\">DHCP</abbr>-Server"
  4410. msgstr ""
  4411. "Read <code>/etc/ethers</code> to configure the <abbr title=\"Dynamic Host "
  4412. "Configuration Protocol\">DHCP</abbr>-Server"
  4413. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:559
  4414. msgid "Really switch protocol?"
  4415. msgstr ""
  4416. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:88
  4417. msgid "Realtime Graphs"
  4418. msgstr ""
  4419. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1520
  4420. msgid "Reassociation Deadline"
  4421. msgstr ""
  4422. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:293
  4423. msgid "Rebind protection"
  4424. msgstr ""
  4425. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:20
  4426. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:126
  4427. msgid "Reboot"
  4428. msgstr "Reboot"
  4429. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:153
  4430. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:162
  4431. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:46
  4432. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:51
  4433. msgid "Rebooting…"
  4434. msgstr ""
  4435. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:21
  4436. msgid "Reboots the operating system of your device"
  4437. msgstr "Reboots the operating system of your device"
  4438. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:25
  4439. msgid "Receive"
  4440. msgstr "Receive"
  4441. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:83
  4442. msgid "Recommended. IP addresses of the WireGuard interface."
  4443. msgstr ""
  4444. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:504
  4445. msgid "Reconnect this interface"
  4446. msgstr ""
  4447. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:57
  4448. msgid "References"
  4449. msgstr "References"
  4450. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2726
  4451. msgid "Refreshing"
  4452. msgstr ""
  4453. #: modules/luci-compat/luasrc/model/network/proto_relay.lua:153
  4454. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:39
  4455. msgid "Relay"
  4456. msgstr ""
  4457. #: modules/luci-compat/luasrc/model/network/proto_relay.lua:157
  4458. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:36
  4459. msgid "Relay Bridge"
  4460. msgstr ""
  4461. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:154
  4462. msgid "Relay between networks"
  4463. msgstr ""
  4464. #: modules/luci-compat/luasrc/model/network/proto_relay.lua:12
  4465. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:64
  4466. msgid "Relay bridge"
  4467. msgstr ""
  4468. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:50
  4469. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:49
  4470. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:40
  4471. msgid "Remote IPv4 address"
  4472. msgstr ""
  4473. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:42
  4474. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:42
  4475. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:40
  4476. msgid "Remote IPv4 address or FQDN"
  4477. msgstr ""
  4478. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:40
  4479. msgid "Remote IPv6 address"
  4480. msgstr ""
  4481. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:42
  4482. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:42
  4483. msgid "Remote IPv6 address or FQDN"
  4484. msgstr ""
  4485. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:906
  4486. msgid "Remove"
  4487. msgstr "Remove"
  4488. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1277
  4489. msgid "Remove related device settings from the configuration"
  4490. msgstr ""
  4491. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1994
  4492. msgid "Replace wireless configuration"
  4493. msgstr ""
  4494. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:17
  4495. msgid "Request IPv6-address"
  4496. msgstr ""
  4497. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:23
  4498. msgid "Request IPv6-prefix of length"
  4499. msgstr ""
  4500. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:408
  4501. msgid "Request timeout"
  4502. msgstr ""
  4503. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:100
  4504. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:105
  4505. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:102
  4506. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:107
  4507. msgid "Require incoming checksum (optional)."
  4508. msgstr ""
  4509. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:102
  4510. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:107
  4511. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:104
  4512. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:109
  4513. msgid "Require incoming packets serialization (optional)."
  4514. msgstr ""
  4515. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1681
  4516. msgid "Required"
  4517. msgstr ""
  4518. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34
  4519. msgid "Required for certain ISPs, e.g. Charter with DOCSIS 3"
  4520. msgstr "Required for certain ISPs, e.g. Charter with DOCSIS 3"
  4521. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:61
  4522. msgid "Required. Base64-encoded private key for this interface."
  4523. msgstr ""
  4524. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:134
  4525. msgid "Required. Base64-encoded public key of peer."
  4526. msgstr ""
  4527. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:143
  4528. msgid ""
  4529. "Required. IP addresses and prefixes that this peer is allowed to use inside "
  4530. "the tunnel. Usually the peer's tunnel IP addresses and the networks the peer "
  4531. "routes through the tunnel."
  4532. msgstr ""
  4533. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1311
  4534. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1312
  4535. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1313
  4536. msgid "Requires hostapd"
  4537. msgstr ""
  4538. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1318
  4539. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1319
  4540. msgid "Requires hostapd with EAP Suite-B support"
  4541. msgstr ""
  4542. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1316
  4543. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1317
  4544. msgid "Requires hostapd with EAP support"
  4545. msgstr ""
  4546. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1320
  4547. msgid "Requires hostapd with OWE support"
  4548. msgstr ""
  4549. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1314
  4550. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1315
  4551. msgid "Requires hostapd with SAE support"
  4552. msgstr ""
  4553. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1309
  4554. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1310
  4555. msgid "Requires hostapd with WEP support"
  4556. msgstr ""
  4557. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:233
  4558. msgid ""
  4559. "Requires upstream supports DNSSEC; verify unsigned domain responses really "
  4560. "come from unsigned domains"
  4561. msgstr ""
  4562. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1325
  4563. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1326
  4564. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1327
  4565. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1339
  4566. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1340
  4567. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1341
  4568. msgid "Requires wpa-supplicant"
  4569. msgstr ""
  4570. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1332
  4571. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1333
  4572. msgid "Requires wpa-supplicant with EAP Suite-B support"
  4573. msgstr ""
  4574. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1330
  4575. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1331
  4576. msgid "Requires wpa-supplicant with EAP support"
  4577. msgstr ""
  4578. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1334
  4579. msgid "Requires wpa-supplicant with OWE support"
  4580. msgstr ""
  4581. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1328
  4582. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1329
  4583. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1344
  4584. msgid "Requires wpa-supplicant with SAE support"
  4585. msgstr ""
  4586. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1323
  4587. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1324
  4588. msgid "Requires wpa-supplicant with WEP support"
  4589. msgstr ""
  4590. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:224
  4591. msgid "Reselection policy for primary slave"
  4592. msgstr ""
  4593. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2204
  4594. #: modules/luci-base/luasrc/view/sysauth.htm:39
  4595. #: modules/luci-compat/luasrc/view/cbi/delegator.htm:17
  4596. #: modules/luci-compat/luasrc/view/cbi/footer.htm:30
  4597. #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:66
  4598. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1276
  4599. msgid "Reset"
  4600. msgstr "Reset"
  4601. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:343
  4602. msgid "Reset Counters"
  4603. msgstr "Reset Counters"
  4604. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:374
  4605. msgid "Reset to defaults"
  4606. msgstr ""
  4607. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:162
  4608. msgid "Resolv and Hosts Files"
  4609. msgstr ""
  4610. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:188
  4611. msgid "Resolve file"
  4612. msgstr ""
  4613. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:405
  4614. msgid "Resource not found"
  4615. msgstr ""
  4616. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:506
  4617. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:874
  4618. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:100
  4619. msgid "Restart"
  4620. msgstr "Restart"
  4621. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:348
  4622. msgid "Restart Firewall"
  4623. msgstr "Restart Firewall"
  4624. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:872
  4625. msgid "Restart radio interface"
  4626. msgstr ""
  4627. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:370
  4628. msgid "Restore"
  4629. msgstr ""
  4630. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:380
  4631. msgid "Restore backup"
  4632. msgstr "Restore backup"
  4633. #: modules/luci-base/htdocs/luci-static/resources/ui.js:371
  4634. #: modules/luci-base/htdocs/luci-static/resources/ui.js:372
  4635. msgid "Reveal/hide password"
  4636. msgstr ""
  4637. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:625
  4638. msgid "Reverse path filter"
  4639. msgstr ""
  4640. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4076
  4641. msgid "Revert"
  4642. msgstr "Revert"
  4643. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4161
  4644. msgid "Revert changes"
  4645. msgstr ""
  4646. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4343
  4647. msgid "Revert request failed with status <code>%h</code>"
  4648. msgstr ""
  4649. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4323
  4650. msgid "Reverting configuration…"
  4651. msgstr ""
  4652. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:551
  4653. msgid "Robustness"
  4654. msgstr ""
  4655. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:372
  4656. msgid "Root directory for files served via TFTP"
  4657. msgstr ""
  4658. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:297
  4659. msgid "Root preparation"
  4660. msgstr ""
  4661. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:202
  4662. msgid "Round-Robin policy (balance-rr, 0)"
  4663. msgstr ""
  4664. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
  4665. msgid "Route Allowed IPs"
  4666. msgstr ""
  4667. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:73
  4668. msgid "Route table"
  4669. msgstr ""
  4670. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:60
  4671. msgid "Route type"
  4672. msgstr ""
  4673. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:825
  4674. msgid ""
  4675. "Router Lifetime published in <abbr title=\"Router Advertisement, ICMPv6 Type "
  4676. "134\">RA</abbr> messages. Maximum is 9000 seconds."
  4677. msgstr ""
  4678. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:46
  4679. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:26
  4680. msgid "Router Password"
  4681. msgstr ""
  4682. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:15
  4683. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:197
  4684. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:27
  4685. msgid "Routes"
  4686. msgstr "Routes"
  4687. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:15
  4688. msgid ""
  4689. "Routes specify over which interface and gateway a certain host or network "
  4690. "can be reached."
  4691. msgstr ""
  4692. "Routes specify over which interface and gateway a certain host or network "
  4693. "can be reached."
  4694. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:218
  4695. msgid "Rule"
  4696. msgstr ""
  4697. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:335
  4698. msgid "Run a filesystem check before mounting the device"
  4699. msgstr ""
  4700. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:335
  4701. msgid "Run filesystem check"
  4702. msgstr ""
  4703. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2365
  4704. msgid "Runtime error"
  4705. msgstr ""
  4706. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:219
  4707. msgid "SHA256"
  4708. msgstr ""
  4709. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:59
  4710. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:276
  4711. msgid "SNR"
  4712. msgstr ""
  4713. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:10
  4714. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:38
  4715. msgid "SSH Access"
  4716. msgstr ""
  4717. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:70
  4718. msgid "SSH server address"
  4719. msgstr ""
  4720. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:74
  4721. msgid "SSH server port"
  4722. msgstr ""
  4723. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:58
  4724. msgid "SSH username"
  4725. msgstr ""
  4726. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:283
  4727. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:51
  4728. msgid "SSH-Keys"
  4729. msgstr ""
  4730. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:156
  4731. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:181
  4732. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1732
  4733. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:375
  4734. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:141
  4735. msgid "SSID"
  4736. msgstr "SSID"
  4737. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:9
  4738. msgid "SSTP"
  4739. msgstr ""
  4740. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:41
  4741. msgid "SSTP Server"
  4742. msgstr ""
  4743. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:339
  4744. msgid "SWAP"
  4745. msgstr ""
  4746. #: modules/luci-base/htdocs/luci-static/resources/form.js:2891
  4747. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2199
  4748. #: modules/luci-compat/luasrc/view/cbi/error.htm:17
  4749. #: modules/luci-compat/luasrc/view/cbi/footer.htm:26
  4750. #: modules/luci-compat/luasrc/view/cbi/header.htm:20
  4751. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:433
  4752. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:123
  4753. msgid "Save"
  4754. msgstr "Save"
  4755. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2181
  4756. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4072
  4757. #: modules/luci-compat/luasrc/view/cbi/footer.htm:22
  4758. msgid "Save & Apply"
  4759. msgstr "Save & Apply"
  4760. #: modules/luci-base/htdocs/luci-static/resources/form.js:602
  4761. msgid "Save error"
  4762. msgstr ""
  4763. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:404
  4764. msgid "Save mtdblock"
  4765. msgstr ""
  4766. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:394
  4767. msgid "Save mtdblock contents"
  4768. msgstr ""
  4769. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:879
  4770. msgid "Scan"
  4771. msgstr "Scan"
  4772. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/crontab.js:26
  4773. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:76
  4774. msgid "Scheduled Tasks"
  4775. msgstr "Scheduled Tasks"
  4776. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4056
  4777. msgid "Section added"
  4778. msgstr ""
  4779. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4058
  4780. msgid "Section removed"
  4781. msgstr ""
  4782. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:331
  4783. msgid "See \"mount\" manpage for details"
  4784. msgstr ""
  4785. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2643
  4786. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2783
  4787. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2948
  4788. msgid "Select file…"
  4789. msgstr ""
  4790. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:318
  4791. msgid "Selects the transmit hash policy to use for slave selection"
  4792. msgstr ""
  4793. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:768
  4794. msgid ""
  4795. "Send <abbr title=\"Router Advertisement, ICMPv6 Type 134\">RA</abbr> "
  4796. "messages advertising this device as IPv6 router."
  4797. msgstr ""
  4798. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:650
  4799. msgid "Send ICMP redirects"
  4800. msgstr ""
  4801. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:131
  4802. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:115
  4803. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:101
  4804. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:75
  4805. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:88
  4806. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:111
  4807. msgid ""
  4808. "Send LCP echo requests at the given interval in seconds, only effective in "
  4809. "conjunction with failure threshold"
  4810. msgstr ""
  4811. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:24
  4812. msgid "Send the hostname of this device"
  4813. msgstr ""
  4814. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:157
  4815. msgid "Server Settings"
  4816. msgstr ""
  4817. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:50
  4818. msgid "Service Name"
  4819. msgstr ""
  4820. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:88
  4821. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:72
  4822. msgid "Service Type"
  4823. msgstr ""
  4824. #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:36
  4825. msgid "Services"
  4826. msgstr "Services"
  4827. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2669
  4828. msgid "Session expired"
  4829. msgstr ""
  4830. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:117
  4831. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:166
  4832. msgid "Set Static"
  4833. msgstr ""
  4834. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:911
  4835. msgid "Set interface as NDP-Proxy external slave. Default is off."
  4836. msgstr ""
  4837. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1215
  4838. msgid ""
  4839. "Set interface properties regardless of the link carrier (If set, carrier "
  4840. "sense events do not invoke hotplug handlers)."
  4841. msgstr ""
  4842. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:300
  4843. msgid "Set same MAC Address to all slaves"
  4844. msgstr ""
  4845. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:786
  4846. msgid ""
  4847. "Set the autonomous address-configuration flag in the prefix information "
  4848. "options of sent <abbr title=\"Router Advertisement\">RA</abbr> messages. "
  4849. "When enabled, clients will perform stateless IPv6 address autoconfiguration."
  4850. msgstr ""
  4851. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:719
  4852. msgid ""
  4853. "Set this interface as master for RA and DHCPv6 relaying as well as NDP "
  4854. "proxying."
  4855. msgstr ""
  4856. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:304
  4857. msgid "Set to currently active slave (active, 1)"
  4858. msgstr ""
  4859. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:305
  4860. msgid "Set to first slave added to the bond (follow, 2)"
  4861. msgstr ""
  4862. #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:55
  4863. #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:55
  4864. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:23
  4865. msgid "Setting PLMN failed"
  4866. msgstr ""
  4867. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:68
  4868. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:26
  4869. msgid "Setting operation mode failed"
  4870. msgstr ""
  4871. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:646
  4872. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:662
  4873. msgid "Setup DHCP Server"
  4874. msgstr ""
  4875. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:906
  4876. msgid "Setup routes for proxied IPv6 neighbours."
  4877. msgstr ""
  4878. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:30
  4879. msgid "Severely Errored Seconds (SES)"
  4880. msgstr ""
  4881. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:210
  4882. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:37
  4883. msgid "Short GI"
  4884. msgstr ""
  4885. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1157
  4886. msgid "Short Preamble"
  4887. msgstr ""
  4888. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:440
  4889. #: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:18
  4890. msgid "Show current backup file list"
  4891. msgstr ""
  4892. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:293
  4893. msgid "Show empty chains"
  4894. msgstr ""
  4895. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:276
  4896. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:338
  4897. msgid "Show raw counters"
  4898. msgstr ""
  4899. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:510
  4900. msgid "Shutdown this interface"
  4901. msgstr ""
  4902. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:57
  4903. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:63
  4904. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:186
  4905. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1731
  4906. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:42
  4907. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:374
  4908. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:140
  4909. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:231
  4910. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:274
  4911. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:280
  4912. msgid "Signal"
  4913. msgstr "Signal"
  4914. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2151
  4915. msgid "Signal / Noise"
  4916. msgstr ""
  4917. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:25
  4918. msgid "Signal Attenuation (SATN)"
  4919. msgstr ""
  4920. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:125
  4921. msgid "Signal Refresh Rate"
  4922. msgstr ""
  4923. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:262
  4924. msgid "Signal:"
  4925. msgstr ""
  4926. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3809
  4927. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:217
  4928. msgid "Size"
  4929. msgstr "Size"
  4930. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:361
  4931. msgid "Size of DNS query cache"
  4932. msgstr ""
  4933. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:194
  4934. msgid "Size of the ZRam device in megabytes"
  4935. msgstr ""
  4936. #: modules/luci-compat/luasrc/view/cbi/footer.htm:18
  4937. #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:57
  4938. msgid "Skip"
  4939. msgstr "Skip"
  4940. #: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:40
  4941. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:46
  4942. msgid "Skip to content"
  4943. msgstr "Skip to content"
  4944. #: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:39
  4945. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:45
  4946. msgid "Skip to navigation"
  4947. msgstr "Skip to navigation"
  4948. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:178
  4949. msgid "Slave Interfaces"
  4950. msgstr ""
  4951. #: modules/luci-base/htdocs/luci-static/resources/network.js:2998
  4952. #: modules/luci-compat/luasrc/model/network.lua:1428
  4953. msgid "Software VLAN"
  4954. msgstr ""
  4955. #: modules/luci-compat/luasrc/view/cbi/header.htm:5
  4956. msgid "Some fields are invalid, cannot save values!"
  4957. msgstr ""
  4958. #: modules/luci-base/luasrc/view/error404.htm:9
  4959. msgid "Sorry, the object you requested was not found."
  4960. msgstr ""
  4961. #: modules/luci-base/luasrc/view/error500.htm:9
  4962. msgid "Sorry, the server encountered an unexpected error."
  4963. msgstr ""
  4964. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:412
  4965. msgid ""
  4966. "Sorry, there is no sysupgrade support present; a new firmware image must be "
  4967. "flashed manually. Please refer to the wiki for device specific install "
  4968. "instructions."
  4969. msgstr ""
  4970. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:385
  4971. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:70
  4972. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:184
  4973. msgid "Source"
  4974. msgstr "Source"
  4975. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:84
  4976. msgid "Source Address"
  4977. msgstr ""
  4978. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57
  4979. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:57
  4980. msgid "Source interface"
  4981. msgstr ""
  4982. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:891
  4983. msgid ""
  4984. "Specifies a fixed list of DNS search domains to announce via DHCPv6. If left "
  4985. "unspecified, the local device DNS search domain will be announced."
  4986. msgstr ""
  4987. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:879
  4988. msgid ""
  4989. "Specifies a fixed list of IPv6 DNS server addresses to announce via DHCPv6. "
  4990. "If left unspecified, the device will announce itself as IPv6 DNS server "
  4991. "unless the <em>Local IPv6 DNS server</em> option is disabled."
  4992. msgstr ""
  4993. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:342
  4994. msgid ""
  4995. "Specifies that duplicate frames (received on inactive ports) should be "
  4996. "dropped or delivered"
  4997. msgstr ""
  4998. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:358
  4999. msgid "Specifies the ARP link monitoring frequency in milliseconds"
  5000. msgstr ""
  5001. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:366
  5002. msgid "Specifies the IP addresses to use for ARP monitoring"
  5003. msgstr ""
  5004. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:395
  5005. msgid "Specifies the MII link monitoring frequency in milliseconds"
  5006. msgstr ""
  5007. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:259
  5008. msgid "Specifies the aggregation selection logic to use"
  5009. msgstr ""
  5010. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:292
  5011. msgid "Specifies the directory the device is attached to"
  5012. msgstr ""
  5013. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:792
  5014. msgid ""
  5015. "Specifies the flags sent in <abbr title=\"Router Advertisement\">RA</abbr> "
  5016. "messages, for example to instruct clients to request further information via "
  5017. "stateful DHCPv6."
  5018. msgstr ""
  5019. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:252
  5020. msgid ""
  5021. "Specifies the mac-address for the actor in protocol packet exchanges "
  5022. "(LACPDUs). If empty, masters' mac address defaults to system default"
  5023. msgstr ""
  5024. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:175
  5025. msgid ""
  5026. "Specifies the maximum amount of failed ARP requests until hosts are presumed "
  5027. "to be dead"
  5028. msgstr ""
  5029. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:171
  5030. msgid ""
  5031. "Specifies the maximum amount of seconds after which hosts are presumed to be "
  5032. "dead"
  5033. msgstr ""
  5034. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:946
  5035. msgid ""
  5036. "Specifies the maximum transmit power the wireless radio may use. Depending "
  5037. "on regulatory requirements and wireless usage, the actual transmit power may "
  5038. "be reduced by the driver."
  5039. msgstr ""
  5040. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:236
  5041. msgid ""
  5042. "Specifies the minimum number of links that must be active before asserting "
  5043. "carrier"
  5044. msgstr ""
  5045. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:200
  5046. msgid "Specifies the mode to be used for this bonding interface"
  5047. msgstr ""
  5048. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:333
  5049. msgid ""
  5050. "Specifies the number of IGMP membership reports to be issued after a "
  5051. "failover event in 200ms intervals"
  5052. msgstr ""
  5053. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:276
  5054. msgid ""
  5055. "Specifies the number of packets to transmit through a slave before moving to "
  5056. "the next one"
  5057. msgstr ""
  5058. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:310
  5059. msgid ""
  5060. "Specifies the number of peer notifications (gratuitous ARPs and unsolicited "
  5061. "IPv6 Neighbor Advertisements) to be issued after a failover event"
  5062. msgstr ""
  5063. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:284
  5064. msgid ""
  5065. "Specifies the number of seconds between instances where the bonding driver "
  5066. "sends learning packets to each slaves peer switch"
  5067. msgstr ""
  5068. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:374
  5069. msgid "Specifies the quantity of ARP IP targets that must be reachable"
  5070. msgstr ""
  5071. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:268
  5072. msgid ""
  5073. "Specifies the rate in which the link partner will be asked to transmit "
  5074. "LACPDU packets"
  5075. msgstr ""
  5076. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:225
  5077. msgid ""
  5078. "Specifies the reselection policy for the primary slave when failure of the "
  5079. "active slave or recovery of the primary slave occurs"
  5080. msgstr ""
  5081. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:244
  5082. msgid "Specifies the system priority"
  5083. msgstr ""
  5084. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:403
  5085. msgid ""
  5086. "Specifies the time in milliseconds to wait before disabling a slave after a "
  5087. "link failure detection"
  5088. msgstr ""
  5089. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:411
  5090. msgid ""
  5091. "Specifies the time in milliseconds to wait before enabling a slave after a "
  5092. "link recovery detection"
  5093. msgstr ""
  5094. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:494
  5095. msgid ""
  5096. "Specifies the wired ports to attach to this bridge. In order to attach "
  5097. "wireless networks, choose the associated interface as network in the "
  5098. "wireless settings."
  5099. msgstr ""
  5100. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:382
  5101. msgid ""
  5102. "Specifies whether ARP probes and replies should be validated or non-ARP "
  5103. "traffic should be filtered for link monitoring"
  5104. msgstr ""
  5105. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:301
  5106. msgid ""
  5107. "Specifies whether active-backup mode should set all slaves to the same MAC "
  5108. "address at enslavement"
  5109. msgstr ""
  5110. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:419
  5111. msgid ""
  5112. "Specifies whether or not miimon should use MII or ETHTOOL ioctls vs. "
  5113. "netif_carrier_ok()"
  5114. msgstr ""
  5115. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:293
  5116. msgid ""
  5117. "Specifies whether to shuffle active flows across slaves based on the load"
  5118. msgstr ""
  5119. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:179
  5120. msgid ""
  5121. "Specifies which slave interfaces should be attached to this bonding interface"
  5122. msgstr ""
  5123. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:212
  5124. msgid ""
  5125. "Specifies which slave is the primary device. It will always be the active "
  5126. "slave while it is available"
  5127. msgstr ""
  5128. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:63
  5129. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:67
  5130. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:62
  5131. msgid "Specify a TOS (Type of Service)."
  5132. msgstr ""
  5133. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:74
  5134. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:79
  5135. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:79
  5136. msgid ""
  5137. "Specify a TOS (Type of Service). Can be <code>inherit</code> (the outer "
  5138. "header inherits the value of the inner header) or an hexadecimal value "
  5139. "<code>00..FF</code> (optional)."
  5140. msgstr ""
  5141. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:74
  5142. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:74
  5143. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:79
  5144. msgid ""
  5145. "Specify a TTL (Time to Live) for the encapsulating packet other than the "
  5146. "default (64) (optional)."
  5147. msgstr ""
  5148. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:69
  5149. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:58
  5150. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:62
  5151. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:57
  5152. msgid ""
  5153. "Specify a TTL (Time to Live) for the encapsulating packet other than the "
  5154. "default (64)."
  5155. msgstr ""
  5156. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:84
  5157. msgid ""
  5158. "Specify a Traffic Class. Can be <code>inherit</code> (the outer header "
  5159. "inherits the value of the inner header) or an hexadecimal value <code>00.."
  5160. "FF</code> (optional)."
  5161. msgstr ""
  5162. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:64
  5163. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:69
  5164. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:69
  5165. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:74
  5166. msgid ""
  5167. "Specify an MTU (Maximum Transmission Unit) other than the default (1280 "
  5168. "bytes) (optional)."
  5169. msgstr ""
  5170. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:53
  5171. msgid ""
  5172. "Specify an MTU (Maximum Transmission Unit) other than the default (1280 "
  5173. "bytes)."
  5174. msgstr ""
  5175. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2011
  5176. msgid "Specify the secret encryption key here."
  5177. msgstr ""
  5178. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:657
  5179. msgid "Stale neighbour cache timeout"
  5180. msgstr ""
  5181. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:669
  5182. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:99
  5183. msgid "Start"
  5184. msgstr "Start"
  5185. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:134
  5186. msgid "Start WPS"
  5187. msgstr ""
  5188. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:76
  5189. msgid "Start priority"
  5190. msgstr "Start priority"
  5191. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1835
  5192. msgid "Start refresh"
  5193. msgstr ""
  5194. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4276
  5195. msgid "Starting configuration apply…"
  5196. msgstr ""
  5197. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1748
  5198. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:398
  5199. msgid "Starting wireless scan..."
  5200. msgstr ""
  5201. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:109
  5202. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:64
  5203. msgid "Startup"
  5204. msgstr ""
  5205. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:19
  5206. msgid "Static IPv4 Routes"
  5207. msgstr "Static IPv4 Routes"
  5208. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:19
  5209. msgid "Static IPv6 Routes"
  5210. msgstr "Static IPv6 Routes"
  5211. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:90
  5212. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:129
  5213. msgid "Static Lease"
  5214. msgstr ""
  5215. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:165
  5216. msgid "Static Leases"
  5217. msgstr "Static Leases"
  5218. #: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:76
  5219. msgid "Static Routes"
  5220. msgstr "Static Routes"
  5221. #: modules/luci-base/htdocs/luci-static/resources/network.js:2099
  5222. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:172
  5223. #: modules/luci-compat/luasrc/model/network.lua:967
  5224. msgid "Static address"
  5225. msgstr ""
  5226. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:411
  5227. msgid ""
  5228. "Static leases are used to assign fixed IP addresses and symbolic hostnames "
  5229. "to DHCP clients. They are also required for non-dynamic interface "
  5230. "configurations where only hosts with a corresponding lease are served."
  5231. msgstr ""
  5232. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1174
  5233. msgid "Station inactivity limit"
  5234. msgstr ""
  5235. #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:16
  5236. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:541
  5237. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:928
  5238. #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:9
  5239. msgid "Status"
  5240. msgstr "Status"
  5241. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:512
  5242. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:101
  5243. msgid "Stop"
  5244. msgstr "Stop"
  5245. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:129
  5246. msgid "Stop WPS"
  5247. msgstr ""
  5248. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1746
  5249. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1840
  5250. msgid "Stop refresh"
  5251. msgstr ""
  5252. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:629
  5253. msgid "Strict filtering"
  5254. msgstr ""
  5255. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:259
  5256. msgid "Strict order"
  5257. msgstr "Strict order"
  5258. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:33
  5259. msgid "Strong"
  5260. msgstr ""
  5261. #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:61
  5262. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2036
  5263. msgid "Submit"
  5264. msgstr "Submit"
  5265. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:203
  5266. msgid "Suppress logging"
  5267. msgstr ""
  5268. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:204
  5269. msgid "Suppress logging of the routine operation of these protocols"
  5270. msgstr ""
  5271. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:44
  5272. msgid "Swap free"
  5273. msgstr ""
  5274. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:139
  5275. #: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:3
  5276. msgid "Switch"
  5277. msgstr "Switch"
  5278. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:172
  5279. msgid "Switch %q"
  5280. msgstr ""
  5281. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:150
  5282. msgid ""
  5283. "Switch %q has an unknown topology - the VLAN settings might not be accurate."
  5284. msgstr ""
  5285. #: modules/luci-base/htdocs/luci-static/resources/network.js:2998
  5286. #: modules/luci-compat/luasrc/model/network.lua:1426
  5287. msgid "Switch VLAN"
  5288. msgstr ""
  5289. #: modules/luci-base/htdocs/luci-static/resources/network.js:2995
  5290. msgid "Switch port"
  5291. msgstr ""
  5292. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:560
  5293. msgid "Switch protocol"
  5294. msgstr ""
  5295. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:103
  5296. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:104
  5297. #: modules/luci-compat/luasrc/view/cbi/ipaddr.htm:26
  5298. msgid "Switch to CIDR list notation"
  5299. msgstr ""
  5300. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2678
  5301. msgid "Symbolic link"
  5302. msgstr ""
  5303. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:75
  5304. msgid "Sync with NTP-Server"
  5305. msgstr ""
  5306. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:67
  5307. msgid "Sync with browser"
  5308. msgstr ""
  5309. #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:26
  5310. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:17
  5311. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:99
  5312. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:3
  5313. msgid "System"
  5314. msgstr "System"
  5315. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/syslog.js:25
  5316. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:39
  5317. msgid "System Log"
  5318. msgstr "System Log"
  5319. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:243
  5320. msgid "System Priority"
  5321. msgstr ""
  5322. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:104
  5323. msgid "System Properties"
  5324. msgstr ""
  5325. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:148
  5326. msgid "System log buffer size"
  5327. msgstr ""
  5328. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:338
  5329. msgid "TCP:"
  5330. msgstr ""
  5331. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:163
  5332. msgid "TFTP Settings"
  5333. msgstr ""
  5334. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:371
  5335. msgid "TFTP server root"
  5336. msgstr ""
  5337. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:50
  5338. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:85
  5339. msgid "TX"
  5340. msgstr "TX"
  5341. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:232
  5342. msgid "TX Rate"
  5343. msgstr ""
  5344. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:618
  5345. msgid "TX queue length"
  5346. msgstr ""
  5347. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:18
  5348. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:167
  5349. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:186
  5350. msgid "Table"
  5351. msgstr "Table"
  5352. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:31
  5353. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:66
  5354. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:164
  5355. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:183
  5356. msgid "Target"
  5357. msgstr "Target"
  5358. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:103
  5359. msgid "Target network"
  5360. msgstr ""
  5361. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:50
  5362. msgid "Terminate"
  5363. msgstr "Terminate"
  5364. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:832
  5365. msgid ""
  5366. "The <abbr title=\"Maximum Transmission Unit\">MTU</abbr> to be published in "
  5367. "<abbr title=\"Router Advertisement, ICMPv6 Type 134\">RA</abbr> messages. "
  5368. "Minimum is 1280 bytes."
  5369. msgstr ""
  5370. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:794
  5371. msgid ""
  5372. "The <em>Managed address configuration</em> (M) flag indicates that IPv6 "
  5373. "addresses are available via DHCPv6."
  5374. msgstr ""
  5375. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:798
  5376. msgid ""
  5377. "The <em>Mobile IPv6 Home Agent</em> (H) flag indicates that the device is "
  5378. "also acting as Mobile IPv6 home agent on this link."
  5379. msgstr ""
  5380. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:796
  5381. msgid ""
  5382. "The <em>Other configuration</em> (O) flag indicates that other information, "
  5383. "such as DNS servers, is available via DHCPv6."
  5384. msgstr ""
  5385. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:84
  5386. msgid "The <em>block mount</em> command failed with code %d"
  5387. msgstr ""
  5388. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:937
  5389. msgid ""
  5390. "The DNS server entries in the local resolv.conf are primarily sorted by the "
  5391. "weight specified here"
  5392. msgstr ""
  5393. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:77
  5394. msgid ""
  5395. "The HE.net endpoint update configuration changed, you must now use the plain "
  5396. "username instead of the user ID!"
  5397. msgstr ""
  5398. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:40
  5399. msgid "The IPv4 address or the fully-qualified domain name of the remote end."
  5400. msgstr ""
  5401. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:42
  5402. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:42
  5403. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:40
  5404. msgid ""
  5405. "The IPv4 address or the fully-qualified domain name of the remote tunnel end."
  5406. msgstr ""
  5407. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:40
  5408. msgid "The IPv6 address or the fully-qualified domain name of the remote end."
  5409. msgstr ""
  5410. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:42
  5411. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:42
  5412. msgid ""
  5413. "The IPv6 address or the fully-qualified domain name of the remote tunnel end."
  5414. msgstr ""
  5415. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:53
  5416. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:59
  5417. msgid ""
  5418. "The IPv6 prefix assigned to the provider, usually ends with <code>::</code>"
  5419. msgstr ""
  5420. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:586
  5421. msgid "The MTU must not exceed the parent device MTU of %d bytes"
  5422. msgstr ""
  5423. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:864
  5424. msgid "The VLAN ID must be unique"
  5425. msgstr ""
  5426. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1996
  5427. msgid ""
  5428. "The allowed characters are: <code>A-Z</code>, <code>a-z</code>, <code>0-9</"
  5429. "code> and <code>_</code>"
  5430. msgstr ""
  5431. #: modules/luci-compat/luasrc/view/cbi/error.htm:6
  5432. msgid "The configuration file could not be loaded due to the following error:"
  5433. msgstr ""
  5434. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1990
  5435. msgid ""
  5436. "The correct SSID must be manually specified when joining a hidden wireless "
  5437. "network"
  5438. msgstr ""
  5439. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4152
  5440. msgid ""
  5441. "The device could not be reached within %d seconds after applying the pending "
  5442. "changes, which caused the configuration to be rolled back for safety "
  5443. "reasons. If you believe that the configuration changes are correct "
  5444. "nonetheless, perform an unchecked configuration apply. Alternatively, you "
  5445. "can dismiss this warning and edit changes before attempting to apply again, "
  5446. "or revert all pending changes to keep the currently working configuration "
  5447. "state."
  5448. msgstr ""
  5449. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:280
  5450. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:392
  5451. msgid ""
  5452. "The device file of the memory or partition (<abbr title=\"for example\">e.g."
  5453. "</abbr> <code>/dev/sda1</code>)"
  5454. msgstr ""
  5455. "The device file of the memory or partition (<abbr title=\"for example\">e.g."
  5456. "</abbr> <code>/dev/sda1</code>)"
  5457. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:450
  5458. msgid "The device name \"%s\" is already taken"
  5459. msgstr ""
  5460. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:393
  5461. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:427
  5462. msgid ""
  5463. "The existing network configuration needs to be changed for LuCI to function "
  5464. "properly."
  5465. msgstr ""
  5466. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:793
  5467. msgid ""
  5468. "The existing wireless configuration needs to be changed for LuCI to function "
  5469. "properly."
  5470. msgstr ""
  5471. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:215
  5472. msgid ""
  5473. "The flash image was uploaded. Below is the checksum and file size listed, "
  5474. "compare them with the original file to ensure data integrity. <br /> Click "
  5475. "'Continue' below to start the flash procedure."
  5476. msgstr ""
  5477. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:198
  5478. msgid "The following rules are currently active on this system."
  5479. msgstr "The following rules are currently active on this system."
  5480. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:154
  5481. msgid "The gateway address must not be a local IP address"
  5482. msgstr ""
  5483. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:166
  5484. msgid "The given SSH public key has already been added."
  5485. msgstr ""
  5486. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:172
  5487. msgid ""
  5488. "The given SSH public key is invalid. Please supply proper public RSA or "
  5489. "ECDSA keys."
  5490. msgstr ""
  5491. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1088
  5492. msgid "The interface name is already used"
  5493. msgstr ""
  5494. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1094
  5495. msgid "The interface name is too long"
  5496. msgstr ""
  5497. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:61
  5498. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:55
  5499. msgid ""
  5500. "The length of the IPv4 prefix in bits, the remainder is used in the IPv6 "
  5501. "addresses."
  5502. msgstr ""
  5503. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:57
  5504. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:63
  5505. msgid "The length of the IPv6 prefix in bits"
  5506. msgstr ""
  5507. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:163
  5508. msgid "The local IPv4 address"
  5509. msgstr ""
  5510. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:46
  5511. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:46
  5512. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:44
  5513. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:44
  5514. msgid "The local IPv4 address over which the tunnel is created (optional)."
  5515. msgstr ""
  5516. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:169
  5517. msgid "The local IPv4 netmask"
  5518. msgstr ""
  5519. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:46
  5520. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:53
  5521. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:44
  5522. msgid "The local IPv6 address over which the tunnel is created (optional)."
  5523. msgstr ""
  5524. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:575
  5525. msgid ""
  5526. "The max response time in centiseconds inserted into group-specific queries "
  5527. "sent in response to leave group messages. It is also the amount of time "
  5528. "between group-specific query messages. This value may be tuned to modify the "
  5529. "\"leave latency\" of the network. A reduced value results in reduced time to "
  5530. "detect the loss of the last member of a group"
  5531. msgstr ""
  5532. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:561
  5533. msgid ""
  5534. "The max response time in centiseconds inserted into the periodic general "
  5535. "queries. By varying the value, an administrator may tune the burstiness of "
  5536. "IGMP messages on the subnet; larger values make the traffic less bursty, as "
  5537. "host responses are spread out over a larger interval"
  5538. msgstr ""
  5539. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:849
  5540. msgid ""
  5541. "The maximum hops to be published in <abbr title=\"Router Advertisement\">RA</"
  5542. "abbr> messages. Maximum is 255 hops."
  5543. msgstr ""
  5544. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2002
  5545. msgid "The network name is already used"
  5546. msgstr ""
  5547. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:139
  5548. msgid ""
  5549. "The network ports on this device can be combined to several <abbr title="
  5550. "\"Virtual Local Area Network\">VLAN</abbr>s in which computers can "
  5551. "communicate directly with each other. <abbr title=\"Virtual Local Area "
  5552. "Network\">VLAN</abbr>s are often used to separate different network "
  5553. "segments. Often there is by default one Uplink port for a connection to the "
  5554. "next greater network like the internet and other ports for a local network."
  5555. msgstr ""
  5556. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:569
  5557. msgid "The query response interval must be lower than the query interval value"
  5558. msgstr ""
  5559. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:158
  5560. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:42
  5561. msgid "The reboot command failed with code %d"
  5562. msgstr ""
  5563. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:147
  5564. msgid "The restore command failed with code %d"
  5565. msgstr ""
  5566. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:551
  5567. msgid ""
  5568. "The robustness value allows tuning for the expected packet loss on the "
  5569. "network. If a network is expected to be lossy, the robustness value may be "
  5570. "increased. IGMP is robust to (Robustness-1) packet losses"
  5571. msgstr ""
  5572. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1369
  5573. msgid "The selected %s mode is incompatible with %s encryption"
  5574. msgstr ""
  5575. #: modules/luci-base/luasrc/view/csrftoken.htm:11
  5576. msgid "The submitted security token is invalid or already expired!"
  5577. msgstr ""
  5578. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:98
  5579. msgid ""
  5580. "The system is erasing the configuration partition now and will reboot itself "
  5581. "when finished."
  5582. msgstr ""
  5583. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:289
  5584. #, fuzzy
  5585. msgid ""
  5586. "The system is flashing now.<br /> DO NOT POWER OFF THE DEVICE!<br /> Wait a "
  5587. "few minutes before you try to reconnect. It might be necessary to renew the "
  5588. "address of your computer to reach the device again, depending on your "
  5589. "settings."
  5590. msgstr ""
  5591. "The system is flashing now.<br /> DO NOT POWER OFF THE DEVICE!<br /> Wait a "
  5592. "few minutes until you try to reconnect. It might be necessary to renew the "
  5593. "address of your computer to reach the device again, depending on your "
  5594. "settings."
  5595. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:163
  5596. msgid ""
  5597. "The system is rebooting now. If the restored configuration changed the "
  5598. "current LAN IP address, you might need to reconnect manually."
  5599. msgstr ""
  5600. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:85
  5601. msgid "The system password has been successfully changed."
  5602. msgstr ""
  5603. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:315
  5604. msgid "The sysupgrade command failed with code %d"
  5605. msgstr ""
  5606. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:120
  5607. msgid ""
  5608. "The uploaded backup archive appears to be valid and contains the files "
  5609. "listed below. Press \"Continue\" to restore the backup and reboot, or "
  5610. "\"Cancel\" to abort the operation."
  5611. msgstr ""
  5612. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:115
  5613. msgid "The uploaded backup archive is not readable"
  5614. msgstr ""
  5615. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:244
  5616. msgid "The uploaded firmware does not allow keeping current configuration."
  5617. msgstr ""
  5618. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:239
  5619. msgid ""
  5620. "The uploaded image file does not contain a supported format. Make sure that "
  5621. "you choose the generic image format for your platform."
  5622. msgstr ""
  5623. "The uploaded image file does not contain a supported format. Make sure that "
  5624. "you choose the generic image format for your platform."
  5625. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1414
  5626. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1426
  5627. msgid "The value is overridden by configuration. Original: %s"
  5628. msgstr ""
  5629. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:562
  5630. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:594
  5631. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:121
  5632. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:170
  5633. msgid "There are no active leases"
  5634. msgstr ""
  5635. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4291
  5636. msgid "There are no changes to apply"
  5637. msgstr ""
  5638. #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:55
  5639. #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:213
  5640. #: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:60
  5641. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:80
  5642. msgid ""
  5643. "There is no password set on this router. Please configure a root password to "
  5644. "protect the web interface."
  5645. msgstr ""
  5646. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:49
  5647. msgid "This IPv4 address of the relay"
  5648. msgstr ""
  5649. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1623
  5650. msgid "This authentication type is not applicable to the selected EAP method."
  5651. msgstr ""
  5652. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:57
  5653. msgid "This does not look like a valid PEM file"
  5654. msgstr ""
  5655. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:256
  5656. msgid ""
  5657. "This file may contain lines like 'server=/domain/1.2.3.4' or "
  5658. "'server=1.2.3.4' for domain-specific or full upstream <abbr title=\"Domain "
  5659. "Name System\">DNS</abbr> servers."
  5660. msgstr ""
  5661. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:424
  5662. #: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:16
  5663. msgid ""
  5664. "This is a list of shell glob patterns for matching files and directories to "
  5665. "include during sysupgrade. Modified files in /etc/config/ and certain other "
  5666. "configurations are automatically preserved."
  5667. msgstr ""
  5668. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:81
  5669. msgid ""
  5670. "This is either the \"Update Key\" configured for the tunnel or the account "
  5671. "password if no update key has been configured"
  5672. msgstr ""
  5673. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:116
  5674. msgid ""
  5675. "This is the content of /etc/rc.local. Insert your own commands here (in "
  5676. "front of 'exit 0') to execute them at the end of the boot process."
  5677. msgstr ""
  5678. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:54
  5679. msgid ""
  5680. "This is the local endpoint address assigned by the tunnel broker, it usually "
  5681. "ends with <code>...:2/64</code>"
  5682. msgstr ""
  5683. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:173
  5684. msgid ""
  5685. "This is the only <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</"
  5686. "abbr> in the local network"
  5687. msgstr ""
  5688. "This is the only <abbr title=\"Dynamic Host Configuration Protocol Server"
  5689. "\">DHCP-Server</abbr> in the local network"
  5690. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:73
  5691. msgid "This is the plain username for logging into the account"
  5692. msgstr ""
  5693. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:57
  5694. msgid ""
  5695. "This is the prefix routed to you by the tunnel broker for use by clients"
  5696. msgstr ""
  5697. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/crontab.js:28
  5698. msgid "This is the system crontab in which scheduled tasks can be defined."
  5699. msgstr "This is the system crontab in which scheduled tasks can be defined."
  5700. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:50
  5701. msgid ""
  5702. "This is usually the address of the nearest PoP operated by the tunnel broker"
  5703. msgstr ""
  5704. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:65
  5705. msgid ""
  5706. "This list gives an overview over currently running system processes and "
  5707. "their status."
  5708. msgstr ""
  5709. "This list gives an overview over currently running system processes and "
  5710. "their status."
  5711. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1577
  5712. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1635
  5713. msgid ""
  5714. "This option cannot be used because the ca-bundle package is not installed."
  5715. msgstr ""
  5716. #: modules/luci-base/htdocs/luci-static/resources/form.js:2230
  5717. #: modules/luci-base/htdocs/luci-static/resources/form.js:2536
  5718. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:172
  5719. #: modules/luci-compat/luasrc/view/cbi/tsection.htm:32
  5720. msgid "This section contains no values yet"
  5721. msgstr "This section contains no values yet"
  5722. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:110
  5723. msgid "Time Synchronization"
  5724. msgstr ""
  5725. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:653
  5726. msgid "Time in milliseconds"
  5727. msgstr ""
  5728. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:527
  5729. msgid "Time in seconds to spend in listening and learning states"
  5730. msgstr ""
  5731. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1165
  5732. msgid "Time interval for rekeying GTK"
  5733. msgstr ""
  5734. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:15
  5735. msgid "Timed-out"
  5736. msgstr ""
  5737. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:657
  5738. msgid "Timeout in seconds"
  5739. msgstr ""
  5740. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:513
  5741. msgid "Timeout in seconds for learned MAC addresses in the forwarding database"
  5742. msgstr ""
  5743. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:532
  5744. msgid "Timeout in seconds until topology updates on link loss"
  5745. msgstr ""
  5746. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:131
  5747. msgid "Timezone"
  5748. msgstr "Timezone"
  5749. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2679
  5750. msgid "To login…"
  5751. msgstr ""
  5752. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:370
  5753. msgid ""
  5754. "To restore configuration files, you can upload a previously generated backup "
  5755. "archive here. To reset the firmware to its initial state, click \"Perform "
  5756. "reset\" (only possible with squashfs images)."
  5757. msgstr ""
  5758. "To restore configuration files, you can upload a previously generated backup "
  5759. "archive here. To reset the firmware to its initial state, click \"Perform "
  5760. "reset\" (only possible with squashfs images)."
  5761. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1462
  5762. msgid "Tone"
  5763. msgstr ""
  5764. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:35
  5765. msgid "Total Available"
  5766. msgstr ""
  5767. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:102
  5768. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:103
  5769. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:113
  5770. msgid "Traceroute"
  5771. msgstr ""
  5772. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:54
  5773. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:65
  5774. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:109
  5775. msgid "Traffic"
  5776. msgstr "Traffic"
  5777. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:79
  5778. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:84
  5779. msgid "Traffic Class"
  5780. msgstr ""
  5781. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:387
  5782. msgid "Transfer"
  5783. msgstr "Transfer"
  5784. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:24
  5785. msgid "Transmit"
  5786. msgstr "Transmit"
  5787. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:317
  5788. msgid "Transmit Hash Policy"
  5789. msgstr ""
  5790. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:74
  5791. msgid "Trigger"
  5792. msgstr ""
  5793. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:19
  5794. msgid "Trigger Mode"
  5795. msgstr ""
  5796. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:69
  5797. msgid "Tunnel ID"
  5798. msgstr ""
  5799. #: modules/luci-base/htdocs/luci-static/resources/network.js:3001
  5800. #: modules/luci-compat/luasrc/model/network.lua:1431
  5801. msgid "Tunnel Interface"
  5802. msgstr ""
  5803. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:44
  5804. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:55
  5805. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:76
  5806. msgid "Tunnel Link"
  5807. msgstr ""
  5808. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1371
  5809. msgid "Tunnel device"
  5810. msgstr ""
  5811. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:185
  5812. msgid "Tx-Power"
  5813. msgstr ""
  5814. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:45
  5815. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1402
  5816. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:163
  5817. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:43
  5818. msgid "Type"
  5819. msgstr "Type"
  5820. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:328
  5821. msgid "UDP:"
  5822. msgstr ""
  5823. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:91
  5824. msgid "UMTS only"
  5825. msgstr ""
  5826. #: modules/luci-compat/luasrc/model/network/proto_3g.lua:10
  5827. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:43
  5828. msgid "UMTS/GPRS/EV-DO"
  5829. msgstr ""
  5830. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:254
  5831. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:360
  5832. msgid "UUID"
  5833. msgstr ""
  5834. #: modules/luci-base/htdocs/luci-static/resources/network.js:16
  5835. #: modules/luci-base/htdocs/luci-static/resources/network.js:17
  5836. #: modules/luci-compat/luasrc/model/network.lua:34
  5837. #: modules/luci-compat/luasrc/model/network.lua:35
  5838. msgid "Unable to determine device name"
  5839. msgstr ""
  5840. #: modules/luci-base/htdocs/luci-static/resources/network.js:18
  5841. #: modules/luci-compat/luasrc/model/network.lua:36
  5842. msgid "Unable to determine external IP address"
  5843. msgstr ""
  5844. #: modules/luci-base/htdocs/luci-static/resources/network.js:19
  5845. #: modules/luci-compat/luasrc/model/network.lua:37
  5846. msgid "Unable to determine upstream interface"
  5847. msgstr ""
  5848. #: modules/luci-base/luasrc/view/error404.htm:11
  5849. msgid "Unable to dispatch"
  5850. msgstr ""
  5851. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/dmesg.js:9
  5852. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/syslog.js:15
  5853. msgid "Unable to load log data:"
  5854. msgstr ""
  5855. #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:54
  5856. #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:54
  5857. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:22
  5858. msgid "Unable to obtain client ID"
  5859. msgstr ""
  5860. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:221
  5861. msgid "Unable to obtain mount information"
  5862. msgstr ""
  5863. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:307
  5864. msgid "Unable to reset ip6tables counters: %s"
  5865. msgstr ""
  5866. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:305
  5867. msgid "Unable to reset iptables counters: %s"
  5868. msgstr ""
  5869. #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:61
  5870. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:7
  5871. msgid "Unable to resolve AFTR host name"
  5872. msgstr ""
  5873. #: modules/luci-base/htdocs/luci-static/resources/network.js:20
  5874. #: modules/luci-compat/luasrc/model/network.lua:38
  5875. msgid "Unable to resolve peer host name"
  5876. msgstr ""
  5877. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:313
  5878. msgid "Unable to restart firewall: %s"
  5879. msgstr ""
  5880. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/crontab.js:20
  5881. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:340
  5882. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:57
  5883. msgid "Unable to save contents: %s"
  5884. msgstr ""
  5885. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:32
  5886. msgid "Unavailable Seconds (UAS)"
  5887. msgstr ""
  5888. #: modules/luci-base/htdocs/luci-static/resources/fs.js:102
  5889. msgid "Unexpected reply data format"
  5890. msgstr ""
  5891. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1434
  5892. msgid ""
  5893. "Unique Local Address - in the range <code>fc00::/7</code>. Typically only "
  5894. "within the &#8216;local&#8217; half <code>fd00::/8</code>. ULA for IPv6 is "
  5895. "analogous to IPv4 private network addressing. This prefix is randomly "
  5896. "generated at first install."
  5897. msgstr ""
  5898. #: modules/luci-base/htdocs/luci-static/resources/network.js:2101
  5899. #: modules/luci-compat/luasrc/model/network.lua:971
  5900. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:17
  5901. msgid "Unknown"
  5902. msgstr ""
  5903. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:47
  5904. msgid "Unknown and unsupported connection method."
  5905. msgstr ""
  5906. #: modules/luci-base/htdocs/luci-static/resources/network.js:2410
  5907. #: modules/luci-compat/luasrc/model/network.lua:1138
  5908. msgid "Unknown error (%s)"
  5909. msgstr ""
  5910. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:412
  5911. msgid "Unknown error code"
  5912. msgstr ""
  5913. #: modules/luci-base/htdocs/luci-static/resources/network.js:2098
  5914. #: modules/luci-base/htdocs/luci-static/resources/protocol/none.js:6
  5915. #: modules/luci-compat/luasrc/model/network.lua:965
  5916. msgid "Unmanaged"
  5917. msgstr ""
  5918. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:195
  5919. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:217
  5920. msgid "Unmount"
  5921. msgstr ""
  5922. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:115
  5923. msgid "Unnamed key"
  5924. msgstr ""
  5925. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3996
  5926. msgid "Unsaved Changes"
  5927. msgstr "Unsaved Changes"
  5928. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:410
  5929. msgid "Unspecified error"
  5930. msgstr ""
  5931. #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:64
  5932. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:9
  5933. msgid "Unsupported MAP type"
  5934. msgstr ""
  5935. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:69
  5936. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:27
  5937. msgid "Unsupported modem"
  5938. msgstr ""
  5939. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:299
  5940. msgid "Unsupported protocol type."
  5941. msgstr ""
  5942. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:151
  5943. msgid "Up"
  5944. msgstr ""
  5945. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:410
  5946. msgid "Up Delay"
  5947. msgstr ""
  5948. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3883
  5949. msgid "Upload"
  5950. msgstr ""
  5951. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:411
  5952. msgid ""
  5953. "Upload a sysupgrade-compatible image here to replace the running firmware."
  5954. msgstr ""
  5955. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:138
  5956. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:169
  5957. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:382
  5958. msgid "Upload archive..."
  5959. msgstr ""
  5960. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2837
  5961. msgid "Upload file"
  5962. msgstr ""
  5963. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2812
  5964. msgid "Upload file…"
  5965. msgstr ""
  5966. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2759
  5967. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3871
  5968. msgid "Upload request failed: %s"
  5969. msgstr ""
  5970. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3790
  5971. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3844
  5972. msgid "Uploading file…"
  5973. msgstr ""
  5974. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:794
  5975. msgid ""
  5976. "Upon pressing \"Continue\", anonymous \"wifi-iface\" sections will be "
  5977. "assigned with a name in the form <em>wifinet#</em> and the network will be "
  5978. "restarted to apply the updated configuration."
  5979. msgstr ""
  5980. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:394
  5981. msgid ""
  5982. "Upon pressing \"Continue\", bridges configuration will be updated and the "
  5983. "network will be restarted to apply the updated configuration."
  5984. msgstr ""
  5985. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:428
  5986. msgid ""
  5987. "Upon pressing \"Continue\", ifname options will get renamed and the network "
  5988. "will be restarted to apply the updated configuration."
  5989. msgstr ""
  5990. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:82
  5991. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:60
  5992. msgid "Uptime"
  5993. msgstr "Uptime"
  5994. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:177
  5995. msgid "Use <code>/etc/ethers</code>"
  5996. msgstr "Use <code>/etc/ethers</code>"
  5997. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:271
  5998. msgid "Use DHCP advertised servers"
  5999. msgstr ""
  6000. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:167
  6001. msgid "Use DHCP gateway"
  6002. msgstr ""
  6003. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:923
  6004. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:68
  6005. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:121
  6006. msgid "Use DNS servers advertised by peer"
  6007. msgstr ""
  6008. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:622
  6009. msgid "Use ISO/IEC 3166 alpha2 country codes."
  6010. msgstr ""
  6011. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:48
  6012. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:89
  6013. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:69
  6014. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6to4.js:53
  6015. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:67
  6016. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:84
  6017. msgid "Use MTU on tunnel interface"
  6018. msgstr ""
  6019. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:85
  6020. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:65
  6021. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6to4.js:49
  6022. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:80
  6023. msgid "Use TTL on tunnel interface"
  6024. msgstr ""
  6025. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:320
  6026. msgid "Use XOR of hardware MAC addresses (layer2)"
  6027. msgstr ""
  6028. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:321
  6029. msgid "Use XOR of hardware MAC addresses and IP addresses (layer2+3)"
  6030. msgstr ""
  6031. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:323
  6032. msgid ""
  6033. "Use XOR of hardware MAC addresses and IP addresses, rely on skb_flow_dissect "
  6034. "(encap2+3)"
  6035. msgstr ""
  6036. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:294
  6037. msgid "Use as external overlay (/overlay)"
  6038. msgstr ""
  6039. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:293
  6040. msgid "Use as root filesystem (/)"
  6041. msgstr ""
  6042. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34
  6043. msgid "Use broadcast flag"
  6044. msgstr ""
  6045. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1211
  6046. msgid "Use builtin IPv6-management"
  6047. msgstr ""
  6048. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:927
  6049. msgid "Use custom DNS servers"
  6050. msgstr ""
  6051. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:919
  6052. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:64
  6053. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:110
  6054. msgid "Use default gateway"
  6055. msgstr ""
  6056. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:941
  6057. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:72
  6058. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:115
  6059. msgid "Use gateway metric"
  6060. msgstr ""
  6061. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:88
  6062. msgid "Use legacy MAP"
  6063. msgstr ""
  6064. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:88
  6065. msgid ""
  6066. "Use legacy MAP interface identifier format (draft-ietf-softwire-map-00) "
  6067. "instead of RFC7597"
  6068. msgstr ""
  6069. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:179
  6070. msgid "Use routing table"
  6071. msgstr ""
  6072. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1570
  6073. msgid "Use system certificates"
  6074. msgstr ""
  6075. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1628
  6076. msgid "Use system certificates for inner-tunnel"
  6077. msgstr ""
  6078. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:412
  6079. msgid ""
  6080. "Use the <em>Add</em> Button to add a new lease entry. The <em>MAC address</"
  6081. "em> identifies the host, the <em>IPv4 address</em> specifies the fixed "
  6082. "address to use, and the <em>Hostname</em> is assigned as a symbolic name to "
  6083. "the requesting host. The optional <em>Lease time</em> can be used to set non-"
  6084. "standard host-specific lease time, e.g. 12h, 3d or infinite."
  6085. msgstr ""
  6086. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:322
  6087. msgid "Use upper layer protocol information (layer3+4)"
  6088. msgstr ""
  6089. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:324
  6090. msgid ""
  6091. "Use upper layer protocol information, rely on skb_flow_dissect (encap3+4)"
  6092. msgstr ""
  6093. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:36
  6094. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:194
  6095. msgid "Used"
  6096. msgstr "Used"
  6097. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1466
  6098. msgid "Used Key Slot"
  6099. msgstr ""
  6100. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1509
  6101. msgid ""
  6102. "Used for two different purposes: RADIUS NAS ID and 802.11r R0KH-ID. Not "
  6103. "needed with normal WPA(2)-PSK."
  6104. msgstr ""
  6105. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:111
  6106. msgid "User Group"
  6107. msgstr ""
  6108. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:120
  6109. msgid "User certificate (PEM encoded)"
  6110. msgstr ""
  6111. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:132
  6112. msgid "User key (PEM encoded)"
  6113. msgstr ""
  6114. #: modules/luci-base/luasrc/view/sysauth.htm:23
  6115. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:112
  6116. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:50
  6117. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:56
  6118. msgid "Username"
  6119. msgstr "Username"
  6120. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1530
  6121. msgid "VC-Mux"
  6122. msgstr ""
  6123. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1478
  6124. msgid "VDSL"
  6125. msgstr ""
  6126. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:435
  6127. msgctxt "MACVLAN mode"
  6128. msgid "VEPA (Virtual Ethernet Port Aggregator)"
  6129. msgstr ""
  6130. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:346
  6131. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1365
  6132. msgid "VLAN (802.1ad)"
  6133. msgstr ""
  6134. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:345
  6135. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1362
  6136. msgid "VLAN (802.1q)"
  6137. msgstr ""
  6138. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:414
  6139. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:845
  6140. msgid "VLAN ID"
  6141. msgstr ""
  6142. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:173
  6143. msgid "VLANs on %q"
  6144. msgstr ""
  6145. #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:54
  6146. msgid "VPN"
  6147. msgstr ""
  6148. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:42
  6149. msgid "VPN Local address"
  6150. msgstr ""
  6151. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:46
  6152. msgid "VPN Local port"
  6153. msgstr ""
  6154. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:96
  6155. msgid "VPN Protocol"
  6156. msgstr ""
  6157. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:102
  6158. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:42
  6159. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:58
  6160. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:39
  6161. msgid "VPN Server"
  6162. msgstr ""
  6163. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:105
  6164. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:45
  6165. msgid "VPN Server port"
  6166. msgstr ""
  6167. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:109
  6168. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:60
  6169. msgid "VPN Server's certificate SHA1 hash"
  6170. msgstr ""
  6171. #: modules/luci-compat/luasrc/model/network/proto_vpnc.lua:9
  6172. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:9
  6173. msgid "VPNC (CISCO 3000 (and others) VPN)"
  6174. msgstr ""
  6175. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:10
  6176. msgid "VXLAN (RFC7348)"
  6177. msgstr ""
  6178. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:53
  6179. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:48
  6180. msgid "VXLAN network identifier"
  6181. msgstr ""
  6182. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:10
  6183. msgid "VXLANv6 (RFC7348)"
  6184. msgstr ""
  6185. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1570
  6186. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1628
  6187. msgid ""
  6188. "Validate server certificate using built-in system CA bundle,<br />requires "
  6189. "the \"ca-bundle\" package"
  6190. msgstr ""
  6191. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:387
  6192. msgid "Validation for all slaves"
  6193. msgstr ""
  6194. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:385
  6195. msgid "Validation only for active slave"
  6196. msgstr ""
  6197. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:386
  6198. msgid "Validation only for backup slaves"
  6199. msgstr ""
  6200. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:149
  6201. msgid "Value must not be empty"
  6202. msgstr ""
  6203. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:73
  6204. msgid "Vendor"
  6205. msgstr ""
  6206. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:40
  6207. msgid "Vendor Class to send when requesting DHCP"
  6208. msgstr ""
  6209. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:196
  6210. msgid "Verifying the uploaded image file."
  6211. msgstr ""
  6212. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:956
  6213. msgid "Very High"
  6214. msgstr ""
  6215. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:348
  6216. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1377
  6217. msgid "Virtual Ethernet"
  6218. msgstr ""
  6219. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:60
  6220. msgid "Virtual dynamic interface"
  6221. msgstr ""
  6222. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1104
  6223. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1105
  6224. msgid "WDS"
  6225. msgstr "WDS"
  6226. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1289
  6227. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1378
  6228. msgid "WEP Open System"
  6229. msgstr ""
  6230. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1290
  6231. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1379
  6232. msgid "WEP Shared Key"
  6233. msgstr ""
  6234. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2011
  6235. msgid "WEP passphrase"
  6236. msgstr ""
  6237. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1142
  6238. msgid "WMM Mode"
  6239. msgstr "WMM Mode"
  6240. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2011
  6241. msgid "WPA passphrase"
  6242. msgstr ""
  6243. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1280
  6244. msgid ""
  6245. "WPA-Encryption requires wpa_supplicant (for client mode) or hostapd (for AP "
  6246. "and ad-hoc mode) to be installed."
  6247. msgstr ""
  6248. "WPA-Encryption requires wpa_supplicant (for client mode) or hostapd (for AP "
  6249. "and ad-hoc mode) to be installed."
  6250. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:147
  6251. msgid "WPS status"
  6252. msgstr ""
  6253. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:47
  6254. msgid "Waiting for device..."
  6255. msgstr ""
  6256. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:175
  6257. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:185
  6258. msgid "Warning"
  6259. msgstr ""
  6260. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:26
  6261. msgid "Warning: There are unsaved changes that will get lost on reboot!"
  6262. msgstr ""
  6263. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:37
  6264. msgid "Weak"
  6265. msgstr ""
  6266. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1007
  6267. msgid ""
  6268. "When delegating prefixes to multiple downstreams, interfaces with a higher "
  6269. "preference value are considered first when allocating subnets."
  6270. msgstr ""
  6271. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1532
  6272. msgid ""
  6273. "When using a PSK, the PMK can be automatically generated. When enabled, the "
  6274. "R0/R1 key options below are not applied. Disable this to use the R0 and R1 "
  6275. "key options."
  6276. msgstr ""
  6277. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1142
  6278. msgid ""
  6279. "Where Wi-Fi Multimedia (WMM) Mode QoS is disabled, clients may be limited to "
  6280. "802.11a/802.11g rates."
  6281. msgstr ""
  6282. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1138
  6283. msgid ""
  6284. "Where the ESSID is hidden, clients may fail to roam and airtime efficiency "
  6285. "may be significantly reduced."
  6286. msgstr ""
  6287. #: modules/luci-compat/luasrc/view/cbi/wireless_modefreq.htm:166
  6288. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:519
  6289. msgid "Width"
  6290. msgstr ""
  6291. #: modules/luci-compat/luasrc/model/network/proto_wireguard.lua:9
  6292. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:29
  6293. msgid "WireGuard VPN"
  6294. msgstr ""
  6295. #: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:17
  6296. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:10
  6297. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:118
  6298. msgid "Wireless"
  6299. msgstr ""
  6300. #: modules/luci-base/htdocs/luci-static/resources/network.js:2988
  6301. #: modules/luci-compat/luasrc/model/network.lua:1419
  6302. msgid "Wireless Adapter"
  6303. msgstr "Wireless Adapter"
  6304. #: modules/luci-base/htdocs/luci-static/resources/network.js:2967
  6305. #: modules/luci-base/htdocs/luci-static/resources/network.js:4274
  6306. #: modules/luci-compat/luasrc/model/network.lua:1405
  6307. #: modules/luci-compat/luasrc/model/network.lua:1868
  6308. msgid "Wireless Network"
  6309. msgstr "Wireless Network"
  6310. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:810
  6311. msgid "Wireless Overview"
  6312. msgstr "Wireless Overview"
  6313. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:985
  6314. msgid "Wireless Security"
  6315. msgstr "Wireless Security"
  6316. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:792
  6317. msgid "Wireless configuration migration"
  6318. msgstr ""
  6319. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:153
  6320. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:193
  6321. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:146
  6322. msgid "Wireless is disabled"
  6323. msgstr ""
  6324. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:153
  6325. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:193
  6326. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:146
  6327. msgid "Wireless is not associated"
  6328. msgstr ""
  6329. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:934
  6330. msgid "Wireless network is disabled"
  6331. msgstr ""
  6332. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:934
  6333. msgid "Wireless network is enabled"
  6334. msgstr ""
  6335. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:275
  6336. msgid "Write received DNS requests to syslog"
  6337. msgstr ""
  6338. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:167
  6339. msgid "Write system log to file"
  6340. msgstr ""
  6341. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:204
  6342. msgid "XOR policy (balance-xor, 2)"
  6343. msgstr ""
  6344. #: modules/luci-base/htdocs/luci-static/resources/form.js:3702
  6345. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:295
  6346. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:344
  6347. msgid "Yes"
  6348. msgstr ""
  6349. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:303
  6350. msgid "Yes (none, 0)"
  6351. msgstr ""
  6352. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:177
  6353. msgid ""
  6354. "You appear to be currently connected to the device via the \"%h\" interface. "
  6355. "Do you really want to shut down the interface?"
  6356. msgstr ""
  6357. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:112
  6358. msgid ""
  6359. "You can enable or disable installed init scripts here. Changes will applied "
  6360. "after a device reboot.<br /><strong>Warning: If you disable essential init "
  6361. "scripts like \"network\", your device might become inaccessible!</strong>"
  6362. msgstr ""
  6363. "You can enable or disable installed init scripts here. Changes will applied "
  6364. "after a device reboot.<br /><strong>Warning: If you disable essential init "
  6365. "scripts like \"network\", your device might become inaccessible!</strong>"
  6366. #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:65
  6367. #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:223
  6368. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:73
  6369. msgid ""
  6370. "You must enable JavaScript in your browser or LuCI will not work properly."
  6371. msgstr ""
  6372. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:115
  6373. msgid ""
  6374. "You must select a primary interface which is included in selected slave "
  6375. "interfaces!"
  6376. msgstr ""
  6377. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:96
  6378. msgid ""
  6379. "You must select at least one ARP IP target if ARP monitoring is selected!"
  6380. msgstr ""
  6381. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:199
  6382. msgid "ZRam Compression Algorithm"
  6383. msgstr ""
  6384. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:192
  6385. msgid "ZRam Settings"
  6386. msgstr ""
  6387. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:194
  6388. msgid "ZRam Size"
  6389. msgstr ""
  6390. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:331
  6391. msgid "any"
  6392. msgstr ""
  6393. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1463
  6394. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1471
  6395. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1476
  6396. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1229
  6397. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:79
  6398. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:48
  6399. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:51
  6400. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:89
  6401. msgid "auto"
  6402. msgstr "auto"
  6403. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:776
  6404. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:85
  6405. msgid "automatic"
  6406. msgstr "automatic"
  6407. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:82
  6408. msgid "baseT"
  6409. msgstr ""
  6410. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1536
  6411. msgid "bridged"
  6412. msgstr ""
  6413. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:146
  6414. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:402
  6415. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:35
  6416. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:99
  6417. #: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:31
  6418. msgid "create"
  6419. msgstr ""
  6420. #: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:69
  6421. msgid "create:"
  6422. msgstr ""
  6423. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:55
  6424. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:57
  6425. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:58
  6426. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:62
  6427. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:63
  6428. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:83
  6429. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:84
  6430. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:87
  6431. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:185
  6432. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:186
  6433. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:187
  6434. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:41
  6435. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:42
  6436. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:272
  6437. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:274
  6438. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:275
  6439. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:279
  6440. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:280
  6441. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:263
  6442. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:266
  6443. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:269
  6444. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:273
  6445. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:276
  6446. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:279
  6447. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:305
  6448. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:306
  6449. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:307
  6450. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:311
  6451. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:312
  6452. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:313
  6453. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:315
  6454. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:316
  6455. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:317
  6456. msgid "dBm"
  6457. msgstr ""
  6458. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1086
  6459. msgid "disable"
  6460. msgstr "disable"
  6461. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:627
  6462. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:765
  6463. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:869
  6464. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:899
  6465. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:959
  6466. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:91
  6467. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:25
  6468. msgid "disabled"
  6469. msgstr ""
  6470. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:576
  6471. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:610
  6472. msgid "driver default"
  6473. msgstr ""
  6474. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:66
  6475. msgid "e.g: --proxy 10.10.10.10"
  6476. msgstr ""
  6477. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:68
  6478. msgid "e.g: dump"
  6479. msgstr ""
  6480. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:551
  6481. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:572
  6482. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:100
  6483. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:139
  6484. msgid "expired"
  6485. msgstr ""
  6486. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:182
  6487. msgid ""
  6488. "file where given <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</"
  6489. "abbr>-leases will be stored"
  6490. msgstr ""
  6491. "file where given <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</"
  6492. "abbr>-leases will be stored"
  6493. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:780
  6494. msgid "forced"
  6495. msgstr ""
  6496. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:85
  6497. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:195
  6498. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:61
  6499. msgid "forward"
  6500. msgstr ""
  6501. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:97
  6502. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:84
  6503. msgid "full-duplex"
  6504. msgstr ""
  6505. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:97
  6506. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:84
  6507. msgid "half-duplex"
  6508. msgstr ""
  6509. #: modules/luci-base/htdocs/luci-static/resources/validation.js:572
  6510. msgid "hexadecimal encoded value"
  6511. msgstr ""
  6512. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1808
  6513. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:297
  6514. msgid "hidden"
  6515. msgstr ""
  6516. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:771
  6517. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:875
  6518. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:903
  6519. msgid "hybrid mode"
  6520. msgstr ""
  6521. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:36
  6522. msgid "if target is a network"
  6523. msgstr "if target is a network"
  6524. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:63
  6525. msgid "ignore"
  6526. msgstr ""
  6527. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:69
  6528. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:191
  6529. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:46
  6530. msgid "input"
  6531. msgstr ""
  6532. #: modules/luci-base/htdocs/luci-static/resources/validation.js:398
  6533. msgid "key between 8 and 63 characters"
  6534. msgstr ""
  6535. #: modules/luci-base/htdocs/luci-static/resources/validation.js:410
  6536. msgid "key with either 5 or 13 characters"
  6537. msgstr ""
  6538. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:189
  6539. msgid "local <abbr title=\"Domain Name System\">DNS</abbr> file"
  6540. msgstr "local <abbr title=\"Domain Name System\">DNS</abbr> file"
  6541. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:793
  6542. msgid "managed config (M)"
  6543. msgstr ""
  6544. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1388
  6545. msgid "medium security"
  6546. msgstr ""
  6547. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1537
  6548. msgid "minutes"
  6549. msgstr ""
  6550. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:797
  6551. msgid "mobile home agent (H)"
  6552. msgstr ""
  6553. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:422
  6554. msgid "netif_carrier_ok()"
  6555. msgstr ""
  6556. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:47
  6557. msgid "no"
  6558. msgstr ""
  6559. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:103
  6560. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:76
  6561. msgid "no link"
  6562. msgstr ""
  6563. #: modules/luci-base/htdocs/luci-static/resources/validation.js:59
  6564. msgid "non-empty value"
  6565. msgstr ""
  6566. #: modules/luci-base/htdocs/luci-static/resources/form.js:3032
  6567. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:800
  6568. msgid "none"
  6569. msgstr "none"
  6570. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:41
  6571. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:55
  6572. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:69
  6573. msgid "not present"
  6574. msgstr ""
  6575. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:347
  6576. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:964
  6577. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:968
  6578. #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:197
  6579. msgid "off"
  6580. msgstr ""
  6581. #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:196
  6582. msgid "on"
  6583. msgstr ""
  6584. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:778
  6585. msgid "on available prefix"
  6586. msgstr ""
  6587. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1389
  6588. msgid "open network"
  6589. msgstr ""
  6590. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:795
  6591. msgid "other config (O)"
  6592. msgstr ""
  6593. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:69
  6594. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:46
  6595. msgid "output"
  6596. msgstr ""
  6597. #: modules/luci-base/htdocs/luci-static/resources/validation.js:241
  6598. msgid "positive decimal value"
  6599. msgstr ""
  6600. #: modules/luci-base/htdocs/luci-static/resources/validation.js:233
  6601. msgid "positive integer value"
  6602. msgstr ""
  6603. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:80
  6604. msgid "random"
  6605. msgstr ""
  6606. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:769
  6607. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:873
  6608. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:901
  6609. msgid "relay mode"
  6610. msgstr ""
  6611. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1537
  6612. msgid "routed"
  6613. msgstr ""
  6614. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1165
  6615. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1174
  6616. msgid "sec"
  6617. msgstr ""
  6618. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:767
  6619. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:871
  6620. msgid "server mode"
  6621. msgstr ""
  6622. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:54
  6623. msgid "sstpc Log-level"
  6624. msgstr ""
  6625. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1387
  6626. msgid "strong security"
  6627. msgstr ""
  6628. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:352
  6629. msgid "tagged"
  6630. msgstr ""
  6631. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1520
  6632. msgid "time units (TUs / 1.024 ms) [1000-65535]"
  6633. msgstr ""
  6634. #: modules/luci-base/htdocs/luci-static/resources/validation.js:562
  6635. msgid "unique value"
  6636. msgstr ""
  6637. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1414
  6638. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1426
  6639. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:591
  6640. msgid "unknown"
  6641. msgstr ""
  6642. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:340
  6643. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:549
  6644. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:570
  6645. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:98
  6646. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:137
  6647. msgid "unlimited"
  6648. msgstr ""
  6649. #: modules/luci-base/htdocs/luci-static/resources/form.js:3397
  6650. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:76
  6651. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:138
  6652. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:369
  6653. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:393
  6654. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:429
  6655. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:466
  6656. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:562
  6657. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:53
  6658. #: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:38
  6659. msgid "unspecified"
  6660. msgstr ""
  6661. #: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:71
  6662. msgid "unspecified -or- create:"
  6663. msgstr "unspecified -or- create:"
  6664. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:350
  6665. msgid "untagged"
  6666. msgstr ""
  6667. #: modules/luci-base/htdocs/luci-static/resources/validation.js:246
  6668. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:121
  6669. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:132
  6670. msgid "valid IP address"
  6671. msgstr ""
  6672. #: modules/luci-base/htdocs/luci-static/resources/validation.js:246
  6673. msgid "valid IP address or prefix"
  6674. msgstr ""
  6675. #: modules/luci-base/htdocs/luci-static/resources/validation.js:283
  6676. msgid "valid IPv4 CIDR"
  6677. msgstr ""
  6678. #: modules/luci-base/htdocs/luci-static/resources/validation.js:254
  6679. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:125
  6680. msgid "valid IPv4 address"
  6681. msgstr ""
  6682. #: modules/luci-base/htdocs/luci-static/resources/validation.js:254
  6683. msgid "valid IPv4 address or network"
  6684. msgstr ""
  6685. #: modules/luci-base/htdocs/luci-static/resources/validation.js:377
  6686. msgid "valid IPv4 address:port"
  6687. msgstr ""
  6688. #: modules/luci-base/htdocs/luci-static/resources/validation.js:317
  6689. msgid "valid IPv4 network"
  6690. msgstr ""
  6691. #: modules/luci-base/htdocs/luci-static/resources/validation.js:277
  6692. msgid "valid IPv4 or IPv6 CIDR"
  6693. msgstr ""
  6694. #: modules/luci-base/htdocs/luci-static/resources/validation.js:267
  6695. msgid "valid IPv4 prefix value (0-32)"
  6696. msgstr ""
  6697. #: modules/luci-base/htdocs/luci-static/resources/validation.js:289
  6698. msgid "valid IPv6 CIDR"
  6699. msgstr ""
  6700. #: modules/luci-base/htdocs/luci-static/resources/validation.js:262
  6701. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:129
  6702. msgid "valid IPv6 address"
  6703. msgstr ""
  6704. #: modules/luci-base/htdocs/luci-static/resources/validation.js:262
  6705. msgid "valid IPv6 address or prefix"
  6706. msgstr ""
  6707. #: modules/luci-base/htdocs/luci-static/resources/validation.js:307
  6708. msgid "valid IPv6 host id"
  6709. msgstr ""
  6710. #: modules/luci-base/htdocs/luci-static/resources/validation.js:322
  6711. msgid "valid IPv6 network"
  6712. msgstr ""
  6713. #: modules/luci-base/htdocs/luci-static/resources/validation.js:272
  6714. msgid "valid IPv6 prefix value (0-128)"
  6715. msgstr ""
  6716. #: modules/luci-base/htdocs/luci-static/resources/validation.js:343
  6717. msgid "valid MAC address"
  6718. msgstr ""
  6719. #: modules/luci-base/htdocs/luci-static/resources/validation.js:414
  6720. msgid "valid UCI identifier"
  6721. msgstr ""
  6722. #: modules/luci-base/htdocs/luci-static/resources/validation.js:365
  6723. msgid "valid UCI identifier, hostname or IP address range"
  6724. msgstr ""
  6725. #: modules/luci-base/htdocs/luci-static/resources/validation.js:386
  6726. #: modules/luci-base/htdocs/luci-static/resources/validation.js:389
  6727. msgid "valid address:port"
  6728. msgstr ""
  6729. #: modules/luci-base/htdocs/luci-static/resources/validation.js:536
  6730. #: modules/luci-base/htdocs/luci-static/resources/validation.js:540
  6731. msgid "valid date (YYYY-MM-DD)"
  6732. msgstr ""
  6733. #: modules/luci-base/htdocs/luci-static/resources/validation.js:237
  6734. msgid "valid decimal value"
  6735. msgstr ""
  6736. #: modules/luci-base/htdocs/luci-static/resources/validation.js:408
  6737. msgid "valid hexadecimal WEP key"
  6738. msgstr ""
  6739. #: modules/luci-base/htdocs/luci-static/resources/validation.js:396
  6740. msgid "valid hexadecimal WPA key"
  6741. msgstr ""
  6742. #: modules/luci-base/htdocs/luci-static/resources/validation.js:371
  6743. msgid "valid host:port"
  6744. msgstr ""
  6745. #: modules/luci-base/htdocs/luci-static/resources/validation.js:358
  6746. #: modules/luci-base/htdocs/luci-static/resources/validation.js:360
  6747. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:73
  6748. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:79
  6749. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:107
  6750. msgid "valid hostname"
  6751. msgstr ""
  6752. #: modules/luci-base/htdocs/luci-static/resources/validation.js:348
  6753. msgid "valid hostname or IP address"
  6754. msgstr ""
  6755. #: modules/luci-base/htdocs/luci-static/resources/validation.js:229
  6756. msgid "valid integer value"
  6757. msgstr ""
  6758. #: modules/luci-base/htdocs/luci-static/resources/validation.js:312
  6759. msgid "valid network in address/netmask notation"
  6760. msgstr ""
  6761. #: modules/luci-base/htdocs/luci-static/resources/validation.js:511
  6762. msgid "valid phone digit (0-9, \"*\", \"#\", \"!\" or \".\")"
  6763. msgstr ""
  6764. #: modules/luci-base/htdocs/luci-static/resources/validation.js:335
  6765. #: modules/luci-base/htdocs/luci-static/resources/validation.js:338
  6766. msgid "valid port or port range (port1-port2)"
  6767. msgstr ""
  6768. #: modules/luci-base/htdocs/luci-static/resources/validation.js:327
  6769. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:136
  6770. msgid "valid port value"
  6771. msgstr ""
  6772. #: modules/luci-base/htdocs/luci-static/resources/validation.js:516
  6773. msgid "valid time (HH:MM:SS)"
  6774. msgstr ""
  6775. #: modules/luci-base/htdocs/luci-static/resources/validation.js:438
  6776. msgid "value between %d and %d characters"
  6777. msgstr ""
  6778. #: modules/luci-base/htdocs/luci-static/resources/validation.js:419
  6779. msgid "value between %f and %f"
  6780. msgstr ""
  6781. #: modules/luci-base/htdocs/luci-static/resources/validation.js:423
  6782. msgid "value greater or equal to %f"
  6783. msgstr ""
  6784. #: modules/luci-base/htdocs/luci-static/resources/validation.js:427
  6785. msgid "value smaller or equal to %f"
  6786. msgstr ""
  6787. #: modules/luci-base/htdocs/luci-static/resources/validation.js:432
  6788. msgid "value with %d characters"
  6789. msgstr ""
  6790. #: modules/luci-base/htdocs/luci-static/resources/validation.js:443
  6791. msgid "value with at least %d characters"
  6792. msgstr ""
  6793. #: modules/luci-base/htdocs/luci-static/resources/validation.js:448
  6794. msgid "value with at most %d characters"
  6795. msgstr ""
  6796. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1389
  6797. msgid "weak security"
  6798. msgstr ""
  6799. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:47
  6800. msgid "yes"
  6801. msgstr ""
  6802. #: modules/luci-compat/luasrc/view/cbi/delegator.htm:20
  6803. msgid "« Back"
  6804. msgstr "« Back"
  6805. #~ msgid "Bridge interfaces"
  6806. #~ msgstr "Bridge interfaces"
  6807. #~ msgid "Creates a bridge over specified interface(s)"
  6808. #~ msgstr "Creates a bridge over specified interface(s)"
  6809. #~ msgid "Default gateway"
  6810. #~ msgstr "Default gateway"
  6811. #~ msgid "Enable/Disable"
  6812. #~ msgstr "Enable/Disable"
  6813. #~ msgid "Define a name for this network."
  6814. #~ msgstr "Define a name for this network."
  6815. #~ msgid "Bad address specified!"
  6816. #~ msgstr "Bad address specified!"
  6817. #~ msgid "Assign interfaces..."
  6818. #~ msgstr "Assign interfaces..."
  6819. #~ msgid ""
  6820. #~ "This page gives an overview over currently active network connections."
  6821. #~ msgstr ""
  6822. #~ "This page gives an overview over currently active network connections."
  6823. #~ msgid "Changes applied."
  6824. #~ msgstr "Changes applied."
  6825. #~ msgid "(%s available)"
  6826. #~ msgstr "(%s available)"
  6827. #~ msgid "Check"
  6828. #~ msgstr "Check"
  6829. #~ msgid "Checksum"
  6830. #~ msgstr "Checksum"
  6831. #~ msgid "Flash Firmware"
  6832. #~ msgstr "Flash Firmware"
  6833. #~ msgid "Proceed"
  6834. #~ msgstr "Proceed"
  6835. #~ msgid ""
  6836. #~ "The filesystem that was used to format the memory (<abbr title=\"for "
  6837. #~ "example\">e.g.</abbr> <samp><abbr title=\"Third Extended Filesystem"
  6838. #~ "\">ext3</abbr></samp>)"
  6839. #~ msgstr ""
  6840. #~ "The filesystem that was used to format the memory (<abbr title=\"for "
  6841. #~ "example\">e.g.</abbr> <samp><abbr title=\"Third Extended Filesystem"
  6842. #~ "\">ext3</abbr></samp>)"
  6843. #~ msgid "Antenna 1"
  6844. #~ msgstr "Antenna 1"
  6845. #~ msgid "Antenna 2"
  6846. #~ msgstr "Antenna 2"
  6847. #~ msgid "Back to overview"
  6848. #~ msgstr "Back to overview"
  6849. #~ msgid "Back to scan results"
  6850. #~ msgstr "Back to scan results"
  6851. #~ msgid "Common Configuration"
  6852. #~ msgstr "Common Configuration"
  6853. #~ msgid "Connect"
  6854. #~ msgstr "Connect"
  6855. #~ msgid "Connection Limit"
  6856. #~ msgstr "Connection Limit"
  6857. #~ msgid "Cover the following interface"
  6858. #~ msgstr "Cover the following interface"
  6859. #~ msgid "Cover the following interfaces"
  6860. #~ msgstr "Cover the following interfaces"
  6861. #~ msgid "Create Interface"
  6862. #~ msgstr "Create Interface"
  6863. #~ msgid "Create a bridge over multiple interfaces"
  6864. #~ msgstr "Create a bridge over multiple interfaces"
  6865. #~ msgid "Diversity"
  6866. #~ msgstr "Diversity"
  6867. #~ msgid "Frame Bursting"
  6868. #~ msgstr "Frame Bursting"
  6869. #~ msgid ""
  6870. #~ "On this page you can configure the network interfaces. You can bridge "
  6871. #~ "several interfaces by ticking the \"bridge interfaces\" field and enter "
  6872. #~ "the names of several network interfaces separated by spaces. You can also "
  6873. #~ "use <abbr title=\"Virtual Local Area Network\">VLAN</abbr> notation "
  6874. #~ "<samp>INTERFACE.VLANNR</samp> (<abbr title=\"for example\">e.g.</abbr>: "
  6875. #~ "<samp>eth0.1</samp>)."
  6876. #~ msgstr ""
  6877. #~ "On this page you can configure the network interfaces. You can bridge "
  6878. #~ "several interfaces by ticking the \"bridge interfaces\" field and enter "
  6879. #~ "the names of several network interfaces separated by spaces. You can also "
  6880. #~ "use <abbr title=\"Virtual Local Area Network\">VLAN</abbr> notation "
  6881. #~ "<samp>INTERFACE.VLANNR</samp> (<abbr title=\"for example\">e.g.</abbr>: "
  6882. #~ "<samp>eth0.1</samp>)."
  6883. #~ msgid "Receiver Antenna"
  6884. #~ msgstr "Receiver Antenna"
  6885. #~ msgid "Repeat scan"
  6886. #~ msgstr "Repeat scan"
  6887. #~ msgid "Replace entry"
  6888. #~ msgstr "Replace entry"
  6889. #~ msgid "Separate Clients"
  6890. #~ msgstr "Separate Clients"
  6891. #~ msgid "Slot time"
  6892. #~ msgstr "Slot time"
  6893. #~ msgid "Transmission Rate"
  6894. #~ msgstr "Transmission Rate"
  6895. #~ msgid "Transmit Power"
  6896. #~ msgstr "Transmit Power"
  6897. #~ msgid "Transmitter Antenna"
  6898. #~ msgstr "Transmitter Antenna"
  6899. #~ msgid "Uploaded File"
  6900. #~ msgstr "Uploaded File"
  6901. #~ msgid "Back"
  6902. #~ msgstr "Back"
  6903. #~ msgid "The following changes have been reverted"
  6904. #~ msgstr "The following changes have been reverted"
  6905. #~ msgid "Theme"
  6906. #~ msgstr "Theme"
  6907. #~ msgid "Available packages"
  6908. #~ msgstr "Available packages"
  6909. #~ msgid "Download and install package"
  6910. #~ msgstr "Download and install package"
  6911. #~ msgid "Filter"
  6912. #~ msgstr "Filter"
  6913. #~ msgid "Find package"
  6914. #~ msgstr "Find package"
  6915. #~ msgid "Install"
  6916. #~ msgstr "Install"
  6917. #~ msgid "OK"
  6918. #~ msgstr "OK"
  6919. #~ msgid "OPKG-Configuration"
  6920. #~ msgstr "OPKG-Configuration"
  6921. #~ msgid "Package name"
  6922. #~ msgstr "Package name"
  6923. #~ msgid "Software"
  6924. #~ msgstr "Software"
  6925. #~ msgid "Version"
  6926. #~ msgstr "Version"
  6927. #~ msgid "No chains in this table"
  6928. #~ msgstr "No chains in this table"
  6929. #~ msgid "Configuration files will be kept."
  6930. #~ msgstr "Configuration files will be kept."
  6931. #~ msgid "Activate this network"
  6932. #~ msgstr "Activate this network"
  6933. #~ msgid "Backup / Restore"
  6934. #~ msgstr "Backup / Restore"
  6935. #~ msgid "DHCP Leases"
  6936. #~ msgstr "DHCP Leases"
  6937. #~ msgid "help"
  6938. #~ msgstr "help"
  6939. #~ msgid "Apply"
  6940. #~ msgstr "Apply"
  6941. #~ msgid "Applying changes"
  6942. #~ msgstr "Applying changes"
  6943. #~ msgid "Configuration applied."
  6944. #~ msgstr "Configuration applied."
  6945. #~ msgid "Action"
  6946. #~ msgstr "Action"
  6947. #~ msgid "Buttons"
  6948. #~ msgstr "Buttons"
  6949. #~ msgid "Handler"
  6950. #~ msgstr "Handler"
  6951. #~ msgid "Maximum hold time"
  6952. #~ msgstr "Maximum hold time"
  6953. #~ msgid "Minimum hold time"
  6954. #~ msgstr "Minimum hold time"
  6955. #~ msgid "Specifies the button state to handle"
  6956. #~ msgstr "Specifies the button state to handle"
  6957. #~ msgid "Leasetime"
  6958. #~ msgstr "Leasetime"
  6959. #~ msgid "AR Support"
  6960. #~ msgstr "AR Support"
  6961. #~ msgid "Background Scan"
  6962. #~ msgstr "Background Scan"
  6963. #~ msgid "Compression"
  6964. #~ msgstr "Compression"
  6965. #~ msgid "Disable HW-Beacon timer"
  6966. #~ msgstr "Disable HW-Beacon timer"
  6967. #~ msgid "Do not send probe responses"
  6968. #~ msgstr "Do not send probe responses"
  6969. #~ msgid "Fast Frames"
  6970. #~ msgstr "Fast Frames"
  6971. #~ msgid "Maximum Rate"
  6972. #~ msgstr "Maximum Rate"
  6973. #~ msgid "Minimum Rate"
  6974. #~ msgstr "Minimum Rate"
  6975. #~ msgid "Multicast Rate"
  6976. #~ msgstr "Multicast Rate"
  6977. #~ msgid "Outdoor Channels"
  6978. #~ msgstr "Outdoor Channels"
  6979. #~ msgid "Regulatory Domain"
  6980. #~ msgstr "Regulatory Domain"
  6981. #~ msgid "Separate WDS"
  6982. #~ msgstr "Separate WDS"
  6983. #~ msgid "Turbo Mode"
  6984. #~ msgstr "Turbo Mode"
  6985. #~ msgid "XR Support"
  6986. #~ msgstr "XR Support"
  6987. #~ msgid "An additional network will be created if you leave this unchecked."
  6988. #~ msgstr "An additional network will be created if you leave this unchecked."
  6989. #~ msgid "CPU"
  6990. #~ msgstr "CPU"