base.po 406 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010
  1. msgid ""
  2. msgstr ""
  3. "Project-Id-Version: PACKAGE VERSION\n"
  4. "Report-Msgid-Bugs-To: \n"
  5. "POT-Creation-Date: 2010-05-07 17:57+1000\n"
  6. "PO-Revision-Date: 2020-01-14 15:21+0000\n"
  7. "Last-Translator: Franco Castillo <castillofrancodamian@gmail.com>\n"
  8. "Language-Team: Malay <https://hosted.weblate.org/projects/librecmc/luci/ms/>\n"
  9. "Language: ms\n"
  10. "MIME-Version: 1.0\n"
  11. "Content-Type: text/plain; charset=UTF-8\n"
  12. "Content-Transfer-Encoding: 8bit\n"
  13. "Plural-Forms: nplurals=1; plural=0;\n"
  14. "X-Generator: Weblate 3.11-dev\n"
  15. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:925
  16. msgid "!known (not known)"
  17. msgstr ""
  18. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:649
  19. msgctxt "Yet unknown nftables table family (\"family\" table \"name\")"
  20. msgid "\"%h\" table \"%h\""
  21. msgstr ""
  22. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1591
  23. msgid "%.1f dB"
  24. msgstr ""
  25. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:123
  26. msgid "%d Bit"
  27. msgstr ""
  28. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4097
  29. msgid "%d invalid field(s)"
  30. msgstr ""
  31. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:26
  32. msgid "%dh ago"
  33. msgstr ""
  34. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:24
  35. msgid "%dm ago"
  36. msgstr ""
  37. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:22
  38. msgid "%ds ago"
  39. msgstr ""
  40. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:35
  41. msgid "%s is untagged in multiple VLANs!"
  42. msgstr ""
  43. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:296
  44. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:405
  45. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:272
  46. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:309
  47. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:327
  48. msgid "(%d minute window, %d second interval)"
  49. msgstr ""
  50. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:118
  51. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:124
  52. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:259
  53. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:283
  54. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:88
  55. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:91
  56. msgid "(empty)"
  57. msgstr ""
  58. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:352
  59. #: modules/luci-compat/luasrc/view/cbi/network_netinfo.htm:23
  60. #: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:58
  61. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:271
  62. msgid "(no interfaces attached)"
  63. msgstr "(tiada interface dipasang)"
  64. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:635
  65. msgctxt "Label indicating further amount of allowed ips"
  66. msgid "+ %d more"
  67. msgstr ""
  68. #: modules/luci-compat/luasrc/view/cbi/ucisection.htm:48
  69. msgid "-- Additional Field --"
  70. msgstr "-- Gelanggang Tambahan --"
  71. #: modules/luci-base/htdocs/luci-static/resources/cbi.js:275
  72. #: modules/luci-base/htdocs/luci-static/resources/form.js:3789
  73. #: modules/luci-base/htdocs/luci-static/resources/form.js:4157
  74. #: modules/luci-base/htdocs/luci-static/resources/ui.js:799
  75. #: modules/luci-base/htdocs/luci-static/resources/ui.js:1037
  76. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2033
  77. #: modules/luci-compat/luasrc/view/cbi/header.htm:8
  78. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:89
  79. msgid "-- Please choose --"
  80. msgstr "-- Sila pilih --"
  81. #: modules/luci-base/htdocs/luci-static/resources/cbi.js:276
  82. #: modules/luci-base/htdocs/luci-static/resources/ui.js:1038
  83. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2034
  84. #: modules/luci-compat/luasrc/view/cbi/header.htm:9
  85. msgid "-- custom --"
  86. msgstr "-- memperibadi --"
  87. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:271
  88. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:380
  89. msgid "-- match by label --"
  90. msgstr ""
  91. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:257
  92. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:363
  93. msgid "-- match by uuid --"
  94. msgstr ""
  95. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:27
  96. #: modules/luci-compat/luasrc/view/cbi/network_ifacelist.htm:44
  97. #: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:23
  98. msgid "-- please select --"
  99. msgstr ""
  100. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:55
  101. msgctxt "sstp log level value"
  102. msgid "0"
  103. msgstr ""
  104. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:998
  105. msgid "0 = not using RSSI threshold, 1 = do not change driver default"
  106. msgstr ""
  107. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:56
  108. msgctxt "sstp log level value"
  109. msgid "1"
  110. msgstr ""
  111. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:233
  112. msgid "1 Minute Load:"
  113. msgstr ""
  114. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:323
  115. msgctxt "nft amount of flags"
  116. msgid "1 flag"
  117. msgid_plural "%d flags"
  118. msgstr[0] ""
  119. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:898
  120. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:984
  121. msgid "12h (12 hours - default)"
  122. msgstr ""
  123. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:253
  124. msgid "15 Minute Load:"
  125. msgstr ""
  126. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:57
  127. msgctxt "sstp log level value"
  128. msgid "2"
  129. msgstr ""
  130. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:58
  131. msgctxt "sstp log level value"
  132. msgid "3"
  133. msgstr ""
  134. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:897
  135. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:983
  136. msgid "3h (3 hours)"
  137. msgstr ""
  138. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:59
  139. msgctxt "sstp log level value"
  140. msgid "4"
  141. msgstr ""
  142. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1562
  143. msgid "4-character hexadecimal ID"
  144. msgstr ""
  145. #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:18
  146. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:11
  147. msgid "464XLAT (CLAT)"
  148. msgstr ""
  149. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:243
  150. msgid "5 Minute Load:"
  151. msgstr ""
  152. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:896
  153. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:982
  154. msgid "5m (5 minutes)"
  155. msgstr ""
  156. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1591
  157. msgid "6-octet identifier as a hex string - no colons"
  158. msgstr ""
  159. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:899
  160. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:985
  161. msgid "7d (7 days)"
  162. msgstr ""
  163. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1614
  164. msgid "802.11k RRM"
  165. msgstr ""
  166. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1623
  167. msgid "802.11k: Enable beacon report via radio measurements."
  168. msgstr ""
  169. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1619
  170. msgid "802.11k: Enable neighbor report via radio measurements."
  171. msgstr ""
  172. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1551
  173. msgid "802.11r Fast Transition"
  174. msgstr ""
  175. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1183
  176. msgid "802.11v: BSS Max Idle. Units: seconds."
  177. msgstr ""
  178. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1649
  179. msgid "802.11v: Basic Service Set (BSS) transition management."
  180. msgstr ""
  181. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1638
  182. msgid "802.11v: Local Time Zone Advertisement in management frames."
  183. msgstr ""
  184. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1653
  185. msgid ""
  186. "802.11v: Proxy ARP enables non-AP STA to remain in power-save for longer."
  187. msgstr ""
  188. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1629
  189. msgid "802.11v: Time Advertisement in management frames."
  190. msgstr ""
  191. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1642
  192. msgid ""
  193. "802.11v: Wireless Network Management (WNM) Sleep Mode (extended sleep mode "
  194. "for stations)."
  195. msgstr ""
  196. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1646
  197. msgid ""
  198. "802.11v: Wireless Network Management (WNM) Sleep Mode Fixes: Prevents "
  199. "reinstallation attacks."
  200. msgstr ""
  201. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1796
  202. msgid "802.11w Association SA Query maximum timeout"
  203. msgstr ""
  204. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1803
  205. msgid "802.11w Association SA Query retry timeout"
  206. msgstr ""
  207. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1777
  208. msgid "802.11w Management Frame Protection"
  209. msgstr ""
  210. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1796
  211. msgid "802.11w maximum timeout"
  212. msgstr ""
  213. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1803
  214. msgid "802.11w retry timeout"
  215. msgstr ""
  216. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1015
  217. msgid "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>"
  218. msgstr "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>"
  219. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1004
  220. msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>"
  221. msgstr ""
  222. "<abbr title=\"perkhidmatan set mengenalpasti diperpanjangkan\">ESSID</abbr>"
  223. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:708
  224. msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Netmask"
  225. msgstr "IPv4-Netmask"
  226. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:58
  227. msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Configuration"
  228. msgstr "Konfigurasi lampu LED"
  229. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:70
  230. msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Name"
  231. msgstr ""
  232. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:961
  233. msgid "<abbr title=\"Neighbour Discovery Protocol\">NDP</abbr>-Proxy"
  234. msgstr ""
  235. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:831
  236. msgid "<abbr title=\"Router Advertisement\">RA</abbr> Flags"
  237. msgstr ""
  238. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:905
  239. msgid "<abbr title=\"Router Advertisement\">RA</abbr> Hop Limit"
  240. msgstr ""
  241. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:879
  242. msgid "<abbr title=\"Router Advertisement\">RA</abbr> Lifetime"
  243. msgstr ""
  244. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:886
  245. msgid "<abbr title=\"Router Advertisement\">RA</abbr> MTU"
  246. msgstr ""
  247. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:803
  248. msgid "<abbr title=\"Router Advertisement\">RA</abbr>-Service"
  249. msgstr ""
  250. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:300
  251. msgid ""
  252. "<code>/#/</code> matches any domain. <code>/example.com/</code> returns "
  253. "NXDOMAIN."
  254. msgstr ""
  255. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301
  256. msgid ""
  257. "<code>/example.com/#</code> returns NULL addresses (<code>0.0.0.0</code> and "
  258. "<code>::</code>) for example.com and its subdomains."
  259. msgstr ""
  260. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:87
  261. msgctxt "nft relational \">\" operator expression"
  262. msgid "<var>%s</var> greater than <strong>%s</strong>"
  263. msgstr ""
  264. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:85
  265. msgctxt "nft relational \">=\" operator expression"
  266. msgid "<var>%s</var> greater than or equal to <strong>%s</strong>"
  267. msgstr ""
  268. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:90
  269. msgctxt "nft set match expression"
  270. msgid "<var>%s</var> in set <strong>%s</strong>"
  271. msgstr ""
  272. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:83
  273. msgctxt "nft relational \"==\" operator expression"
  274. msgid "<var>%s</var> is <strong>%s</strong>"
  275. msgstr ""
  276. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:89
  277. msgctxt "nft relational \"in\" operator expression"
  278. msgid "<var>%s</var> is one of <strong>%s</strong>"
  279. msgstr ""
  280. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:88
  281. msgctxt "nft relational \"<\" operator expression"
  282. msgid "<var>%s</var> lower than <strong>%s</strong>"
  283. msgstr ""
  284. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:86
  285. msgctxt "nft relational \"<=\" operator expression"
  286. msgid "<var>%s</var> lower than or equal to <strong>%s</strong>"
  287. msgstr ""
  288. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:84
  289. msgctxt "nft relational \"!=\" operator expression"
  290. msgid "<var>%s</var> not <strong>%s</strong>"
  291. msgstr ""
  292. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:91
  293. msgctxt "nft not in set match expression"
  294. msgid "<var>%s</var> not in set <strong>%s</strong>"
  295. msgstr ""
  296. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:86
  297. msgid ""
  298. "A batman-adv node can either run in server mode (sharing its internet "
  299. "connection with the mesh) or in client mode (searching for the most suitable "
  300. "internet connection in the mesh) or having the gateway support turned off "
  301. "entirely (which is the default setting)."
  302. msgstr ""
  303. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:424
  304. msgid "A configuration for the device \"%s\" already exists"
  305. msgstr ""
  306. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2779
  307. msgid "A directory with the same name already exists."
  308. msgstr ""
  309. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2666
  310. msgid "A new login is required since the authentication session expired."
  311. msgstr ""
  312. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1571
  313. msgid "A43C + J43 + A43"
  314. msgstr ""
  315. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1572
  316. msgid "A43C + J43 + A43 + V43"
  317. msgstr ""
  318. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1584
  319. msgid "ADSL"
  320. msgstr "ADSL"
  321. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1558
  322. msgid "ADSL (G.992.1) Annex A"
  323. msgstr ""
  324. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1559
  325. msgid "ADSL (G.992.1) Annex B"
  326. msgstr ""
  327. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1552
  328. msgid "ADSL (all variants) Annex A/L/M"
  329. msgstr ""
  330. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1548
  331. msgid "ADSL (all variants) Annex A/L/M + VDSL2 Annex A/B/C"
  332. msgstr ""
  333. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1553
  334. msgid "ADSL (all variants) Annex B"
  335. msgstr ""
  336. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1549
  337. msgid "ADSL (all variants) Annex B + VDSL2 Annex A/B/C"
  338. msgstr ""
  339. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1554
  340. msgid "ADSL (all variants) Annex B/J"
  341. msgstr ""
  342. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1550
  343. msgid "ADSL (all variants) Annex B/J + VDSL2 Annex A/B/C"
  344. msgstr ""
  345. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1556
  346. msgid "ADSL (all variants) Annex M"
  347. msgstr ""
  348. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1561
  349. msgid "ADSL2 (G.992.3) Annex A"
  350. msgstr ""
  351. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1562
  352. msgid "ADSL2 (G.992.3) Annex B"
  353. msgstr ""
  354. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1563
  355. msgid "ADSL2 (G.992.3) Annex L"
  356. msgstr ""
  357. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1564
  358. msgid "ADSL2 (G.992.3) Annex M"
  359. msgstr ""
  360. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1565
  361. msgid "ADSL2+ (G.992.5) Annex A"
  362. msgstr ""
  363. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1566
  364. msgid "ADSL2+ (G.992.5) Annex B"
  365. msgstr ""
  366. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1567
  367. msgid "ADSL2+ (G.992.5) Annex M"
  368. msgstr ""
  369. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1557
  370. msgid "ANSI T1.413"
  371. msgstr "ANSI T1.413"
  372. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:95
  373. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:65
  374. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:65
  375. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:91
  376. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:68
  377. msgid "APN"
  378. msgstr "APN"
  379. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:353
  380. msgid "ARP"
  381. msgstr "ARP"
  382. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:366
  383. msgid "ARP IP Targets"
  384. msgstr ""
  385. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:358
  386. msgid "ARP Interval"
  387. msgstr ""
  388. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:382
  389. msgid "ARP Validation"
  390. msgstr ""
  391. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:374
  392. msgid "ARP mode to consider a slave as being up"
  393. msgstr ""
  394. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:79
  395. msgid "ARP monitoring is not supported for the selected policy!"
  396. msgstr ""
  397. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:175
  398. msgid "ARP retry threshold"
  399. msgstr ""
  400. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:637
  401. msgid "ARP traffic table \"%h\""
  402. msgstr ""
  403. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1146
  404. msgid ""
  405. "ARP, IPv4 and IPv6 (even 802.1Q) with multicast destination MACs are unicast "
  406. "to the STA MAC address. Note: This is not Directed Multicast Service (DMS) "
  407. "in 802.11v. Note: might break receiver STA multicast expectations."
  408. msgstr ""
  409. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1579
  410. msgid "ATM (Asynchronous Transfer Mode)"
  411. msgstr ""
  412. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1600
  413. msgid "ATM Bridges"
  414. msgstr ""
  415. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1632
  416. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:66
  417. msgid "ATM Virtual Channel Identifier (VCI)"
  418. msgstr ""
  419. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1633
  420. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:70
  421. msgid "ATM Virtual Path Identifier (VPI)"
  422. msgstr ""
  423. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1600
  424. msgid ""
  425. "ATM bridges expose encapsulated ethernet in AAL5 connections as virtual "
  426. "Linux network interfaces which can be used in conjunction with DHCP or PPP "
  427. "to dial into the provider network."
  428. msgstr ""
  429. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1639
  430. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:62
  431. msgid "ATM device number"
  432. msgstr ""
  433. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:266
  434. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:548
  435. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:552
  436. msgid "Absent Interface"
  437. msgstr ""
  438. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:331
  439. msgid "Accept DNS queries only from hosts whose address is on a local subnet."
  440. msgstr ""
  441. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:701
  442. msgid "Accept local"
  443. msgstr ""
  444. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:95
  445. msgctxt "nft accept action"
  446. msgid "Accept packet"
  447. msgstr ""
  448. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:701
  449. msgid "Accept packets with local source addresses"
  450. msgstr ""
  451. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:47
  452. msgid "Access Concentrator"
  453. msgstr ""
  454. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:986
  455. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1101
  456. msgid "Access Point"
  457. msgstr "Pusat akses"
  458. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:60
  459. msgid "Access Point Isolation"
  460. msgstr ""
  461. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:99
  462. msgid "Access Technologies"
  463. msgstr ""
  464. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:388
  465. msgid "Actions"
  466. msgstr "Aksi"
  467. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:14
  468. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:134
  469. msgid "Active"
  470. msgstr ""
  471. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:81
  472. msgid "Active Connections"
  473. msgstr "Sambungan Aktif"
  474. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:35
  475. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:182
  476. msgid "Active DHCP Leases"
  477. msgstr ""
  478. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:54
  479. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:184
  480. msgid "Active DHCPv6 Leases"
  481. msgstr ""
  482. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:255
  483. msgid "Active IPv4 Routes"
  484. msgstr "Aktive IPv4-Routen"
  485. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:258
  486. msgid "Active IPv4 Rules"
  487. msgstr ""
  488. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:265
  489. msgid "Active IPv6 Routes"
  490. msgstr "Aktif IPv6-Laluan"
  491. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:268
  492. msgid "Active IPv6 Rules"
  493. msgstr ""
  494. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:205
  495. msgid "Active-Backup policy (active-backup, 1)"
  496. msgstr ""
  497. #: modules/luci-base/htdocs/luci-static/resources/network.js:3866
  498. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:988
  499. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:23
  500. msgid "Ad-Hoc"
  501. msgstr "Ad-Hoc"
  502. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:210
  503. msgid "Adaptive load balancing (balance-alb, 6)"
  504. msgstr ""
  505. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:209
  506. msgid "Adaptive transmit load balancing (balance-tlb, 5)"
  507. msgstr ""
  508. #: modules/luci-base/htdocs/luci-static/resources/form.js:2233
  509. #: modules/luci-base/htdocs/luci-static/resources/form.js:2236
  510. #: modules/luci-base/htdocs/luci-static/resources/form.js:2249
  511. #: modules/luci-base/htdocs/luci-static/resources/form.js:2257
  512. #: modules/luci-base/htdocs/luci-static/resources/form.js:3587
  513. #: modules/luci-compat/luasrc/view/cbi/nsection.htm:25
  514. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:189
  515. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:197
  516. #: modules/luci-compat/luasrc/view/cbi/tsection.htm:39
  517. #: modules/luci-compat/luasrc/view/cbi/tsection.htm:47
  518. #: modules/luci-compat/luasrc/view/cbi/ucisection.htm:54
  519. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:879
  520. msgid "Add"
  521. msgstr "Tambah"
  522. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1604
  523. msgid "Add ATM Bridge"
  524. msgstr ""
  525. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:92
  526. msgid "Add IPv4 address…"
  527. msgstr ""
  528. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:185
  529. msgid "Add IPv6 address…"
  530. msgstr ""
  531. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:65
  532. msgid "Add LED action"
  533. msgstr ""
  534. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:221
  535. msgid "Add VLAN"
  536. msgstr ""
  537. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1371
  538. msgid "Add device configuration"
  539. msgstr ""
  540. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1311
  541. msgid "Add device configuration…"
  542. msgstr ""
  543. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:15
  544. msgid "Add instance"
  545. msgstr ""
  546. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:171
  547. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:177
  548. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:274
  549. msgid "Add key"
  550. msgstr ""
  551. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:496
  552. msgid "Add local domain suffix to names served from hosts files."
  553. msgstr ""
  554. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:482
  555. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1195
  556. msgid "Add new interface..."
  557. msgstr ""
  558. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:224
  559. msgid "Add peer"
  560. msgstr ""
  561. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:945
  562. msgid "Add static forward and reverse DNS entries for this host."
  563. msgstr ""
  564. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:335
  565. msgid "Add to Blacklist"
  566. msgstr ""
  567. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:335
  568. msgid "Add to Whitelist"
  569. msgstr ""
  570. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:442
  571. msgid "Additional hosts files"
  572. msgstr ""
  573. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:503
  574. msgid "Additional servers file"
  575. msgstr ""
  576. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:34
  577. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:35
  578. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:36
  579. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:37
  580. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:38
  581. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:39
  582. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:40
  583. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:41
  584. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:42
  585. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:43
  586. msgid "Address"
  587. msgstr ""
  588. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:410
  589. msgid "Address families of \"Relay from\" and \"Relay to address\" must match."
  590. msgstr ""
  591. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:21
  592. msgctxt "nft meta nfproto"
  593. msgid "Address family"
  594. msgstr ""
  595. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:284
  596. msgid "Address setting is invalid"
  597. msgstr ""
  598. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:151
  599. msgid "Address to access local relay bridge"
  600. msgstr ""
  601. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:297
  602. msgid "Addresses"
  603. msgstr ""
  604. #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:3
  605. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:15
  606. msgid "Administration"
  607. msgstr "Pentadbiran"
  608. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:257
  609. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:495
  610. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:650
  611. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1630
  612. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:39
  613. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:128
  614. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:918
  615. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:982
  616. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:241
  617. msgid "Advanced Settings"
  618. msgstr "Tetapan Lanjutan"
  619. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:391
  620. msgid "Advanced device options"
  621. msgstr ""
  622. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:567
  623. msgid "Ageing time"
  624. msgstr ""
  625. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:50
  626. msgid "Aggregate Originator Messages"
  627. msgstr ""
  628. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:260
  629. msgid "Aggregation Selection Logic"
  630. msgstr ""
  631. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:263
  632. msgid "Aggregator: All slaves down or has no slaves (stable, 0)"
  633. msgstr ""
  634. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:265
  635. msgid ""
  636. "Aggregator: Chosen by the largest number of ports + slave added/removed or "
  637. "state changes (count, 2)"
  638. msgstr ""
  639. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:264
  640. msgid "Aggregator: Slave added/removed or state changes (bandwidth, 1)"
  641. msgstr ""
  642. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:192
  643. msgid "Alert"
  644. msgstr ""
  645. #: modules/luci-base/htdocs/luci-static/resources/network.js:2989
  646. #: modules/luci-compat/luasrc/model/network.lua:1417
  647. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:62
  648. msgid "Alias Interface"
  649. msgstr ""
  650. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:146
  651. msgid "Alias of \"%s\""
  652. msgstr ""
  653. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:513
  654. msgid "All servers"
  655. msgstr ""
  656. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:453
  657. msgid ""
  658. "Allocate IP addresses sequentially, starting from the lowest available "
  659. "address."
  660. msgstr ""
  661. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:452
  662. msgid "Allocate IPs sequentially"
  663. msgstr ""
  664. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:25
  665. msgid "Allow <abbr title=\"Secure Shell\">SSH</abbr> password authentication"
  666. msgstr "Membenarkan pengesahan kata laluan SSH"
  667. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1193
  668. msgid "Allow AP mode to disconnect STAs based on low ACK condition"
  669. msgstr ""
  670. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1084
  671. msgid "Allow all except listed"
  672. msgstr "Izinkan semua kecualian yang disenaraikan"
  673. #: modules/luci-compat/root/usr/share/rpcd/acl.d/luci-compat.json:3
  674. msgid "Allow full UCI access for legacy applications"
  675. msgstr ""
  676. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:938
  677. msgid "Allow legacy 802.11b rates"
  678. msgstr ""
  679. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1083
  680. msgid "Allow listed only"
  681. msgstr "Izinkan senarai saja"
  682. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:317
  683. msgid "Allow localhost"
  684. msgstr ""
  685. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:179
  686. msgid "Allow rebooting the device"
  687. msgstr ""
  688. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:36
  689. msgid "Allow remote hosts to connect to local SSH forwarded ports"
  690. msgstr ""
  691. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:31
  692. msgid "Allow root logins with password"
  693. msgstr ""
  694. #: modules/luci-base/root/usr/share/rpcd/acl.d/luci-base.json:3
  695. msgid "Allow system feature probing"
  696. msgstr ""
  697. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:31
  698. msgid "Allow the <em>root</em> user to log in with password"
  699. msgstr ""
  700. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:624
  701. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:781
  702. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:56
  703. msgid "Allowed IPs"
  704. msgstr ""
  705. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:86
  706. msgid "Allowed network technology"
  707. msgstr ""
  708. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:315
  709. msgid "AllowedIPs setting is invalid"
  710. msgstr ""
  711. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:776
  712. msgid "Always"
  713. msgstr ""
  714. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/none.js:6
  715. msgid "Always off (kernel: none)"
  716. msgstr ""
  717. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/default-on.js:5
  718. msgid "Always on (kernel: default-on)"
  719. msgstr ""
  720. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:624
  721. msgid "Always send DHCP Options. Sometimes needed, with e.g. PXELinux."
  722. msgstr ""
  723. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:965
  724. msgid ""
  725. "Always use 40MHz channels even if the secondary channel overlaps. Using this "
  726. "option does not comply with IEEE 802.11n-2009!"
  727. msgstr ""
  728. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:741
  729. msgid "Amount of Duplicate Address Detection probes to send"
  730. msgstr ""
  731. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:119
  732. msgid "Amount of seconds to wait for the modem to become ready"
  733. msgstr ""
  734. #: modules/luci-base/htdocs/luci-static/resources/form.js:608
  735. msgid "An error occurred while saving the form:"
  736. msgstr ""
  737. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:139
  738. msgid "An optional, short description for this device"
  739. msgstr ""
  740. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1546
  741. msgid "Annex"
  742. msgstr ""
  743. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:858
  744. msgid ""
  745. "Announce NAT64 prefix in <abbr title=\"Router Advertisement\">RA</abbr> "
  746. "messages."
  747. msgstr ""
  748. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:945
  749. msgid "Announce this device as IPv6 DNS server."
  750. msgstr ""
  751. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:817
  752. msgid ""
  753. "Announce this device as default router if a local IPv6 default route is "
  754. "present."
  755. msgstr ""
  756. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:819
  757. msgid ""
  758. "Announce this device as default router if a public IPv6 prefix is available, "
  759. "regardless of local default route availability."
  760. msgstr ""
  761. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:821
  762. msgid ""
  763. "Announce this device as default router regardless of whether a prefix or "
  764. "default route is present."
  765. msgstr ""
  766. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:952
  767. msgid "Announced DNS domains"
  768. msgstr ""
  769. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:936
  770. msgid "Announced IPv6 DNS servers"
  771. msgstr ""
  772. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1767
  773. msgid "Anonymous Identity"
  774. msgstr ""
  775. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:162
  776. msgid "Anonymous Mount"
  777. msgstr ""
  778. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:158
  779. msgid "Anonymous Swap"
  780. msgstr ""
  781. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:518
  782. msgctxt "nft match any traffic"
  783. msgid "Any packet"
  784. msgstr ""
  785. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:84
  786. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:174
  787. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:196
  788. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:60
  789. msgid "Any zone"
  790. msgstr ""
  791. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:618
  792. msgid "Apply DHCP Options to this net. (Empty = all clients)."
  793. msgstr ""
  794. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4713
  795. msgid "Apply and keep settings"
  796. msgstr ""
  797. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:119
  798. msgid "Apply backup?"
  799. msgstr ""
  800. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4739
  801. msgid "Apply request failed with status <code>%h</code>"
  802. msgstr ""
  803. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2175
  804. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4456
  805. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4576
  806. msgid "Apply unchecked"
  807. msgstr ""
  808. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4709
  809. msgid "Apply with revert after connectivity loss"
  810. msgstr ""
  811. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4649
  812. msgid "Applying configuration changes… %ds"
  813. msgstr ""
  814. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:57
  815. msgid "Architecture"
  816. msgstr ""
  817. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:152
  818. msgid "Arp-scan"
  819. msgstr ""
  820. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1039
  821. msgid ""
  822. "Assign a part of given length of every public IPv6-prefix to this interface"
  823. msgstr ""
  824. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:917
  825. msgid "Assign new, freeform tags to this entry."
  826. msgstr ""
  827. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1044
  828. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:27
  829. msgid ""
  830. "Assign prefix parts using this hexadecimal subprefix ID for this interface."
  831. msgstr ""
  832. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2266
  833. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:366
  834. msgid "Associated Stations"
  835. msgstr "Associated Stesen"
  836. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:151
  837. msgid "Associations"
  838. msgstr ""
  839. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:126
  840. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:127
  841. msgid ""
  842. "At least <strong>%h</strong> per <strong>%h</strong>, burst of <strong>%h</"
  843. "strong>"
  844. msgstr ""
  845. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:124
  846. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:125
  847. msgid ""
  848. "At most <strong>%h</strong> per <strong>%h</strong>, burst of <strong>%h</"
  849. "strong>"
  850. msgstr ""
  851. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:154
  852. msgid "Attempt to enable configured mount points for attached devices"
  853. msgstr ""
  854. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:145
  855. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:64
  856. msgid "Auth Group"
  857. msgstr ""
  858. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1706
  859. msgid "Authentication"
  860. msgstr "Authentifizierung"
  861. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:76
  862. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:79
  863. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:82
  864. msgid "Authentication Type"
  865. msgstr ""
  866. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:273
  867. msgid "Authoritative"
  868. msgstr "Pengesahan"
  869. #: modules/luci-base/ucode/template/sysauth.ut:17
  870. #: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:11
  871. msgid "Authorization Required"
  872. msgstr "Otorisasi Diperlukan"
  873. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:120
  874. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:18
  875. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:24
  876. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:107
  877. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:116
  878. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:113
  879. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:51
  880. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:96
  881. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:82
  882. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:56
  883. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:69
  884. msgid "Automatic"
  885. msgstr ""
  886. #: modules/luci-compat/luasrc/model/network/proto_hnet.lua:7
  887. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:7
  888. msgid "Automatic Homenet (HNCP)"
  889. msgstr ""
  890. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:174
  891. msgid "Automatically check filesystem for errors before mounting"
  892. msgstr ""
  893. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1032
  894. msgid ""
  895. "Automatically handle multiple uplink interfaces using source-based policy "
  896. "routing."
  897. msgstr ""
  898. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:170
  899. msgid "Automatically mount filesystems on hotplug"
  900. msgstr ""
  901. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:166
  902. msgid "Automatically mount swap on hotplug"
  903. msgstr ""
  904. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:170
  905. msgid "Automount Filesystem"
  906. msgstr ""
  907. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:166
  908. msgid "Automount Swap"
  909. msgstr ""
  910. #: protocols/luci-proto-autoip/htdocs/luci-static/resources/protocol/autoip.js:6
  911. msgid "Avahi IPv4LL"
  912. msgstr ""
  913. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:193
  914. msgid "Available"
  915. msgstr "Boleh didapati"
  916. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:270
  917. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:280
  918. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:331
  919. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:341
  920. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:351
  921. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:236
  922. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:246
  923. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:256
  924. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:265
  925. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:275
  926. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:293
  927. msgid "Average:"
  928. msgstr ""
  929. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:70
  930. msgid "Avoid Bridge Loops"
  931. msgstr ""
  932. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1573
  933. msgid "B43 + B43C"
  934. msgstr "B43 + B43C"
  935. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1574
  936. msgid "B43 + B43C + V43"
  937. msgstr "B43 + B43C + V43"
  938. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:48
  939. msgid "BR / DMR / AFTR"
  940. msgstr "BR / DMR / AFTR"
  941. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1649
  942. msgid "BSS Transition"
  943. msgstr ""
  944. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:158
  945. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:182
  946. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1841
  947. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:405
  948. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:149
  949. msgid "BSSID"
  950. msgstr "BSSID"
  951. #: modules/luci-base/htdocs/luci-static/resources/form.js:3255
  952. msgid "Back"
  953. msgstr ""
  954. #: modules/luci-compat/luasrc/view/cbi/footer.htm:14
  955. #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:48
  956. msgid "Back to Overview"
  957. msgstr ""
  958. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:839
  959. msgid "Back to peer configuration"
  960. msgstr ""
  961. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:391
  962. msgid "Backup"
  963. msgstr "Sandaran"
  964. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:128
  965. msgid "Backup / Flash Firmware"
  966. msgstr ""
  967. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:351
  968. msgid "Backup file list"
  969. msgstr ""
  970. #: modules/luci-compat/luasrc/view/cbi/wireless_modefreq.htm:158
  971. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:495
  972. msgid "Band"
  973. msgstr ""
  974. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:431
  975. msgid "Base device"
  976. msgstr ""
  977. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:158
  978. msgid "Base64-encoded public key of this interface for sharing."
  979. msgstr ""
  980. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:10
  981. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv_hardif.js:41
  982. msgid "Batman Device"
  983. msgstr ""
  984. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv_hardif.js:10
  985. msgid "Batman Interface"
  986. msgstr ""
  987. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:81
  988. msgid ""
  989. "Batman-adv has a built-in layer 2 fragmentation for unicast data flowing "
  990. "through the mesh which will allow to run batman-adv over interfaces / "
  991. "connections that don't allow to increase the MTU beyond the standard "
  992. "Ethernet packet size of 1500 bytes. When the fragmentation is enabled batman-"
  993. "adv will automatically fragment over-sized packets and defragment them on "
  994. "the other end. Per default fragmentation is enabled and inactive if the "
  995. "packet fits but it is possible to deactivate the fragmentation entirely."
  996. msgstr ""
  997. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:968
  998. msgid "Beacon Interval"
  999. msgstr ""
  1000. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1623
  1001. msgid "Beacon Report"
  1002. msgstr ""
  1003. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:352
  1004. msgid ""
  1005. "Below is the determined list of files to backup. It consists of changed "
  1006. "configuration files marked by opkg, essential base files and the user "
  1007. "defined backup patterns."
  1008. msgstr ""
  1009. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:287
  1010. msgid "Bind NTP server"
  1011. msgstr ""
  1012. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:337
  1013. msgid "Bind dynamically to interfaces rather than wildcard address."
  1014. msgstr ""
  1015. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:59
  1016. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64
  1017. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64
  1018. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:69
  1019. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:48
  1020. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:142
  1021. #: protocols/luci-proto-vti/htdocs/luci-static/resources/protocol/vti.js:59
  1022. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:57
  1023. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:52
  1024. msgid "Bind interface"
  1025. msgstr ""
  1026. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:676
  1027. msgid ""
  1028. "Bind service records to a domain name: specify the location of services."
  1029. msgstr ""
  1030. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:637
  1031. msgid ""
  1032. "Bind service records to a domain name: specify the location of services. See "
  1033. "<a href=\"%s\">RFC2782</a>."
  1034. msgstr ""
  1035. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:59
  1036. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64
  1037. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64
  1038. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:69
  1039. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:48
  1040. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:142
  1041. #: protocols/luci-proto-vti/htdocs/luci-static/resources/protocol/vti.js:59
  1042. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:57
  1043. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:52
  1044. msgid "Bind the tunnel to this interface (optional)."
  1045. msgstr ""
  1046. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:129
  1047. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:188
  1048. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:171
  1049. msgid "Bitrate"
  1050. msgstr ""
  1051. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:65
  1052. msgid "Bonding Mode"
  1053. msgstr ""
  1054. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:201
  1055. msgid "Bonding Policy"
  1056. msgstr ""
  1057. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:404
  1058. msgid "Both \"Relay from\" and \"Relay to address\" must be specified."
  1059. msgstr ""
  1060. #: modules/luci-base/htdocs/luci-static/resources/network.js:2995
  1061. #: modules/luci-compat/luasrc/model/network.lua:1421
  1062. msgid "Bridge"
  1063. msgstr "Bridge"
  1064. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:491
  1065. msgctxt "MACVLAN mode"
  1066. msgid "Bridge (Support direct communication between MAC VLANs)"
  1067. msgstr ""
  1068. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:393
  1069. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:498
  1070. msgid "Bridge VLAN filtering"
  1071. msgstr ""
  1072. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:398
  1073. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1469
  1074. msgid "Bridge device"
  1075. msgstr ""
  1076. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:392
  1077. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:497
  1078. msgid "Bridge port specific options"
  1079. msgstr ""
  1080. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:522
  1081. msgid "Bridge ports"
  1082. msgstr ""
  1083. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:641
  1084. msgid "Bridge traffic table \"%h\""
  1085. msgstr ""
  1086. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1640
  1087. msgid "Bridge unit number"
  1088. msgstr ""
  1089. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:558
  1090. msgid "Bring up empty bridge"
  1091. msgstr ""
  1092. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:592
  1093. msgid "Bring up on boot"
  1094. msgstr ""
  1095. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:558
  1096. msgid "Bring up the bridge interface even if no ports are attached"
  1097. msgstr ""
  1098. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:940
  1099. msgid "Broadcast"
  1100. msgstr ""
  1101. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:207
  1102. msgid "Broadcast policy (broadcast, 3)"
  1103. msgstr ""
  1104. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2869
  1105. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4207
  1106. msgid "Browse…"
  1107. msgstr ""
  1108. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:40
  1109. msgid "Buffered"
  1110. msgstr ""
  1111. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:130
  1112. msgid ""
  1113. "CA certificate (PEM encoded; Use instead of system-wide store to verify the "
  1114. "gateway certificate."
  1115. msgstr ""
  1116. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:182
  1117. msgid "CA certificate; if empty it will be saved after the first connection."
  1118. msgstr ""
  1119. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:79
  1120. msgid "CHAP"
  1121. msgstr ""
  1122. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:7
  1123. msgid "CLAT configuration failed"
  1124. msgstr ""
  1125. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:265
  1126. msgid "CNAME"
  1127. msgstr ""
  1128. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:655
  1129. msgid "CNAME or fqdn"
  1130. msgstr ""
  1131. #: protocols/luci-proto-cni/htdocs/luci-static/resources/protocol/cni.js:6
  1132. msgid "CNI (Externally managed interface)"
  1133. msgstr ""
  1134. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:72
  1135. msgid "CPU usage (%)"
  1136. msgstr "Penggunaan CPU (%)"
  1137. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:43
  1138. msgid "Cached"
  1139. msgstr ""
  1140. #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:53
  1141. #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:53
  1142. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:21
  1143. msgid "Call failed"
  1144. msgstr ""
  1145. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:469
  1146. msgid ""
  1147. "Can be useful if ISP has IPv6 nameservers but does not provide IPv6 routing."
  1148. msgstr ""
  1149. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2957
  1150. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4216
  1151. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4705
  1152. #: modules/luci-compat/luasrc/view/cbi/delegator.htm:14
  1153. #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:52
  1154. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:188
  1155. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1201
  1156. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2140
  1157. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:128
  1158. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:295
  1159. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:209
  1160. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:485
  1161. msgid "Cancel"
  1162. msgstr "Batal"
  1163. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:347
  1164. msgid "Cannot parse configuration: %s"
  1165. msgstr ""
  1166. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:568
  1167. msgctxt "Chain hook: forward"
  1168. msgid "Capture incoming packets addressed to other hosts"
  1169. msgstr ""
  1170. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:560
  1171. msgctxt "Chain hook: prerouting"
  1172. msgid "Capture incoming packets before any routing decision"
  1173. msgstr ""
  1174. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:564
  1175. msgctxt "Chain hook: input"
  1176. msgid "Capture incoming packets routed to the local system"
  1177. msgstr ""
  1178. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:576
  1179. msgctxt "Chain hook: postrouting"
  1180. msgid "Capture outgoing packets after any routing decision"
  1181. msgstr ""
  1182. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:572
  1183. msgctxt "Chain hook: output"
  1184. msgid "Capture outgoing packets originating from the local system"
  1185. msgstr ""
  1186. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:556
  1187. msgctxt "Chain hook: ingress"
  1188. msgid "Capture packets directly after the NIC received them"
  1189. msgstr ""
  1190. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:17
  1191. msgid "Category"
  1192. msgstr ""
  1193. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:114
  1194. msgid "Cell ID"
  1195. msgstr ""
  1196. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:113
  1197. msgid "Cell Location"
  1198. msgstr ""
  1199. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1690
  1200. msgid "Certificate constraint (Domain)"
  1201. msgstr ""
  1202. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1687
  1203. msgid "Certificate constraint (SAN)"
  1204. msgstr ""
  1205. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1684
  1206. msgid "Certificate constraint (Subject)"
  1207. msgstr ""
  1208. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1693
  1209. msgid "Certificate constraint (Wildcard)"
  1210. msgstr ""
  1211. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1684
  1212. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1742
  1213. msgid ""
  1214. "Certificate constraint substring - e.g. /CN=wifi.mycompany.com<br />See "
  1215. "`logread -f` during handshake for actual values"
  1216. msgstr ""
  1217. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1690
  1218. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1748
  1219. msgid ""
  1220. "Certificate constraint(s) against DNS SAN values (if available)<br />or "
  1221. "Subject CN (exact match)"
  1222. msgstr ""
  1223. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1693
  1224. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1751
  1225. msgid ""
  1226. "Certificate constraint(s) against DNS SAN values (if available)<br />or "
  1227. "Subject CN (suffix match)"
  1228. msgstr ""
  1229. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1687
  1230. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1745
  1231. msgid ""
  1232. "Certificate constraint(s) via Subject Alternate Name values<br />(supported "
  1233. "attributes: EMAIL, DNS, URI) - e.g. DNS:wifi.mycompany.com"
  1234. msgstr ""
  1235. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:54
  1236. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:57
  1237. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:212
  1238. msgid "Chain"
  1239. msgstr "Rantai"
  1240. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:580
  1241. msgctxt "Yet unknown nftables chain hook"
  1242. msgid "Chain hook \"%h\""
  1243. msgstr ""
  1244. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4436
  1245. msgid "Changes"
  1246. msgstr "Laman"
  1247. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4775
  1248. msgid "Changes have been reverted."
  1249. msgstr ""
  1250. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:46
  1251. msgid "Changes the administrator password for accessing the device"
  1252. msgstr ""
  1253. #: modules/luci-compat/luasrc/view/cbi/wireless_modefreq.htm:162
  1254. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:128
  1255. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:184
  1256. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:504
  1257. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1839
  1258. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:402
  1259. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:170
  1260. msgid "Channel"
  1261. msgstr "Saluran"
  1262. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:368
  1263. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:105
  1264. msgid "Channel Analysis"
  1265. msgstr ""
  1266. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:403
  1267. msgid "Channel Width"
  1268. msgstr ""
  1269. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:174
  1270. msgid "Check filesystems before mount"
  1271. msgstr ""
  1272. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2102
  1273. msgid "Check this option to delete the existing networks from this radio."
  1274. msgstr ""
  1275. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:110
  1276. msgid "Checking archive…"
  1277. msgstr ""
  1278. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:193
  1279. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:195
  1280. msgid "Checking image…"
  1281. msgstr ""
  1282. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:427
  1283. msgid "Choose mtdblock"
  1284. msgstr ""
  1285. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:597
  1286. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2130
  1287. msgid ""
  1288. "Choose the firewall zone you want to assign to this interface. Select "
  1289. "<em>unspecified</em> to remove the interface from the associated zone or "
  1290. "fill out the <em>custom</em> field to define a new zone and attach the "
  1291. "interface to it."
  1292. msgstr "Pilih zon firewall yang anda ingin tetapkan untuk antar muka ini."
  1293. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1018
  1294. msgid ""
  1295. "Choose the network(s) you want to attach to this wireless interface or fill "
  1296. "out the <em>custom</em> field to define a new network."
  1297. msgstr ""
  1298. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1229
  1299. msgid "Cipher"
  1300. msgstr ""
  1301. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:91
  1302. msgid "Cisco UDP encapsulation"
  1303. msgstr ""
  1304. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:391
  1305. msgid ""
  1306. "Click \"Generate archive\" to download a tar archive of the current "
  1307. "configuration files."
  1308. msgstr ""
  1309. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:424
  1310. msgid ""
  1311. "Click \"Save mtdblock\" to download specified mtdblock file. (NOTE: THIS "
  1312. "FEATURE IS FOR PROFESSIONALS! )"
  1313. msgstr ""
  1314. #: modules/luci-base/htdocs/luci-static/resources/network.js:3865
  1315. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:987
  1316. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1102
  1317. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:88
  1318. msgid "Client"
  1319. msgstr "Pelanggan"
  1320. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37
  1321. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:33
  1322. msgid "Client ID to send when requesting DHCP"
  1323. msgstr ""
  1324. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4453
  1325. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:173
  1326. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:179
  1327. msgid "Close"
  1328. msgstr ""
  1329. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:156
  1330. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:128
  1331. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:114
  1332. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:92
  1333. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:101
  1334. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:124
  1335. msgid ""
  1336. "Close inactive connection after the given amount of seconds, use 0 to "
  1337. "persist connection"
  1338. msgstr ""
  1339. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:44
  1340. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:63
  1341. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2264
  1342. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:391
  1343. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:352
  1344. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:355
  1345. #: themes/luci-theme-material/ucode/template/themes/material/header.ut:66
  1346. msgid "Collecting data..."
  1347. msgstr "Mengumpul data..."
  1348. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:250
  1349. msgid "Collisions seen"
  1350. msgstr ""
  1351. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:71
  1352. msgid "Command"
  1353. msgstr "Perintah"
  1354. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:401
  1355. msgid "Command OK"
  1356. msgstr ""
  1357. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:33
  1358. msgid "Command failed"
  1359. msgstr ""
  1360. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:73
  1361. msgid "Comment"
  1362. msgstr ""
  1363. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1810
  1364. msgid ""
  1365. "Complicates key reinstallation attacks on the client side by disabling "
  1366. "retransmission of EAPOL-Key frames that are used to install keys. This "
  1367. "workaround might cause interoperability issues and reduced robustness of key "
  1368. "negotiation especially in environments with heavy traffic load."
  1369. msgstr ""
  1370. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:101
  1371. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:106
  1372. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:103
  1373. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:108
  1374. msgid "Compute outgoing checksum (optional)."
  1375. msgstr ""
  1376. #: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:40
  1377. msgid "Config File"
  1378. msgstr ""
  1379. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4436
  1380. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:454
  1381. msgid "Configuration"
  1382. msgstr "Konfigurasi"
  1383. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:690
  1384. msgid "Configuration Export"
  1385. msgstr ""
  1386. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4624
  1387. msgid "Configuration changes applied."
  1388. msgstr ""
  1389. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4562
  1390. msgid "Configuration changes have been rolled back!"
  1391. msgstr ""
  1392. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:63
  1393. msgid "Configuration failed"
  1394. msgstr ""
  1395. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:947
  1396. msgid ""
  1397. "Configures data rates based on the coverage cell density. Normal configures "
  1398. "basic rates to 6, 12, 24 Mbps if legacy 802.11b rates are not used else to "
  1399. "5.5, 11 Mbps. High configures basic rates to 12, 24 Mbps if legacy 802.11b "
  1400. "rates are not used else to the 11 Mbps rate. Very High configures 24 Mbps as "
  1401. "the basic rate. Supported rates lower than the minimum basic rate are not "
  1402. "offered."
  1403. msgstr ""
  1404. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:815
  1405. msgid ""
  1406. "Configures the default router advertisement in <abbr title=\"Router "
  1407. "Advertisement\">RA</abbr> messages."
  1408. msgstr ""
  1409. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:804
  1410. msgid ""
  1411. "Configures the operation mode of the <abbr title=\"Router "
  1412. "Advertisement\">RA</abbr> service on this interface."
  1413. msgstr ""
  1414. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:926
  1415. msgid "Configures the operation mode of the DHCPv6 service on this interface."
  1416. msgstr ""
  1417. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:962
  1418. msgid ""
  1419. "Configures the operation mode of the NDP proxy service on this interface."
  1420. msgstr ""
  1421. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1357
  1422. msgid "Configure…"
  1423. msgstr ""
  1424. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:176
  1425. msgid "Confirm disconnect"
  1426. msgstr ""
  1427. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:55
  1428. msgid "Confirmation"
  1429. msgstr "Pengesahan"
  1430. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:98
  1431. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:101
  1432. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:47
  1433. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:232
  1434. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:51
  1435. msgid "Connected"
  1436. msgstr ""
  1437. #: modules/luci-base/htdocs/luci-static/resources/network.js:9
  1438. #: modules/luci-compat/luasrc/model/network.lua:27
  1439. msgid "Connection attempt failed"
  1440. msgstr ""
  1441. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:8
  1442. msgid "Connection attempt failed."
  1443. msgstr ""
  1444. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:776
  1445. msgid "Connection endpoint"
  1446. msgstr ""
  1447. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:411
  1448. msgid "Connection lost"
  1449. msgstr ""
  1450. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:160
  1451. msgid "Connections"
  1452. msgstr ""
  1453. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4698
  1454. msgid "Connectivity change"
  1455. msgstr ""
  1456. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:31
  1457. msgctxt "nft ct state"
  1458. msgid "Conntrack state"
  1459. msgstr ""
  1460. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:33
  1461. msgctxt "nft ct status"
  1462. msgid "Conntrack status"
  1463. msgstr ""
  1464. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:378
  1465. msgid "Consider the slave up when all ARP IP targets are reachable (all, 1)"
  1466. msgstr ""
  1467. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:377
  1468. msgid "Consider the slave up when any ARP IP target is reachable (any, 0)"
  1469. msgstr ""
  1470. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/crontab.js:18
  1471. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:368
  1472. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:55
  1473. msgid "Contents have been saved."
  1474. msgstr ""
  1475. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:416
  1476. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:450
  1477. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:794
  1478. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:132
  1479. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:269
  1480. msgid "Continue"
  1481. msgstr ""
  1482. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:97
  1483. msgctxt "nft jump action"
  1484. msgid "Continue in <strong><a href=\"#%q.%q\">%h</a></strong>"
  1485. msgstr ""
  1486. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:129
  1487. msgid "Continue in calling chain"
  1488. msgstr ""
  1489. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:550
  1490. msgctxt "Chain policy: accept"
  1491. msgid "Continue processing unmatched packets"
  1492. msgstr ""
  1493. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4598
  1494. msgid ""
  1495. "Could not regain access to the device after applying the configuration "
  1496. "changes. You might need to reconnect if you modified network related "
  1497. "settings such as the IP address or wireless security credentials."
  1498. msgstr ""
  1499. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:189
  1500. msgid "Country"
  1501. msgstr ""
  1502. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:944
  1503. msgid "Country Code"
  1504. msgstr "Kod negara"
  1505. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:947
  1506. msgid "Coverage cell density"
  1507. msgstr ""
  1508. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:597
  1509. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2130
  1510. msgid "Create / Assign firewall-zone"
  1511. msgstr "Buat / Menetapkan dinding api-zon"
  1512. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1233
  1513. msgid "Create interface"
  1514. msgstr ""
  1515. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:191
  1516. msgid "Critical"
  1517. msgstr ""
  1518. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:195
  1519. msgid "Cron Log Level"
  1520. msgstr ""
  1521. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:584
  1522. msgid "Current power"
  1523. msgstr ""
  1524. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:28
  1525. msgctxt "nft meta hour"
  1526. msgid "Current time"
  1527. msgstr ""
  1528. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:29
  1529. msgctxt "nft meta day"
  1530. msgid "Current weekday"
  1531. msgstr ""
  1532. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:573
  1533. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:575
  1534. #: modules/luci-compat/luasrc/view/cbi/network_ifacelist.htm:51
  1535. #: modules/luci-compat/luasrc/view/cbi/network_ifacelist.htm:53
  1536. #: modules/luci-compat/luasrc/view/cbi/network_ifacelist.htm:82
  1537. #: modules/luci-compat/luasrc/view/cbi/network_ifacelist.htm:83
  1538. msgid "Custom Interface"
  1539. msgstr ""
  1540. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:410
  1541. msgid ""
  1542. "Custom files (certificates, scripts) may remain on the system. To prevent "
  1543. "this, perform a factory-reset first."
  1544. msgstr ""
  1545. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/timer.js:6
  1546. msgid "Custom flash interval (kernel: timer)"
  1547. msgstr ""
  1548. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:59
  1549. msgid ""
  1550. "Customizes the behaviour of the device <abbr title=\"Light Emitting "
  1551. "Diode\">LED</abbr>s if possible."
  1552. msgstr "Mengkustomisasi perilaku peranti LED jika mungkin."
  1553. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:741
  1554. msgid "DAD transmits"
  1555. msgstr ""
  1556. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1468
  1557. msgid "DAE-Client"
  1558. msgstr ""
  1559. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1473
  1560. msgid "DAE-Port"
  1561. msgstr ""
  1562. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1479
  1563. msgid "DAE-Secret"
  1564. msgstr ""
  1565. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:611
  1566. msgid "DHCP Options"
  1567. msgstr ""
  1568. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:500
  1569. msgid "DHCP Server"
  1570. msgstr ""
  1571. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:249
  1572. #: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:62
  1573. msgid "DHCP and DNS"
  1574. msgstr ""
  1575. #: modules/luci-base/htdocs/luci-static/resources/network.js:2091
  1576. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:16
  1577. #: modules/luci-compat/luasrc/model/network.lua:969
  1578. msgid "DHCP client"
  1579. msgstr ""
  1580. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:724
  1581. msgid "DHCP-Options"
  1582. msgstr "DHCP-Pilihan"
  1583. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:988
  1584. msgid ""
  1585. "DHCPv4 <code>leasetime</code> is used as limit and preferred lifetime of the "
  1586. "IPv6 prefix."
  1587. msgstr ""
  1588. #: modules/luci-compat/luasrc/model/network/proto_dhcpv6.lua:7
  1589. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:7
  1590. msgid "DHCPv6 client"
  1591. msgstr ""
  1592. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:925
  1593. msgid "DHCPv6-Service"
  1594. msgstr ""
  1595. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:45
  1596. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:46
  1597. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:47
  1598. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:48
  1599. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:49
  1600. msgid "DNS"
  1601. msgstr ""
  1602. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:290
  1603. msgid "DNS forwardings"
  1604. msgstr ""
  1605. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:531
  1606. msgid "DNS query port"
  1607. msgstr ""
  1608. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1008
  1609. msgid "DNS search domains"
  1610. msgstr ""
  1611. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:524
  1612. msgid "DNS server port"
  1613. msgstr ""
  1614. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:292
  1615. msgid "DNS setting is invalid"
  1616. msgstr ""
  1617. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1013
  1618. msgid "DNS weight"
  1619. msgstr ""
  1620. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:33
  1621. msgid "DNS-Label / FQDN"
  1622. msgstr ""
  1623. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:483
  1624. msgid "DNSSEC"
  1625. msgstr ""
  1626. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:488
  1627. msgid "DNSSEC check unsigned"
  1628. msgstr ""
  1629. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:99
  1630. msgid "DPD Idle Timeout"
  1631. msgstr ""
  1632. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:41
  1633. msgid "DS-Lite AFTR address"
  1634. msgstr ""
  1635. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1543
  1636. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:37
  1637. msgid "DSL"
  1638. msgstr "DSL"
  1639. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:21
  1640. msgid "DSL Status"
  1641. msgstr ""
  1642. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1582
  1643. msgid "DSL line mode"
  1644. msgstr ""
  1645. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1169
  1646. msgid "DTIM Interval"
  1647. msgstr ""
  1648. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:59
  1649. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:903
  1650. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:136
  1651. msgid "DUID"
  1652. msgstr "DUID"
  1653. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:29
  1654. msgid "Data Rate"
  1655. msgstr ""
  1656. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:76
  1657. #, fuzzy
  1658. msgid "Data Received"
  1659. msgstr "Menerima"
  1660. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:77
  1661. #, fuzzy
  1662. msgid "Data Transmitted"
  1663. msgstr "Pancar"
  1664. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:186
  1665. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:197
  1666. msgid "Debug"
  1667. msgstr ""
  1668. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:814
  1669. msgid "Default router"
  1670. msgstr ""
  1671. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/none.js:12
  1672. msgid "Default state"
  1673. msgstr ""
  1674. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:724
  1675. msgid ""
  1676. "Define additional DHCP options, for example "
  1677. "\"<code>6,192.168.2.1,192.168.2.2</code>\" which advertises different DNS "
  1678. "servers to clients."
  1679. msgstr ""
  1680. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:516
  1681. msgid ""
  1682. "Defines a mapping of Linux internal packet priority to VLAN header priority "
  1683. "but for outgoing frames"
  1684. msgstr ""
  1685. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:510
  1686. msgid ""
  1687. "Defines a mapping of VLAN header priority to the Linux internal packet "
  1688. "priority on incoming frames"
  1689. msgstr ""
  1690. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:87
  1691. msgid "Defines a specific MTU for this route"
  1692. msgstr ""
  1693. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1036
  1694. msgid "Delegate IPv6 prefixes"
  1695. msgstr ""
  1696. #: modules/luci-base/htdocs/luci-static/resources/form.js:2310
  1697. #: modules/luci-base/htdocs/luci-static/resources/form.js:2740
  1698. #: modules/luci-base/htdocs/luci-static/resources/form.js:2744
  1699. #: modules/luci-base/htdocs/luci-static/resources/form.js:3571
  1700. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2926
  1701. #: modules/luci-compat/luasrc/view/cbi/nsection.htm:11
  1702. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:162
  1703. #: modules/luci-compat/luasrc/view/cbi/tsection.htm:16
  1704. msgid "Delete"
  1705. msgstr "Padam"
  1706. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:205
  1707. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:211
  1708. msgid "Delete key"
  1709. msgstr ""
  1710. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2828
  1711. msgid "Delete request failed: %s"
  1712. msgstr ""
  1713. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:899
  1714. msgid "Delete this network"
  1715. msgstr ""
  1716. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1169
  1717. msgid "Delivery Traffic Indication Message Interval"
  1718. msgstr ""
  1719. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:342
  1720. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:139
  1721. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:517
  1722. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:53
  1723. msgid "Description"
  1724. msgstr "Keterangan"
  1725. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2922
  1726. msgid "Deselect"
  1727. msgstr ""
  1728. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:237
  1729. msgid "Design"
  1730. msgstr "Disain"
  1731. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:732
  1732. msgid "Designated master"
  1733. msgstr ""
  1734. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:160
  1735. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:386
  1736. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:71
  1737. msgid "Destination"
  1738. msgstr "Tempat tujuan"
  1739. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:44
  1740. msgctxt "nft ip daddr"
  1741. msgid "Destination IP"
  1742. msgstr ""
  1743. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:48
  1744. msgctxt "nft ip6 daddr"
  1745. msgid "Destination IPv6"
  1746. msgstr ""
  1747. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:48
  1748. msgid "Destination port"
  1749. msgstr ""
  1750. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:46
  1751. msgctxt "nft ip dport"
  1752. msgid "Destination port"
  1753. msgstr ""
  1754. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:59
  1755. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:165
  1756. msgid "Destination zone"
  1757. msgstr ""
  1758. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:67
  1759. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:192
  1760. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:43
  1761. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:46
  1762. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:81
  1763. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:586
  1764. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1183
  1765. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1485
  1766. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:55
  1767. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:13
  1768. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:248
  1769. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:281
  1770. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:357
  1771. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:393
  1772. msgid "Device"
  1773. msgstr "Alat"
  1774. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:913
  1775. msgid "Device Configuration"
  1776. msgstr ""
  1777. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:88
  1778. msgid "Device Identifier"
  1779. msgstr ""
  1780. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:132
  1781. msgid "Device is not active"
  1782. msgstr ""
  1783. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:233
  1784. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:650
  1785. msgid "Device is restarting…"
  1786. msgstr ""
  1787. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:495
  1788. msgid "Device name"
  1789. msgstr ""
  1790. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:10
  1791. msgid "Device not managed by ModemManager."
  1792. msgstr ""
  1793. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1460
  1794. msgid "Device not present"
  1795. msgstr ""
  1796. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:395
  1797. msgid "Device type"
  1798. msgstr ""
  1799. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4597
  1800. msgid "Device unreachable!"
  1801. msgstr ""
  1802. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:53
  1803. msgid "Device unreachable! Still waiting for device..."
  1804. msgstr ""
  1805. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1308
  1806. msgid "Devices"
  1807. msgstr ""
  1808. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:159
  1809. #: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:76
  1810. msgid "Diagnostics"
  1811. msgstr ""
  1812. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:114
  1813. msgid "Dial number"
  1814. msgstr ""
  1815. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2724
  1816. msgid "Directory"
  1817. msgstr ""
  1818. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:114
  1819. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:201
  1820. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:891
  1821. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:931
  1822. msgid "Disable"
  1823. msgstr ""
  1824. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:683
  1825. msgid ""
  1826. "Disable <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</abbr> for "
  1827. "this interface."
  1828. msgstr ""
  1829. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:174
  1830. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:375
  1831. msgid "Disable DNS lookups"
  1832. msgstr ""
  1833. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:93
  1834. msgid "Disable Encryption"
  1835. msgstr ""
  1836. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1179
  1837. msgid "Disable Inactivity Polling"
  1838. msgstr ""
  1839. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:889
  1840. msgid "Disable this network"
  1841. msgstr ""
  1842. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:948
  1843. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1439
  1844. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1630
  1845. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1778
  1846. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:13
  1847. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:66
  1848. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:121
  1849. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:108
  1850. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:117
  1851. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:114
  1852. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:52
  1853. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:97
  1854. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:83
  1855. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:57
  1856. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:70
  1857. msgid "Disabled"
  1858. msgstr ""
  1859. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:541
  1860. msgctxt "Label indicating that WireGuard peer is disabled"
  1861. msgid "Disabled"
  1862. msgstr ""
  1863. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1193
  1864. msgid "Disassociate On Low Acknowledgement"
  1865. msgstr ""
  1866. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:313
  1867. msgid ""
  1868. "Discard upstream responses containing <a href=\"%s\">RFC1918</a> addresses."
  1869. msgstr ""
  1870. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:198
  1871. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:716
  1872. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:336
  1873. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:351
  1874. msgid "Disconnect"
  1875. msgstr ""
  1876. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:64
  1877. msgid "Disconnection attempt failed"
  1878. msgstr ""
  1879. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:13
  1880. msgid "Disconnection attempt failed."
  1881. msgstr ""
  1882. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:35
  1883. msgid "Disk space"
  1884. msgstr ""
  1885. #: modules/luci-base/htdocs/luci-static/resources/form.js:611
  1886. #: modules/luci-base/htdocs/luci-static/resources/form.js:3022
  1887. #: modules/luci-base/htdocs/luci-static/resources/form.js:3269
  1888. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3715
  1889. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4568
  1890. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1864
  1891. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:358
  1892. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:45
  1893. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:66
  1894. msgid "Dismiss"
  1895. msgstr ""
  1896. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:953
  1897. msgid "Distance Optimization"
  1898. msgstr "Jarak Optimasi"
  1899. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:953
  1900. msgid "Distance to farthest network member in meters."
  1901. msgstr "Jarak ke rangkaian terjauh ahli dalam meter."
  1902. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:75
  1903. msgid "Distributed ARP Table"
  1904. msgstr ""
  1905. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:931
  1906. msgid ""
  1907. "Dnsmasq instance to which this DHCP host section is bound. If unspecified, "
  1908. "the section is valid for all dnsmasq instances."
  1909. msgstr ""
  1910. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:629
  1911. msgid ""
  1912. "Dnsmasq instance to which this boot section is bound. If unspecified, the "
  1913. "section is valid for all dnsmasq instances."
  1914. msgstr ""
  1915. # Nur für NAT-Firewalls?
  1916. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:250
  1917. msgid ""
  1918. "Dnsmasq is a lightweight <abbr title=\"Dynamic Host Configuration "
  1919. "Protocol\">DHCP</abbr> server and <abbr title=\"Domain Name System\">DNS</"
  1920. "abbr> forwarder."
  1921. msgstr ""
  1922. "Dnsmasq adalah gabungan <abbr title=\"Dynamic Host Configuration "
  1923. "Protocol\">DHCP</abbr>-Pelayan dan<abbr title=\"Domain Name System\">DNS</"
  1924. "abbr>-Forwarder untuk <abbr title=\"Network Address Translation\">NAT</abbr> "
  1925. "firewall"
  1926. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:500
  1927. msgid "Do not cache negative replies, e.g. for non-existent domains."
  1928. msgstr ""
  1929. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:86
  1930. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:91
  1931. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:88
  1932. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:93
  1933. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:70
  1934. msgid "Do not create host route to peer (optional)."
  1935. msgstr ""
  1936. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:270
  1937. msgid "Do not forward DNS queries without dots or domain parts."
  1938. msgstr "Jangan hantar permintaan DNS tanpa nama DNS"
  1939. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:458
  1940. msgid "Do not forward reverse lookups for local networks."
  1941. msgstr ""
  1942. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:350
  1943. msgid "Do not listen on the specified interfaces."
  1944. msgstr ""
  1945. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:928
  1946. msgid "Do not offer DHCPv6 service on this interface."
  1947. msgstr ""
  1948. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:964
  1949. msgid ""
  1950. "Do not proxy any <abbr title=\"Neighbour Discovery Protocol\">NDP</abbr> "
  1951. "packets."
  1952. msgstr ""
  1953. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:25
  1954. msgid "Do not send a hostname"
  1955. msgstr ""
  1956. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:806
  1957. msgid ""
  1958. "Do not send any <abbr title=\"Router Advertisement, ICMPv6 Type 134\">RA</"
  1959. "abbr> messages on this interface."
  1960. msgstr ""
  1961. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2814
  1962. msgid "Do you really want to delete \"%s\" ?"
  1963. msgstr ""
  1964. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:206
  1965. msgid "Do you really want to delete the following SSH key?"
  1966. msgstr ""
  1967. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:94
  1968. msgid "Do you really want to erase all settings?"
  1969. msgstr ""
  1970. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2812
  1971. msgid "Do you really want to recursively delete the directory \"%s\" ?"
  1972. msgstr ""
  1973. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:613
  1974. msgid "Do you want to replace the current PSK?"
  1975. msgstr ""
  1976. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:100
  1977. msgid "Do you want to replace the current keys?"
  1978. msgstr ""
  1979. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:687
  1980. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:713
  1981. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:766
  1982. msgid "Domain"
  1983. msgstr ""
  1984. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:269
  1985. msgid "Domain required"
  1986. msgstr "Domain diperlukan"
  1987. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:322
  1988. msgid "Domain whitelist"
  1989. msgstr ""
  1990. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:83
  1991. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:88
  1992. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:67
  1993. msgid "Don't Fragment"
  1994. msgstr ""
  1995. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:152
  1996. msgid "Down"
  1997. msgstr ""
  1998. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:403
  1999. msgid "Down Delay"
  2000. msgstr ""
  2001. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:394
  2002. msgid "Download backup"
  2003. msgstr ""
  2004. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:432
  2005. msgid "Download mtdblock"
  2006. msgstr ""
  2007. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1587
  2008. msgid "Downstream SNR offset"
  2009. msgstr ""
  2010. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:435
  2011. msgid ""
  2012. "Drag or paste a valid <em>*.conf</em> file below to configure the local "
  2013. "WireGuard interface."
  2014. msgstr ""
  2015. #: modules/luci-base/htdocs/luci-static/resources/form.js:2698
  2016. msgid "Drag to reorder"
  2017. msgstr ""
  2018. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:342
  2019. msgid "Drop Duplicate Frames"
  2020. msgstr ""
  2021. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:710
  2022. msgid ""
  2023. "Drop all gratuitous ARP frames, for example if there’s a known good ARP "
  2024. "proxy on the network and such frames need not be used or in the case of "
  2025. "802.11, must not be used to prevent attacks."
  2026. msgstr ""
  2027. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:733
  2028. msgid ""
  2029. "Drop all unsolicited neighbor advertisements, for example if there’s a known "
  2030. "good NA proxy on the network and such frames need not be used or in the case "
  2031. "of 802.11, must not be used to prevent attacks."
  2032. msgstr ""
  2033. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:710
  2034. msgid "Drop gratuitous ARP"
  2035. msgstr ""
  2036. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:787
  2037. msgid "Drop layer 2 multicast frames containing IPv4 unicast packets."
  2038. msgstr ""
  2039. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:791
  2040. msgid "Drop layer 2 multicast frames containing IPv6 unicast packets."
  2041. msgstr ""
  2042. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:787
  2043. msgid "Drop nested IPv4 unicast"
  2044. msgstr ""
  2045. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:791
  2046. msgid "Drop nested IPv6 unicast"
  2047. msgstr ""
  2048. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:96
  2049. msgctxt "nft drop action"
  2050. msgid "Drop packet"
  2051. msgstr ""
  2052. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:546
  2053. msgctxt "Chain policy: drop"
  2054. msgid "Drop unmatched packets"
  2055. msgstr ""
  2056. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:733
  2057. msgid "Drop unsolicited NA"
  2058. msgstr ""
  2059. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:12
  2060. msgid "Dropbear Instance"
  2061. msgstr ""
  2062. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:10
  2063. msgid ""
  2064. "Dropbear offers <abbr title=\"Secure Shell\">SSH</abbr> network shell access "
  2065. "and an integrated <abbr title=\"Secure Copy\">SCP</abbr> server"
  2066. msgstr ""
  2067. "Dropbear menawarkan SSH kulit rangkaian aksesdan pelayan yang terintegrasi."
  2068. #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:14
  2069. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:11
  2070. msgid "Dual-Stack Lite (RFC6333)"
  2071. msgstr ""
  2072. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:700
  2073. msgid "Dynamic <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</abbr>"
  2074. msgstr "Dinamik DHCP"
  2075. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1468
  2076. msgid "Dynamic Authorization Extension client."
  2077. msgstr ""
  2078. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1473
  2079. msgid "Dynamic Authorization Extension port."
  2080. msgstr ""
  2081. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1479
  2082. msgid "Dynamic Authorization Extension secret."
  2083. msgstr ""
  2084. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:60
  2085. msgid "Dynamic tunnel"
  2086. msgstr ""
  2087. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:700
  2088. msgid ""
  2089. "Dynamically allocate DHCP addresses for clients. If disabled, only clients "
  2090. "having static leases will be served."
  2091. msgstr ""
  2092. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1463
  2093. msgid "E.g. <code>br-vlan</code> or <code>brvlan</code>."
  2094. msgstr ""
  2095. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1453
  2096. msgid "E.g. eth0, eth1"
  2097. msgstr ""
  2098. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:67
  2099. msgid "EA-bits length"
  2100. msgstr ""
  2101. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1662
  2102. msgid "EAP-Method"
  2103. msgstr "EAP-Kaedah"
  2104. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1446
  2105. msgid "Each STA is assigned its own AP_VLAN interface."
  2106. msgstr ""
  2107. #: modules/luci-base/htdocs/luci-static/resources/form.js:2718
  2108. #: modules/luci-base/htdocs/luci-static/resources/form.js:2721
  2109. #: modules/luci-base/htdocs/luci-static/resources/form.js:3434
  2110. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:154
  2111. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:160
  2112. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:512
  2113. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:896
  2114. msgid "Edit"
  2115. msgstr "Sunting"
  2116. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:226
  2117. msgid "Edit peer"
  2118. msgstr ""
  2119. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:782
  2120. msgid "Edit static lease"
  2121. msgstr ""
  2122. #: modules/luci-compat/luasrc/view/cbi/error.htm:13
  2123. msgid ""
  2124. "Edit the raw configuration data above to fix any error and hit \"Save\" to "
  2125. "reload the page."
  2126. msgstr ""
  2127. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:894
  2128. msgid "Edit this network"
  2129. msgstr ""
  2130. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:845
  2131. msgid "Edit wireless network"
  2132. msgstr ""
  2133. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:65
  2134. msgctxt "nft rt mtu"
  2135. msgid "Effective route MTU"
  2136. msgstr ""
  2137. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:516
  2138. msgid "Egress QoS mapping"
  2139. msgstr ""
  2140. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:12
  2141. msgctxt "nft meta oif"
  2142. msgid "Egress device id"
  2143. msgstr ""
  2144. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:10
  2145. msgctxt "nft meta oifname"
  2146. msgid "Egress device name"
  2147. msgstr ""
  2148. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:193
  2149. msgid "Emergency"
  2150. msgstr ""
  2151. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:891
  2152. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:931
  2153. msgid "Enable"
  2154. msgstr ""
  2155. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:513
  2156. msgid "Enable / Disable peer. Restart wireguard interface to apply changes."
  2157. msgstr ""
  2158. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:592
  2159. msgid ""
  2160. "Enable <abbr title=\"Internet Group Management Protocol\">IGMP</abbr> "
  2161. "snooping"
  2162. msgstr ""
  2163. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:572
  2164. msgid "Enable <abbr title=\"Spanning Tree Protocol\">STP</abbr>"
  2165. msgstr "Mengaktifkan <abbr title=\"Spanning Tree Protocol\">STP</abbr>"
  2166. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:825
  2167. msgid "Enable <abbr title=\"Stateless Address Auto Config\">SLAAC</abbr>"
  2168. msgstr ""
  2169. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:174
  2170. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:369
  2171. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:375
  2172. msgid "Enable DNS lookups"
  2173. msgstr ""
  2174. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:294
  2175. msgid "Enable Dynamic Shuffling Of Flows"
  2176. msgstr ""
  2177. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:60
  2178. msgid "Enable HE.net dynamic endpoint update"
  2179. msgstr ""
  2180. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:725
  2181. msgid "Enable IPv6"
  2182. msgstr ""
  2183. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:101
  2184. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:101
  2185. msgid "Enable IPv6 negotiation"
  2186. msgstr ""
  2187. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:49
  2188. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:94
  2189. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:80
  2190. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:54
  2191. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:67
  2192. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:93
  2193. msgid "Enable IPv6 negotiation on the PPP link"
  2194. msgstr ""
  2195. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:729
  2196. msgid "Enable IPv6 segment routing"
  2197. msgstr ""
  2198. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:194
  2199. msgid "Enable Jumbo Frame passthrough"
  2200. msgstr ""
  2201. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:764
  2202. msgid "Enable MAC address learning"
  2203. msgstr ""
  2204. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:257
  2205. msgid "Enable NTP client"
  2206. msgstr ""
  2207. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:96
  2208. msgid "Enable Single DES"
  2209. msgstr ""
  2210. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:566
  2211. msgid "Enable TFTP server"
  2212. msgstr ""
  2213. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:796
  2214. msgid "Enable VLAN filtering"
  2215. msgstr ""
  2216. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:184
  2217. msgid "Enable VLAN functionality"
  2218. msgstr ""
  2219. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1814
  2220. msgid "Enable WPS pushbutton, requires WPA(2)-PSK/WPA3-SAE"
  2221. msgstr ""
  2222. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/uhttpd.js:14
  2223. msgid ""
  2224. "Enable automatic redirection of <abbr title=\"Hypertext Transfer "
  2225. "Protocol\">HTTP</abbr> requests to <abbr title=\"Hypertext Transfer Protocol "
  2226. "Secure\">HTTPS</abbr> port."
  2227. msgstr ""
  2228. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1036
  2229. msgid ""
  2230. "Enable downstream delegation of IPv6 prefixes available on this interface"
  2231. msgstr ""
  2232. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1810
  2233. msgid "Enable key reinstallation (KRACK) countermeasures"
  2234. msgstr ""
  2235. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:189
  2236. msgid "Enable learning and aging"
  2237. msgstr ""
  2238. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:200
  2239. msgid "Enable mirroring of incoming packets"
  2240. msgstr ""
  2241. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:201
  2242. msgid "Enable mirroring of outgoing packets"
  2243. msgstr ""
  2244. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:783
  2245. msgid "Enable multicast fast leave"
  2246. msgstr ""
  2247. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:601
  2248. msgid "Enable multicast querier"
  2249. msgstr ""
  2250. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:747
  2251. msgid "Enable multicast support"
  2252. msgstr ""
  2253. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1538
  2254. msgid ""
  2255. "Enable packet steering across all CPUs. May help or hinder network speed."
  2256. msgstr ""
  2257. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:676
  2258. msgid "Enable promiscuous mode"
  2259. msgstr ""
  2260. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:71
  2261. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:66
  2262. msgid "Enable rx checksum"
  2263. msgstr ""
  2264. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:89
  2265. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:94
  2266. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:91
  2267. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:96
  2268. msgid "Enable support for multicast traffic (optional)."
  2269. msgstr ""
  2270. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:83
  2271. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:88
  2272. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:67
  2273. msgid "Enable the DF (Don't Fragment) flag of the encapsulating packets."
  2274. msgstr ""
  2275. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:567
  2276. msgid "Enable the built-in single-instance TFTP server."
  2277. msgstr ""
  2278. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:889
  2279. msgid "Enable this network"
  2280. msgstr ""
  2281. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:75
  2282. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:70
  2283. msgid "Enable tx checksum"
  2284. msgstr ""
  2285. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:767
  2286. msgid "Enable unicast flooding"
  2287. msgstr ""
  2288. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1631
  2289. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:243
  2290. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:353
  2291. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:66
  2292. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:109
  2293. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:118
  2294. msgid "Enabled"
  2295. msgstr ""
  2296. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:592
  2297. msgid "Enables IGMP snooping on this bridge"
  2298. msgstr ""
  2299. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1551
  2300. msgid ""
  2301. "Enables fast roaming among access points that belong to the same Mobility "
  2302. "Domain"
  2303. msgstr ""
  2304. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:100
  2305. msgid ""
  2306. "Enables more efficient, group aware multicast forwarding infrastructure in "
  2307. "batman-adv."
  2308. msgstr ""
  2309. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:572
  2310. msgid "Enables the Spanning Tree Protocol on this bridge"
  2311. msgstr "Aktifkan spanning Tree Protokol di jambatan ini"
  2312. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:59
  2313. msgid "Encapsulation limit"
  2314. msgstr ""
  2315. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1577
  2316. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1635
  2317. msgid "Encapsulation mode"
  2318. msgstr ""
  2319. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:159
  2320. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:183
  2321. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1198
  2322. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1842
  2323. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:150
  2324. msgid "Encryption"
  2325. msgstr "Enkripsi"
  2326. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:55
  2327. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:75
  2328. msgid "Endpoint"
  2329. msgstr ""
  2330. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:662
  2331. msgid "Endpoint Host"
  2332. msgstr ""
  2333. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:678
  2334. msgid "Endpoint Port"
  2335. msgstr ""
  2336. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:325
  2337. msgid "Endpoint setting is invalid"
  2338. msgstr ""
  2339. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:752
  2340. msgid "Enforce IGMPv1"
  2341. msgstr ""
  2342. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:753
  2343. msgid "Enforce IGMPv2"
  2344. msgstr ""
  2345. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:754
  2346. msgid "Enforce IGMPv3"
  2347. msgstr ""
  2348. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:759
  2349. msgid "Enforce MLD version 1"
  2350. msgstr ""
  2351. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:760
  2352. msgid "Enforce MLD version 2"
  2353. msgstr ""
  2354. #: modules/luci-compat/luasrc/view/cbi/dropdown.htm:16
  2355. msgid "Enter custom value"
  2356. msgstr ""
  2357. #: modules/luci-compat/luasrc/view/cbi/dropdown.htm:16
  2358. msgid "Enter custom values"
  2359. msgstr ""
  2360. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:97
  2361. msgid "Erasing..."
  2362. msgstr ""
  2363. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:103
  2364. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:104
  2365. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:105
  2366. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:106
  2367. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:107
  2368. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:190
  2369. msgid "Error"
  2370. msgstr "Kesalahan"
  2371. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:170
  2372. msgid "Error getting PublicKey"
  2373. msgstr ""
  2374. #: modules/luci-base/htdocs/luci-static/resources/network.js:3008
  2375. #: modules/luci-compat/luasrc/model/network.lua:1433
  2376. msgid "Ethernet Adapter"
  2377. msgstr "Ethernet Adapter"
  2378. #: modules/luci-base/htdocs/luci-static/resources/network.js:2999
  2379. #: modules/luci-compat/luasrc/model/network.lua:1423
  2380. msgid "Ethernet Switch"
  2381. msgstr "Ethernet Beralih"
  2382. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:272
  2383. msgid "Every 30 seconds (slow, 0)"
  2384. msgstr ""
  2385. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:273
  2386. msgid "Every second (fast, 1)"
  2387. msgstr ""
  2388. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:349
  2389. msgid "Exclude interfaces"
  2390. msgstr ""
  2391. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:160
  2392. msgid ""
  2393. "Execution of various network commands to check the connection and name "
  2394. "resolution to other systems."
  2395. msgstr ""
  2396. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:318
  2397. msgid ""
  2398. "Exempt <code>127.0.0.0/8</code> and <code>::1</code> from rebinding checks, "
  2399. "e.g. for RBL services."
  2400. msgstr ""
  2401. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:410
  2402. msgid "Existing device"
  2403. msgstr ""
  2404. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:495
  2405. msgid "Expand hosts"
  2406. msgstr ""
  2407. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:399
  2408. msgid "Expected port number."
  2409. msgstr ""
  2410. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1053
  2411. msgid "Expecting a hexadecimal assignment hint"
  2412. msgstr ""
  2413. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:19
  2414. msgid "Expecting a valid IPv4 address"
  2415. msgstr ""
  2416. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:19
  2417. msgid "Expecting a valid IPv6 address"
  2418. msgstr ""
  2419. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:808
  2420. msgid "Expecting a valid MAC address, optionally including wildcards"
  2421. msgstr ""
  2422. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:29
  2423. msgid "Expecting two priority values separated by a colon"
  2424. msgstr ""
  2425. #: modules/luci-base/htdocs/luci-static/resources/form.js:2269
  2426. #: modules/luci-base/htdocs/luci-static/resources/validation.js:64
  2427. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:127
  2428. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:133
  2429. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:161
  2430. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:177
  2431. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:181
  2432. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:185
  2433. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:188
  2434. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:192
  2435. msgid "Expecting: %s"
  2436. msgstr ""
  2437. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:50
  2438. msgid "Expecting: non-empty value"
  2439. msgstr ""
  2440. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:50
  2441. msgid "Expires"
  2442. msgstr ""
  2443. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:696
  2444. msgid ""
  2445. "Expiry time of leased addresses, minimum is 2 minutes (<code>2m</code>)."
  2446. msgstr ""
  2447. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:19
  2448. msgid "External"
  2449. msgstr ""
  2450. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1602
  2451. msgid "External R0 Key Holder List"
  2452. msgstr ""
  2453. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1606
  2454. msgid "External R1 Key Holder List"
  2455. msgstr ""
  2456. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:167
  2457. msgid "External system log server"
  2458. msgstr ""
  2459. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:172
  2460. msgid "External system log server port"
  2461. msgstr ""
  2462. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:177
  2463. msgid "External system log server protocol"
  2464. msgstr ""
  2465. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:79
  2466. msgid "Extra SSH command options"
  2467. msgstr ""
  2468. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:68
  2469. msgid "Extra pppd options"
  2470. msgstr ""
  2471. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:66
  2472. msgid "Extra sstpc options"
  2473. msgstr ""
  2474. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1577
  2475. msgid "FT over DS"
  2476. msgstr ""
  2477. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1576
  2478. msgid "FT over the Air"
  2479. msgstr ""
  2480. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1574
  2481. msgid "FT protocol"
  2482. msgstr ""
  2483. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:91
  2484. msgid "Failed Reason"
  2485. msgstr ""
  2486. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:87
  2487. msgid "Failed to change the system password."
  2488. msgstr ""
  2489. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:21
  2490. msgid "Failed to configure modem"
  2491. msgstr ""
  2492. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4556
  2493. msgid "Failed to confirm apply within %ds, waiting for rollback…"
  2494. msgstr ""
  2495. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:22
  2496. msgid "Failed to connect"
  2497. msgstr ""
  2498. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:23
  2499. msgid "Failed to disconnect"
  2500. msgstr ""
  2501. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:37
  2502. msgid "Failed to execute \"/etc/init.d/%s %s\" action: %s"
  2503. msgstr ""
  2504. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:25
  2505. msgid "Failed to get modem information"
  2506. msgstr ""
  2507. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:26
  2508. msgid "Failed to initialize modem"
  2509. msgstr ""
  2510. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:30
  2511. msgid "Failed to set operating mode"
  2512. msgstr ""
  2513. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2732
  2514. msgid "File"
  2515. msgstr ""
  2516. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:504
  2517. msgid ""
  2518. "File listing upstream resolvers, optionally domain-specific, e.g. "
  2519. "<code>server=1.2.3.4</code>, <code>server=/domain/1.2.3.4</code>."
  2520. msgstr ""
  2521. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2679
  2522. msgid "File not accessible"
  2523. msgstr ""
  2524. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:424
  2525. msgid "File to store DHCP lease information."
  2526. msgstr "fail dimana DHCP-sewa akan disimpan"
  2527. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:432
  2528. msgid "File with upstream resolvers."
  2529. msgstr "Fail DNS tempatan"
  2530. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2870
  2531. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:593
  2532. msgid "Filename"
  2533. msgstr ""
  2534. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:579
  2535. msgid "Filename of the boot image advertised to clients."
  2536. msgstr ""
  2537. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:191
  2538. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:315
  2539. msgid "Filesystem"
  2540. msgstr "Fail Sistem"
  2541. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:473
  2542. msgid "Filter IPv4 A records"
  2543. msgstr ""
  2544. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:467
  2545. msgid "Filter IPv6 AAAA records"
  2546. msgstr ""
  2547. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:462
  2548. msgid "Filter SRV/SOA service discovery"
  2549. msgstr ""
  2550. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:457
  2551. msgid "Filter private"
  2552. msgstr "Penapis swasta"
  2553. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:389
  2554. msgid "Filtering for all slaves, no validation"
  2555. msgstr ""
  2556. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:390
  2557. msgid "Filtering for all slaves, validation only for active slave"
  2558. msgstr ""
  2559. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:391
  2560. msgid "Filtering for all slaves, validation only for backup slaves"
  2561. msgstr ""
  2562. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:463
  2563. msgid ""
  2564. "Filters SRV/SOA service discovery, to avoid triggering dial-on-demand links."
  2565. msgstr ""
  2566. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:65
  2567. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:24
  2568. msgid "Finalizing failed"
  2569. msgstr ""
  2570. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:150
  2571. msgid ""
  2572. "Find all currently attached filesystems and swap and replace configuration "
  2573. "with defaults based on what was detected"
  2574. msgstr ""
  2575. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:872
  2576. msgid "Find and join network"
  2577. msgstr ""
  2578. #: modules/luci-compat/luasrc/view/cbi/delegator.htm:9
  2579. msgid "Finish"
  2580. msgstr "Selesai"
  2581. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:27
  2582. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:43
  2583. msgid "Firewall"
  2584. msgstr "Firewall"
  2585. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:201
  2586. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:39
  2587. msgid "Firewall Mark"
  2588. msgstr ""
  2589. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:499
  2590. msgid "Firewall Settings"
  2591. msgstr "Tetapan Firewall"
  2592. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:326
  2593. msgid "Firewall Status"
  2594. msgstr "Status Firewall"
  2595. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:177
  2596. msgid "Firewall mark"
  2597. msgstr ""
  2598. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1594
  2599. msgid "Firmware File"
  2600. msgstr ""
  2601. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:59
  2602. msgid "Firmware Version"
  2603. msgstr ""
  2604. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:532
  2605. msgid "Fixed source port for outbound DNS queries."
  2606. msgstr ""
  2607. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:312
  2608. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:449
  2609. msgid "Flash image..."
  2610. msgstr ""
  2611. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:308
  2612. msgid "Flash image?"
  2613. msgstr ""
  2614. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:439
  2615. msgid "Flash new firmware image"
  2616. msgstr ""
  2617. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:384
  2618. msgid "Flash operations"
  2619. msgstr ""
  2620. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:317
  2621. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:319
  2622. msgid "Flashing…"
  2623. msgstr ""
  2624. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:988
  2625. msgid "Follow IPv4 Lifetime"
  2626. msgstr ""
  2627. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:623
  2628. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:703
  2629. msgid "Force"
  2630. msgstr "Paksa"
  2631. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:965
  2632. msgid "Force 40MHz mode"
  2633. msgstr ""
  2634. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1239
  2635. msgid "Force CCMP (AES)"
  2636. msgstr ""
  2637. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:703
  2638. msgid "Force DHCP on this network even if another server is detected."
  2639. msgstr ""
  2640. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:750
  2641. msgid "Force IGMP version"
  2642. msgstr ""
  2643. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:757
  2644. msgid "Force MLD version"
  2645. msgstr ""
  2646. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1240
  2647. msgid "Force TKIP"
  2648. msgstr ""
  2649. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1241
  2650. msgid "Force TKIP and CCMP (AES)"
  2651. msgstr ""
  2652. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:941
  2653. msgid "Force broadcast DHCP response."
  2654. msgstr ""
  2655. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1299
  2656. msgid "Force link"
  2657. msgstr ""
  2658. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:281
  2659. msgid "Force upgrade"
  2660. msgstr ""
  2661. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:90
  2662. msgid "Force use of NAT-T"
  2663. msgstr ""
  2664. #: modules/luci-base/ucode/template/csrftoken.ut:8
  2665. msgid "Form token mismatch"
  2666. msgstr ""
  2667. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:966
  2668. msgid ""
  2669. "Forward <abbr title=\"Neighbour Discovery Protocol\">NDP</abbr> <abbr "
  2670. "title=\"Neighbour Solicitation, Type 135\">NS</abbr> and <abbr "
  2671. "title=\"Neighbour Advertisement, Type 136\">NA</abbr> messages between the "
  2672. "designated master interface and downstream interfaces."
  2673. msgstr ""
  2674. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:810
  2675. msgid ""
  2676. "Forward <abbr title=\"Router Advertisement, ICMPv6 Type 134\">RA</abbr> "
  2677. "messages received on the designated master interface to downstream "
  2678. "interfaces."
  2679. msgstr ""
  2680. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:164
  2681. msgid "Forward DHCP traffic"
  2682. msgstr ""
  2683. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:932
  2684. msgid ""
  2685. "Forward DHCPv6 messages between the designated master interface and "
  2686. "downstream interfaces."
  2687. msgstr ""
  2688. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:161
  2689. msgid "Forward broadcast traffic"
  2690. msgstr ""
  2691. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:581
  2692. msgid "Forward delay"
  2693. msgstr ""
  2694. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:993
  2695. msgid "Forward mesh peer traffic"
  2696. msgstr ""
  2697. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:779
  2698. msgid "Forward multicast packets as unicast packets on this device."
  2699. msgstr ""
  2700. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:944
  2701. msgid "Forward/reverse DNS"
  2702. msgstr ""
  2703. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1642
  2704. msgid "Forwarding mode"
  2705. msgstr ""
  2706. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:80
  2707. msgid "Fragmentation"
  2708. msgstr ""
  2709. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:957
  2710. msgid "Fragmentation Threshold"
  2711. msgstr "Fragmentasi Ambang"
  2712. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:62
  2713. msgctxt "nft nat flag fully-random"
  2714. msgid "Full port randomization"
  2715. msgstr ""
  2716. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:214
  2717. msgid ""
  2718. "Further information about WireGuard interfaces and peers at <a href='http://"
  2719. "wireguard.com'>wireguard.com</a>."
  2720. msgstr ""
  2721. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:128
  2722. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:184
  2723. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:170
  2724. msgid "GHz"
  2725. msgstr "GHz"
  2726. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:92
  2727. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:82
  2728. msgid "GPRS only"
  2729. msgstr ""
  2730. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:10
  2731. msgid "GRE tunnel over IPv4"
  2732. msgstr ""
  2733. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:10
  2734. msgid "GRE tunnel over IPv6"
  2735. msgstr ""
  2736. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:10
  2737. msgid "GRETAP tunnel over IPv4"
  2738. msgstr ""
  2739. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:10
  2740. msgid "GRETAP tunnel over IPv6"
  2741. msgstr ""
  2742. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:76
  2743. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:44
  2744. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:188
  2745. msgid "Gateway"
  2746. msgstr ""
  2747. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:85
  2748. msgid "Gateway Mode"
  2749. msgstr ""
  2750. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:36
  2751. msgid "Gateway Ports"
  2752. msgstr ""
  2753. #: modules/luci-base/htdocs/luci-static/resources/network.js:11
  2754. #: modules/luci-compat/luasrc/model/network.lua:29
  2755. msgid "Gateway address is invalid"
  2756. msgstr ""
  2757. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:256
  2758. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:494
  2759. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:38
  2760. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:127
  2761. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:240
  2762. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:122
  2763. msgid "General Settings"
  2764. msgstr ""
  2765. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:649
  2766. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1629
  2767. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:917
  2768. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:979
  2769. msgid "General Setup"
  2770. msgstr "Setup Umum"
  2771. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:390
  2772. msgid "General device options"
  2773. msgstr ""
  2774. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:150
  2775. msgid "Generate Config"
  2776. msgstr ""
  2777. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1580
  2778. msgid "Generate PMK locally"
  2779. msgstr ""
  2780. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:396
  2781. msgid "Generate archive"
  2782. msgstr ""
  2783. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:824
  2784. msgid "Generate configuration"
  2785. msgstr ""
  2786. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:864
  2787. msgid "Generate configuration…"
  2788. msgstr ""
  2789. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:109
  2790. msgid "Generate new key pair"
  2791. msgstr ""
  2792. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:621
  2793. msgid "Generate preshared key"
  2794. msgstr ""
  2795. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:691
  2796. msgid "Generates a configuration suitable for import on a WireGuard peer"
  2797. msgstr ""
  2798. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:798
  2799. msgid "Generating QR code…"
  2800. msgstr ""
  2801. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:79
  2802. msgid "Given password confirmation did not match, password not changed!"
  2803. msgstr ""
  2804. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:146
  2805. msgid "Global Settings"
  2806. msgstr ""
  2807. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1531
  2808. msgid "Global network options"
  2809. msgstr ""
  2810. #: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:70
  2811. #: themes/luci-theme-material/ucode/template/themes/material/header.ut:90
  2812. #: themes/luci-theme-librecmc-2020/ucode/template/themes/librecmc2020/header.ut:67
  2813. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:92
  2814. msgid "Go to firmware upgrade..."
  2815. msgstr ""
  2816. #: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:60
  2817. #: themes/luci-theme-material/ucode/template/themes/material/header.ut:80
  2818. #: themes/luci-theme-librecmc-2020/ucode/template/themes/librecmc2020/header.ut:57
  2819. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:82
  2820. msgid "Go to password configuration..."
  2821. msgstr ""
  2822. #: modules/luci-base/htdocs/luci-static/resources/form.js:2640
  2823. #: modules/luci-base/htdocs/luci-static/resources/form.js:3753
  2824. #: modules/luci-compat/luasrc/view/cbi/full_valueheader.htm:4
  2825. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:58
  2826. msgid "Go to relevant configuration page"
  2827. msgstr "Menuju ke halaman konfigurasi yang relevan"
  2828. #: modules/luci-mod-network/root/usr/share/rpcd/acl.d/luci-mod-network.json:39
  2829. msgid "Grant access to DHCP configuration"
  2830. msgstr ""
  2831. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status-index.json:23
  2832. msgid "Grant access to DHCP status display"
  2833. msgstr ""
  2834. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status-index.json:32
  2835. msgid "Grant access to DSL status display"
  2836. msgstr ""
  2837. #: protocols/luci-proto-openconnect/root/usr/share/rpcd/acl.d/luci-openconnect.json:3
  2838. msgid "Grant access to LuCI OpenConnect procedures"
  2839. msgstr ""
  2840. #: protocols/luci-proto-wireguard/root/usr/share/rpcd/acl.d/luci-wireguard.json:3
  2841. msgid "Grant access to LuCI Wireguard procedures"
  2842. msgstr ""
  2843. #: protocols/luci-proto-openfortivpn/root/usr/share/rpcd/acl.d/luci-openfortivpn.json:3
  2844. msgid "Grant access to LuCI openfortivpn procedures"
  2845. msgstr ""
  2846. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:20
  2847. msgid "Grant access to SSH configuration"
  2848. msgstr ""
  2849. #: modules/luci-base/root/usr/share/rpcd/acl.d/luci-base.json:12
  2850. msgid "Grant access to basic LuCI procedures"
  2851. msgstr ""
  2852. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:79
  2853. msgid "Grant access to crontab configuration"
  2854. msgstr ""
  2855. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:70
  2856. msgid "Grant access to firewall status"
  2857. msgstr ""
  2858. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:132
  2859. msgid "Grant access to flash operations"
  2860. msgstr ""
  2861. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status-index.json:3
  2862. msgid "Grant access to main status display"
  2863. msgstr ""
  2864. #: protocols/luci-proto-modemmanager/root/usr/share/rpcd/acl.d/luci-proto-modemmanager.json:3
  2865. msgid "Grant access to mmcli"
  2866. msgstr ""
  2867. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:100
  2868. msgid "Grant access to mount configuration"
  2869. msgstr ""
  2870. #: modules/luci-mod-network/root/usr/share/rpcd/acl.d/luci-mod-network.json:3
  2871. msgid "Grant access to network configuration"
  2872. msgstr ""
  2873. #: modules/luci-mod-network/root/usr/share/rpcd/acl.d/luci-mod-network.json:52
  2874. msgid "Grant access to network diagnostic tools"
  2875. msgstr ""
  2876. #: modules/luci-base/root/usr/share/rpcd/acl.d/luci-base.json:36
  2877. msgid "Grant access to network status information"
  2878. msgstr ""
  2879. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status-index.json:41
  2880. msgid "Grant access to port status display"
  2881. msgstr ""
  2882. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:13
  2883. msgid "Grant access to process status"
  2884. msgstr ""
  2885. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:3
  2886. msgid "Grant access to realtime statistics"
  2887. msgstr ""
  2888. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:47
  2889. msgid "Grant access to routing status"
  2890. msgstr ""
  2891. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:57
  2892. msgid "Grant access to startup configuration"
  2893. msgstr ""
  2894. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:3
  2895. msgid "Grant access to system configuration"
  2896. msgstr ""
  2897. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:30
  2898. msgid "Grant access to system logs"
  2899. msgstr ""
  2900. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:43
  2901. msgid "Grant access to uHTTPd configuration"
  2902. msgstr ""
  2903. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:61
  2904. msgid "Grant access to wireless channel status"
  2905. msgstr ""
  2906. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status-index.json:50
  2907. msgid "Grant access to wireless status display"
  2908. msgstr ""
  2909. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:66
  2910. msgid "Group Password"
  2911. msgstr ""
  2912. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:22
  2913. msgid "Guest"
  2914. msgstr ""
  2915. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:81
  2916. msgid "HE.net password"
  2917. msgstr ""
  2918. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:73
  2919. msgid "HE.net username"
  2920. msgstr ""
  2921. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/uhttpd.js:9
  2922. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:64
  2923. msgid "HTTP(S) Access"
  2924. msgstr ""
  2925. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:46
  2926. msgid "Hang Up"
  2927. msgstr "Menutup"
  2928. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/heartbeat.js:6
  2929. msgid "Heartbeat interval (kernel: heartbeat)"
  2930. msgstr ""
  2931. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:576
  2932. msgid "Hello interval"
  2933. msgstr ""
  2934. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:114
  2935. msgid ""
  2936. "Here you can configure the basic aspects of your device like its hostname or "
  2937. "the timezone."
  2938. msgstr ""
  2939. "Di sini anda boleh mengkonfigurasi aspek asas peranti anda seperti nama host "
  2940. "atau zon."
  2941. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1135
  2942. msgid "Hide <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>"
  2943. msgstr "Menyembunyikan ESSID"
  2944. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:293
  2945. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:332
  2946. msgid "Hide empty chains"
  2947. msgstr ""
  2948. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:950
  2949. msgid "High"
  2950. msgstr ""
  2951. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:707
  2952. msgid "Honor gratuitous ARP"
  2953. msgstr ""
  2954. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:593
  2955. msgctxt "Chain hook description"
  2956. msgid "Hook: <strong>%h</strong> (%h), Priority: <strong>%d</strong>"
  2957. msgstr ""
  2958. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:92
  2959. msgid "Hop Penalty"
  2960. msgstr ""
  2961. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:57
  2962. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2258
  2963. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:134
  2964. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:234
  2965. msgid "Host"
  2966. msgstr ""
  2967. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:171
  2968. msgid "Host expiry timeout"
  2969. msgstr ""
  2970. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:594
  2971. msgid "Host requests this filename from the boot server."
  2972. msgstr ""
  2973. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:88
  2974. msgid "Host-Uniq tag content"
  2975. msgstr ""
  2976. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:894
  2977. msgid ""
  2978. "Host-specific lease time, e.g. <code>5m</code>, <code>3h</code>, <code>7d</"
  2979. "code>."
  2980. msgstr ""
  2981. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:38
  2982. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:732
  2983. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:785
  2984. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:55
  2985. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:87
  2986. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:135
  2987. msgid "Hostname"
  2988. msgstr "Nama Host"
  2989. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:22
  2990. msgid "Hostname to send when requesting DHCP"
  2991. msgstr ""
  2992. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:260
  2993. msgid "Hostnames"
  2994. msgstr "Nama Host"
  2995. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:724
  2996. msgid ""
  2997. "Hostnames are used to bind a domain name to an IP address. This setting is "
  2998. "redundant for hostnames already configured with static leases, but it can be "
  2999. "useful to rebind an FQDN."
  3000. msgstr ""
  3001. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/timer.js:19
  3002. msgid "How long (in milliseconds) the LED should be off"
  3003. msgstr ""
  3004. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/timer.js:13
  3005. msgid "How long (in milliseconds) the LED should be on"
  3006. msgstr ""
  3007. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:276
  3008. msgid "Human-readable counters"
  3009. msgstr ""
  3010. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:24
  3011. msgid "Hybrid"
  3012. msgstr ""
  3013. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:49
  3014. msgctxt "nft icmp code"
  3015. msgid "ICMP code"
  3016. msgstr ""
  3017. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:50
  3018. msgctxt "nft icmp type"
  3019. msgid "ICMP type"
  3020. msgstr ""
  3021. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:51
  3022. msgctxt "nft icmpv6 code"
  3023. msgid "ICMPv6 code"
  3024. msgstr ""
  3025. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:52
  3026. msgctxt "nft icmpv6 type"
  3027. msgid "ICMPv6 type"
  3028. msgstr ""
  3029. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:53
  3030. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:48
  3031. msgid "ID used to uniquely identify the VXLAN"
  3032. msgstr ""
  3033. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:208
  3034. msgid "IEEE 802.3ad Dynamic link aggregation (802.3ad, 4)"
  3035. msgstr ""
  3036. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:75
  3037. msgid "IKE DH Group"
  3038. msgstr ""
  3039. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:86
  3040. msgid "IMEI"
  3041. msgstr ""
  3042. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:181
  3043. msgid "IP Addresses"
  3044. msgstr ""
  3045. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:85
  3046. msgid "IP Protocol"
  3047. msgstr ""
  3048. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:261
  3049. msgid "IP Sets"
  3050. msgstr ""
  3051. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:136
  3052. msgid "IP Type"
  3053. msgstr ""
  3054. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:736
  3055. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:178
  3056. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:204
  3057. msgid "IP address"
  3058. msgstr "Alamat IP"
  3059. #: modules/luci-base/htdocs/luci-static/resources/network.js:10
  3060. #: modules/luci-compat/luasrc/model/network.lua:28
  3061. msgid "IP address is invalid"
  3062. msgstr ""
  3063. #: modules/luci-base/htdocs/luci-static/resources/network.js:13
  3064. #: modules/luci-compat/luasrc/model/network.lua:31
  3065. msgid "IP address is missing"
  3066. msgstr ""
  3067. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:781
  3068. msgid ""
  3069. "IP addresses that are allowed inside the tunnel. The peer will accept "
  3070. "tunnelled packets with source IP addresses matching this list and route back "
  3071. "packets with matching destination IP."
  3072. msgstr ""
  3073. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:36
  3074. msgctxt "nft ip protocol"
  3075. msgid "IP protocol"
  3076. msgstr ""
  3077. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:14
  3078. msgctxt "nft meta l4proto"
  3079. msgid "IP protocol"
  3080. msgstr ""
  3081. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:762
  3082. msgid "IP set"
  3083. msgstr ""
  3084. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:306
  3085. msgid "IP sets"
  3086. msgstr ""
  3087. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:518
  3088. msgid "IPs to override with NXDOMAIN"
  3089. msgstr ""
  3090. #: protocols/luci-proto-xfrm/htdocs/luci-static/resources/protocol/xfrm.js:9
  3091. msgid "IPsec XFRM"
  3092. msgstr ""
  3093. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:87
  3094. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:110
  3095. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:86
  3096. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:87
  3097. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:88
  3098. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:89
  3099. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:90
  3100. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:96
  3101. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:87
  3102. msgid "IPv4"
  3103. msgstr "IPv4"
  3104. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:351
  3105. msgid "IPv4 Firewall"
  3106. msgstr ""
  3107. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:252
  3108. msgid "IPv4 Neighbours"
  3109. msgstr ""
  3110. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:251
  3111. msgid "IPv4 Routing"
  3112. msgstr ""
  3113. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:121
  3114. msgid "IPv4 Rules"
  3115. msgstr ""
  3116. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:29
  3117. msgid "IPv4 Upstream"
  3118. msgstr ""
  3119. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:178
  3120. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:39
  3121. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:859
  3122. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:88
  3123. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:164
  3124. msgid "IPv4 address"
  3125. msgstr ""
  3126. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:29
  3127. msgid "IPv4 assignment length"
  3128. msgstr ""
  3129. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:181
  3130. msgid "IPv4 broadcast"
  3131. msgstr ""
  3132. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:180
  3133. msgid "IPv4 gateway"
  3134. msgstr ""
  3135. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:179
  3136. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:170
  3137. msgid "IPv4 netmask"
  3138. msgstr ""
  3139. #: modules/luci-base/htdocs/luci-static/resources/validation.js:305
  3140. msgid "IPv4 network in address/netmask notation"
  3141. msgstr ""
  3142. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:138
  3143. msgid "IPv4 only"
  3144. msgstr ""
  3145. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:52
  3146. msgid "IPv4 prefix"
  3147. msgstr ""
  3148. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:61
  3149. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:55
  3150. msgid "IPv4 prefix length"
  3151. msgstr ""
  3152. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:625
  3153. msgid "IPv4 traffic table \"%h\""
  3154. msgstr ""
  3155. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:88
  3156. msgid "IPv4+IPv6"
  3157. msgstr ""
  3158. #: modules/luci-compat/luasrc/model/network/proto_ipip.lua:9
  3159. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:10
  3160. msgid "IPv4-in-IPv4 (RFC2003)"
  3161. msgstr ""
  3162. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:95
  3163. msgid "IPv4/IPv6"
  3164. msgstr ""
  3165. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:137
  3166. msgid "IPv4/IPv6 (both - defaults to IPv4)"
  3167. msgstr ""
  3168. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:633
  3169. msgid "IPv4/IPv6 traffic table \"%h\""
  3170. msgstr ""
  3171. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:88
  3172. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:111
  3173. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:91
  3174. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:92
  3175. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:93
  3176. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:94
  3177. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:95
  3178. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:96
  3179. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:97
  3180. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:98
  3181. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:99
  3182. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:100
  3183. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:97
  3184. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:89
  3185. msgid "IPv6"
  3186. msgstr "Konfigurasi IPv6"
  3187. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:354
  3188. msgid "IPv6 Firewall"
  3189. msgstr ""
  3190. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:737
  3191. msgid "IPv6 MTU"
  3192. msgstr ""
  3193. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:262
  3194. msgid "IPv6 Neighbours"
  3195. msgstr ""
  3196. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:979
  3197. msgid "IPv6 Prefix Lifetime"
  3198. msgstr ""
  3199. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:652
  3200. msgid "IPv6 RA Settings"
  3201. msgstr ""
  3202. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:261
  3203. msgid "IPv6 Routing"
  3204. msgstr ""
  3205. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:121
  3206. msgid "IPv6 Rules"
  3207. msgstr ""
  3208. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:651
  3209. msgid "IPv6 Settings"
  3210. msgstr ""
  3211. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1535
  3212. msgid "IPv6 ULA-Prefix"
  3213. msgstr ""
  3214. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:29
  3215. msgid "IPv6 Upstream"
  3216. msgstr ""
  3217. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:183
  3218. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:58
  3219. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:135
  3220. msgid "IPv6 address"
  3221. msgstr ""
  3222. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1044
  3223. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:27
  3224. msgid "IPv6 assignment hint"
  3225. msgstr ""
  3226. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1039
  3227. msgid "IPv6 assignment length"
  3228. msgstr ""
  3229. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:188
  3230. msgid "IPv6 gateway"
  3231. msgstr ""
  3232. #: modules/luci-base/htdocs/luci-static/resources/validation.js:310
  3233. msgid "IPv6 network in address/netmask notation"
  3234. msgstr ""
  3235. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:139
  3236. msgid "IPv6 only"
  3237. msgstr ""
  3238. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1088
  3239. msgid "IPv6 preference"
  3240. msgstr ""
  3241. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:53
  3242. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:59
  3243. msgid "IPv6 prefix"
  3244. msgstr ""
  3245. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1061
  3246. msgid "IPv6 prefix filter"
  3247. msgstr ""
  3248. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:57
  3249. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:63
  3250. msgid "IPv6 prefix length"
  3251. msgstr ""
  3252. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:192
  3253. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:57
  3254. msgid "IPv6 routed prefix"
  3255. msgstr ""
  3256. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1032
  3257. msgid "IPv6 source routing"
  3258. msgstr ""
  3259. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1084
  3260. msgid "IPv6 suffix"
  3261. msgstr ""
  3262. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:51
  3263. msgid "IPv6 support"
  3264. msgstr ""
  3265. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:629
  3266. msgid "IPv6 traffic table \"%h\""
  3267. msgstr ""
  3268. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:101
  3269. msgid "IPv6-PD"
  3270. msgstr ""
  3271. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:911
  3272. msgid "IPv6-Suffix (hex)"
  3273. msgstr ""
  3274. #: modules/luci-compat/luasrc/model/network/proto_6x4.lua:13
  3275. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:10
  3276. msgid "IPv6-in-IPv4 (RFC4213)"
  3277. msgstr ""
  3278. #: modules/luci-compat/luasrc/model/network/proto_6x4.lua:17
  3279. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:9
  3280. msgid "IPv6-over-IPv4 (6rd)"
  3281. msgstr ""
  3282. #: modules/luci-compat/luasrc/model/network/proto_6x4.lua:15
  3283. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6to4.js:9
  3284. msgid "IPv6-over-IPv4 (6to4)"
  3285. msgstr ""
  3286. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1764
  3287. msgid "Identity"
  3288. msgstr "Identiti"
  3289. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:923
  3290. msgid ""
  3291. "If a host matches an entry which cannot be used because it specifies an "
  3292. "address on a different subnet, the tag <em>known-othernet</em> is set."
  3293. msgstr ""
  3294. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:96
  3295. msgid "If checked, 1DES is enabled"
  3296. msgstr ""
  3297. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:51
  3298. msgid "If checked, adds \"+ipv6\" to the pppd options"
  3299. msgstr ""
  3300. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:93
  3301. msgid "If checked, encryption is disabled"
  3302. msgstr ""
  3303. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1061
  3304. msgid ""
  3305. "If set, downstream subnets are only allocated from the given IPv6 prefix "
  3306. "classes."
  3307. msgstr ""
  3308. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:197
  3309. msgid "If set, the meaning of the match options is inverted"
  3310. msgstr ""
  3311. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:255
  3312. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:361
  3313. msgid ""
  3314. "If specified, mount the device by its UUID instead of a fixed device node"
  3315. msgstr ""
  3316. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:268
  3317. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:377
  3318. msgid ""
  3319. "If specified, mount the device by the partition label instead of a fixed "
  3320. "device node"
  3321. msgstr ""
  3322. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4700
  3323. msgid ""
  3324. "If the IP address used to access LuCI changes, a <strong>manual reconnect to "
  3325. "the new IP</strong> is required within %d seconds to confirm the settings, "
  3326. "otherwise modifications will be reverted."
  3327. msgstr ""
  3328. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:995
  3329. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:134
  3330. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:156
  3331. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:122
  3332. msgid "If unchecked, no default route is configured"
  3333. msgstr ""
  3334. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:999
  3335. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:145
  3336. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:160
  3337. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:133
  3338. msgid "If unchecked, the advertised DNS server addresses are ignored"
  3339. msgstr ""
  3340. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:340
  3341. msgid ""
  3342. "If your physical memory is insufficient unused data can be temporarily "
  3343. "swapped to a swap-device resulting in a higher amount of usable <abbr "
  3344. "title=\"Random Access Memory\">RAM</abbr>. Be aware that swapping data is a "
  3345. "very slow process as the swap-device cannot be accessed with the high "
  3346. "datarates of the <abbr title=\"Random Access Memory\">RAM</abbr>."
  3347. msgstr ""
  3348. "Jika memori fizikal anda tidak cukup data yang boleh digunakan sementara "
  3349. "menukar ke peranti-penukar yang dihasilkan dalam jumlah RAM berguna yang "
  3350. "lebih tinggi. Berhati-hatilah bahawa penukaran data adalah proses yang "
  3351. "sangat lambat kerana peranti-penukar tidak boleh diakses dengan datarates "
  3352. "yang tinggi pada RAM."
  3353. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:860
  3354. msgid "Ignore"
  3355. msgstr ""
  3356. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:438
  3357. msgid "Ignore <code>/etc/hosts</code>"
  3358. msgstr "Mengabaikan /etc/hosts"
  3359. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:683
  3360. msgid "Ignore interface"
  3361. msgstr "Abaikan antara muka"
  3362. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:922
  3363. msgid "Ignore requests from unknown machines using <em>!known</em>."
  3364. msgstr ""
  3365. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:427
  3366. msgid "Ignore resolv file"
  3367. msgstr "Abaikan fail yang selesai"
  3368. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:447
  3369. msgid "Image"
  3370. msgstr ""
  3371. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:273
  3372. msgid "Image check failed:"
  3373. msgstr ""
  3374. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:476
  3375. msgid "Import as peer"
  3376. msgstr ""
  3377. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:188
  3378. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:476
  3379. msgid "Import configuration"
  3380. msgstr ""
  3381. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:504
  3382. msgid "Import configuration as peer…"
  3383. msgstr ""
  3384. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:490
  3385. msgid "Import settings"
  3386. msgstr ""
  3387. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:376
  3388. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:403
  3389. msgid "Imported peer configuration"
  3390. msgstr ""
  3391. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:188
  3392. msgid "Imports settings from an existing WireGuard configuration file"
  3393. msgstr ""
  3394. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:68
  3395. msgid "In"
  3396. msgstr "Masuk"
  3397. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:801
  3398. msgid ""
  3399. "In DHCPv4, it is possible to include more than one mac address. This allows "
  3400. "an IP address to be associated with multiple macaddrs, and dnsmasq abandons "
  3401. "a DHCP lease to one of the macaddrs when another asks for a lease. It only "
  3402. "works reliably if only one of the macaddrs is active at any time."
  3403. msgstr ""
  3404. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:71
  3405. msgid ""
  3406. "In bridged LAN setups it is advisable to enable the bridge loop avoidance in "
  3407. "order to avoid broadcast loops that can bring the entire LAN to a standstill."
  3408. msgstr ""
  3409. #: modules/luci-base/ucode/template/csrftoken.ut:13
  3410. msgid ""
  3411. "In order to prevent unauthorized access to the system, your request has been "
  3412. "blocked. Click \"Continue »\" below to return to the previous page."
  3413. msgstr ""
  3414. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:146
  3415. msgid "In seconds"
  3416. msgstr ""
  3417. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:156
  3418. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:128
  3419. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:114
  3420. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:92
  3421. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:101
  3422. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:124
  3423. msgid "Inactivity timeout"
  3424. msgstr ""
  3425. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:267
  3426. msgid "Inbound:"
  3427. msgstr ""
  3428. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:262
  3429. msgid ""
  3430. "Include in backup a list of current installed packages at /etc/backup/"
  3431. "installed_packages.txt"
  3432. msgstr ""
  3433. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:100
  3434. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:105
  3435. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:102
  3436. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:107
  3437. msgid "Incoming checksum"
  3438. msgstr ""
  3439. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:145
  3440. msgid "Incoming interface"
  3441. msgstr ""
  3442. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:92
  3443. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:97
  3444. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:94
  3445. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:99
  3446. #: protocols/luci-proto-vti/htdocs/luci-static/resources/protocol/vti.js:64
  3447. msgid "Incoming key"
  3448. msgstr ""
  3449. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:102
  3450. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:107
  3451. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:104
  3452. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:109
  3453. msgid "Incoming serialization"
  3454. msgstr ""
  3455. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:187
  3456. msgid "Info"
  3457. msgstr ""
  3458. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:102
  3459. msgid "Information"
  3460. msgstr ""
  3461. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:510
  3462. msgid "Ingress QoS mapping"
  3463. msgstr ""
  3464. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:11
  3465. msgctxt "nft meta iif"
  3466. msgid "Ingress device id"
  3467. msgstr ""
  3468. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:9
  3469. msgctxt "nft meta iifname"
  3470. msgid "Ingress device name"
  3471. msgstr ""
  3472. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:67
  3473. msgid "Initialization failure"
  3474. msgstr ""
  3475. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:77
  3476. msgid "Initscript"
  3477. msgstr ""
  3478. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:111
  3479. msgid "Initscripts"
  3480. msgstr ""
  3481. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1748
  3482. msgid "Inner certificate constraint (Domain)"
  3483. msgstr ""
  3484. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1745
  3485. msgid "Inner certificate constraint (SAN)"
  3486. msgstr ""
  3487. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1742
  3488. msgid "Inner certificate constraint (Subject)"
  3489. msgstr ""
  3490. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1751
  3491. msgid "Inner certificate constraint (Wildcard)"
  3492. msgstr ""
  3493. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:317
  3494. msgid "Install protocol extensions..."
  3495. msgstr ""
  3496. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:628
  3497. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:930
  3498. msgid "Instance"
  3499. msgstr ""
  3500. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:125
  3501. msgctxt "WireGuard instance heading"
  3502. msgid "Instance \"%h\""
  3503. msgstr ""
  3504. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:34
  3505. msgid "Instance Details"
  3506. msgstr ""
  3507. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2126
  3508. msgid ""
  3509. "Instead of joining any network with a matching SSID, only connect to the "
  3510. "BSSID <code>%h</code>."
  3511. msgstr ""
  3512. #: modules/luci-compat/luasrc/view/cbi/map.htm:43
  3513. msgid "Insufficient permissions to read UCI configuration."
  3514. msgstr ""
  3515. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:136
  3516. msgid "Integrated Circuit Card Identifier"
  3517. msgstr ""
  3518. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:41
  3519. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:180
  3520. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:206
  3521. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:17
  3522. msgid "Interface"
  3523. msgstr "Interface"
  3524. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:735
  3525. msgid "Interface \"%h\" is already marked as designated master."
  3526. msgstr ""
  3527. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:62
  3528. msgid "Interface %q device auto-migrated from %q to %q."
  3529. msgstr ""
  3530. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:975
  3531. msgid "Interface Configuration"
  3532. msgstr ""
  3533. #: protocols/luci-proto-xfrm/htdocs/luci-static/resources/protocol/xfrm.js:39
  3534. msgid "Interface ID"
  3535. msgstr ""
  3536. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:111
  3537. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:151
  3538. msgid "Interface has %d pending changes"
  3539. msgstr ""
  3540. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:92
  3541. msgid "Interface is disabled"
  3542. msgstr ""
  3543. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:65
  3544. msgid "Interface is marked for deletion"
  3545. msgstr ""
  3546. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:210
  3547. msgid "Interface is reconnecting..."
  3548. msgstr ""
  3549. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:194
  3550. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:204
  3551. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:210
  3552. msgid "Interface is shutting down..."
  3553. msgstr ""
  3554. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:302
  3555. msgid "Interface is starting..."
  3556. msgstr ""
  3557. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:305
  3558. msgid "Interface is stopping..."
  3559. msgstr ""
  3560. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1153
  3561. msgid "Interface name"
  3562. msgstr ""
  3563. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:123
  3564. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:321
  3565. msgid "Interface not present or not connected yet."
  3566. msgstr ""
  3567. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:479
  3568. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:508
  3569. #: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:38
  3570. msgid "Interfaces"
  3571. msgstr "Interface"
  3572. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:20
  3573. msgid "Internal"
  3574. msgstr ""
  3575. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:85
  3576. msgid "International Mobile Station Equipment Identity"
  3577. msgstr ""
  3578. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:139
  3579. msgid "International Mobile Subscriber Identity"
  3580. msgstr ""
  3581. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:285
  3582. msgid "Interval For Sending Learning Packets"
  3583. msgstr ""
  3584. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:610
  3585. msgid ""
  3586. "Interval in centiseconds between multicast general queries. By varying the "
  3587. "value, an administrator may tune the number of IGMP messages on the subnet; "
  3588. "larger values cause IGMP Queries to be sent less often"
  3589. msgstr ""
  3590. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:576
  3591. msgid "Interval in seconds for STP hello packets"
  3592. msgstr ""
  3593. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:192
  3594. #: modules/luci-compat/luasrc/view/cbi/tsection.htm:42
  3595. msgid "Invalid"
  3596. msgstr "Tak Sah"
  3597. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:101
  3598. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:68
  3599. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:71
  3600. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:97
  3601. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:74
  3602. msgid "Invalid APN provided"
  3603. msgstr ""
  3604. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:37
  3605. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:40
  3606. msgid "Invalid Base64 key string"
  3607. msgstr ""
  3608. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:117
  3609. msgid "Invalid IPv6 address"
  3610. msgstr ""
  3611. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:78
  3612. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:83
  3613. msgid "Invalid TOS value, expected 00..FF or inherit"
  3614. msgstr ""
  3615. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:83
  3616. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:88
  3617. msgid "Invalid Traffic Class value, expected 00..FF or inherit"
  3618. msgstr ""
  3619. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:285
  3620. msgid "Invalid VLAN ID given! Only IDs between %d and %d are allowed."
  3621. msgstr ""
  3622. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:294
  3623. msgid "Invalid VLAN ID given! Only unique IDs are allowed"
  3624. msgstr ""
  3625. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:403
  3626. msgid "Invalid argument"
  3627. msgstr ""
  3628. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:11
  3629. msgid ""
  3630. "Invalid bearer list. Possibly too many bearers created. This protocol "
  3631. "supports one and only one bearer."
  3632. msgstr ""
  3633. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:402
  3634. msgid "Invalid command"
  3635. msgstr ""
  3636. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:205
  3637. msgid "Invalid hexadecimal value"
  3638. msgstr ""
  3639. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:126
  3640. msgid "Invalid hostname or IPv4 address"
  3641. msgstr ""
  3642. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:134
  3643. msgid "Invalid port"
  3644. msgstr ""
  3645. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:108
  3646. msgid "Invalid server URL"
  3647. msgstr ""
  3648. #: modules/luci-base/ucode/template/sysauth.ut:12
  3649. #: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:32
  3650. msgid "Invalid username and/or password! Please try again."
  3651. msgstr "Username dan / atau password tak sah! Sila cuba lagi."
  3652. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/heartbeat.js:13
  3653. msgid "Invert blinking"
  3654. msgstr ""
  3655. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:197
  3656. msgid "Invert match"
  3657. msgstr ""
  3658. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:223
  3659. msgctxt "VLAN port state"
  3660. msgid "Is Primary VLAN"
  3661. msgstr ""
  3662. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1149
  3663. msgid "Isolate Clients"
  3664. msgstr ""
  3665. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:236
  3666. #, fuzzy
  3667. msgid ""
  3668. "It appears that you are trying to flash an image that does not fit into the "
  3669. "flash memory, please verify the image file!"
  3670. msgstr ""
  3671. "Tampak bahawa anda cuba untuk flash fail gambar yang tidak sesuai dengan "
  3672. "memori flash, sila buat pengesahan pada fail gambar!"
  3673. #: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:77
  3674. #: themes/luci-theme-material/ucode/template/themes/material/header.ut:97
  3675. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:72
  3676. msgid "JavaScript required!"
  3677. msgstr ""
  3678. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1922
  3679. #, fuzzy
  3680. msgid "Join Network"
  3681. msgstr "Gabung Rangkaian"
  3682. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1856
  3683. msgid "Join Network: Wireless Scan"
  3684. msgstr ""
  3685. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2134
  3686. msgid "Joining Network: %q"
  3687. msgstr ""
  3688. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:172
  3689. msgid "Jump to rule"
  3690. msgstr ""
  3691. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:228
  3692. msgid "Keep settings and retain the current configuration"
  3693. msgstr ""
  3694. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:60
  3695. msgid "Keep-Alive"
  3696. msgstr ""
  3697. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/dmesg.js:20
  3698. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:84
  3699. msgid "Kernel Log"
  3700. msgstr "Log Kernel"
  3701. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:60
  3702. msgid "Kernel Version"
  3703. msgstr ""
  3704. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1489
  3705. msgid "Key"
  3706. msgstr "Kunci"
  3707. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1517
  3708. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1518
  3709. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1519
  3710. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1520
  3711. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1532
  3712. msgid "Key #%d"
  3713. msgstr ""
  3714. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:92
  3715. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:97
  3716. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:94
  3717. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:99
  3718. #: protocols/luci-proto-vti/htdocs/luci-static/resources/protocol/vti.js:64
  3719. msgid "Key for incoming packets (optional)."
  3720. msgstr ""
  3721. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:96
  3722. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:101
  3723. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:98
  3724. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:103
  3725. #: protocols/luci-proto-vti/htdocs/luci-static/resources/protocol/vti.js:68
  3726. msgid "Key for outgoing packets (optional)."
  3727. msgstr ""
  3728. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:549
  3729. msgctxt "Label indicating that WireGuard peer lacks public key"
  3730. msgid "Key missing"
  3731. msgstr ""
  3732. #: protocols/luci-proto-unet/htdocs/luci-static/resources/protocol/unet.js:44
  3733. msgid "Key used to sign network config"
  3734. msgstr ""
  3735. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:71
  3736. msgctxt "nft unit"
  3737. msgid "KiB"
  3738. msgstr ""
  3739. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:54
  3740. msgid "Kill"
  3741. msgstr "Tamatkan"
  3742. #: modules/luci-compat/luasrc/model/network/proto_ppp.lua:21
  3743. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:10
  3744. msgid "L2TP"
  3745. msgstr ""
  3746. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:40
  3747. msgid "L2TP Server"
  3748. msgstr ""
  3749. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:269
  3750. msgid "LACPDU Packets"
  3751. msgstr ""
  3752. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:130
  3753. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:102
  3754. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:88
  3755. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:62
  3756. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:75
  3757. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:98
  3758. msgid "LCP echo failure threshold"
  3759. msgstr ""
  3760. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:143
  3761. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:115
  3762. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:101
  3763. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:75
  3764. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:88
  3765. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:111
  3766. msgid "LCP echo interval"
  3767. msgstr ""
  3768. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:115
  3769. msgid "LED Configuration"
  3770. msgstr ""
  3771. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1636
  3772. msgid "LLC"
  3773. msgstr ""
  3774. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:268
  3775. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:377
  3776. msgid "Label"
  3777. msgstr ""
  3778. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:225
  3779. msgid "Language"
  3780. msgstr "Bahasa"
  3781. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:125
  3782. msgid "Language and Style"
  3783. msgstr ""
  3784. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:641
  3785. msgid ""
  3786. "Larger weights (of the same prio) are given a proportionately higher "
  3787. "probability of being selected."
  3788. msgstr ""
  3789. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:629
  3790. msgid "Last member interval"
  3791. msgstr ""
  3792. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:59
  3793. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:78
  3794. msgid "Latest Handshake"
  3795. msgstr ""
  3796. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:21
  3797. msgid "Leaf"
  3798. msgstr ""
  3799. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:775
  3800. msgid "Learn"
  3801. msgstr ""
  3802. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:970
  3803. msgid "Learn routes"
  3804. msgstr ""
  3805. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:423
  3806. msgid "Lease file"
  3807. msgstr "Sewa fail"
  3808. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:893
  3809. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:696
  3810. msgid "Lease time"
  3811. msgstr ""
  3812. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:41
  3813. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:60
  3814. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:90
  3815. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:137
  3816. msgid "Lease time remaining"
  3817. msgstr "Sisa masa penyewaan"
  3818. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:41
  3819. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:47
  3820. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:50
  3821. msgid "Leave empty to autodetect"
  3822. msgstr ""
  3823. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:40
  3824. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:39
  3825. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6to4.js:39
  3826. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:45
  3827. msgid "Leave empty to use the current WAN address"
  3828. msgstr ""
  3829. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:938
  3830. msgid ""
  3831. "Legacy or badly behaving devices may require legacy 802.11b rates to "
  3832. "interoperate. Airtime efficiency may be significantly reduced where these "
  3833. "are used. It is recommended to not allow 802.11b rates where possible."
  3834. msgstr ""
  3835. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:677
  3836. msgid "Legacy rules detected"
  3837. msgstr ""
  3838. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4438
  3839. msgid "Legend:"
  3840. msgstr ""
  3841. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:691
  3842. msgid "Limit"
  3843. msgstr "Batas"
  3844. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:25
  3845. msgid "Line Mode"
  3846. msgstr ""
  3847. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:24
  3848. msgid "Line State"
  3849. msgstr ""
  3850. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:26
  3851. msgid "Line Uptime"
  3852. msgstr ""
  3853. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:125
  3854. msgid "Link Aggregation (Channel Bonding)"
  3855. msgstr ""
  3856. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:349
  3857. msgid "Link Monitoring"
  3858. msgstr ""
  3859. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:24
  3860. msgid "Link On"
  3861. msgstr "Link Pada"
  3862. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:77
  3863. msgctxt "nft @ll,off,len"
  3864. msgid "Link layer header bits %d-%d"
  3865. msgstr ""
  3866. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519
  3867. msgid "List of IP addresses to convert into NXDOMAIN responses."
  3868. msgstr ""
  3869. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:307
  3870. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:754
  3871. msgid ""
  3872. "List of IP sets to populate with the IPs of DNS lookup results of the FQDNs "
  3873. "also specified here."
  3874. msgstr ""
  3875. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1602
  3876. msgid ""
  3877. "List of R0KHs in the same Mobility Domain. <br />Format: MAC-address,NAS-"
  3878. "Identifier,128-bit key as hex string. <br />This list is used to map R0KH-ID "
  3879. "(NAS Identifier) to a destination MAC address when requesting PMK-R1 key "
  3880. "from the R0KH that the STA used during the Initial Mobility Domain "
  3881. "Association."
  3882. msgstr ""
  3883. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1606
  3884. msgid ""
  3885. "List of R1KHs in the same Mobility Domain. <br />Format: MAC-address,R1KH-ID "
  3886. "as 6 octets with colons,128-bit key as hex string. <br />This list is used "
  3887. "to map R1KH-ID to a destination MAC address when sending PMK-R1 key from the "
  3888. "R0KH. This is also the list of authorized R1KHs in the MD that can request "
  3889. "PMK-R1 keys."
  3890. msgstr ""
  3891. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:82
  3892. msgid "List of SSH key files for auth"
  3893. msgstr ""
  3894. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:323
  3895. msgid "List of domains to allow RFC1918 responses for."
  3896. msgstr ""
  3897. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:291
  3898. msgid "List of upstream resolvers to forward queries to."
  3899. msgstr ""
  3900. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:176
  3901. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:38
  3902. msgid "Listen Port"
  3903. msgstr ""
  3904. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:343
  3905. msgid "Listen interfaces"
  3906. msgstr ""
  3907. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:17
  3908. msgid "Listen only on the given interface or, if unspecified, on all"
  3909. msgstr ""
  3910. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:344
  3911. msgid ""
  3912. "Listen only on the specified interfaces, and loopback if not excluded "
  3913. "explicitly."
  3914. msgstr ""
  3915. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:299
  3916. msgid "ListenPort setting is invalid"
  3917. msgstr ""
  3918. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:525
  3919. msgid "Listening port for inbound DNS queries."
  3920. msgstr ""
  3921. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:130
  3922. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:54
  3923. msgid "Load"
  3924. msgstr "Load"
  3925. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:63
  3926. msgid "Load Average"
  3927. msgstr ""
  3928. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:189
  3929. msgid "Load configuration…"
  3930. msgstr ""
  3931. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1229
  3932. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2065
  3933. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:167
  3934. msgid "Loading data…"
  3935. msgstr ""
  3936. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2992
  3937. msgid "Loading directory contents…"
  3938. msgstr ""
  3939. #: modules/luci-base/htdocs/luci-static/resources/luci.js:1942
  3940. #: modules/luci-base/ucode/template/view.ut:4
  3941. #: modules/luci-mod-status/ucode/template/admin_status/index.ut:12
  3942. #: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:40
  3943. msgid "Loading view…"
  3944. msgstr ""
  3945. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:948
  3946. msgid "Local"
  3947. msgstr ""
  3948. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:169
  3949. msgid "Local IP address"
  3950. msgstr ""
  3951. #: modules/luci-base/htdocs/luci-static/resources/network.js:12
  3952. #: modules/luci-compat/luasrc/model/network.lua:30
  3953. msgid "Local IP address is invalid"
  3954. msgstr ""
  3955. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:86
  3956. msgid "Local IP address to assign"
  3957. msgstr ""
  3958. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:46
  3959. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:46
  3960. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:44
  3961. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:40
  3962. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:39
  3963. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6to4.js:39
  3964. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:151
  3965. #: protocols/luci-proto-vti/htdocs/luci-static/resources/protocol/vti.js:44
  3966. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:44
  3967. msgid "Local IPv4 address"
  3968. msgstr ""
  3969. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:944
  3970. msgid "Local IPv6 DNS server"
  3971. msgstr ""
  3972. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:46
  3973. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:53
  3974. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:54
  3975. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:45
  3976. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:44
  3977. msgid "Local IPv6 address"
  3978. msgstr ""
  3979. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:115
  3980. msgid "Local Startup"
  3981. msgstr ""
  3982. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:61
  3983. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:131
  3984. msgid "Local Time"
  3985. msgstr "Masa Tempatan"
  3986. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1062
  3987. msgid "Local ULA"
  3988. msgstr ""
  3989. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:281
  3990. msgid "Local domain"
  3991. msgstr ""
  3992. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:282
  3993. msgid "Local domain suffix appended to DHCP names and hosts file entries."
  3994. msgstr ""
  3995. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:277
  3996. msgid "Local server"
  3997. msgstr ""
  3998. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:330
  3999. msgid "Local service only"
  4000. msgstr ""
  4001. #: protocols/luci-proto-unet/htdocs/luci-static/resources/protocol/unet.js:41
  4002. msgid "Local wireguard key"
  4003. msgstr ""
  4004. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:478
  4005. msgid "Localise queries"
  4006. msgstr "Soalan tempatan"
  4007. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:117
  4008. msgid "Location Area Code"
  4009. msgstr ""
  4010. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2126
  4011. msgid "Lock to BSSID"
  4012. msgstr ""
  4013. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:98
  4014. msgctxt "nft log action"
  4015. msgid "Log event \"<strong>%h</strong>…\""
  4016. msgstr ""
  4017. #: modules/luci-base/ucode/template/sysauth.ut:38
  4018. #: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:36
  4019. msgid "Log in"
  4020. msgstr "Login"
  4021. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2674
  4022. msgid "Log in…"
  4023. msgstr ""
  4024. #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:81
  4025. msgid "Log out"
  4026. msgstr "Logout"
  4027. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:185
  4028. msgid "Log output level"
  4029. msgstr ""
  4030. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:285
  4031. msgid "Log queries"
  4032. msgstr "Log soalan"
  4033. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:123
  4034. msgid "Logging"
  4035. msgstr ""
  4036. #: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:23
  4037. msgid "Logging in…"
  4038. msgstr ""
  4039. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57
  4040. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:57
  4041. msgid ""
  4042. "Logical network from which to select the local endpoint if local IPv6 "
  4043. "address is empty and no WAN IPv6 is available (optional)."
  4044. msgstr ""
  4045. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:57
  4046. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62
  4047. msgid "Logical network to which the tunnel will be added (bridged) (optional)."
  4048. msgstr ""
  4049. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:682
  4050. msgid "Loose filtering"
  4051. msgstr ""
  4052. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:686
  4053. msgid "Lowest leased address as offset from the network address."
  4054. msgstr ""
  4055. #: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/footer.ut:12
  4056. msgid "Lua compatibility mode active"
  4057. msgstr ""
  4058. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:48
  4059. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:83
  4060. msgid "MAC"
  4061. msgstr "MAC"
  4062. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1507
  4063. msgid "MAC Address"
  4064. msgstr ""
  4065. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1079
  4066. msgid "MAC Address Filter"
  4067. msgstr "Penapis alamat MAC"
  4068. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:253
  4069. msgid "MAC Address For The Actor"
  4070. msgstr ""
  4071. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:401
  4072. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1475
  4073. msgid "MAC VLAN"
  4074. msgstr ""
  4075. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:645
  4076. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:40
  4077. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1161
  4078. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2257
  4079. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:56
  4080. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:89
  4081. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:233
  4082. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:179
  4083. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:205
  4084. msgid "MAC address"
  4085. msgstr ""
  4086. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:799
  4087. msgid "MAC address(es)"
  4088. msgstr ""
  4089. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:981
  4090. msgid "MAC-Filter"
  4091. msgstr "Penapis MAC"
  4092. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1086
  4093. msgid "MAC-List"
  4094. msgstr "Senarai MAC"
  4095. #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:16
  4096. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:13
  4097. msgid "MAP / LW4over6"
  4098. msgstr ""
  4099. #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:62
  4100. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:7
  4101. msgid "MAP rule is invalid"
  4102. msgstr ""
  4103. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:24
  4104. msgid "MBIM Cellular"
  4105. msgstr ""
  4106. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:223
  4107. msgid "MD5"
  4108. msgstr "MD5"
  4109. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:199
  4110. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:28
  4111. msgid "MHz"
  4112. msgstr "MHz"
  4113. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:354
  4114. msgid "MII"
  4115. msgstr ""
  4116. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:422
  4117. msgid "MII / ETHTOOL ioctls"
  4118. msgstr ""
  4119. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:395
  4120. msgid "MII Interval"
  4121. msgstr ""
  4122. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:634
  4123. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1519
  4124. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:87
  4125. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:53
  4126. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:196
  4127. #: protocols/luci-proto-xfrm/htdocs/luci-static/resources/protocol/xfrm.js:46
  4128. msgid "MTU"
  4129. msgstr "MTU"
  4130. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:264
  4131. msgid "MX"
  4132. msgstr ""
  4133. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:303
  4134. msgid ""
  4135. "Make sure to clone the root filesystem using something like the commands "
  4136. "below:"
  4137. msgstr ""
  4138. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:122
  4139. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:115
  4140. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:53
  4141. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:98
  4142. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:84
  4143. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:58
  4144. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:71
  4145. msgid "Manual"
  4146. msgstr ""
  4147. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:82
  4148. msgid "Manufacturer"
  4149. msgstr ""
  4150. #: modules/luci-base/htdocs/luci-static/resources/network.js:3864
  4151. msgid "Master"
  4152. msgstr ""
  4153. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:920
  4154. msgid "Match Tag"
  4155. msgstr ""
  4156. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:865
  4157. msgid "Max <abbr title=\"Router Advertisement\">RA</abbr> interval"
  4158. msgstr ""
  4159. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:538
  4160. msgid "Max. DHCP leases"
  4161. msgstr ""
  4162. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:545
  4163. msgid "Max. EDNS0 packet size"
  4164. msgstr ""
  4165. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:552
  4166. msgid "Max. concurrent queries"
  4167. msgstr ""
  4168. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:586
  4169. msgid "Maximum age"
  4170. msgstr ""
  4171. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1188
  4172. msgid "Maximum allowed Listen Interval"
  4173. msgstr ""
  4174. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:539
  4175. msgid "Maximum allowed number of active DHCP leases."
  4176. msgstr ""
  4177. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:553
  4178. msgid "Maximum allowed number of concurrent DNS queries."
  4179. msgstr ""
  4180. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:546
  4181. msgid "Maximum allowed size of EDNS0 UDP packets."
  4182. msgstr ""
  4183. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:126
  4184. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:124
  4185. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:106
  4186. msgid "Maximum amount of seconds to wait for the modem to become ready"
  4187. msgstr ""
  4188. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:691
  4189. msgid "Maximum number of leased addresses."
  4190. msgstr ""
  4191. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:596
  4192. msgid "Maximum snooping table size"
  4193. msgstr ""
  4194. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:865
  4195. msgid ""
  4196. "Maximum time allowed between sending unsolicited <abbr title=\"Router "
  4197. "Advertisement, ICMPv6 Type 134\">RA</abbr>. Default is 600 seconds."
  4198. msgstr ""
  4199. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:941
  4200. msgid "Maximum transmit power"
  4201. msgstr ""
  4202. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:464
  4203. msgid "May prevent VoIP or other services from working."
  4204. msgstr ""
  4205. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:129
  4206. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:188
  4207. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:199
  4208. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:28
  4209. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:171
  4210. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:323
  4211. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:324
  4212. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:325
  4213. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:329
  4214. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:330
  4215. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:331
  4216. msgid "Mbit/s"
  4217. msgstr ""
  4218. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:35
  4219. msgid "Medium"
  4220. msgstr ""
  4221. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:24
  4222. msgid "Memory"
  4223. msgstr "Memori"
  4224. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:73
  4225. msgid "Memory usage (%)"
  4226. msgstr "Penggunaan Memori (%)"
  4227. #: modules/luci-base/htdocs/luci-static/resources/network.js:3867
  4228. msgid "Mesh"
  4229. msgstr ""
  4230. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:156
  4231. msgid "Mesh ID"
  4232. msgstr ""
  4233. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:990
  4234. msgid "Mesh Id"
  4235. msgstr ""
  4236. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:41
  4237. msgid "Mesh Routing"
  4238. msgstr ""
  4239. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:41
  4240. msgid "Mesh and routing related options"
  4241. msgstr ""
  4242. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:404
  4243. msgid "Method not found"
  4244. msgstr ""
  4245. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:350
  4246. msgid "Method of link monitoring"
  4247. msgstr ""
  4248. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:419
  4249. msgid "Method to determine link status"
  4250. msgstr ""
  4251. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:80
  4252. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:189
  4253. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:215
  4254. msgid "Metric"
  4255. msgstr "Metrik"
  4256. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:70
  4257. msgctxt "nft unit"
  4258. msgid "MiB"
  4259. msgstr ""
  4260. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:872
  4261. msgid "Min <abbr title=\"Router Advertisement\">RA</abbr> interval"
  4262. msgstr ""
  4263. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:721
  4264. msgid "Minimum ARP validity time"
  4265. msgstr ""
  4266. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:237
  4267. msgid "Minimum Number of Links"
  4268. msgstr ""
  4269. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:721
  4270. msgid ""
  4271. "Minimum required time in seconds before an ARP entry may be replaced. "
  4272. "Prevents ARP cache thrashing."
  4273. msgstr ""
  4274. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:872
  4275. msgid ""
  4276. "Minimum time allowed between sending unsolicited <abbr title=\"Router "
  4277. "Advertisement, ICMPv6 Type 134\">RA</abbr>. Default is 200 seconds."
  4278. msgstr ""
  4279. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:204
  4280. msgid "Mirror monitor port"
  4281. msgstr ""
  4282. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:203
  4283. msgid "Mirror source port"
  4284. msgstr ""
  4285. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:120
  4286. msgid "Mobile Country Code"
  4287. msgstr ""
  4288. #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:9
  4289. msgid "Mobile Data"
  4290. msgstr ""
  4291. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:123
  4292. msgid "Mobile Network Code"
  4293. msgstr ""
  4294. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:167
  4295. #: protocols/luci-proto-modemmanager/root/usr/share/luci/menu.d/luci-proto-modemmanager.json:3
  4296. msgid "Mobile Service"
  4297. msgstr ""
  4298. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1562
  4299. msgid "Mobility Domain"
  4300. msgstr ""
  4301. #: modules/luci-compat/luasrc/view/cbi/wireless_modefreq.htm:154
  4302. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:488
  4303. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:157
  4304. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:180
  4305. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:486
  4306. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:985
  4307. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1840
  4308. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:404
  4309. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:148
  4310. msgid "Mode"
  4311. msgstr "Mode"
  4312. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:56
  4313. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:83
  4314. msgid "Model"
  4315. msgstr ""
  4316. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:81
  4317. msgid "Modem Info"
  4318. msgstr ""
  4319. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:9
  4320. msgid ""
  4321. "Modem connection in progress. Please wait. This process will timeout after 2 "
  4322. "minutes."
  4323. msgstr ""
  4324. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:77
  4325. msgid "Modem default"
  4326. msgstr ""
  4327. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:73
  4328. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:54
  4329. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:51
  4330. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:65
  4331. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:73
  4332. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:57
  4333. msgid "Modem device"
  4334. msgstr "Alat modem"
  4335. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:66
  4336. msgid "Modem information query failed"
  4337. msgstr ""
  4338. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:126
  4339. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:124
  4340. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:119
  4341. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:106
  4342. msgid "Modem init timeout"
  4343. msgstr ""
  4344. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:21
  4345. msgid "ModemManager"
  4346. msgstr ""
  4347. #: modules/luci-base/htdocs/luci-static/resources/network.js:3868
  4348. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1073
  4349. msgid "Monitor"
  4350. msgstr "Monitor"
  4351. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:31
  4352. msgid "More Characters"
  4353. msgstr ""
  4354. #: modules/luci-base/htdocs/luci-static/resources/form.js:2581
  4355. msgid "More…"
  4356. msgstr ""
  4357. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:192
  4358. msgid "Mount Point"
  4359. msgstr "Mount Point"
  4360. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:144
  4361. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:228
  4362. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:102
  4363. msgid "Mount Points"
  4364. msgstr "Mount Points"
  4365. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:229
  4366. msgid "Mount Points - Mount Entry"
  4367. msgstr ""
  4368. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:341
  4369. msgid "Mount Points - Swap Entry"
  4370. msgstr ""
  4371. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:228
  4372. msgid ""
  4373. "Mount Points define at which point a memory device will be attached to the "
  4374. "filesystem"
  4375. msgstr ""
  4376. "Mount Points menentukan di mana titik peranti memori akan melekat pada fail "
  4377. "sistem"
  4378. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:154
  4379. msgid "Mount attached devices"
  4380. msgstr ""
  4381. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:162
  4382. msgid "Mount filesystems not specifically configured"
  4383. msgstr ""
  4384. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:332
  4385. msgid "Mount options"
  4386. msgstr ""
  4387. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:293
  4388. msgid "Mount point"
  4389. msgstr ""
  4390. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:158
  4391. msgid "Mount swap not specifically configured"
  4392. msgstr ""
  4393. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:223
  4394. msgid "Mounted file systems"
  4395. msgstr "Mounted fail sistems"
  4396. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:152
  4397. msgid "Move down"
  4398. msgstr ""
  4399. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:151
  4400. msgid "Move up"
  4401. msgstr ""
  4402. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1146
  4403. msgid "Multi To Unicast"
  4404. msgstr ""
  4405. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:89
  4406. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:94
  4407. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:91
  4408. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:96
  4409. msgid "Multicast"
  4410. msgstr ""
  4411. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:99
  4412. msgid "Multicast Mode"
  4413. msgstr ""
  4414. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:773
  4415. msgid "Multicast routing"
  4416. msgstr ""
  4417. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:779
  4418. msgid "Multicast to unicast"
  4419. msgstr ""
  4420. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1557
  4421. msgid "NAS ID"
  4422. msgstr "NAS ID"
  4423. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:536
  4424. msgid "NAT action chain \"%h\""
  4425. msgstr ""
  4426. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:87
  4427. msgid "NAT-T Mode"
  4428. msgstr ""
  4429. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:41
  4430. msgid "NAT64 Prefix"
  4431. msgstr ""
  4432. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:858
  4433. msgid "NAT64 prefix"
  4434. msgstr ""
  4435. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:26
  4436. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:35
  4437. msgid "NCM"
  4438. msgstr "NCM"
  4439. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:975
  4440. msgid "NDP-Proxy slave"
  4441. msgstr ""
  4442. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:72
  4443. msgid "NT Domain"
  4444. msgstr ""
  4445. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:300
  4446. msgid "NTP server candidates"
  4447. msgstr ""
  4448. #: modules/luci-base/htdocs/luci-static/resources/form.js:2618
  4449. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4193
  4450. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:27
  4451. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1163
  4452. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:68
  4453. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:36
  4454. msgid "Name"
  4455. msgstr "Nama"
  4456. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2104
  4457. msgid "Name of the new network"
  4458. msgstr "Nama rangkaian baru"
  4459. #: protocols/luci-proto-unet/htdocs/luci-static/resources/protocol/unet.js:38
  4460. msgid "Name of the tunnel device"
  4461. msgstr ""
  4462. #: themes/luci-theme-librecmc-2020/ucode/template/themes/librecmc2020/header.ut:39
  4463. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:50
  4464. msgid "Navigation"
  4465. msgstr "Navigation"
  4466. #: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:10
  4467. msgid "Nebula Network"
  4468. msgstr ""
  4469. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1619
  4470. msgid "Neighbour Report"
  4471. msgstr ""
  4472. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:713
  4473. msgid "Neighbour cache validity"
  4474. msgstr ""
  4475. #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:45
  4476. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1018
  4477. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2256
  4478. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:383
  4479. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:63
  4480. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:232
  4481. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:186
  4482. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:212
  4483. msgid "Network"
  4484. msgstr "Rangkaian"
  4485. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:104
  4486. msgid "Network Coding"
  4487. msgstr ""
  4488. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:76
  4489. msgid "Network Mode"
  4490. msgstr ""
  4491. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:97
  4492. msgid "Network Registration"
  4493. msgstr ""
  4494. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2098
  4495. msgid "Network SSID"
  4496. msgstr ""
  4497. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:57
  4498. msgid "Network address"
  4499. msgstr ""
  4500. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:578
  4501. msgid "Network boot image"
  4502. msgstr ""
  4503. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:409
  4504. msgid "Network bridge configuration migration"
  4505. msgstr ""
  4506. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:397
  4507. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1481
  4508. msgid "Network device"
  4509. msgstr ""
  4510. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:7
  4511. msgid "Network device activity (kernel: netdev)"
  4512. msgstr ""
  4513. #: modules/luci-base/htdocs/luci-static/resources/network.js:15
  4514. #: modules/luci-compat/luasrc/model/network.lua:33
  4515. msgid "Network device is not present"
  4516. msgstr ""
  4517. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:645
  4518. msgid "Network device table \"%h\""
  4519. msgstr ""
  4520. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:78
  4521. msgctxt "nft @nh,off,len"
  4522. msgid "Network header bits %d-%d"
  4523. msgstr ""
  4524. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:443
  4525. msgid "Network ifname configuration migration"
  4526. msgstr ""
  4527. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:57
  4528. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62
  4529. msgid "Network interface"
  4530. msgstr ""
  4531. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:617
  4532. msgid "Network-ID"
  4533. msgstr ""
  4534. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:774
  4535. msgid "Never"
  4536. msgstr ""
  4537. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:16
  4538. #, fuzzy
  4539. msgctxt "No WireGuard peer handshake yet"
  4540. msgid "Never"
  4541. msgstr "Kembali"
  4542. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:278
  4543. msgid ""
  4544. "Never forward matching domains and subdomains, resolve from DHCP or hosts "
  4545. "files only."
  4546. msgstr ""
  4547. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1215
  4548. msgid "New interface for \"%s\" can not be created: %s"
  4549. msgstr ""
  4550. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1166
  4551. msgid "New interface name…"
  4552. msgstr ""
  4553. #: modules/luci-compat/luasrc/view/cbi/delegator.htm:11
  4554. msgid "Next »"
  4555. msgstr "Kemudian »"
  4556. #: modules/luci-base/htdocs/luci-static/resources/form.js:4094
  4557. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:298
  4558. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:346
  4559. msgid "No"
  4560. msgstr ""
  4561. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:660
  4562. msgid "No DHCP Server configured for this interface"
  4563. msgstr ""
  4564. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:202
  4565. msgid "No Data"
  4566. msgstr ""
  4567. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1391
  4568. msgid "No Encryption"
  4569. msgstr ""
  4570. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:185
  4571. msgid "No Host Routes"
  4572. msgstr ""
  4573. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:89
  4574. msgid "No NAT-T"
  4575. msgstr ""
  4576. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:79
  4577. msgid "No RX signal"
  4578. msgstr ""
  4579. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:148
  4580. msgid "No WireGuard interfaces configured."
  4581. msgstr ""
  4582. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:16
  4583. msgid "No allowed mode configuration found."
  4584. msgstr ""
  4585. #: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:68
  4586. #: themes/luci-theme-material/ucode/template/themes/material/header.ut:88
  4587. #: themes/luci-theme-librecmc-2020/ucode/template/themes/librecmc2020/header.ut:65
  4588. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:90
  4589. msgid ""
  4590. "No changes to settings will be stored and are lost after rebooting. This "
  4591. "mode should only be used to install a firmware upgrade"
  4592. msgstr ""
  4593. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69
  4594. msgid "No client associated"
  4595. msgstr ""
  4596. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:27
  4597. msgid "No control device specified"
  4598. msgstr ""
  4599. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3230
  4600. msgctxt "empty table placeholder"
  4601. msgid "No data"
  4602. msgstr ""
  4603. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:406
  4604. msgid "No data received"
  4605. msgstr ""
  4606. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:751
  4607. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:758
  4608. msgid "No enforcement"
  4609. msgstr ""
  4610. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:229
  4611. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:232
  4612. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:235
  4613. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:238
  4614. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:241
  4615. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:244
  4616. msgid "No entries available"
  4617. msgstr ""
  4618. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2932
  4619. msgid "No entries in this directory"
  4620. msgstr ""
  4621. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:846
  4622. msgid ""
  4623. "No fixed interface listening port defined, peers might not be able to "
  4624. "initiate connections to this WireGuard instance!"
  4625. msgstr ""
  4626. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:86
  4627. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:91
  4628. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:88
  4629. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:93
  4630. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:70
  4631. msgid "No host route"
  4632. msgstr ""
  4633. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:725
  4634. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:142
  4635. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:362
  4636. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:59
  4637. msgid "No information available"
  4638. msgstr ""
  4639. #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:63
  4640. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:8
  4641. msgid "No matching prefix delegation"
  4642. msgstr ""
  4643. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:142
  4644. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:145
  4645. msgid "No more slaves available"
  4646. msgstr ""
  4647. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:189
  4648. msgid "No more slaves available, can not save interface"
  4649. msgstr ""
  4650. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:499
  4651. msgid "No negative cache"
  4652. msgstr ""
  4653. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:696
  4654. msgid "No nftables ruleset loaded."
  4655. msgstr ""
  4656. #: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:57
  4657. #: themes/luci-theme-material/ucode/template/themes/material/header.ut:77
  4658. #: themes/luci-theme-librecmc-2020/ucode/template/themes/librecmc2020/header.ut:54
  4659. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:79
  4660. msgid "No password set!"
  4661. msgstr ""
  4662. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:84
  4663. msgid "No peers connected"
  4664. msgstr ""
  4665. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:510
  4666. msgid "No peers defined yet."
  4667. msgstr ""
  4668. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:15
  4669. msgid "No preferred mode configuration found."
  4670. msgstr ""
  4671. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:146
  4672. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:283
  4673. msgid "No public keys present yet."
  4674. msgstr ""
  4675. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:613
  4676. msgctxt "nft chain is empty"
  4677. msgid "No rules in this chain"
  4678. msgstr ""
  4679. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:91
  4680. msgid "No rules in this chain."
  4681. msgstr "Tidak ada peraturan dalam rantai ini"
  4682. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:385
  4683. msgid "No validation or filtering"
  4684. msgstr ""
  4685. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:153
  4686. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1260
  4687. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:259
  4688. msgid "No zone assigned"
  4689. msgstr ""
  4690. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:58
  4691. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:84
  4692. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:187
  4693. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:235
  4694. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:279
  4695. msgid "Noise"
  4696. msgstr "Kebisingan"
  4697. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:30
  4698. msgid "Noise Margin"
  4699. msgstr ""
  4700. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:272
  4701. msgid "Noise:"
  4702. msgstr ""
  4703. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:336
  4704. msgid "Non-wildcard"
  4705. msgstr ""
  4706. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:159
  4707. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:183
  4708. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:80
  4709. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:83
  4710. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:112
  4711. msgid "None"
  4712. msgstr ""
  4713. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:949
  4714. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:198
  4715. msgid "Normal"
  4716. msgstr ""
  4717. #: modules/luci-base/ucode/template/error404.ut:9
  4718. msgid "Not Found"
  4719. msgstr ""
  4720. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:211
  4721. msgctxt "VLAN port state"
  4722. msgid "Not Member"
  4723. msgstr ""
  4724. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:75
  4725. msgid "Not associated"
  4726. msgstr ""
  4727. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:32
  4728. msgid "Not connected"
  4729. msgstr ""
  4730. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:46
  4731. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:81
  4732. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:121
  4733. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:147
  4734. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:329
  4735. msgid "Not present"
  4736. msgstr ""
  4737. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:102
  4738. msgid "Not started on boot"
  4739. msgstr ""
  4740. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:409
  4741. msgid "Not supported"
  4742. msgstr ""
  4743. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1777
  4744. msgid ""
  4745. "Note: Some wireless drivers do not fully support 802.11w. E.g. mwlwifi may "
  4746. "have problems"
  4747. msgstr ""
  4748. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:356
  4749. msgid ""
  4750. "Note: you may also need a DHCP Proxy (currently unavailable) when specifying "
  4751. "a non-standard Relay To port(<code>addr#port</code>)."
  4752. msgstr ""
  4753. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:142
  4754. msgid "Notes"
  4755. msgstr ""
  4756. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:188
  4757. msgid "Notice"
  4758. msgstr ""
  4759. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:135
  4760. msgid "Nslookup"
  4761. msgstr ""
  4762. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:333
  4763. msgid "Number of IGMP membership reports"
  4764. msgstr ""
  4765. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:560
  4766. msgid "Number of cached DNS entries, 10000 is maximum, 0 is no caching."
  4767. msgstr ""
  4768. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:311
  4769. msgid "Number of peer notifications after failover event"
  4770. msgstr ""
  4771. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:69
  4772. msgid "Obfuscated Group Password"
  4773. msgstr ""
  4774. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:61
  4775. msgid "Obfuscated Password"
  4776. msgstr ""
  4777. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:118
  4778. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:111
  4779. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:49
  4780. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:94
  4781. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:80
  4782. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:54
  4783. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:67
  4784. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:93
  4785. msgid "Obtain IPv6 address"
  4786. msgstr ""
  4787. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/none.js:19
  4788. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:87
  4789. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:352
  4790. msgid "Off"
  4791. msgstr ""
  4792. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/timer.js:18
  4793. msgid "Off-State Delay"
  4794. msgstr ""
  4795. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1450
  4796. msgid ""
  4797. "Off: <code>vlanXXX</code>, e.g., <code>vlan1</code>. On: "
  4798. "<code>vlan_tagged_interface.XXX</code>, e.g. <code>eth0.1</code>."
  4799. msgstr ""
  4800. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/none.js:19
  4801. msgid "On"
  4802. msgstr ""
  4803. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/timer.js:12
  4804. msgid "On-State Delay"
  4805. msgstr ""
  4806. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:110
  4807. msgid "On-link"
  4808. msgstr ""
  4809. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:867
  4810. msgid "One of hostname or MAC address must be specified!"
  4811. msgstr ""
  4812. #: modules/luci-base/htdocs/luci-static/resources/validation.js:490
  4813. msgid "One of the following: %s"
  4814. msgstr ""
  4815. #: modules/luci-compat/luasrc/view/cbi/nullsection.htm:17
  4816. #: modules/luci-compat/luasrc/view/cbi/ucisection.htm:22
  4817. msgid "One or more fields contain invalid values!"
  4818. msgstr ""
  4819. #: modules/luci-compat/luasrc/view/cbi/map.htm:32
  4820. msgid "One or more invalid/required values on tab"
  4821. msgstr ""
  4822. #: modules/luci-compat/luasrc/view/cbi/nullsection.htm:19
  4823. #: modules/luci-compat/luasrc/view/cbi/ucisection.htm:24
  4824. msgid "One or more required fields have no value!"
  4825. msgstr ""
  4826. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:413
  4827. msgid "Only accept replies via"
  4828. msgstr ""
  4829. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:770
  4830. msgid "Only allow communication with non-isolated bridge ports when enabled"
  4831. msgstr ""
  4832. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:231
  4833. msgid ""
  4834. "Only if current active slave fails and the primary slave is up (failure, 2)"
  4835. msgstr ""
  4836. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:682
  4837. msgid "Open iptables rules overview…"
  4838. msgstr ""
  4839. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:472
  4840. msgid "Open list..."
  4841. msgstr ""
  4842. #: modules/luci-compat/luasrc/model/network/proto_openconnect.lua:9
  4843. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:65
  4844. msgid "OpenConnect (CISCO AnyConnect)"
  4845. msgstr ""
  4846. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:63
  4847. msgid "OpenFortivpn"
  4848. msgstr ""
  4849. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:741
  4850. msgid ""
  4851. "Operate in <em>relay mode</em> if a designated master interface is "
  4852. "configured and active, otherwise disable <abbr title=\"Neighbour Discovery "
  4853. "Protocol\">NDP</abbr> proxying."
  4854. msgstr ""
  4855. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:740
  4856. msgid ""
  4857. "Operate in <em>relay mode</em> if a designated master interface is "
  4858. "configured and active, otherwise fall back to <em>server mode</em>."
  4859. msgstr ""
  4860. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:742
  4861. msgid ""
  4862. "Operate in <em>relay mode</em> if an upstream IPv6 prefix is present, "
  4863. "otherwise disable service."
  4864. msgstr ""
  4865. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:934
  4866. msgid "Operating frequency"
  4867. msgstr ""
  4868. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:100
  4869. msgid "Operator"
  4870. msgstr ""
  4871. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:101
  4872. msgid "Operator Code"
  4873. msgstr ""
  4874. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:135
  4875. msgid "Operator Name"
  4876. msgstr ""
  4877. #: modules/luci-base/htdocs/luci-static/resources/form.js:2006
  4878. #: modules/luci-base/htdocs/luci-static/resources/form.js:4106
  4879. msgid "Option \"%s\" contains an invalid input value."
  4880. msgstr ""
  4881. #: modules/luci-base/htdocs/luci-static/resources/form.js:2021
  4882. msgid "Option \"%s\" must not be empty."
  4883. msgstr ""
  4884. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4445
  4885. msgid "Option changed"
  4886. msgstr ""
  4887. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4447
  4888. msgid "Option removed"
  4889. msgstr ""
  4890. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1440
  4891. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1779
  4892. msgid "Optional"
  4893. msgstr ""
  4894. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:786
  4895. msgid "Optional hostname to assign"
  4896. msgstr ""
  4897. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:142
  4898. msgid "Optional, free-form notes about this device"
  4899. msgstr ""
  4900. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:147
  4901. msgid "Optional, in seconds. If set to '0', no reconnect is attempted."
  4902. msgstr ""
  4903. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:201
  4904. msgid ""
  4905. "Optional. 32-bit mark for outgoing encrypted packets. Enter value in hex, "
  4906. "starting with <code>0x</code>."
  4907. msgstr ""
  4908. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1084
  4909. msgid ""
  4910. "Optional. Allowed values: 'eui64', 'random', fixed value like '::1' or "
  4911. "'::1:2'. When IPv6 prefix (like 'a:b:c:d::') is received from a delegating "
  4912. "server, use the suffix (like '::1') to form the IPv6 address ('a:b:c:d::1') "
  4913. "for the interface."
  4914. msgstr ""
  4915. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:599
  4916. msgid ""
  4917. "Optional. Base64-encoded preshared key. Adds in an additional layer of "
  4918. "symmetric-key cryptography for post-quantum resistance."
  4919. msgstr ""
  4920. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:659
  4921. msgid "Optional. Create routes for Allowed IPs for this peer."
  4922. msgstr ""
  4923. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:517
  4924. msgid "Optional. Description of peer."
  4925. msgstr ""
  4926. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:185
  4927. msgid "Optional. Do not create host routes to peers."
  4928. msgstr ""
  4929. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:662
  4930. msgid ""
  4931. "Optional. Host of peer. Names are resolved prior to bringing up the "
  4932. "interface."
  4933. msgstr ""
  4934. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:624
  4935. msgid ""
  4936. "Optional. IP addresses and prefixes that this peer is allowed to use inside "
  4937. "the tunnel. Usually the peer's tunnel IP addresses and the networks the peer "
  4938. "routes through the tunnel."
  4939. msgstr ""
  4940. #: protocols/luci-proto-xfrm/htdocs/luci-static/resources/protocol/xfrm.js:46
  4941. msgid "Optional. Maximum Transmission Unit of the XFRM interface."
  4942. msgstr ""
  4943. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:196
  4944. msgid "Optional. Maximum Transmission Unit of tunnel interface."
  4945. msgstr ""
  4946. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:678
  4947. msgid "Optional. Port of peer."
  4948. msgstr ""
  4949. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:590
  4950. msgid ""
  4951. "Optional. Private key of the WireGuard peer. The key is not required for "
  4952. "establishing a connection but allows generating a peer configuration or QR "
  4953. "code if available. It can be removed after the configuration has been "
  4954. "exported."
  4955. msgstr ""
  4956. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:683
  4957. msgid ""
  4958. "Optional. Seconds between keep alive messages. Default is 0 (disabled). "
  4959. "Recommended value if this device is behind a NAT is 25."
  4960. msgstr ""
  4961. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:176
  4962. msgid "Optional. UDP port used for outgoing and incoming packets."
  4963. msgstr ""
  4964. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:72
  4965. msgid "Options"
  4966. msgstr "Pilihan"
  4967. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:612
  4968. msgid ""
  4969. "Options for the Network-ID. (Note: needs also Network-ID.) E.g. "
  4970. "\"<code>42,192.168.1.4</code>\" for NTP server, \"<code>3,192.168.4.4</"
  4971. "code>\" for default route. <code>0.0.0.0</code> means \"the address of the "
  4972. "system running dnsmasq\"."
  4973. msgstr ""
  4974. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:125
  4975. msgid "Options:"
  4976. msgstr ""
  4977. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:665
  4978. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:697
  4979. msgid "Ordinal: lower comes first."
  4980. msgstr ""
  4981. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:55
  4982. msgid "Originator Interval"
  4983. msgstr ""
  4984. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:348
  4985. msgid "Other:"
  4986. msgstr ""
  4987. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:69
  4988. msgid "Out"
  4989. msgstr "Keluar"
  4990. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:277
  4991. msgid "Outbound:"
  4992. msgstr ""
  4993. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:101
  4994. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:106
  4995. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:103
  4996. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:108
  4997. msgid "Outgoing checksum"
  4998. msgstr ""
  4999. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:156
  5000. msgid "Outgoing interface"
  5001. msgstr ""
  5002. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:96
  5003. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:101
  5004. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:98
  5005. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:103
  5006. #: protocols/luci-proto-vti/htdocs/luci-static/resources/protocol/vti.js:68
  5007. msgid "Outgoing key"
  5008. msgstr ""
  5009. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:103
  5010. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:108
  5011. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:105
  5012. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:110
  5013. msgid "Outgoing serialization"
  5014. msgstr ""
  5015. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:50
  5016. msgid "Output Interface"
  5017. msgstr ""
  5018. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:59
  5019. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:165
  5020. msgid "Output zone"
  5021. msgstr ""
  5022. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:16
  5023. msgid "Overlap"
  5024. msgstr ""
  5025. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1021
  5026. msgid "Override IPv4 routing table"
  5027. msgstr ""
  5028. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1026
  5029. msgid "Override IPv6 routing table"
  5030. msgstr ""
  5031. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv_hardif.js:54
  5032. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:64
  5033. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:69
  5034. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:69
  5035. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:74
  5036. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:53
  5037. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:128
  5038. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:142
  5039. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:194
  5040. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:57
  5041. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:132
  5042. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:118
  5043. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:96
  5044. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:105
  5045. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:110
  5046. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:62
  5047. #: protocols/luci-proto-vti/htdocs/luci-static/resources/protocol/vti.js:55
  5048. msgid "Override MTU"
  5049. msgstr ""
  5050. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:74
  5051. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:79
  5052. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:63
  5053. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:67
  5054. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:62
  5055. msgid "Override TOS"
  5056. msgstr ""
  5057. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:69
  5058. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:74
  5059. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:74
  5060. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:79
  5061. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:58
  5062. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:62
  5063. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:57
  5064. msgid "Override TTL"
  5065. msgstr ""
  5066. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1161
  5067. msgid ""
  5068. "Override default MAC address - the range of usable addresses might be "
  5069. "limited by the driver"
  5070. msgstr ""
  5071. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1153
  5072. msgid "Override default interface name"
  5073. msgstr ""
  5074. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:167
  5075. msgid "Override the gateway in DHCP responses"
  5076. msgstr ""
  5077. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:708
  5078. msgid ""
  5079. "Override the netmask sent to clients. Normally it is calculated from the "
  5080. "subnet that is served."
  5081. msgstr ""
  5082. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:179
  5083. msgid "Override the table used for internal routes"
  5084. msgstr ""
  5085. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:3
  5086. msgid "Overview"
  5087. msgstr "Keseluruhan"
  5088. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2780
  5089. msgid "Overwrite existing file \"%s\" ?"
  5090. msgstr ""
  5091. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:355
  5092. msgid "Overwrite the current settings with the imported configuration?"
  5093. msgstr ""
  5094. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:98
  5095. msgid "Own Numbers"
  5096. msgstr ""
  5097. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:70
  5098. msgid "Owner"
  5099. msgstr "Pemilik"
  5100. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:78
  5101. msgid "PAP"
  5102. msgstr ""
  5103. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:77
  5104. msgid "PAP/CHAP"
  5105. msgstr ""
  5106. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:80
  5107. msgid "PAP/CHAP (both)"
  5108. msgstr ""
  5109. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:111
  5110. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:88
  5111. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:130
  5112. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:107
  5113. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:45
  5114. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:90
  5115. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:76
  5116. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:44
  5117. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:63
  5118. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:94
  5119. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:46
  5120. msgid "PAP/CHAP password"
  5121. msgstr ""
  5122. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:109
  5123. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:83
  5124. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:125
  5125. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:105
  5126. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:43
  5127. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:88
  5128. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:74
  5129. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:42
  5130. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:61
  5131. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:89
  5132. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:44
  5133. msgid "PAP/CHAP username"
  5134. msgstr ""
  5135. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:94
  5136. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:114
  5137. msgid "PDP Type"
  5138. msgstr ""
  5139. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:69
  5140. msgid "PID"
  5141. msgstr "PID"
  5142. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:106
  5143. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:73
  5144. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:76
  5145. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:102
  5146. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:79
  5147. msgid "PIN"
  5148. msgstr ""
  5149. #: modules/luci-base/htdocs/luci-static/resources/network.js:21
  5150. #: modules/luci-compat/luasrc/model/network.lua:39
  5151. msgid "PIN code rejected"
  5152. msgstr ""
  5153. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1597
  5154. msgid "PMK R1 Push"
  5155. msgstr ""
  5156. #: modules/luci-compat/luasrc/model/network/proto_ppp.lua:13
  5157. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:43
  5158. msgid "PPP"
  5159. msgstr ""
  5160. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:58
  5161. msgid "PPPoA Encapsulation"
  5162. msgstr "Pengkapsulan PPPoA"
  5163. #: modules/luci-compat/luasrc/model/network/proto_ppp.lua:19
  5164. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:28
  5165. msgid "PPPoATM"
  5166. msgstr "PPPoATM"
  5167. #: modules/luci-compat/luasrc/model/network/proto_ppp.lua:17
  5168. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:28
  5169. msgid "PPPoE"
  5170. msgstr "PPPoE"
  5171. #: modules/luci-compat/luasrc/model/network/proto_pppossh.lua:9
  5172. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:28
  5173. msgid "PPPoSSH"
  5174. msgstr "PPPoSSH"
  5175. #: modules/luci-compat/luasrc/model/network/proto_ppp.lua:15
  5176. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:28
  5177. msgid "PPtP"
  5178. msgstr ""
  5179. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:73
  5180. msgid "PSID offset"
  5181. msgstr ""
  5182. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:70
  5183. msgid "PSID-bits length"
  5184. msgstr ""
  5185. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:571
  5186. msgctxt "Label indicating that WireGuard peer uses a PSK"
  5187. msgid "PSK"
  5188. msgstr ""
  5189. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1580
  5190. msgid "PTM/EFM (Packet Transfer Mode)"
  5191. msgstr ""
  5192. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:266
  5193. msgid "PXE/TFTP Settings"
  5194. msgstr ""
  5195. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:103
  5196. msgid "Packet Service State"
  5197. msgstr ""
  5198. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1538
  5199. msgid "Packet Steering"
  5200. msgstr ""
  5201. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:25
  5202. msgctxt "nft meta mark"
  5203. msgid "Packet mark"
  5204. msgstr ""
  5205. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:27
  5206. msgctxt "nft meta time"
  5207. msgid "Packet receive time"
  5208. msgstr ""
  5209. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:54
  5210. msgid "Packets"
  5211. msgstr "Paket"
  5212. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:277
  5213. msgid "Packets To Transmit Before Moving To Next Slave"
  5214. msgstr ""
  5215. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:291
  5216. msgid "Part of network:"
  5217. msgid_plural "Part of networks:"
  5218. msgstr[0] ""
  5219. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:153
  5220. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1260
  5221. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:259
  5222. msgid "Part of zone %q"
  5223. msgstr ""
  5224. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:492
  5225. msgctxt "MACVLAN mode"
  5226. msgid "Pass-through (Mirror physical device to single MAC VLAN)"
  5227. msgstr ""
  5228. #: modules/luci-base/ucode/template/sysauth.ut:29
  5229. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1770
  5230. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:51
  5231. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:149
  5232. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:103
  5233. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:58
  5234. #: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:19
  5235. msgid "Password"
  5236. msgstr "Kata laluan"
  5237. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:25
  5238. msgid "Password authentication"
  5239. msgstr "Kata laluan pengesahan"
  5240. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1702
  5241. msgid "Password of Private Key"
  5242. msgstr "Kata Laluan Kunci Swasta"
  5243. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1760
  5244. msgid "Password of inner Private Key"
  5245. msgstr ""
  5246. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:31
  5247. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:33
  5248. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:35
  5249. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:37
  5250. msgid "Password strength"
  5251. msgstr ""
  5252. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:152
  5253. msgid "Password2"
  5254. msgstr ""
  5255. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:266
  5256. msgid "Paste or drag SSH key file…"
  5257. msgstr ""
  5258. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:444
  5259. msgid "Paste or drag WireGuard peer configuration (wg0.conf) file…"
  5260. msgstr ""
  5261. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:437
  5262. msgid ""
  5263. "Paste or drag a WireGuard configuration (commonly <em>wg0.conf</em>) from "
  5264. "another system below to create a matching peer entry allowing that system to "
  5265. "connect to the local WireGuard interface."
  5266. msgstr ""
  5267. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:443
  5268. msgid "Paste or drag supplied WireGuard configuration file…"
  5269. msgstr ""
  5270. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1681
  5271. msgid "Path to CA-Certificate"
  5272. msgstr "Path ke CA-Sijil"
  5273. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1696
  5274. msgid "Path to Client-Certificate"
  5275. msgstr ""
  5276. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1699
  5277. msgid "Path to Private Key"
  5278. msgstr "Path ke Kunci Swasta"
  5279. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1739
  5280. msgid "Path to inner CA-Certificate"
  5281. msgstr ""
  5282. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1754
  5283. msgid "Path to inner Client-Certificate"
  5284. msgstr ""
  5285. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1757
  5286. msgid "Path to inner Private Key"
  5287. msgstr ""
  5288. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2727
  5289. msgid "Paused"
  5290. msgstr ""
  5291. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:273
  5292. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:283
  5293. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:334
  5294. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:344
  5295. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:354
  5296. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:239
  5297. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:249
  5298. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:259
  5299. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:268
  5300. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:278
  5301. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:296
  5302. msgid "Peak:"
  5303. msgstr ""
  5304. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:74
  5305. msgid "Peer"
  5306. msgstr ""
  5307. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:51
  5308. msgid "Peer Details"
  5309. msgstr ""
  5310. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:89
  5311. msgid "Peer IP address to assign"
  5312. msgstr ""
  5313. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:667
  5314. msgid "Peer MAC address"
  5315. msgstr ""
  5316. #: modules/luci-base/htdocs/luci-static/resources/network.js:14
  5317. #: modules/luci-compat/luasrc/model/network.lua:32
  5318. msgid "Peer address is missing"
  5319. msgstr ""
  5320. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:648
  5321. msgid "Peer device name"
  5322. msgstr ""
  5323. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:513
  5324. msgid "Peer disabled"
  5325. msgstr ""
  5326. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:214
  5327. msgid "Peers"
  5328. msgstr ""
  5329. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:80
  5330. msgid "Perfect Forward Secrecy"
  5331. msgstr ""
  5332. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:103
  5333. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:108
  5334. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:105
  5335. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:110
  5336. msgid "Perform outgoing packets serialization (optional)."
  5337. msgstr ""
  5338. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:34
  5339. msgid "Perform reboot"
  5340. msgstr "Lakukan reboot"
  5341. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:406
  5342. msgid "Perform reset"
  5343. msgstr ""
  5344. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:407
  5345. msgid "Permission denied"
  5346. msgstr ""
  5347. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:683
  5348. msgid "Persistent Keep Alive"
  5349. msgstr ""
  5350. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:147
  5351. msgid "Persistent reconnect interval"
  5352. msgstr ""
  5353. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:334
  5354. msgid "PersistentKeepAlive setting is invalid"
  5355. msgstr ""
  5356. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:290
  5357. msgid "Phy Rate:"
  5358. msgstr ""
  5359. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:496
  5360. msgid "Physical Settings"
  5361. msgstr "Tetapan Fizikal"
  5362. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:87
  5363. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:88
  5364. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:98
  5365. msgid "Ping"
  5366. msgstr ""
  5367. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:49
  5368. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:50
  5369. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:84
  5370. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:85
  5371. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:138
  5372. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:64
  5373. msgid "Pkts."
  5374. msgstr "Pkts."
  5375. #: modules/luci-base/ucode/template/sysauth.ut:19
  5376. msgid "Please enter your username and password."
  5377. msgstr "Sila masukkan username dan kata laluan anda."
  5378. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4176
  5379. msgid "Please select the file to upload."
  5380. msgstr ""
  5381. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:54
  5382. msgid "Policy"
  5383. msgstr "Dasar"
  5384. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:594
  5385. msgctxt "Chain hook policy"
  5386. msgid "Policy: <strong>%h</strong> (%h)"
  5387. msgstr ""
  5388. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:660
  5389. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:21
  5390. msgid "Port"
  5391. msgstr "Port"
  5392. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:137
  5393. #, fuzzy
  5394. msgctxt "WireGuard listen port"
  5395. msgid "Port %d"
  5396. msgstr "Port"
  5397. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:293
  5398. msgid "Port is not part of any network"
  5399. msgstr ""
  5400. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:770
  5401. msgid "Port isolation"
  5402. msgstr ""
  5403. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:299
  5404. msgid "Port status"
  5405. msgstr ""
  5406. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:278
  5407. msgid "Port status:"
  5408. msgstr ""
  5409. #: modules/luci-base/htdocs/luci-static/resources/validation.js:516
  5410. msgid "Potential negation of: %s"
  5411. msgstr ""
  5412. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:89
  5413. msgid "Power State"
  5414. msgstr ""
  5415. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:78
  5416. msgid "Prefer LTE"
  5417. msgstr ""
  5418. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:79
  5419. msgid "Prefer UMTS"
  5420. msgstr ""
  5421. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:979
  5422. msgid "Preferred lifetime for a prefix."
  5423. msgstr ""
  5424. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:106
  5425. msgid "Preferred network technology"
  5426. msgstr ""
  5427. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:33
  5428. msgid "Prefix Delegated"
  5429. msgstr ""
  5430. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:192
  5431. msgid "Prefix suppressor"
  5432. msgstr ""
  5433. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:599
  5434. msgid "Preshared Key"
  5435. msgstr ""
  5436. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:570
  5437. msgid "Preshared key in use"
  5438. msgstr ""
  5439. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:308
  5440. msgid "PresharedKey setting is invalid"
  5441. msgstr ""
  5442. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:130
  5443. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:102
  5444. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:88
  5445. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:62
  5446. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:75
  5447. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:98
  5448. msgid ""
  5449. "Presume peer to be dead after given amount of LCP echo failures, use 0 to "
  5450. "ignore failures"
  5451. msgstr ""
  5452. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1149
  5453. msgid "Prevents client-to-client communication"
  5454. msgstr "Mencegah komunikasi sesama Pelanggan"
  5455. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:61
  5456. msgid ""
  5457. "Prevents one wireless client to talk to another. This setting only affects "
  5458. "packets without any VLAN tag (untagged packets)."
  5459. msgstr ""
  5460. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:213
  5461. msgid "Primary Slave"
  5462. msgstr ""
  5463. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:230
  5464. msgid ""
  5465. "Primary becomes active slave when it comes back up if speed and duplex "
  5466. "better than current slave (better, 1)"
  5467. msgstr ""
  5468. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:229
  5469. msgid "Primary becomes active slave whenever it comes back up (always, 0)"
  5470. msgstr ""
  5471. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:562
  5472. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:665
  5473. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:697
  5474. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:130
  5475. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:197
  5476. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:223
  5477. msgid "Priority"
  5478. msgstr ""
  5479. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:565
  5480. msgctxt "Label indicating that WireGuard peer private key is stored"
  5481. msgid "Private"
  5482. msgstr ""
  5483. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:490
  5484. msgctxt "MACVLAN mode"
  5485. msgid "Private (Prevent communication between MAC VLANs)"
  5486. msgstr ""
  5487. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:151
  5488. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:590
  5489. msgid "Private Key"
  5490. msgstr ""
  5491. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:564
  5492. msgid "Private key present"
  5493. msgstr ""
  5494. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:296
  5495. msgid "PrivateKey setting is missing or invalid"
  5496. msgstr ""
  5497. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:64
  5498. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:93
  5499. msgid "Processes"
  5500. msgstr "Proses"
  5501. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:67
  5502. msgid "Prot."
  5503. msgstr "Prot."
  5504. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:80
  5505. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:571
  5506. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1180
  5507. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:384
  5508. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:32
  5509. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:191
  5510. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:217
  5511. msgid "Protocol"
  5512. msgstr "Protokol"
  5513. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:282
  5514. msgid "Provide NTP server"
  5515. msgstr ""
  5516. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:930
  5517. msgid ""
  5518. "Provide a DHCPv6 server on this interface and reply to DHCPv6 solicitations "
  5519. "and requests."
  5520. msgstr ""
  5521. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:877
  5522. msgid "Provide new network"
  5523. msgstr ""
  5524. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:288
  5525. msgid ""
  5526. "Provide the NTP server to the selected interface or, if unspecified, to all "
  5527. "interfaces"
  5528. msgstr ""
  5529. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:155
  5530. msgid "Proxy Server"
  5531. msgstr ""
  5532. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1653
  5533. msgid "ProxyARP"
  5534. msgstr ""
  5535. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1072
  5536. msgid "Pseudo Ad-Hoc (ahdemo)"
  5537. msgstr "Pseudo Ad-Hoc (ahdemo)"
  5538. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:158
  5539. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:585
  5540. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:37
  5541. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:54
  5542. msgid "Public Key"
  5543. msgstr ""
  5544. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:547
  5545. msgid "Public key is missing"
  5546. msgstr ""
  5547. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:556
  5548. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:101
  5549. msgctxt "Tooltip displaying full WireGuard peer public key"
  5550. msgid "Public key: %h"
  5551. msgstr ""
  5552. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:290
  5553. msgid ""
  5554. "Public keys allow for the passwordless SSH logins with a higher security "
  5555. "compared to the use of plain passwords. In order to upload a new key to the "
  5556. "device, paste an OpenSSH compatible public key line or drag a <code>.pub</"
  5557. "code> file into the input field."
  5558. msgstr ""
  5559. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:192
  5560. msgid "Public prefix routed to this device for distribution to clients."
  5561. msgstr ""
  5562. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:305
  5563. msgid "PublicKey setting is invalid"
  5564. msgstr ""
  5565. #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:9
  5566. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:27
  5567. msgid "QMI Cellular"
  5568. msgstr ""
  5569. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:146
  5570. msgid "Quality"
  5571. msgstr ""
  5572. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:514
  5573. msgid "Query all available upstream resolvers."
  5574. msgstr ""
  5575. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:610
  5576. msgid "Query interval"
  5577. msgstr ""
  5578. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:615
  5579. msgid "Query response interval"
  5580. msgstr ""
  5581. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1585
  5582. msgid "R0 Key Lifetime"
  5583. msgstr ""
  5584. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1591
  5585. msgid "R1 Key Holder"
  5586. msgstr ""
  5587. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1425
  5588. msgid "RADIUS Accounting Port"
  5589. msgstr ""
  5590. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1431
  5591. msgid "RADIUS Accounting Secret"
  5592. msgstr ""
  5593. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1420
  5594. msgid "RADIUS Accounting Server"
  5595. msgstr ""
  5596. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1409
  5597. msgid "RADIUS Authentication Port"
  5598. msgstr ""
  5599. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1415
  5600. msgid "RADIUS Authentication Secret"
  5601. msgstr ""
  5602. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1404
  5603. msgid "RADIUS Authentication Server"
  5604. msgstr ""
  5605. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1437
  5606. msgid "RADIUS Dynamic VLAN Assignment"
  5607. msgstr ""
  5608. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1446
  5609. msgid "RADIUS Per STA VLAN"
  5610. msgstr ""
  5611. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1463
  5612. msgid "RADIUS VLAN Bridge Naming Scheme"
  5613. msgstr ""
  5614. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1450
  5615. msgid "RADIUS VLAN Naming"
  5616. msgstr ""
  5617. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1453
  5618. msgid "RADIUS VLAN Tagged Interface"
  5619. msgstr ""
  5620. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:88
  5621. msgid "RFC3947 NAT-T mode"
  5622. msgstr ""
  5623. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1485
  5624. msgid "RSN Preauth"
  5625. msgstr ""
  5626. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:998
  5627. msgid "RSSI threshold for joining"
  5628. msgstr ""
  5629. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:961
  5630. msgid "RTS/CTS Threshold"
  5631. msgstr "RTS/CTS-Ambang"
  5632. # Ein / Aus, eingehend / ausgehend?
  5633. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:49
  5634. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:84
  5635. msgid "RX"
  5636. msgstr "RX"
  5637. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:236
  5638. msgid "RX Rate"
  5639. msgstr ""
  5640. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2260
  5641. msgid "RX Rate / TX Rate"
  5642. msgstr ""
  5643. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1614
  5644. msgid ""
  5645. "Radio Resource Measurement - Sends beacons to assist roaming. Not all "
  5646. "clients support this."
  5647. msgstr ""
  5648. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:61
  5649. msgctxt "nft nat flag random"
  5650. msgid "Randomize source port mapping"
  5651. msgstr ""
  5652. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:88
  5653. msgid "Raw hex-encoded bytes. Leave empty unless your ISP require this"
  5654. msgstr ""
  5655. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:420
  5656. msgid "Read <code>/etc/ethers</code> to configure the DHCP server."
  5657. msgstr "Baca /etc/ethers untuk mengkonfigurasikan DHCP-Server"
  5658. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:576
  5659. msgid "Really switch protocol?"
  5660. msgstr ""
  5661. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:118
  5662. msgid "Realtime Graphs"
  5663. msgstr ""
  5664. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1568
  5665. msgid "Reassociation Deadline"
  5666. msgstr ""
  5667. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:312
  5668. msgid "Rebind protection"
  5669. msgstr ""
  5670. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:20
  5671. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:140
  5672. msgid "Reboot"
  5673. msgstr "Reboot"
  5674. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:153
  5675. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:162
  5676. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:46
  5677. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:51
  5678. msgid "Rebooting…"
  5679. msgstr ""
  5680. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:21
  5681. msgid "Reboots the operating system of your device"
  5682. msgstr "Reboot sistem operasi peranti anda"
  5683. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:26
  5684. msgid "Receive"
  5685. msgstr "Menerima"
  5686. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:243
  5687. msgid "Receive dropped"
  5688. msgstr ""
  5689. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:242
  5690. msgid "Receive errors"
  5691. msgstr ""
  5692. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:57
  5693. #, fuzzy
  5694. msgid "Received Data"
  5695. msgstr "Menerima"
  5696. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:239
  5697. msgid "Received bytes"
  5698. msgstr ""
  5699. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:241
  5700. msgid "Received multicast"
  5701. msgstr ""
  5702. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:240
  5703. msgid "Received packets"
  5704. msgstr ""
  5705. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:181
  5706. msgid "Recommended. IP addresses of the WireGuard interface."
  5707. msgstr ""
  5708. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:199
  5709. msgid "Reconnect Timeout"
  5710. msgstr ""
  5711. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:521
  5712. msgid "Reconnect this interface"
  5713. msgstr ""
  5714. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/uhttpd.js:14
  5715. msgid "Redirect to HTTPS"
  5716. msgstr ""
  5717. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:118
  5718. msgctxt "nft redirect to port"
  5719. msgid "Redirect to local port <strong>%h</strong>"
  5720. msgstr ""
  5721. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:117
  5722. msgctxt "nft redirect"
  5723. msgid "Redirect to local system"
  5724. msgstr ""
  5725. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:57
  5726. msgid "References"
  5727. msgstr "Rujukan"
  5728. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:373
  5729. msgid "Refresh Channels"
  5730. msgstr ""
  5731. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2721
  5732. msgid "Refreshing"
  5733. msgstr ""
  5734. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:102
  5735. msgid "Registration State"
  5736. msgstr ""
  5737. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:101
  5738. msgctxt "nft reject with icmp type"
  5739. msgid "Reject IPv4 packet with <strong>ICMP type %h</strong>"
  5740. msgstr ""
  5741. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:103
  5742. msgctxt "nft reject with icmpx type"
  5743. msgid "Reject packet with <strong>ICMP type %h</strong>"
  5744. msgstr ""
  5745. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:102
  5746. msgctxt "nft reject with icmpv6 type"
  5747. msgid "Reject packet with <strong>ICMPv6 type %h</strong>"
  5748. msgstr ""
  5749. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:100
  5750. msgctxt "nft reject with tcp reset"
  5751. msgid "Reject packet with <strong>TCP reset</strong>"
  5752. msgstr ""
  5753. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:192
  5754. msgid ""
  5755. "Reject routing decisions that have a prefix length less than or equal to the "
  5756. "specified value"
  5757. msgstr ""
  5758. #: modules/luci-compat/luasrc/model/network/proto_relay.lua:153
  5759. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:262
  5760. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:692
  5761. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:39
  5762. msgid "Relay"
  5763. msgstr ""
  5764. #: modules/luci-compat/luasrc/model/network/proto_relay.lua:157
  5765. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:36
  5766. msgid "Relay Bridge"
  5767. msgstr ""
  5768. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:355
  5769. msgid "Relay DHCP requests elsewhere. OK: v4↔v4, v6↔v6. Not OK: v4↔v6, v6↔v4."
  5770. msgstr ""
  5771. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:154
  5772. msgid "Relay between networks"
  5773. msgstr ""
  5774. #: modules/luci-compat/luasrc/model/network/proto_relay.lua:12
  5775. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:64
  5776. msgid "Relay bridge"
  5777. msgstr ""
  5778. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:367
  5779. msgid "Relay from"
  5780. msgstr ""
  5781. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:387
  5782. msgid "Relay to address"
  5783. msgstr ""
  5784. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:50
  5785. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:49
  5786. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:40
  5787. msgid "Remote IPv4 address"
  5788. msgstr ""
  5789. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:42
  5790. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:42
  5791. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:40
  5792. #: protocols/luci-proto-vti/htdocs/luci-static/resources/protocol/vti.js:40
  5793. msgid "Remote IPv4 address or FQDN"
  5794. msgstr ""
  5795. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:40
  5796. msgid "Remote IPv6 address"
  5797. msgstr ""
  5798. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:42
  5799. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:42
  5800. msgid "Remote IPv6 address or FQDN"
  5801. msgstr ""
  5802. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:901
  5803. msgid "Remove"
  5804. msgstr "Menghapuskan"
  5805. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:474
  5806. msgid "Remove IPv4 addresses from the results and only return IPv6 addresses."
  5807. msgstr ""
  5808. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:468
  5809. msgid "Remove IPv6 addresses from the results and only return IPv4 addresses."
  5810. msgstr ""
  5811. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1361
  5812. msgid "Remove related device settings from the configuration"
  5813. msgstr ""
  5814. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2102
  5815. msgid "Replace wireless configuration"
  5816. msgstr ""
  5817. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:17
  5818. msgid "Request IPv6-address"
  5819. msgstr ""
  5820. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:23
  5821. msgid "Request IPv6-prefix of length"
  5822. msgstr ""
  5823. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:408
  5824. msgid "Request timeout"
  5825. msgstr ""
  5826. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:100
  5827. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:105
  5828. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:102
  5829. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:107
  5830. msgid "Require incoming checksum (optional)."
  5831. msgstr ""
  5832. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:102
  5833. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:107
  5834. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:104
  5835. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:109
  5836. msgid "Require incoming packets serialization (optional)."
  5837. msgstr ""
  5838. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1441
  5839. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1780
  5840. msgid "Required"
  5841. msgstr ""
  5842. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34
  5843. msgid "Required for certain ISPs, e.g. Charter with DOCSIS 3"
  5844. msgstr ""
  5845. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:151
  5846. msgid "Required. Base64-encoded private key for this interface."
  5847. msgstr ""
  5848. #: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:40
  5849. msgid "Required. Path to the .yml config file for this interface."
  5850. msgstr ""
  5851. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:585
  5852. msgid "Required. Public key of the WireGuard peer."
  5853. msgstr ""
  5854. #: protocols/luci-proto-xfrm/htdocs/luci-static/resources/protocol/xfrm.js:42
  5855. msgid "Required. Underlying interface."
  5856. msgstr ""
  5857. #: protocols/luci-proto-xfrm/htdocs/luci-static/resources/protocol/xfrm.js:39
  5858. msgid "Required. XFRM interface ID to be used for SA."
  5859. msgstr ""
  5860. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1437
  5861. msgid ""
  5862. "Required: Rejects auth if RADIUS server does not provide appropriate VLAN "
  5863. "attributes."
  5864. msgstr ""
  5865. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1320
  5866. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1321
  5867. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1322
  5868. msgid "Requires hostapd"
  5869. msgstr ""
  5870. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1327
  5871. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1328
  5872. msgid "Requires hostapd with EAP Suite-B support"
  5873. msgstr ""
  5874. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1325
  5875. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1326
  5876. msgid "Requires hostapd with EAP support"
  5877. msgstr ""
  5878. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1329
  5879. msgid "Requires hostapd with OWE support"
  5880. msgstr ""
  5881. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1323
  5882. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1324
  5883. msgid "Requires hostapd with SAE support"
  5884. msgstr ""
  5885. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1318
  5886. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1319
  5887. msgid "Requires hostapd with WEP support"
  5888. msgstr ""
  5889. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1334
  5890. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1335
  5891. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1336
  5892. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1348
  5893. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1349
  5894. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1350
  5895. msgid "Requires wpa-supplicant"
  5896. msgstr ""
  5897. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1341
  5898. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1342
  5899. msgid "Requires wpa-supplicant with EAP Suite-B support"
  5900. msgstr ""
  5901. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1339
  5902. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1340
  5903. msgid "Requires wpa-supplicant with EAP support"
  5904. msgstr ""
  5905. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1343
  5906. msgid "Requires wpa-supplicant with OWE support"
  5907. msgstr ""
  5908. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1337
  5909. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1338
  5910. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1353
  5911. msgid "Requires wpa-supplicant with SAE support"
  5912. msgstr ""
  5913. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1332
  5914. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1333
  5915. msgid "Requires wpa-supplicant with WEP support"
  5916. msgstr ""
  5917. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:226
  5918. msgid "Reselection policy for primary slave"
  5919. msgstr ""
  5920. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2197
  5921. #: modules/luci-base/ucode/template/sysauth.ut:39
  5922. #: modules/luci-compat/luasrc/view/cbi/delegator.htm:17
  5923. #: modules/luci-compat/luasrc/view/cbi/footer.htm:30
  5924. #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:66
  5925. msgid "Reset"
  5926. msgstr "Reset"
  5927. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:343
  5928. msgid "Reset Counters"
  5929. msgstr "Reset Loket"
  5930. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:404
  5931. msgid "Reset to defaults"
  5932. msgstr ""
  5933. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:259
  5934. msgid "Resolv and Hosts Files"
  5935. msgstr ""
  5936. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:431
  5937. msgid "Resolv file"
  5938. msgstr ""
  5939. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:298
  5940. msgid "Resolve specified FQDNs to an IP."
  5941. msgstr ""
  5942. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:405
  5943. msgid "Resource not found"
  5944. msgstr ""
  5945. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:523
  5946. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:869
  5947. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:100
  5948. msgid "Restart"
  5949. msgstr ""
  5950. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:348
  5951. msgid "Restart Firewall"
  5952. msgstr "Restart Firewall"
  5953. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:867
  5954. msgid "Restart radio interface"
  5955. msgstr ""
  5956. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:400
  5957. msgid "Restore"
  5958. msgstr "Mengembalikan"
  5959. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:410
  5960. msgid "Restore backup"
  5961. msgstr "Kembalikan sandaran"
  5962. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:479
  5963. msgid ""
  5964. "Return answers to DNS queries matching the subnet from which the query was "
  5965. "received if multiple IPs are available."
  5966. msgstr ""
  5967. #: modules/luci-base/htdocs/luci-static/resources/ui.js:386
  5968. #: modules/luci-base/htdocs/luci-static/resources/ui.js:387
  5969. msgid "Reveal/hide password"
  5970. msgstr ""
  5971. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:679
  5972. msgid "Reverse path filter"
  5973. msgstr ""
  5974. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4467
  5975. msgid "Revert"
  5976. msgstr "Kembali"
  5977. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4572
  5978. msgid "Revert changes"
  5979. msgstr ""
  5980. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4784
  5981. msgid "Revert request failed with status <code>%h</code>"
  5982. msgstr ""
  5983. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4764
  5984. msgid "Reverting configuration…"
  5985. msgstr ""
  5986. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:84
  5987. msgid "Revision"
  5988. msgstr ""
  5989. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:111
  5990. msgctxt "nft dnat ip to addr"
  5991. msgid "Rewrite destination to <strong>%h</strong>"
  5992. msgstr ""
  5993. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:114
  5994. msgctxt "nft dnat ip6 to addr"
  5995. msgid "Rewrite destination to <strong>%h</strong>"
  5996. msgstr ""
  5997. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:112
  5998. msgctxt "nft dnat ip to addr:port"
  5999. msgid "Rewrite destination to <strong>%h</strong>, port <strong>%h</strong>"
  6000. msgstr ""
  6001. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:115
  6002. msgctxt "nft dnat ip6 to addr:port"
  6003. msgid "Rewrite destination to <strong>%h</strong>, port <strong>%h</strong>"
  6004. msgstr ""
  6005. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:105
  6006. msgctxt "nft snat ip to addr"
  6007. msgid "Rewrite source to <strong>%h</strong>"
  6008. msgstr ""
  6009. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:108
  6010. msgctxt "nft snat ip6 to addr"
  6011. msgid "Rewrite source to <strong>%h</strong>"
  6012. msgstr ""
  6013. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:106
  6014. msgctxt "nft snat ip to addr:port"
  6015. msgid "Rewrite source to <strong>%h</strong>, port <strong>%h</strong>"
  6016. msgstr ""
  6017. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:109
  6018. msgctxt "nft snat ip6 to addr:port"
  6019. msgid "Rewrite source to <strong>%h</strong>, port <strong>%h</strong>"
  6020. msgstr ""
  6021. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:120
  6022. msgid "Rewrite to egress device address"
  6023. msgstr ""
  6024. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1485
  6025. msgid ""
  6026. "Robust Security Network (RSN): Allow roaming preauth for WPA2-EAP networks "
  6027. "(and advertise it in WLAN beacons). Only works if the specified network "
  6028. "interface is a bridge. Shortens the time-critical reassociation process."
  6029. msgstr ""
  6030. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:605
  6031. msgid "Robustness"
  6032. msgstr ""
  6033. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:572
  6034. msgid ""
  6035. "Root directory for files served via TFTP. <em>Enable TFTP server</em> and "
  6036. "<em>TFTP server root</em> turn on the TFTP server and serve files from "
  6037. "<em>TFTP server root</em>."
  6038. msgstr ""
  6039. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:298
  6040. msgid "Root preparation"
  6041. msgstr ""
  6042. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:204
  6043. msgid "Round-Robin policy (balance-rr, 0)"
  6044. msgstr ""
  6045. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:659
  6046. msgid "Route Allowed IPs"
  6047. msgstr ""
  6048. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:532
  6049. msgid "Route action chain \"%h\""
  6050. msgstr ""
  6051. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:46
  6052. msgid "Route type"
  6053. msgstr ""
  6054. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:879
  6055. msgid ""
  6056. "Router Lifetime published in <abbr title=\"Router Advertisement, ICMPv6 Type "
  6057. "134\">RA</abbr> messages. Maximum is 9000 seconds."
  6058. msgstr ""
  6059. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:46
  6060. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:26
  6061. msgid "Router Password"
  6062. msgstr ""
  6063. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:28
  6064. #: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:50
  6065. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:248
  6066. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:15
  6067. msgid "Routing"
  6068. msgstr ""
  6069. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:44
  6070. msgid "Routing Algorithm"
  6071. msgstr ""
  6072. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:28
  6073. msgid ""
  6074. "Routing defines over which interface and gateway a certain host or network "
  6075. "can be reached."
  6076. msgstr ""
  6077. "Laluan menentukan di mana interface dan gateway host atau rangkaian tertentu "
  6078. "yang boleh dicapai."
  6079. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:218
  6080. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:198
  6081. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:224
  6082. msgid "Rule"
  6083. msgstr ""
  6084. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:602
  6085. msgid "Rule actions"
  6086. msgstr ""
  6087. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:475
  6088. msgctxt "nft comment"
  6089. msgid "Rule comment: %s"
  6090. msgstr ""
  6091. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:540
  6092. msgid "Rule container chain \"%h\""
  6093. msgstr ""
  6094. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:601
  6095. msgid "Rule matches"
  6096. msgstr ""
  6097. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:137
  6098. msgid "Rule type"
  6099. msgstr ""
  6100. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:336
  6101. msgid "Run a filesystem check before mounting the device"
  6102. msgstr ""
  6103. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:336
  6104. msgid "Run filesystem check"
  6105. msgstr ""
  6106. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2360
  6107. msgid "Runtime error"
  6108. msgstr ""
  6109. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:224
  6110. msgid "SHA256"
  6111. msgstr ""
  6112. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:145
  6113. msgid "SIM %d"
  6114. msgstr ""
  6115. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:147
  6116. msgid "SIMs"
  6117. msgstr ""
  6118. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:59
  6119. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:280
  6120. msgid "SNR"
  6121. msgstr ""
  6122. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:263
  6123. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:650
  6124. msgid "SRV"
  6125. msgstr ""
  6126. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:10
  6127. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:38
  6128. msgid "SSH Access"
  6129. msgstr ""
  6130. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:70
  6131. msgid "SSH server address"
  6132. msgstr ""
  6133. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:74
  6134. msgid "SSH server port"
  6135. msgstr ""
  6136. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:58
  6137. msgid "SSH username"
  6138. msgstr ""
  6139. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:289
  6140. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:51
  6141. msgid "SSH-Keys"
  6142. msgstr ""
  6143. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:156
  6144. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:181
  6145. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1838
  6146. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:401
  6147. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:147
  6148. msgid "SSID"
  6149. msgstr "SSID"
  6150. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:9
  6151. msgid "SSTP"
  6152. msgstr ""
  6153. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:41
  6154. msgid "SSTP Server"
  6155. msgstr ""
  6156. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:340
  6157. msgid "SWAP"
  6158. msgstr ""
  6159. #: modules/luci-base/htdocs/luci-static/resources/form.js:3274
  6160. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2192
  6161. #: modules/luci-compat/luasrc/view/cbi/error.htm:17
  6162. #: modules/luci-compat/luasrc/view/cbi/footer.htm:26
  6163. #: modules/luci-compat/luasrc/view/cbi/header.htm:20
  6164. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:463
  6165. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:123
  6166. msgid "Save"
  6167. msgstr "Simpan"
  6168. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2174
  6169. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4455
  6170. #: modules/luci-compat/luasrc/view/cbi/footer.htm:22
  6171. msgid "Save & Apply"
  6172. msgstr "Simpan & Melaksanakan"
  6173. #: modules/luci-base/htdocs/luci-static/resources/form.js:607
  6174. msgid "Save error"
  6175. msgstr ""
  6176. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:434
  6177. msgid "Save mtdblock"
  6178. msgstr ""
  6179. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:424
  6180. msgid "Save mtdblock contents"
  6181. msgstr ""
  6182. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:874
  6183. msgid "Scan"
  6184. msgstr "Scan"
  6185. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/crontab.js:28
  6186. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:90
  6187. msgid "Scheduled Tasks"
  6188. msgstr "Tugas Jadual"
  6189. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:39
  6190. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:62
  6191. msgid "Section %s is empty."
  6192. msgstr ""
  6193. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4441
  6194. msgid "Section added"
  6195. msgstr ""
  6196. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4443
  6197. msgid "Section removed"
  6198. msgstr ""
  6199. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:332
  6200. msgid "See \"mount\" manpage for details"
  6201. msgstr "Rujuk \"mount\" laman manual untuk detail"
  6202. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:283
  6203. msgid ""
  6204. "Select 'Force upgrade' to flash the image even if the image format check "
  6205. "fails. Use only if you are sure that the firmware is correct and meant for "
  6206. "your device!"
  6207. msgstr ""
  6208. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2681
  6209. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2821
  6210. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2981
  6211. msgid "Select file…"
  6212. msgstr ""
  6213. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:320
  6214. msgid "Selects the transmit hash policy to use for slave selection"
  6215. msgstr ""
  6216. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:808
  6217. msgid ""
  6218. "Send <abbr title=\"Router Advertisement, ICMPv6 Type 134\">RA</abbr> "
  6219. "messages advertising this device as IPv6 router."
  6220. msgstr ""
  6221. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:704
  6222. msgid "Send ICMP redirects"
  6223. msgstr ""
  6224. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:143
  6225. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:115
  6226. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:101
  6227. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:75
  6228. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:88
  6229. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:111
  6230. msgid ""
  6231. "Send LCP echo requests at the given interval in seconds, only effective in "
  6232. "conjunction with failure threshold"
  6233. msgstr ""
  6234. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:24
  6235. msgid "Send the hostname of this device"
  6236. msgstr ""
  6237. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:89
  6238. msgid "Server"
  6239. msgstr ""
  6240. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:605
  6241. msgid "Server address"
  6242. msgstr ""
  6243. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:599
  6244. msgid "Server name"
  6245. msgstr ""
  6246. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:50
  6247. msgid "Service Name"
  6248. msgstr ""
  6249. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:88
  6250. msgid "Service Type"
  6251. msgstr ""
  6252. #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:36
  6253. msgid "Services"
  6254. msgstr "Perkhidmatan"
  6255. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2664
  6256. msgid "Session expired"
  6257. msgstr ""
  6258. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:126
  6259. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:175
  6260. msgid "Set Static"
  6261. msgstr ""
  6262. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:703
  6263. msgid "Set an alias for a hostname."
  6264. msgstr ""
  6265. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:122
  6266. msgctxt "nft mangle"
  6267. msgid "Set header field <var>%s</var> to <strong>%s</strong>"
  6268. msgstr ""
  6269. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:975
  6270. msgid "Set interface as NDP-Proxy external slave. Default is off."
  6271. msgstr ""
  6272. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1299
  6273. msgid ""
  6274. "Set interface properties regardless of the link carrier (If set, carrier "
  6275. "sense events do not invoke hotplug handlers)."
  6276. msgstr ""
  6277. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:302
  6278. msgid "Set same MAC Address to all slaves"
  6279. msgstr ""
  6280. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:826
  6281. msgid ""
  6282. "Set the autonomous address-configuration flag in the prefix information "
  6283. "options of sent <abbr title=\"Router Advertisement\">RA</abbr> messages. "
  6284. "When enabled, clients will perform stateless IPv6 address autoconfiguration."
  6285. msgstr ""
  6286. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:736
  6287. msgid ""
  6288. "Set this interface as master for RA and DHCPv6 relaying as well as NDP "
  6289. "proxying."
  6290. msgstr ""
  6291. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:306
  6292. msgid "Set to currently active slave (active, 1)"
  6293. msgstr ""
  6294. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:307
  6295. msgid "Set to first slave added to the bond (follow, 2)"
  6296. msgstr ""
  6297. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:663
  6298. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:679
  6299. msgid "Set up DHCP Server"
  6300. msgstr ""
  6301. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:970
  6302. msgid "Set up routes for proxied IPv6 neighbours."
  6303. msgstr ""
  6304. #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:55
  6305. #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:55
  6306. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:23
  6307. msgid "Setting PLMN failed"
  6308. msgstr ""
  6309. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:68
  6310. msgid "Setting operation mode failed"
  6311. msgstr ""
  6312. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:87
  6313. msgid "Setting the allowed network technology."
  6314. msgstr ""
  6315. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:107
  6316. msgid "Setting the preferred network technology."
  6317. msgstr ""
  6318. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/uhttpd.js:11
  6319. msgid "Settings"
  6320. msgstr ""
  6321. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:983
  6322. msgid ""
  6323. "Settings for assisting wireless clients in roaming between multiple APs: "
  6324. "802.11r, 802.11k and 802.11v"
  6325. msgstr ""
  6326. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:210
  6327. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:39
  6328. msgid "Short GI"
  6329. msgstr ""
  6330. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1166
  6331. msgid "Short Preamble"
  6332. msgstr ""
  6333. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:470
  6334. msgid "Show current backup file list"
  6335. msgstr ""
  6336. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:293
  6337. msgid "Show empty chains"
  6338. msgstr ""
  6339. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:276
  6340. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:338
  6341. msgid "Show raw counters"
  6342. msgstr ""
  6343. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:527
  6344. msgid "Shutdown this interface"
  6345. msgstr ""
  6346. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:57
  6347. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:63
  6348. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:186
  6349. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1837
  6350. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:42
  6351. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:400
  6352. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:146
  6353. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:235
  6354. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:278
  6355. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:284
  6356. msgid "Signal"
  6357. msgstr "Isyarat"
  6358. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2259
  6359. msgid "Signal / Noise"
  6360. msgstr ""
  6361. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:104
  6362. msgid "Signal Quality"
  6363. msgstr ""
  6364. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:146
  6365. msgid "Signal Refresh Rate"
  6366. msgstr ""
  6367. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:262
  6368. msgid "Signal:"
  6369. msgstr ""
  6370. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4194
  6371. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:222
  6372. msgid "Size"
  6373. msgstr "Saiz"
  6374. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:559
  6375. msgid "Size of DNS query cache"
  6376. msgstr ""
  6377. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:208
  6378. msgid "Size of the ZRam device in megabytes"
  6379. msgstr ""
  6380. #: modules/luci-compat/luasrc/view/cbi/footer.htm:18
  6381. #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:57
  6382. msgid "Skip"
  6383. msgstr "Skip"
  6384. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:257
  6385. msgid "Skip from backup files that are equal to those in /rom"
  6386. msgstr ""
  6387. #: themes/luci-theme-librecmc-2020/ucode/template/themes/librecmc2020/header.ut:35
  6388. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:46
  6389. msgid "Skip to content"
  6390. msgstr "Skip ke kadar"
  6391. #: themes/luci-theme-librecmc-2020/ucode/template/themes/librecmc2020/header.ut:34
  6392. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:45
  6393. msgid "Skip to navigation"
  6394. msgstr "Skip ke navigation"
  6395. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:180
  6396. msgid "Slave Interfaces"
  6397. msgstr ""
  6398. #: modules/luci-base/htdocs/luci-static/resources/network.js:3002
  6399. #: modules/luci-compat/luasrc/model/network.lua:1428
  6400. msgid "Software VLAN"
  6401. msgstr ""
  6402. #: modules/luci-compat/luasrc/view/cbi/header.htm:5
  6403. msgid "Some fields are invalid, cannot save values!"
  6404. msgstr ""
  6405. #: modules/luci-base/ucode/template/error404.ut:10
  6406. msgid "Sorry, the object you requested was not found."
  6407. msgstr ""
  6408. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:442
  6409. msgid ""
  6410. "Sorry, there is no sysupgrade support present; a new firmware image must be "
  6411. "flashed manually. Please refer to the wiki for device specific install "
  6412. "instructions."
  6413. msgstr ""
  6414. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:100
  6415. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:149
  6416. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:385
  6417. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:70
  6418. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:214
  6419. msgid "Source"
  6420. msgstr "Sumber"
  6421. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:43
  6422. msgctxt "nft ip saddr"
  6423. msgid "Source IP"
  6424. msgstr ""
  6425. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:47
  6426. msgctxt "nft ip6 saddr"
  6427. msgid "Source IPv6"
  6428. msgstr ""
  6429. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57
  6430. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:57
  6431. msgid "Source interface"
  6432. msgstr ""
  6433. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:45
  6434. msgctxt "nft ip sport"
  6435. msgid "Source port"
  6436. msgstr ""
  6437. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:586
  6438. msgid ""
  6439. "Special <abbr title=\"Preboot eXecution Environment\">PXE</abbr> boot "
  6440. "options for Dnsmasq."
  6441. msgstr ""
  6442. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:953
  6443. msgid ""
  6444. "Specifies a fixed list of DNS search domains to announce via DHCPv6. If left "
  6445. "unspecified, the local device DNS search domain will be announced."
  6446. msgstr ""
  6447. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:937
  6448. msgid ""
  6449. "Specifies a fixed list of IPv6 DNS server addresses to announce via DHCPv6. "
  6450. "If left unspecified, the device will announce itself as IPv6 DNS server "
  6451. "unless the <em>Local IPv6 DNS server</em> option is disabled."
  6452. msgstr ""
  6453. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:187
  6454. msgid ""
  6455. "Specifies an individual UID or range of UIDs to match, e.g. 1000 to match "
  6456. "corresponding UID or 1000-1005 to inclusively match all UIDs within the "
  6457. "corresponding range"
  6458. msgstr ""
  6459. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:343
  6460. msgid ""
  6461. "Specifies that duplicate frames (received on inactive ports) should be "
  6462. "dropped or delivered"
  6463. msgstr ""
  6464. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:359
  6465. msgid "Specifies the ARP link monitoring frequency in milliseconds"
  6466. msgstr ""
  6467. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:367
  6468. msgid "Specifies the IP addresses to use for ARP monitoring"
  6469. msgstr ""
  6470. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:396
  6471. msgid "Specifies the MII link monitoring frequency in milliseconds"
  6472. msgstr ""
  6473. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:182
  6474. msgid "Specifies the TOS value to match in IP headers"
  6475. msgstr ""
  6476. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:261
  6477. msgid "Specifies the aggregation selection logic to use"
  6478. msgstr ""
  6479. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:160
  6480. msgid "Specifies the destination subnet to match (CIDR notation)"
  6481. msgstr ""
  6482. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:293
  6483. msgid "Specifies the directory the device is attached to"
  6484. msgstr ""
  6485. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:832
  6486. msgid ""
  6487. "Specifies the flags sent in <abbr title=\"Router Advertisement\">RA</abbr> "
  6488. "messages, for example to instruct clients to request further information via "
  6489. "stateful DHCPv6."
  6490. msgstr ""
  6491. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:177
  6492. msgid ""
  6493. "Specifies the fwmark and optionally its mask to match, e.g. 0xFF to match "
  6494. "mark 255 or 0x0/0x1 to match any even mark value"
  6495. msgstr ""
  6496. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:145
  6497. msgid "Specifies the incoming logical interface name"
  6498. msgstr ""
  6499. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:41
  6500. msgid ""
  6501. "Specifies the logical interface name of the parent (or master) interface "
  6502. "this route belongs to"
  6503. msgstr ""
  6504. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:254
  6505. msgid ""
  6506. "Specifies the mac-address for the actor in protocol packet exchanges "
  6507. "(LACPDUs). If empty, masters' mac address defaults to system default"
  6508. msgstr ""
  6509. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:175
  6510. msgid ""
  6511. "Specifies the maximum amount of failed ARP requests until hosts are presumed "
  6512. "to be dead"
  6513. msgstr ""
  6514. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:171
  6515. msgid ""
  6516. "Specifies the maximum amount of seconds after which hosts are presumed to be "
  6517. "dead"
  6518. msgstr ""
  6519. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:941
  6520. msgid ""
  6521. "Specifies the maximum transmit power the wireless radio may use. Depending "
  6522. "on regulatory requirements and wireless usage, the actual transmit power may "
  6523. "be reduced by the driver."
  6524. msgstr ""
  6525. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:238
  6526. msgid ""
  6527. "Specifies the minimum number of links that must be active before asserting "
  6528. "carrier"
  6529. msgstr ""
  6530. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:202
  6531. msgid "Specifies the mode to be used for this bonding interface"
  6532. msgstr ""
  6533. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:76
  6534. msgid ""
  6535. "Specifies the network gateway. If omitted, the gateway from the parent "
  6536. "interface is taken if any, otherwise creates a link scope route. If set to "
  6537. "0.0.0.0 no gateway will be specified for the route"
  6538. msgstr ""
  6539. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:334
  6540. msgid ""
  6541. "Specifies the number of IGMP membership reports to be issued after a "
  6542. "failover event in 200ms intervals"
  6543. msgstr ""
  6544. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:278
  6545. msgid ""
  6546. "Specifies the number of packets to transmit through a slave before moving to "
  6547. "the next one"
  6548. msgstr ""
  6549. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:312
  6550. msgid ""
  6551. "Specifies the number of peer notifications (gratuitous ARPs and unsolicited "
  6552. "IPv6 Neighbor Advertisements) to be issued after a failover event"
  6553. msgstr ""
  6554. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:286
  6555. msgid ""
  6556. "Specifies the number of seconds between instances where the bonding driver "
  6557. "sends learning packets to each slaves peer switch"
  6558. msgstr ""
  6559. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:130
  6560. msgid "Specifies the ordering of the IP rules"
  6561. msgstr ""
  6562. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:156
  6563. msgid "Specifies the outgoing logical interface name"
  6564. msgstr ""
  6565. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:100
  6566. msgid ""
  6567. "Specifies the preferred source address when sending to destinations covered "
  6568. "by the target"
  6569. msgstr ""
  6570. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:375
  6571. msgid "Specifies the quantity of ARP IP targets that must be reachable"
  6572. msgstr ""
  6573. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:270
  6574. msgid ""
  6575. "Specifies the rate in which the link partner will be asked to transmit "
  6576. "LACPDU packets"
  6577. msgstr ""
  6578. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:227
  6579. msgid ""
  6580. "Specifies the reselection policy for the primary slave when failure of the "
  6581. "active slave or recovery of the primary slave occurs"
  6582. msgstr ""
  6583. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:80
  6584. msgid "Specifies the route metric to use"
  6585. msgstr ""
  6586. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:46
  6587. msgid "Specifies the route type to be created"
  6588. msgstr ""
  6589. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:137
  6590. msgid "Specifies the rule target routing action"
  6591. msgstr ""
  6592. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:149
  6593. msgid "Specifies the source subnet to match (CIDR notation)"
  6594. msgstr ""
  6595. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:246
  6596. msgid "Specifies the system priority"
  6597. msgstr ""
  6598. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:404
  6599. msgid ""
  6600. "Specifies the time in milliseconds to wait before disabling a slave after a "
  6601. "link failure detection"
  6602. msgstr ""
  6603. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:412
  6604. msgid ""
  6605. "Specifies the time in milliseconds to wait before enabling a slave after a "
  6606. "link recovery detection"
  6607. msgstr ""
  6608. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:548
  6609. msgid ""
  6610. "Specifies the wired ports to attach to this bridge. In order to attach "
  6611. "wireless networks, choose the associated interface as network in the "
  6612. "wireless settings."
  6613. msgstr ""
  6614. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:383
  6615. msgid ""
  6616. "Specifies whether ARP probes and replies should be validated or non-ARP "
  6617. "traffic should be filtered for link monitoring"
  6618. msgstr ""
  6619. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:303
  6620. msgid ""
  6621. "Specifies whether active-backup mode should set all slaves to the same MAC "
  6622. "address at enslavement"
  6623. msgstr ""
  6624. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:420
  6625. msgid ""
  6626. "Specifies whether or not miimon should use MII or ETHTOOL ioctls vs. "
  6627. "netif_carrier_ok()"
  6628. msgstr ""
  6629. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:295
  6630. msgid ""
  6631. "Specifies whether to shuffle active flows across slaves based on the load"
  6632. msgstr ""
  6633. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:181
  6634. msgid ""
  6635. "Specifies which slave interfaces should be attached to this bonding interface"
  6636. msgstr ""
  6637. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:214
  6638. msgid ""
  6639. "Specifies which slave is the primary device. It will always be the active "
  6640. "slave while it is available"
  6641. msgstr ""
  6642. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:63
  6643. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:67
  6644. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:62
  6645. msgid "Specify a TOS (Type of Service)."
  6646. msgstr ""
  6647. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:74
  6648. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:79
  6649. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:79
  6650. msgid ""
  6651. "Specify a TOS (Type of Service). Can be <code>inherit</code> (the outer "
  6652. "header inherits the value of the inner header) or an hexadecimal value "
  6653. "<code>00..FF</code> (optional)."
  6654. msgstr ""
  6655. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:74
  6656. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:74
  6657. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:79
  6658. msgid ""
  6659. "Specify a TTL (Time to Live) for the encapsulating packet other than the "
  6660. "default (64) (optional)."
  6661. msgstr ""
  6662. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:69
  6663. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:58
  6664. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:62
  6665. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:57
  6666. msgid ""
  6667. "Specify a TTL (Time to Live) for the encapsulating packet other than the "
  6668. "default (64)."
  6669. msgstr ""
  6670. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:84
  6671. msgid ""
  6672. "Specify a Traffic Class. Can be <code>inherit</code> (the outer header "
  6673. "inherits the value of the inner header) or an hexadecimal value <code>00.."
  6674. "FF</code> (optional)."
  6675. msgstr ""
  6676. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:64
  6677. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:69
  6678. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:69
  6679. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:74
  6680. msgid ""
  6681. "Specify an MTU (Maximum Transmission Unit) other than the default (1280 "
  6682. "bytes) (optional)."
  6683. msgstr ""
  6684. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:53
  6685. msgid ""
  6686. "Specify an MTU (Maximum Transmission Unit) other than the default (1280 "
  6687. "bytes)."
  6688. msgstr ""
  6689. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2119
  6690. msgid "Specify the secret encryption key here."
  6691. msgstr ""
  6692. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:215
  6693. msgid "Speed: %d Mibit/s, Duplex: %s"
  6694. msgstr ""
  6695. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1560
  6696. msgid "Splitterless ADSL (G.992.2) Annex A"
  6697. msgstr ""
  6698. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:717
  6699. msgid "Stale neighbour cache timeout"
  6700. msgstr ""
  6701. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:686
  6702. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:99
  6703. msgid "Start"
  6704. msgstr "Mula"
  6705. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:140
  6706. msgid "Start WPS"
  6707. msgstr ""
  6708. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:76
  6709. msgid "Start priority"
  6710. msgstr ""
  6711. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1941
  6712. msgid "Start refresh"
  6713. msgstr ""
  6714. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4687
  6715. msgid "Starting configuration apply…"
  6716. msgstr ""
  6717. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1854
  6718. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:425
  6719. msgid "Starting wireless scan..."
  6720. msgstr ""
  6721. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:109
  6722. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:78
  6723. msgid "Startup"
  6724. msgstr ""
  6725. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:90
  6726. msgid "State"
  6727. msgstr ""
  6728. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:32
  6729. msgid "Static IPv4 Routes"
  6730. msgstr "Laluan IPv4 Statik"
  6731. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:32
  6732. msgid "Static IPv6 Routes"
  6733. msgstr "Laluan IPv6 Statik"
  6734. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:91
  6735. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:138
  6736. msgid "Static Lease"
  6737. msgstr ""
  6738. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:258
  6739. msgid "Static Leases"
  6740. msgstr "Statische Einträge"
  6741. #: modules/luci-base/htdocs/luci-static/resources/network.js:2090
  6742. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:172
  6743. #: modules/luci-compat/luasrc/model/network.lua:967
  6744. msgid "Static address"
  6745. msgstr ""
  6746. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:771
  6747. msgid ""
  6748. "Static leases are used to assign fixed IP addresses and symbolic hostnames "
  6749. "to DHCP clients. They are also required for non-dynamic interface "
  6750. "configurations where only hosts with a corresponding lease are served."
  6751. msgstr ""
  6752. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1183
  6753. msgid "Station inactivity limit"
  6754. msgstr ""
  6755. #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:16
  6756. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:558
  6757. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:923
  6758. #: modules/luci-mod-status/ucode/template/admin_status/index.ut:9
  6759. msgid "Status"
  6760. msgstr "Status"
  6761. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:529
  6762. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:101
  6763. msgid "Stop"
  6764. msgstr ""
  6765. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:135
  6766. msgid "Stop WPS"
  6767. msgstr ""
  6768. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1852
  6769. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1946
  6770. msgid "Stop refresh"
  6771. msgstr ""
  6772. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:24
  6773. msgid "Storage"
  6774. msgstr ""
  6775. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:683
  6776. msgid "Strict filtering"
  6777. msgstr ""
  6778. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:508
  6779. msgid "Strict order"
  6780. msgstr "Order Ketat"
  6781. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:33
  6782. msgid "Strong"
  6783. msgstr ""
  6784. #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:61
  6785. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2144
  6786. msgid "Submit"
  6787. msgstr "Menyerahkan"
  6788. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:447
  6789. msgid "Suppress logging"
  6790. msgstr ""
  6791. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:448
  6792. msgid "Suppress logging of the routine operation for the DHCP protocol."
  6793. msgstr ""
  6794. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:46
  6795. msgid "Swap free"
  6796. msgstr ""
  6797. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:139
  6798. #: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:3
  6799. msgid "Switch"
  6800. msgstr "Beralih"
  6801. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:172
  6802. msgid "Switch %q"
  6803. msgstr ""
  6804. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:150
  6805. msgid ""
  6806. "Switch %q has an unknown topology - the VLAN settings might not be accurate."
  6807. msgstr ""
  6808. #: modules/luci-base/htdocs/luci-static/resources/network.js:3002
  6809. #: modules/luci-compat/luasrc/model/network.lua:1426
  6810. msgid "Switch VLAN"
  6811. msgstr ""
  6812. #: modules/luci-base/htdocs/luci-static/resources/network.js:2999
  6813. msgid "Switch port"
  6814. msgstr ""
  6815. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:577
  6816. msgid "Switch protocol"
  6817. msgstr ""
  6818. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:103
  6819. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:104
  6820. #: modules/luci-compat/luasrc/view/cbi/ipaddr.htm:26
  6821. msgid "Switch to CIDR list notation"
  6822. msgstr ""
  6823. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2716
  6824. msgid "Symbolic link"
  6825. msgstr ""
  6826. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:89
  6827. msgid "Sync with NTP-Server"
  6828. msgstr ""
  6829. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:81
  6830. msgid "Sync with browser"
  6831. msgstr ""
  6832. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:299
  6833. msgid "Syntax: <code>/fqdn[/fqdn…]/[ipaddr]</code>."
  6834. msgstr ""
  6835. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:650
  6836. msgid "Syntax: <code>_service._proto.example.com</code>."
  6837. msgstr ""
  6838. #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:26
  6839. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:22
  6840. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:113
  6841. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:3
  6842. msgid "System"
  6843. msgstr "Sistem"
  6844. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/syslog.js:25
  6845. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:63
  6846. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:75
  6847. msgid "System Log"
  6848. msgstr "Log Sistem"
  6849. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:245
  6850. msgid "System Priority"
  6851. msgstr ""
  6852. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:118
  6853. msgid "System Properties"
  6854. msgstr ""
  6855. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:162
  6856. msgid "System log buffer size"
  6857. msgstr ""
  6858. #: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:67
  6859. #: themes/luci-theme-material/ucode/template/themes/material/header.ut:87
  6860. #: themes/luci-theme-librecmc-2020/ucode/template/themes/librecmc2020/header.ut:64
  6861. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:89
  6862. msgid "System running in recovery (initramfs) mode."
  6863. msgstr ""
  6864. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:67
  6865. msgctxt "nft tcp option maxseg size"
  6866. msgid "TCP MSS"
  6867. msgstr ""
  6868. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:54
  6869. msgctxt "nft tcp dport"
  6870. msgid "TCP destination port"
  6871. msgstr ""
  6872. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:57
  6873. msgctxt "nft tcp flags"
  6874. msgid "TCP flags"
  6875. msgstr ""
  6876. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:53
  6877. msgctxt "nft tcp sport"
  6878. msgid "TCP source port"
  6879. msgstr ""
  6880. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:338
  6881. msgid "TCP:"
  6882. msgstr ""
  6883. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:571
  6884. msgid "TFTP server root"
  6885. msgstr ""
  6886. # same as RX
  6887. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:50
  6888. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:85
  6889. msgid "TX"
  6890. msgstr "TX"
  6891. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:236
  6892. msgid "TX Rate"
  6893. msgstr ""
  6894. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:672
  6895. msgid "TX queue length"
  6896. msgstr ""
  6897. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:92
  6898. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:167
  6899. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:18
  6900. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:190
  6901. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:216
  6902. msgid "Table"
  6903. msgstr "Meja"
  6904. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:916
  6905. msgid "Tag"
  6906. msgstr ""
  6907. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:219
  6908. msgctxt "VLAN port state"
  6909. msgid "Tagged"
  6910. msgstr ""
  6911. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:655
  6912. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:718
  6913. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:57
  6914. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:66
  6915. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:187
  6916. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:213
  6917. msgid "Target"
  6918. msgstr "Sasaran"
  6919. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:58
  6920. msgid "Target Platform"
  6921. msgstr ""
  6922. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:103
  6923. msgid "Target network"
  6924. msgstr ""
  6925. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:36
  6926. msgid "Temp space"
  6927. msgstr ""
  6928. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:50
  6929. msgid "Terminate"
  6930. msgstr "Menamatkan"
  6931. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:886
  6932. msgid ""
  6933. "The <abbr title=\"Maximum Transmission Unit\">MTU</abbr> to be published in "
  6934. "<abbr title=\"Router Advertisement, ICMPv6 Type 134\">RA</abbr> messages. "
  6935. "Minimum is 1280 bytes."
  6936. msgstr ""
  6937. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:834
  6938. msgid ""
  6939. "The <em>Managed address configuration</em> (M) flag indicates that IPv6 "
  6940. "addresses are available via DHCPv6."
  6941. msgstr ""
  6942. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:838
  6943. msgid ""
  6944. "The <em>Mobile IPv6 Home Agent</em> (H) flag indicates that the device is "
  6945. "also acting as Mobile IPv6 home agent on this link."
  6946. msgstr ""
  6947. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:836
  6948. msgid ""
  6949. "The <em>Other configuration</em> (O) flag indicates that other information, "
  6950. "such as DNS servers, is available via DHCPv6."
  6951. msgstr ""
  6952. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:84
  6953. msgid "The <em>block mount</em> command failed with code %d"
  6954. msgstr ""
  6955. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:80
  6956. msgid ""
  6957. "The <em>qrencode</em> package is required for generating an QR code image of "
  6958. "the configuration."
  6959. msgstr ""
  6960. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:904
  6961. msgid "The DHCPv6-DUID (DHCP unique identifier) of this host."
  6962. msgstr ""
  6963. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1013
  6964. msgid ""
  6965. "The DNS server entries in the local resolv.conf are primarily sorted by the "
  6966. "weight specified here"
  6967. msgstr ""
  6968. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:77
  6969. msgid ""
  6970. "The HE.net endpoint update configuration changed, you must now use the plain "
  6971. "username instead of the user ID!"
  6972. msgstr ""
  6973. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:876
  6974. msgid "The IP address %h is already used by another static lease"
  6975. msgstr ""
  6976. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:885
  6977. msgid "The IP address is outside of any DHCP pool address range"
  6978. msgstr ""
  6979. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:606
  6980. msgid "The IP address of the boot server"
  6981. msgstr ""
  6982. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:859
  6983. msgid ""
  6984. "The IP address to be used for this host, or <em>ignore</em> to ignore any "
  6985. "DHCP request from this host."
  6986. msgstr ""
  6987. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:40
  6988. msgid "The IPv4 address or the fully-qualified domain name of the remote end."
  6989. msgstr ""
  6990. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:42
  6991. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:42
  6992. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:40
  6993. #: protocols/luci-proto-vti/htdocs/luci-static/resources/protocol/vti.js:40
  6994. msgid ""
  6995. "The IPv4 address or the fully-qualified domain name of the remote tunnel end."
  6996. msgstr ""
  6997. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:40
  6998. msgid "The IPv6 address or the fully-qualified domain name of the remote end."
  6999. msgstr ""
  7000. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:42
  7001. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:42
  7002. msgid ""
  7003. "The IPv6 address or the fully-qualified domain name of the remote tunnel end."
  7004. msgstr ""
  7005. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:912
  7006. msgid ""
  7007. "The IPv6 interface identifier (address suffix) as hexadecimal number (max. 8 "
  7008. "chars)."
  7009. msgstr ""
  7010. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:53
  7011. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:59
  7012. msgid ""
  7013. "The IPv6 prefix assigned to the provider, usually ends with <code>::</code>"
  7014. msgstr ""
  7015. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/timer.js:7
  7016. msgid "The LED blinks with the configured on/off frequency"
  7017. msgstr ""
  7018. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/heartbeat.js:7
  7019. msgid "The LED flashes to simulate actual heart beat."
  7020. msgstr ""
  7021. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:8
  7022. msgid ""
  7023. "The LED flashes with link status and activity on the configured interface."
  7024. msgstr ""
  7025. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/none.js:7
  7026. msgid "The LED is always in default state off."
  7027. msgstr ""
  7028. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/default-on.js:6
  7029. msgid "The LED is always in default state on."
  7030. msgstr ""
  7031. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:224
  7032. msgid ""
  7033. "The MAC address %h is already used by another static lease in the same DHCP "
  7034. "pool"
  7035. msgstr ""
  7036. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:640
  7037. msgid "The MTU must not exceed the parent device MTU of %d bytes"
  7038. msgstr ""
  7039. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:942
  7040. msgid "The VLAN ID must be unique"
  7041. msgstr ""
  7042. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:45
  7043. msgid "The algorithm that is used to discover mesh routes"
  7044. msgstr ""
  7045. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2104
  7046. msgid ""
  7047. "The allowed characters are: <code>A-Z</code>, <code>a-z</code>, <code>0-9</"
  7048. "code> and <code>_</code>"
  7049. msgstr ""
  7050. "Karakter yang diizinkan adalah: <code>A-Z</code>, <code>a-z</code>, "
  7051. "<code>0-9</code> dan <code>_</code>"
  7052. #: modules/luci-compat/luasrc/view/cbi/error.htm:6
  7053. msgid "The configuration file could not be loaded due to the following error:"
  7054. msgstr ""
  7055. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2098
  7056. msgid ""
  7057. "The correct SSID must be manually specified when joining a hidden wireless "
  7058. "network"
  7059. msgstr ""
  7060. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4563
  7061. msgid ""
  7062. "The device could not be reached within %d seconds after applying the pending "
  7063. "changes, which caused the configuration to be rolled back for safety "
  7064. "reasons. If you believe that the configuration changes are correct "
  7065. "nonetheless, perform an unchecked configuration apply. Alternatively, you "
  7066. "can dismiss this warning and edit changes before attempting to apply again, "
  7067. "or revert all pending changes to keep the currently working configuration "
  7068. "state."
  7069. msgstr ""
  7070. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:281
  7071. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:393
  7072. msgid ""
  7073. "The device file of the memory or partition (<abbr title=\"for example\">e.g."
  7074. "</abbr> <code>/dev/sda1</code>)"
  7075. msgstr "Fail peranti memori atau partisyen, (contohnya: /dev/sda)"
  7076. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:504
  7077. msgid "The device name \"%s\" is already taken"
  7078. msgstr ""
  7079. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:410
  7080. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:444
  7081. msgid ""
  7082. "The existing network configuration needs to be changed for LuCI to function "
  7083. "properly."
  7084. msgstr ""
  7085. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:788
  7086. msgid ""
  7087. "The existing wireless configuration needs to be changed for LuCI to function "
  7088. "properly."
  7089. msgstr ""
  7090. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:220
  7091. msgid ""
  7092. "The flash image was uploaded. Below is the checksum and file size listed, "
  7093. "compare them with the original file to ensure data integrity. <br /> Click "
  7094. "'Continue' below to start the flash procedure."
  7095. msgstr ""
  7096. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:249
  7097. msgid "The following rules are currently active on this system."
  7098. msgstr "Peraturan berikut sedang aktif pada sistem ini."
  7099. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/heartbeat.js:8
  7100. msgid "The frequency is in direct proportion to 1-minute average CPU load."
  7101. msgstr ""
  7102. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:154
  7103. msgid "The gateway address must not be a local IP address"
  7104. msgstr ""
  7105. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:757
  7106. msgid ""
  7107. "The generated configuration can be imported into a WireGuard client "
  7108. "application to set up a connection towards this device."
  7109. msgstr ""
  7110. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:172
  7111. msgid "The given SSH public key has already been added."
  7112. msgstr ""
  7113. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:178
  7114. msgid ""
  7115. "The given SSH public key is invalid. Please supply proper public RSA, "
  7116. "ED25519 or ECDSA keys."
  7117. msgstr ""
  7118. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:800
  7119. msgid "The hardware address(es) of this entry/host, separated by spaces."
  7120. msgstr ""
  7121. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:93
  7122. msgid ""
  7123. "The hop penalty setting allows to modify batman-adv's preference for "
  7124. "multihop routes vs. short routes. The value is applied to the TQ of each "
  7125. "forwarded OGM, thereby propagating the cost of an extra hop (the packet has "
  7126. "to be received and retransmitted which costs airtime)"
  7127. msgstr ""
  7128. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:600
  7129. msgid "The hostname of the boot server"
  7130. msgstr ""
  7131. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:28
  7132. msgid "The interface could not be found"
  7133. msgstr ""
  7134. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1169
  7135. msgid "The interface name is already used"
  7136. msgstr ""
  7137. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1175
  7138. msgid "The interface name is too long"
  7139. msgstr ""
  7140. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:61
  7141. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:55
  7142. msgid ""
  7143. "The length of the IPv4 prefix in bits, the remainder is used in the IPv6 "
  7144. "addresses."
  7145. msgstr ""
  7146. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:57
  7147. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:63
  7148. msgid "The length of the IPv6 prefix in bits"
  7149. msgstr ""
  7150. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:165
  7151. msgid "The local IPv4 address"
  7152. msgstr ""
  7153. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:46
  7154. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:46
  7155. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:44
  7156. #: protocols/luci-proto-vti/htdocs/luci-static/resources/protocol/vti.js:44
  7157. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:44
  7158. msgid "The local IPv4 address over which the tunnel is created (optional)."
  7159. msgstr ""
  7160. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:171
  7161. msgid "The local IPv4 netmask"
  7162. msgstr ""
  7163. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:46
  7164. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:53
  7165. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:44
  7166. msgid "The local IPv6 address over which the tunnel is created (optional)."
  7167. msgstr ""
  7168. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:629
  7169. msgid ""
  7170. "The max response time in centiseconds inserted into group-specific queries "
  7171. "sent in response to leave group messages. It is also the amount of time "
  7172. "between group-specific query messages. This value may be tuned to modify the "
  7173. "\"leave latency\" of the network. A reduced value results in reduced time to "
  7174. "detect the loss of the last member of a group"
  7175. msgstr ""
  7176. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:615
  7177. msgid ""
  7178. "The max response time in centiseconds inserted into the periodic general "
  7179. "queries. By varying the value, an administrator may tune the burstiness of "
  7180. "IGMP messages on the subnet; larger values make the traffic less bursty, as "
  7181. "host responses are spread out over a larger interval"
  7182. msgstr ""
  7183. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:905
  7184. msgid ""
  7185. "The maximum hops to be published in <abbr title=\"Router Advertisement\">RA</"
  7186. "abbr> messages. Maximum is 255 hops."
  7187. msgstr ""
  7188. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4699
  7189. msgid ""
  7190. "The network access to this device could be interrupted by changing settings "
  7191. "of the \"%h\" interface."
  7192. msgstr ""
  7193. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2110
  7194. msgid "The network name is already used"
  7195. msgstr ""
  7196. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:139
  7197. msgid ""
  7198. "The network ports on this device can be combined to several <abbr "
  7199. "title=\"Virtual Local Area Network\">VLAN</abbr>s in which computers can "
  7200. "communicate directly with each other. <abbr title=\"Virtual Local Area "
  7201. "Network\">VLAN</abbr>s are often used to separate different network "
  7202. "segments. Often there is by default one Uplink port for a connection to the "
  7203. "next greater network like the internet and other ports for a local network."
  7204. msgstr ""
  7205. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:776
  7206. msgid ""
  7207. "The public hostname or IP address of this system the peer should connect to. "
  7208. "This usually is a static public IP address, a static hostname or a DDNS "
  7209. "domain."
  7210. msgstr ""
  7211. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:623
  7212. msgid "The query response interval must be lower than the query interval value"
  7213. msgstr ""
  7214. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:158
  7215. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:42
  7216. msgid "The reboot command failed with code %d"
  7217. msgstr ""
  7218. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:147
  7219. msgid "The restore command failed with code %d"
  7220. msgstr ""
  7221. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:605
  7222. msgid ""
  7223. "The robustness value allows tuning for the expected packet loss on the "
  7224. "network. If a network is expected to be lossy, the robustness value may be "
  7225. "increased. IGMP is robust to (Robustness-1) packet losses"
  7226. msgstr ""
  7227. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:172
  7228. msgid ""
  7229. "The rule target is a jump to another rule specified by its priority value"
  7230. msgstr ""
  7231. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:92
  7232. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:167
  7233. msgid ""
  7234. "The rule target is a table lookup ID: a numeric table index ranging from 0 "
  7235. "to 65535 or symbol alias declared in /etc/iproute2/rt_tables. Special "
  7236. "aliases local (255), main (254) and default (253) are also valid"
  7237. msgstr ""
  7238. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1378
  7239. msgid "The selected %s mode is incompatible with %s encryption"
  7240. msgstr ""
  7241. #: modules/luci-base/ucode/template/csrftoken.ut:11
  7242. msgid "The submitted security token is invalid or already expired!"
  7243. msgstr ""
  7244. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:98
  7245. msgid ""
  7246. "The system is erasing the configuration partition now and will reboot itself "
  7247. "when finished."
  7248. msgstr ""
  7249. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:320
  7250. #, fuzzy
  7251. msgid ""
  7252. "The system is flashing now.<br /> DO NOT POWER OFF THE DEVICE!<br /> Wait a "
  7253. "few minutes before you try to reconnect. It might be necessary to renew the "
  7254. "address of your computer to reach the device again, depending on your "
  7255. "settings."
  7256. msgstr ""
  7257. "Sistem ini sekarang mula flash.<br /> JANGAN TUTUP KUASA UNTUK PERANTI!<br /"
  7258. "> Tunggu beberapa minit sehingga anda cuba untuk menyambung kembali. Mungkin "
  7259. "anda perlu mengemas kini alamat komputer anda untuk mencapai peranti lagi, "
  7260. "bergantung pada tetapan anda."
  7261. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:163
  7262. msgid ""
  7263. "The system is rebooting now. If the restored configuration changed the "
  7264. "current LAN IP address, you might need to reconnect manually."
  7265. msgstr ""
  7266. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:85
  7267. msgid "The system password has been successfully changed."
  7268. msgstr ""
  7269. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:345
  7270. msgid "The sysupgrade command failed with code %d"
  7271. msgstr ""
  7272. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:773
  7273. msgid ""
  7274. "The tag construct filters which host directives are used; more than one tag "
  7275. "can be provided, in this case the request must match all of them. Tagged "
  7276. "directives are used in preference to untagged ones. Note that one of mac, "
  7277. "duid or hostname still needs to be specified (can be a wildcard)."
  7278. msgstr ""
  7279. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:120
  7280. msgid ""
  7281. "The uploaded backup archive appears to be valid and contains the files "
  7282. "listed below. Press \"Continue\" to restore the backup and reboot, or "
  7283. "\"Cancel\" to abort the operation."
  7284. msgstr ""
  7285. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:115
  7286. msgid "The uploaded backup archive is not readable"
  7287. msgstr ""
  7288. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:249
  7289. msgid "The uploaded firmware does not allow keeping current configuration."
  7290. msgstr ""
  7291. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:244
  7292. msgid ""
  7293. "The uploaded image file does not contain a supported format. Make sure that "
  7294. "you choose the generic image format for your platform."
  7295. msgstr ""
  7296. "Format Fail gambar yang diupload tidak disokongkan. Pastikan anda memilih "
  7297. "fail format gambar yang generik untuk platform anda."
  7298. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1515
  7299. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1527
  7300. msgid "The value is overridden by configuration."
  7301. msgstr ""
  7302. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:56
  7303. msgid ""
  7304. "The value specifies the interval (milliseconds) in which batman-adv floods "
  7305. "the network with its protocol information."
  7306. msgstr ""
  7307. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:678
  7308. msgid ""
  7309. "There are legacy iptables rules present on the system. Mixing iptables and "
  7310. "nftables rules is discouraged and may lead to incomplete traffic filtering."
  7311. msgstr ""
  7312. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:985
  7313. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1017
  7314. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:130
  7315. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:179
  7316. msgid "There are no active leases"
  7317. msgstr ""
  7318. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4731
  7319. msgid "There are no changes to apply"
  7320. msgstr ""
  7321. #: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:58
  7322. #: themes/luci-theme-material/ucode/template/themes/material/header.ut:78
  7323. #: themes/luci-theme-librecmc-2020/ucode/template/themes/librecmc2020/header.ut:55
  7324. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:80
  7325. msgid ""
  7326. "There is no password set on this router. Please configure a root password to "
  7327. "protect the web interface."
  7328. msgstr ""
  7329. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:49
  7330. msgid "This IPv4 address of the relay"
  7331. msgstr ""
  7332. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1722
  7333. msgid "This authentication type is not applicable to the selected EAP method."
  7334. msgstr ""
  7335. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:58
  7336. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:56
  7337. msgid "This does not look like a valid PEM file"
  7338. msgstr ""
  7339. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:454
  7340. msgid ""
  7341. "This is a list of shell glob patterns for matching files and directories to "
  7342. "include during sysupgrade. Modified files in /etc/config/ and certain other "
  7343. "configurations are automatically preserved."
  7344. msgstr ""
  7345. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:81
  7346. msgid ""
  7347. "This is either the \"Update Key\" configured for the tunnel or the account "
  7348. "password if no update key has been configured"
  7349. msgstr ""
  7350. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv_hardif.js:42
  7351. msgid ""
  7352. "This is the batman-adv device where you want to link the physical Device "
  7353. "from above to. If this list is empty, then you need to create one first. If "
  7354. "you want to route mesh traffic over a wired network device, then please "
  7355. "select it from the above Device selector. If you want to assign the batman-"
  7356. "adv interface to a Wi-fi mesh then do not select a Device in the Device "
  7357. "selector but rather go to the Wireless settings and select this Interface as "
  7358. "a network from there."
  7359. msgstr ""
  7360. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:116
  7361. msgid ""
  7362. "This is the content of /etc/rc.local. Insert your own commands here (in "
  7363. "front of 'exit 0') to execute them at the end of the boot process."
  7364. msgstr ""
  7365. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:54
  7366. msgid ""
  7367. "This is the local endpoint address assigned by the tunnel broker, it usually "
  7368. "ends with <code>...:2/64</code>"
  7369. msgstr ""
  7370. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:274
  7371. msgid "This is the only DHCP server in the local network."
  7372. msgstr "Ini adalah DHCP hanya dalam rangkaian tempatan."
  7373. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:73
  7374. msgid "This is the plain username for logging into the account"
  7375. msgstr ""
  7376. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:57
  7377. msgid ""
  7378. "This is the prefix routed to you by the tunnel broker for use by clients"
  7379. msgstr ""
  7380. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/crontab.js:29
  7381. msgid "This is the system crontab in which scheduled tasks can be defined."
  7382. msgstr ""
  7383. "Ini adalah crontab sistem di mana tugas-tugas yang dijadualkan boleh "
  7384. "ditakrifkan."
  7385. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:50
  7386. msgid ""
  7387. "This is usually the address of the nearest PoP operated by the tunnel broker"
  7388. msgstr ""
  7389. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:65
  7390. msgid ""
  7391. "This list gives an overview over currently running system processes and "
  7392. "their status."
  7393. msgstr ""
  7394. "Senarai ini memberikan gambaran lebih pada proses sistem yang sedang "
  7395. "berjalan dan statusnya."
  7396. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1676
  7397. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1734
  7398. msgid ""
  7399. "This option cannot be used because the ca-bundle package is not installed."
  7400. msgstr ""
  7401. #: modules/luci-base/htdocs/luci-static/resources/form.js:2280
  7402. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:172
  7403. #: modules/luci-compat/luasrc/view/cbi/tsection.htm:32
  7404. msgid "This section contains no values yet"
  7405. msgstr "Bahagian ini belum mengandungi nilai-nilai lagi"
  7406. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:124
  7407. msgid "Time Synchronization"
  7408. msgstr ""
  7409. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1629
  7410. msgid "Time advertisement"
  7411. msgstr ""
  7412. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:713
  7413. msgid "Time in milliseconds"
  7414. msgstr ""
  7415. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:581
  7416. msgid "Time in seconds to spend in listening and learning states"
  7417. msgstr ""
  7418. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1174
  7419. msgid "Time interval for rekeying GTK"
  7420. msgstr ""
  7421. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1638
  7422. msgid "Time zone"
  7423. msgstr ""
  7424. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:15
  7425. msgid "Timed-out"
  7426. msgstr ""
  7427. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:717
  7428. msgid "Timeout in seconds"
  7429. msgstr ""
  7430. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:567
  7431. msgid "Timeout in seconds for learned MAC addresses in the forwarding database"
  7432. msgstr ""
  7433. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:586
  7434. msgid "Timeout in seconds until topology updates on link loss"
  7435. msgstr ""
  7436. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:145
  7437. msgid "Timezone"
  7438. msgstr "Zon masa"
  7439. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:438
  7440. msgid ""
  7441. "To fully configure the local WireGuard interface from an existing (e.g. "
  7442. "provider supplied) configuration file, use the <strong><a class=\"full-"
  7443. "import\" href=\"#\">configuration import</a></strong> instead."
  7444. msgstr ""
  7445. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:400
  7446. msgid ""
  7447. "To restore configuration files, you can upload a previously generated backup "
  7448. "archive here. To reset the firmware to its initial state, click \"Perform "
  7449. "reset\" (only possible with squashfs images)."
  7450. msgstr ""
  7451. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1569
  7452. msgid "Tone"
  7453. msgstr ""
  7454. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:35
  7455. msgid "Total Available"
  7456. msgstr ""
  7457. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:110
  7458. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:111
  7459. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:121
  7460. msgid "Traceroute"
  7461. msgstr ""
  7462. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:126
  7463. msgid "Tracking Area Code"
  7464. msgstr ""
  7465. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:54
  7466. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:65
  7467. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:139
  7468. msgid "Traffic"
  7469. msgstr "Lalu lintas"
  7470. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:79
  7471. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:84
  7472. msgid "Traffic Class"
  7473. msgstr ""
  7474. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:528
  7475. msgid "Traffic filter chain \"%h\""
  7476. msgstr ""
  7477. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:466
  7478. msgctxt "nft counter"
  7479. msgid "Traffic matched by rule: %.1000mPackets, %.1024mBytes"
  7480. msgstr ""
  7481. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:387
  7482. msgid "Transfer"
  7483. msgstr "Pemindahan"
  7484. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:25
  7485. msgid "Transmit"
  7486. msgstr "Pancar"
  7487. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:319
  7488. msgid "Transmit Hash Policy"
  7489. msgstr ""
  7490. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:248
  7491. msgid "Transmit dropped"
  7492. msgstr ""
  7493. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:247
  7494. msgid "Transmit errors"
  7495. msgstr ""
  7496. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:58
  7497. #, fuzzy
  7498. msgid "Transmitted Data"
  7499. msgstr "Antena Pemancar"
  7500. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:245
  7501. msgid "Transmitted bytes"
  7502. msgstr ""
  7503. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:246
  7504. msgid "Transmitted packets"
  7505. msgstr ""
  7506. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:79
  7507. msgctxt "nft @th,off,len"
  7508. msgid "Transport header bits %d-%d"
  7509. msgstr ""
  7510. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:59
  7511. msgctxt "nft th dport"
  7512. msgid "Transport header destination port"
  7513. msgstr ""
  7514. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:58
  7515. msgctxt "nft th sport"
  7516. msgid "Transport header source port"
  7517. msgstr ""
  7518. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:75
  7519. msgid "Trigger"
  7520. msgstr ""
  7521. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:20
  7522. msgid "Trigger Mode"
  7523. msgstr ""
  7524. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:69
  7525. msgid "Tunnel ID"
  7526. msgstr ""
  7527. #: modules/luci-base/htdocs/luci-static/resources/network.js:3005
  7528. #: modules/luci-compat/luasrc/model/network.lua:1431
  7529. msgid "Tunnel Interface"
  7530. msgstr ""
  7531. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:44
  7532. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:55
  7533. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:76
  7534. msgid "Tunnel Link"
  7535. msgstr ""
  7536. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1472
  7537. msgid "Tunnel device"
  7538. msgstr ""
  7539. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:185
  7540. msgid "Tx-Power"
  7541. msgstr ""
  7542. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:45
  7543. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1503
  7544. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:169
  7545. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:43
  7546. msgid "Type"
  7547. msgstr "Jenis"
  7548. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:182
  7549. msgid "Type of service"
  7550. msgstr ""
  7551. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:56
  7552. msgctxt "nft udp dport"
  7553. msgid "UDP destination port"
  7554. msgstr ""
  7555. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:55
  7556. msgctxt "nft udp sport"
  7557. msgid "UDP source port"
  7558. msgstr ""
  7559. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:328
  7560. msgid "UDP:"
  7561. msgstr ""
  7562. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:91
  7563. msgid "UMTS only"
  7564. msgstr ""
  7565. #: modules/luci-compat/luasrc/model/network/proto_3g.lua:10
  7566. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:43
  7567. msgid "UMTS/GPRS/EV-DO"
  7568. msgstr ""
  7569. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:255
  7570. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:361
  7571. msgid "UUID"
  7572. msgstr ""
  7573. #: modules/luci-base/htdocs/luci-static/resources/network.js:16
  7574. #: modules/luci-base/htdocs/luci-static/resources/network.js:17
  7575. #: modules/luci-compat/luasrc/model/network.lua:34
  7576. #: modules/luci-compat/luasrc/model/network.lua:35
  7577. msgid "Unable to determine device name"
  7578. msgstr ""
  7579. #: modules/luci-base/htdocs/luci-static/resources/network.js:18
  7580. #: modules/luci-compat/luasrc/model/network.lua:36
  7581. msgid "Unable to determine external IP address"
  7582. msgstr ""
  7583. #: modules/luci-base/htdocs/luci-static/resources/network.js:19
  7584. #: modules/luci-compat/luasrc/model/network.lua:37
  7585. msgid "Unable to determine upstream interface"
  7586. msgstr ""
  7587. #: modules/luci-base/ucode/template/error404.ut:12
  7588. msgid "Unable to dispatch"
  7589. msgstr ""
  7590. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:85
  7591. msgid "Unable to generate QR code: %s"
  7592. msgstr ""
  7593. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/dmesg.js:9
  7594. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/syslog.js:15
  7595. msgid "Unable to load log data:"
  7596. msgstr ""
  7597. #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:54
  7598. #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:54
  7599. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:22
  7600. msgid "Unable to obtain client ID"
  7601. msgstr ""
  7602. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:221
  7603. msgid "Unable to obtain mount information"
  7604. msgstr ""
  7605. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:307
  7606. msgid "Unable to reset ip6tables counters: %s"
  7607. msgstr ""
  7608. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:305
  7609. msgid "Unable to reset iptables counters: %s"
  7610. msgstr ""
  7611. #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:61
  7612. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:7
  7613. msgid "Unable to resolve AFTR host name"
  7614. msgstr ""
  7615. #: modules/luci-base/htdocs/luci-static/resources/network.js:20
  7616. #: modules/luci-compat/luasrc/model/network.lua:38
  7617. msgid "Unable to resolve peer host name"
  7618. msgstr ""
  7619. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:313
  7620. msgid "Unable to restart firewall: %s"
  7621. msgstr ""
  7622. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/crontab.js:22
  7623. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:370
  7624. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:57
  7625. msgid "Unable to save contents: %s"
  7626. msgstr ""
  7627. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:14
  7628. msgid "Unable to set allowed mode list."
  7629. msgstr ""
  7630. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:17
  7631. msgid "Unable to set preferred mode."
  7632. msgstr ""
  7633. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:29
  7634. msgid "Unable to verify PIN"
  7635. msgstr ""
  7636. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1360
  7637. msgid "Unconfigure"
  7638. msgstr ""
  7639. #: protocols/luci-proto-unet/htdocs/luci-static/resources/protocol/unet.js:8
  7640. msgid "Unet"
  7641. msgstr ""
  7642. #: modules/luci-base/htdocs/luci-static/resources/fs.js:102
  7643. msgid "Unexpected reply data format"
  7644. msgstr ""
  7645. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1535
  7646. msgid ""
  7647. "Unique Local Address - in the range <code>fc00::/7</code>. Typically only "
  7648. "within the &#8216;local&#8217; half <code>fd00::/8</code>. ULA for IPv6 is "
  7649. "analogous to IPv4 private network addressing. This prefix is randomly "
  7650. "generated at first install."
  7651. msgstr ""
  7652. #: modules/luci-base/htdocs/luci-static/resources/network.js:2092
  7653. #: modules/luci-compat/luasrc/model/network.lua:971
  7654. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:17
  7655. msgid "Unknown"
  7656. msgstr ""
  7657. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:12
  7658. msgid "Unknown and unsupported connection method."
  7659. msgstr ""
  7660. #: modules/luci-base/htdocs/luci-static/resources/network.js:2401
  7661. #: modules/luci-compat/luasrc/model/network.lua:1138
  7662. msgid "Unknown error (%s)"
  7663. msgstr ""
  7664. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:412
  7665. msgid "Unknown error code"
  7666. msgstr ""
  7667. #: modules/luci-base/htdocs/luci-static/resources/network.js:2089
  7668. #: modules/luci-base/htdocs/luci-static/resources/protocol/none.js:6
  7669. #: modules/luci-compat/luasrc/model/network.lua:965
  7670. msgid "Unmanaged"
  7671. msgstr ""
  7672. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:195
  7673. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:217
  7674. msgid "Unmount"
  7675. msgstr ""
  7676. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:121
  7677. msgid "Unnamed key"
  7678. msgstr ""
  7679. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4381
  7680. msgid "Unsaved Changes"
  7681. msgstr "Perubahan yang belum disimpan"
  7682. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:410
  7683. msgid "Unspecified error"
  7684. msgstr ""
  7685. #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:64
  7686. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:9
  7687. msgid "Unsupported MAP type"
  7688. msgstr ""
  7689. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:69
  7690. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:31
  7691. msgid "Unsupported modem"
  7692. msgstr ""
  7693. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:112
  7694. msgid "Unsupported protocol"
  7695. msgstr ""
  7696. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:316
  7697. msgid "Unsupported protocol type."
  7698. msgstr ""
  7699. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:215
  7700. msgctxt "VLAN port state"
  7701. msgid "Untagged"
  7702. msgstr ""
  7703. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:532
  7704. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:97
  7705. msgid "Untitled peer"
  7706. msgstr ""
  7707. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:151
  7708. msgid "Up"
  7709. msgstr ""
  7710. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:411
  7711. msgid "Up Delay"
  7712. msgstr ""
  7713. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4268
  7714. msgid "Upload"
  7715. msgstr ""
  7716. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:441
  7717. msgid ""
  7718. "Upload a sysupgrade-compatible image here to replace the running firmware."
  7719. msgstr ""
  7720. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:138
  7721. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:169
  7722. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:412
  7723. msgid "Upload archive..."
  7724. msgstr ""
  7725. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2875
  7726. msgid "Upload file"
  7727. msgstr ""
  7728. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2850
  7729. msgid "Upload file…"
  7730. msgstr ""
  7731. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4214
  7732. msgid "Upload has been cancelled"
  7733. msgstr ""
  7734. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2797
  7735. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4256
  7736. msgid "Upload request failed: %s"
  7737. msgstr ""
  7738. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4175
  7739. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4229
  7740. msgid "Uploading file…"
  7741. msgstr ""
  7742. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:789
  7743. msgid ""
  7744. "Upon pressing \"Continue\", anonymous \"wifi-iface\" sections will be "
  7745. "assigned with a name in the form <em>wifinet#</em> and the network will be "
  7746. "restarted to apply the updated configuration."
  7747. msgstr ""
  7748. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:411
  7749. msgid ""
  7750. "Upon pressing \"Continue\", bridges configuration will be updated and the "
  7751. "network will be restarted to apply the updated configuration."
  7752. msgstr ""
  7753. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:445
  7754. msgid ""
  7755. "Upon pressing \"Continue\", ifname options will get renamed and the network "
  7756. "will be restarted to apply the updated configuration."
  7757. msgstr ""
  7758. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:509
  7759. msgid "Upstream resolvers will be queried in the order of the resolv file."
  7760. msgstr ""
  7761. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:82
  7762. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:62
  7763. msgid "Uptime"
  7764. msgstr "Masa Aktif"
  7765. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:419
  7766. msgid "Use <code>/etc/ethers</code>"
  7767. msgstr "Guna /etc/ethers"
  7768. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:106
  7769. msgid "Use DHCP"
  7770. msgstr ""
  7771. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:295
  7772. msgid "Use DHCP advertised servers"
  7773. msgstr ""
  7774. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:167
  7775. msgid "Use DHCP gateway"
  7776. msgstr ""
  7777. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:115
  7778. msgid "Use DHCPv6"
  7779. msgstr ""
  7780. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:999
  7781. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:144
  7782. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:160
  7783. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:132
  7784. msgid "Use DNS servers advertised by peer"
  7785. msgstr ""
  7786. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:616
  7787. msgid "Use ISO/IEC 3166 alpha2 country codes."
  7788. msgstr ""
  7789. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:48
  7790. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:89
  7791. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:69
  7792. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6to4.js:53
  7793. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:67
  7794. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:84
  7795. msgid "Use MTU on tunnel interface"
  7796. msgstr ""
  7797. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:85
  7798. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:65
  7799. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6to4.js:49
  7800. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:80
  7801. msgid "Use TTL on tunnel interface"
  7802. msgstr ""
  7803. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:322
  7804. msgid "Use XOR of hardware MAC addresses (layer2)"
  7805. msgstr ""
  7806. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:323
  7807. msgid "Use XOR of hardware MAC addresses and IP addresses (layer2+3)"
  7808. msgstr ""
  7809. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:325
  7810. msgid ""
  7811. "Use XOR of hardware MAC addresses and IP addresses, rely on skb_flow_dissect "
  7812. "(encap2+3)"
  7813. msgstr ""
  7814. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:295
  7815. msgid "Use as external overlay (/overlay)"
  7816. msgstr ""
  7817. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:294
  7818. msgid "Use as root filesystem (/)"
  7819. msgstr ""
  7820. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34
  7821. msgid "Use broadcast flag"
  7822. msgstr ""
  7823. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1295
  7824. msgid "Use builtin IPv6-management"
  7825. msgstr ""
  7826. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1003
  7827. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:148
  7828. msgid "Use custom DNS servers"
  7829. msgstr ""
  7830. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:995
  7831. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:133
  7832. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:156
  7833. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:121
  7834. msgid "Use default gateway"
  7835. msgstr ""
  7836. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1017
  7837. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:138
  7838. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:164
  7839. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:126
  7840. msgid "Use gateway metric"
  7841. msgstr ""
  7842. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:88
  7843. msgid "Use legacy MAP"
  7844. msgstr ""
  7845. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:88
  7846. msgid ""
  7847. "Use legacy MAP interface identifier format (draft-ietf-softwire-map-00) "
  7848. "instead of RFC7597"
  7849. msgstr ""
  7850. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:179
  7851. msgid "Use routing table"
  7852. msgstr ""
  7853. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:63
  7854. msgctxt "nft nat flag persistent"
  7855. msgid "Use same source and destination for each connection"
  7856. msgstr ""
  7857. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1669
  7858. msgid "Use system certificates"
  7859. msgstr ""
  7860. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1727
  7861. msgid "Use system certificates for inner-tunnel"
  7862. msgstr ""
  7863. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:772
  7864. msgid ""
  7865. "Use the <em>Add</em> Button to add a new lease entry. The <em>MAC address</"
  7866. "em> identifies the host, the <em>IPv4 address</em> specifies the fixed "
  7867. "address to use, and the <em>Hostname</em> is assigned as a symbolic name to "
  7868. "the requesting host. The optional <em>Lease time</em> can be used to set non-"
  7869. "standard host-specific lease time, e.g. 12h, 3d or infinite."
  7870. msgstr ""
  7871. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:324
  7872. msgid "Use upper layer protocol information (layer3+4)"
  7873. msgstr ""
  7874. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:326
  7875. msgid ""
  7876. "Use upper layer protocol information, rely on skb_flow_dissect (encap3+4)"
  7877. msgstr ""
  7878. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:36
  7879. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:194
  7880. msgid "Used"
  7881. msgstr "Diguna"
  7882. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1514
  7883. msgid "Used Key Slot"
  7884. msgstr ""
  7885. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1557
  7886. msgid ""
  7887. "Used for two different purposes: RADIUS NAS ID and 802.11r R0KH-ID. Not "
  7888. "needed with normal WPA(2)-PSK."
  7889. msgstr ""
  7890. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:146
  7891. msgid "User Group"
  7892. msgstr ""
  7893. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:158
  7894. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:106
  7895. msgid "User certificate (PEM encoded)"
  7896. msgstr ""
  7897. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:187
  7898. msgid "User identifier"
  7899. msgstr ""
  7900. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:170
  7901. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:118
  7902. msgid "User key (PEM encoded)"
  7903. msgstr ""
  7904. #: modules/luci-base/ucode/template/sysauth.ut:23
  7905. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:147
  7906. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:101
  7907. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:56
  7908. #: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:13
  7909. msgid "Username"
  7910. msgstr "Username"
  7911. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:131
  7912. msgid "Utilize flow table <strong>%h</strong>"
  7913. msgstr ""
  7914. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1637
  7915. msgid "VC-Mux"
  7916. msgstr ""
  7917. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1585
  7918. msgid "VDSL"
  7919. msgstr ""
  7920. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:489
  7921. msgctxt "MACVLAN mode"
  7922. msgid "VEPA (Virtual Ethernet Port Aggregator)"
  7923. msgstr ""
  7924. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:400
  7925. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1466
  7926. msgid "VLAN (802.1ad)"
  7927. msgstr ""
  7928. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:399
  7929. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1463
  7930. msgid "VLAN (802.1q)"
  7931. msgstr ""
  7932. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:468
  7933. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:923
  7934. msgid "VLAN ID"
  7935. msgstr ""
  7936. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:173
  7937. msgid "VLANs on %q"
  7938. msgstr ""
  7939. #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:54
  7940. msgid "VPN"
  7941. msgstr "VPN"
  7942. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:42
  7943. msgid "VPN Local address"
  7944. msgstr ""
  7945. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:46
  7946. msgid "VPN Local port"
  7947. msgstr ""
  7948. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:97
  7949. msgid "VPN Protocol"
  7950. msgstr ""
  7951. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:103
  7952. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:93
  7953. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:58
  7954. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:39
  7955. msgid "VPN Server"
  7956. msgstr ""
  7957. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:152
  7958. msgid "VPN Server certificate's SHA256 hash"
  7959. msgstr ""
  7960. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:140
  7961. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:96
  7962. msgid "VPN Server port"
  7963. msgstr ""
  7964. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:144
  7965. msgid "VPN Server's certificate SHA1 hash"
  7966. msgstr ""
  7967. #: modules/luci-compat/luasrc/model/network/proto_vpnc.lua:9
  7968. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:9
  7969. msgid "VPNC (CISCO 3000 (and others) VPN)"
  7970. msgstr ""
  7971. #: protocols/luci-proto-vti/htdocs/luci-static/resources/protocol/vti.js:10
  7972. msgid "VTI"
  7973. msgstr ""
  7974. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:10
  7975. msgid "VXLAN (RFC7348)"
  7976. msgstr ""
  7977. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:53
  7978. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:48
  7979. msgid "VXLAN network identifier"
  7980. msgstr ""
  7981. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:10
  7982. msgid "VXLANv6 (RFC7348)"
  7983. msgstr ""
  7984. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:484
  7985. msgid ""
  7986. "Validate DNS replies and cache DNSSEC data, requires upstream to support "
  7987. "DNSSEC."
  7988. msgstr ""
  7989. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1669
  7990. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1727
  7991. msgid ""
  7992. "Validate server certificate using built-in system CA bundle,<br />requires "
  7993. "the \"ca-bundle\" package"
  7994. msgstr ""
  7995. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:388
  7996. msgid "Validation for all slaves"
  7997. msgstr ""
  7998. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:386
  7999. msgid "Validation only for active slave"
  8000. msgstr ""
  8001. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:387
  8002. msgid "Validation only for backup slaves"
  8003. msgstr ""
  8004. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:73
  8005. msgid "Vendor"
  8006. msgstr ""
  8007. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:40
  8008. msgid "Vendor Class to send when requesting DHCP"
  8009. msgstr ""
  8010. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:489
  8011. msgid "Verify unsigned domain responses really come from unsigned domains."
  8012. msgstr ""
  8013. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:196
  8014. msgid "Verifying the uploaded image file."
  8015. msgstr ""
  8016. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:951
  8017. msgid "Very High"
  8018. msgstr ""
  8019. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:402
  8020. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1478
  8021. msgid "Virtual Ethernet"
  8022. msgstr ""
  8023. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:60
  8024. msgid "Virtual dynamic interface"
  8025. msgstr ""
  8026. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1101
  8027. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1102
  8028. msgid "WDS"
  8029. msgstr "WDS"
  8030. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1298
  8031. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1387
  8032. msgid "WEP Open System"
  8033. msgstr ""
  8034. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1299
  8035. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1388
  8036. msgid "WEP Shared Key"
  8037. msgstr ""
  8038. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2119
  8039. msgid "WEP passphrase"
  8040. msgstr ""
  8041. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:983
  8042. msgid "WLAN roaming"
  8043. msgstr ""
  8044. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1139
  8045. msgid "WMM Mode"
  8046. msgstr "WMM Mod"
  8047. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1642
  8048. msgid "WNM Sleep Mode"
  8049. msgstr ""
  8050. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1646
  8051. msgid "WNM Sleep Mode Fixes"
  8052. msgstr ""
  8053. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2119
  8054. msgid "WPA passphrase"
  8055. msgstr ""
  8056. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1289
  8057. msgid ""
  8058. "WPA-Encryption requires wpa_supplicant (for client mode) or hostapd (for AP "
  8059. "and ad-hoc mode) to be installed."
  8060. msgstr ""
  8061. "WPA-Enkripsi memerlukan pemohan wpa (untuk mod pelanggan) atau hostapd "
  8062. "(untuk AP dan mod ad-hoc) yang akan dipasangkan."
  8063. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:153
  8064. msgid "WPS status"
  8065. msgstr ""
  8066. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:47
  8067. msgid "Waiting for device..."
  8068. msgstr ""
  8069. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:189
  8070. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:199
  8071. msgid "Warning"
  8072. msgstr ""
  8073. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:26
  8074. msgid "Warning: There are unsaved changes that will get lost on reboot!"
  8075. msgstr ""
  8076. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:37
  8077. msgid "Weak"
  8078. msgstr ""
  8079. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:670
  8080. msgid "Weight"
  8081. msgstr ""
  8082. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:921
  8083. msgid ""
  8084. "When a host matches an entry then the special tag <em>known</em> is set. Use "
  8085. "<em>known</em> to match all known hosts."
  8086. msgstr ""
  8087. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1088
  8088. msgid ""
  8089. "When delegating prefixes to multiple downstreams, interfaces with a higher "
  8090. "preference value are considered first when allocating subnets."
  8091. msgstr ""
  8092. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:105
  8093. msgid ""
  8094. "When enabled network coding increases the WiFi throughput by combining "
  8095. "multiple frames into a single frame, thus reducing the needed air time."
  8096. msgstr ""
  8097. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:76
  8098. msgid ""
  8099. "When enabled the distributed ARP table forms a mesh-wide ARP cache that "
  8100. "helps non-mesh clients to get ARP responses much more reliably and without "
  8101. "much delay."
  8102. msgstr ""
  8103. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:110
  8104. msgid ""
  8105. "When enabled, gateway is on-link even if the gateway does not match any "
  8106. "interface prefix"
  8107. msgstr ""
  8108. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:707
  8109. msgid ""
  8110. "When enabled, new ARP table entries are added from received gratuitous APR "
  8111. "requests or replies, otherwise only preexisting table entries are updated, "
  8112. "but no new hosts are learned."
  8113. msgstr ""
  8114. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/heartbeat.js:14
  8115. msgid ""
  8116. "When inverted, the LED is continuously lit and flickers instead of it being "
  8117. "off by default and blinking on system activity."
  8118. msgstr ""
  8119. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:66
  8120. msgid ""
  8121. "When running the mesh over multiple WiFi interfaces per node batman-adv is "
  8122. "capable of optimizing the traffic flow to gain maximum performance."
  8123. msgstr ""
  8124. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1580
  8125. msgid ""
  8126. "When using a PSK, the PMK can be automatically generated. When enabled, the "
  8127. "R0/R1 key options below are not applied. Disable this to use the R0 and R1 "
  8128. "key options."
  8129. msgstr ""
  8130. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1139
  8131. msgid ""
  8132. "Where Wi-Fi Multimedia (WMM) Mode QoS is disabled, clients may be limited to "
  8133. "802.11a/802.11g rates."
  8134. msgstr ""
  8135. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1135
  8136. msgid ""
  8137. "Where the ESSID is hidden, clients may fail to roam and airtime efficiency "
  8138. "may be significantly reduced."
  8139. msgstr ""
  8140. #: modules/luci-compat/luasrc/view/cbi/wireless_modefreq.htm:166
  8141. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:513
  8142. msgid "Width"
  8143. msgstr ""
  8144. #: protocols/luci-proto-wireguard/root/usr/share/luci/menu.d/luci-proto-wireguard.json:3
  8145. msgid "WireGuard"
  8146. msgstr ""
  8147. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:120
  8148. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:165
  8149. #, fuzzy
  8150. msgid "WireGuard Status"
  8151. msgstr "Status Firewall"
  8152. #: modules/luci-compat/luasrc/model/network/proto_wireguard.lua:9
  8153. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:119
  8154. msgid "WireGuard VPN"
  8155. msgstr ""
  8156. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:539
  8157. msgid "WireGuard peer is disabled"
  8158. msgstr ""
  8159. #: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:17
  8160. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:10
  8161. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:148
  8162. msgid "Wireless"
  8163. msgstr ""
  8164. #: modules/luci-base/htdocs/luci-static/resources/network.js:2992
  8165. #: modules/luci-compat/luasrc/model/network.lua:1419
  8166. msgid "Wireless Adapter"
  8167. msgstr "Adapter Wayarles"
  8168. #: modules/luci-base/htdocs/luci-static/resources/network.js:2971
  8169. #: modules/luci-base/htdocs/luci-static/resources/network.js:4276
  8170. #: modules/luci-compat/luasrc/model/network.lua:1405
  8171. #: modules/luci-compat/luasrc/model/network.lua:1868
  8172. msgid "Wireless Network"
  8173. msgstr "Rangkaian Wayarles"
  8174. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:805
  8175. msgid "Wireless Overview"
  8176. msgstr "Gambaran keseluruhan Wayarles"
  8177. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:980
  8178. msgid "Wireless Security"
  8179. msgstr "Keselamatan WLAN"
  8180. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:787
  8181. msgid "Wireless configuration migration"
  8182. msgstr ""
  8183. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:153
  8184. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:193
  8185. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:152
  8186. msgid "Wireless is disabled"
  8187. msgstr ""
  8188. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:153
  8189. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:193
  8190. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:152
  8191. msgid "Wireless is not associated"
  8192. msgstr ""
  8193. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:929
  8194. msgid "Wireless network is disabled"
  8195. msgstr ""
  8196. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:929
  8197. msgid "Wireless network is enabled"
  8198. msgstr ""
  8199. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:286
  8200. msgid "Write received DNS queries to syslog."
  8201. msgstr ""
  8202. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:181
  8203. msgid "Write system log to file"
  8204. msgstr ""
  8205. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:206
  8206. msgid "XOR policy (balance-xor, 2)"
  8207. msgstr ""
  8208. #: modules/luci-base/htdocs/luci-static/resources/form.js:4094
  8209. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:297
  8210. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:345
  8211. msgid "Yes"
  8212. msgstr ""
  8213. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:305
  8214. msgid "Yes (none, 0)"
  8215. msgstr ""
  8216. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:177
  8217. msgid ""
  8218. "You appear to be currently connected to the device via the \"%h\" interface. "
  8219. "Do you really want to shut down the interface?"
  8220. msgstr ""
  8221. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:112
  8222. msgid ""
  8223. "You can enable or disable installed init scripts here. Changes will applied "
  8224. "after a device reboot.<br /><strong>Warning: If you disable essential init "
  8225. "scripts like \"network\", your device might become inaccessible!</strong>"
  8226. msgstr ""
  8227. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:640
  8228. msgid "You may add multiple records for the same Target."
  8229. msgstr ""
  8230. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:677
  8231. msgid "You may add multiple records for the same domain."
  8232. msgstr ""
  8233. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:357
  8234. msgid "You may add multiple unique Relay To on the same Listen addr."
  8235. msgstr ""
  8236. #: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:78
  8237. #: themes/luci-theme-material/ucode/template/themes/material/header.ut:98
  8238. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:73
  8239. msgid ""
  8240. "You must enable JavaScript in your browser or LuCI will not work properly."
  8241. msgstr ""
  8242. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:117
  8243. msgid ""
  8244. "You must select a primary interface which is included in selected slave "
  8245. "interfaces!"
  8246. msgstr ""
  8247. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:98
  8248. msgid ""
  8249. "You must select at least one ARP IP target if ARP monitoring is selected!"
  8250. msgstr ""
  8251. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:213
  8252. msgid "ZRam Compression Algorithm"
  8253. msgstr ""
  8254. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:206
  8255. msgid "ZRam Settings"
  8256. msgstr ""
  8257. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:208
  8258. msgid "ZRam Size"
  8259. msgstr ""
  8260. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:639
  8261. msgid "_proto: _tcp, _udp, _sctp, _quic, … ."
  8262. msgstr ""
  8263. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:638
  8264. msgid ""
  8265. "_service: _sip, _ldap, _imap, _stun, _xmpp-client, … . (Note: while _http is "
  8266. "possible, no browsers support SRV records.)"
  8267. msgstr ""
  8268. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:535
  8269. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:153
  8270. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:164
  8271. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:103
  8272. msgid "any"
  8273. msgstr ""
  8274. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1570
  8275. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1578
  8276. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1583
  8277. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:103
  8278. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:134
  8279. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1238
  8280. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:83
  8281. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:48
  8282. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:51
  8283. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:89
  8284. msgid "auto"
  8285. msgstr "auto"
  8286. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:157
  8287. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:816
  8288. msgid "automatic"
  8289. msgstr "automatik"
  8290. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:198
  8291. msgid "automatic (disabled)"
  8292. msgstr ""
  8293. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:198
  8294. msgid "automatic (enabled)"
  8295. msgstr ""
  8296. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:82
  8297. msgid "baseT"
  8298. msgstr ""
  8299. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1643
  8300. msgid "bridged"
  8301. msgstr ""
  8302. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:146
  8303. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:406
  8304. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:35
  8305. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:99
  8306. #: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:31
  8307. msgid "create"
  8308. msgstr ""
  8309. #: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:69
  8310. msgid "create:"
  8311. msgstr ""
  8312. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:55
  8313. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:57
  8314. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:58
  8315. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:62
  8316. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:63
  8317. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:83
  8318. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:84
  8319. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:87
  8320. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:185
  8321. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:186
  8322. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:187
  8323. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:41
  8324. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:42
  8325. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:276
  8326. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:278
  8327. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:279
  8328. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:283
  8329. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:284
  8330. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:263
  8331. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:266
  8332. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:269
  8333. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:273
  8334. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:276
  8335. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:279
  8336. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:305
  8337. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:306
  8338. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:307
  8339. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:311
  8340. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:312
  8341. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:313
  8342. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:315
  8343. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:316
  8344. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:317
  8345. msgid "dBm"
  8346. msgstr "dBm"
  8347. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:73
  8348. msgctxt "nft unit"
  8349. msgid "day"
  8350. msgstr ""
  8351. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1082
  8352. msgid "disable"
  8353. msgstr "mematikan"
  8354. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:157
  8355. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:681
  8356. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:805
  8357. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:927
  8358. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:963
  8359. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1040
  8360. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:91
  8361. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:25
  8362. msgid "disabled"
  8363. msgstr ""
  8364. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:570
  8365. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:604
  8366. msgid "driver default"
  8367. msgstr ""
  8368. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1162
  8369. msgid "driver default (%s)"
  8370. msgstr ""
  8371. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:66
  8372. msgid "e.g: --proxy 10.10.10.10"
  8373. msgstr ""
  8374. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:68
  8375. msgid "e.g: dump"
  8376. msgstr ""
  8377. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:157
  8378. msgid "enabled"
  8379. msgstr ""
  8380. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:60
  8381. msgctxt "WireGuard keep alive interval"
  8382. msgid "every %ds"
  8383. msgstr ""
  8384. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:965
  8385. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:995
  8386. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:101
  8387. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:148
  8388. msgid "expired"
  8389. msgstr ""
  8390. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:820
  8391. msgid "forced"
  8392. msgstr ""
  8393. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:85
  8394. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:196
  8395. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:61
  8396. msgid "forward"
  8397. msgstr ""
  8398. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:98
  8399. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:84
  8400. msgid "full-duplex"
  8401. msgstr ""
  8402. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:98
  8403. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:84
  8404. msgid "half-duplex"
  8405. msgstr ""
  8406. #: modules/luci-base/htdocs/luci-static/resources/validation.js:593
  8407. msgid "hexadecimal encoded value"
  8408. msgstr ""
  8409. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1914
  8410. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:309
  8411. msgid "hidden"
  8412. msgstr ""
  8413. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:74
  8414. msgctxt "nft unit"
  8415. msgid "hour"
  8416. msgstr ""
  8417. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:811
  8418. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:933
  8419. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:967
  8420. msgid "hybrid mode"
  8421. msgstr ""
  8422. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:63
  8423. msgid "ignore"
  8424. msgstr ""
  8425. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:900
  8426. msgid "infinite (lease does not expire)"
  8427. msgstr ""
  8428. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:69
  8429. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:192
  8430. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:46
  8431. msgid "input"
  8432. msgstr ""
  8433. #: modules/luci-base/htdocs/luci-static/resources/validation.js:410
  8434. msgid "key between 8 and 63 characters"
  8435. msgstr ""
  8436. #: modules/luci-base/htdocs/luci-static/resources/validation.js:422
  8437. msgid "key with either 5 or 13 characters"
  8438. msgstr ""
  8439. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:924
  8440. msgid "known"
  8441. msgstr ""
  8442. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:926
  8443. msgid "known-othernet (on different subnet)"
  8444. msgstr ""
  8445. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:833
  8446. msgid "managed config (M)"
  8447. msgstr ""
  8448. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1397
  8449. msgid "medium security"
  8450. msgstr ""
  8451. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:75
  8452. msgctxt "nft unit"
  8453. msgid "minute"
  8454. msgstr ""
  8455. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1585
  8456. msgid "minutes"
  8457. msgstr ""
  8458. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:837
  8459. msgid "mobile home agent (H)"
  8460. msgstr ""
  8461. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:423
  8462. msgid "netif_carrier_ok()"
  8463. msgstr ""
  8464. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:47
  8465. msgid "no"
  8466. msgstr ""
  8467. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:104
  8468. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:76
  8469. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:232
  8470. msgid "no link"
  8471. msgstr ""
  8472. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1162
  8473. msgid "no override"
  8474. msgstr ""
  8475. #: modules/luci-base/htdocs/luci-static/resources/form.js:2269
  8476. #: modules/luci-base/htdocs/luci-static/resources/validation.js:59
  8477. msgid "non-empty value"
  8478. msgstr ""
  8479. #: modules/luci-base/htdocs/luci-static/resources/form.js:3424
  8480. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:840
  8481. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:39
  8482. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:56
  8483. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:60
  8484. msgid "none"
  8485. msgstr "tidak ada"
  8486. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:41
  8487. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:55
  8488. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:69
  8489. msgid "not present"
  8490. msgstr ""
  8491. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:349
  8492. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:959
  8493. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:963
  8494. msgid "off"
  8495. msgstr ""
  8496. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:818
  8497. msgid "on available prefix"
  8498. msgstr ""
  8499. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1398
  8500. msgid "open network"
  8501. msgstr ""
  8502. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:835
  8503. msgid "other config (O)"
  8504. msgstr ""
  8505. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:69
  8506. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:46
  8507. msgid "output"
  8508. msgstr ""
  8509. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:28
  8510. msgid "over a day ago"
  8511. msgstr ""
  8512. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:69
  8513. msgctxt "nft unit"
  8514. msgid "packets"
  8515. msgstr ""
  8516. #: modules/luci-base/htdocs/luci-static/resources/validation.js:252
  8517. msgid "positive decimal value"
  8518. msgstr ""
  8519. #: modules/luci-base/htdocs/luci-static/resources/validation.js:244
  8520. msgid "positive integer value"
  8521. msgstr ""
  8522. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:178
  8523. msgid "random"
  8524. msgstr ""
  8525. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1163
  8526. msgid "randomly generated"
  8527. msgstr ""
  8528. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:51
  8529. msgid ""
  8530. "reduces overhead by collecting and aggregating originator messages in a "
  8531. "single packet rather than many small ones"
  8532. msgstr ""
  8533. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:809
  8534. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:931
  8535. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:965
  8536. msgid "relay mode"
  8537. msgstr ""
  8538. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1644
  8539. msgid "routed"
  8540. msgstr ""
  8541. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1174
  8542. msgid "sec"
  8543. msgstr ""
  8544. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:807
  8545. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:929
  8546. msgid "server mode"
  8547. msgstr ""
  8548. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:54
  8549. msgid "sstpc Log-level"
  8550. msgstr ""
  8551. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1396
  8552. msgid "strong security"
  8553. msgstr ""
  8554. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:354
  8555. msgid "tagged"
  8556. msgstr ""
  8557. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1568
  8558. msgid "time units (TUs / 1.024 ms) [1000-65535]"
  8559. msgstr ""
  8560. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/uhttpd.js:9
  8561. msgid ""
  8562. "uHTTPd offers <abbr title=\"Hypertext Transfer Protocol\">HTTP</abbr> or "
  8563. "<abbr title=\"Hypertext Transfer Protocol Secure\">HTTPS</abbr> network "
  8564. "access."
  8565. msgstr ""
  8566. #: modules/luci-base/htdocs/luci-static/resources/validation.js:583
  8567. msgid "unique value"
  8568. msgstr ""
  8569. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:585
  8570. msgid "unknown"
  8571. msgstr ""
  8572. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:28
  8573. msgid "unknown version"
  8574. msgstr ""
  8575. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542
  8576. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:963
  8577. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:993
  8578. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:99
  8579. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:146
  8580. msgid "unlimited"
  8581. msgstr ""
  8582. #: modules/luci-base/htdocs/luci-static/resources/form.js:3789
  8583. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:76
  8584. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:138
  8585. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:370
  8586. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:397
  8587. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:433
  8588. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:470
  8589. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:566
  8590. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:53
  8591. #: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:38
  8592. msgid "unspecified"
  8593. msgstr ""
  8594. #: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:71
  8595. msgid "unspecified -or- create:"
  8596. msgstr "Tidak dirinci -atau- buat:"
  8597. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:352
  8598. msgid "untagged"
  8599. msgstr ""
  8600. #: modules/luci-base/htdocs/luci-static/resources/validation.js:257
  8601. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:177
  8602. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:188
  8603. msgid "valid IP address"
  8604. msgstr ""
  8605. #: modules/luci-base/htdocs/luci-static/resources/validation.js:257
  8606. msgid "valid IP address or prefix"
  8607. msgstr ""
  8608. #: modules/luci-base/htdocs/luci-static/resources/validation.js:294
  8609. msgid "valid IPv4 CIDR"
  8610. msgstr ""
  8611. #: modules/luci-base/htdocs/luci-static/resources/validation.js:265
  8612. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:181
  8613. msgid "valid IPv4 address"
  8614. msgstr ""
  8615. #: modules/luci-base/htdocs/luci-static/resources/validation.js:265
  8616. msgid "valid IPv4 address or network"
  8617. msgstr ""
  8618. #: modules/luci-base/htdocs/luci-static/resources/validation.js:389
  8619. msgid "valid IPv4 address:port"
  8620. msgstr ""
  8621. #: modules/luci-base/htdocs/luci-static/resources/validation.js:328
  8622. msgid "valid IPv4 network"
  8623. msgstr ""
  8624. #: modules/luci-base/htdocs/luci-static/resources/validation.js:288
  8625. msgid "valid IPv4 or IPv6 CIDR"
  8626. msgstr ""
  8627. #: modules/luci-base/htdocs/luci-static/resources/validation.js:278
  8628. msgid "valid IPv4 prefix value (0-32)"
  8629. msgstr ""
  8630. #: modules/luci-base/htdocs/luci-static/resources/validation.js:300
  8631. msgid "valid IPv6 CIDR"
  8632. msgstr ""
  8633. #: modules/luci-base/htdocs/luci-static/resources/validation.js:273
  8634. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:185
  8635. msgid "valid IPv6 address"
  8636. msgstr ""
  8637. #: modules/luci-base/htdocs/luci-static/resources/validation.js:273
  8638. msgid "valid IPv6 address or prefix"
  8639. msgstr ""
  8640. #: modules/luci-base/htdocs/luci-static/resources/validation.js:318
  8641. msgid "valid IPv6 host id"
  8642. msgstr ""
  8643. #: modules/luci-base/htdocs/luci-static/resources/validation.js:333
  8644. msgid "valid IPv6 network"
  8645. msgstr ""
  8646. #: modules/luci-base/htdocs/luci-static/resources/validation.js:283
  8647. msgid "valid IPv6 prefix value (0-128)"
  8648. msgstr ""
  8649. #: modules/luci-base/htdocs/luci-static/resources/validation.js:355
  8650. msgid "valid MAC address"
  8651. msgstr ""
  8652. #: modules/luci-base/htdocs/luci-static/resources/validation.js:426
  8653. msgid "valid UCI identifier"
  8654. msgstr ""
  8655. #: modules/luci-base/htdocs/luci-static/resources/validation.js:377
  8656. msgid "valid UCI identifier, hostname or IP address range"
  8657. msgstr ""
  8658. #: modules/luci-base/htdocs/luci-static/resources/validation.js:398
  8659. #: modules/luci-base/htdocs/luci-static/resources/validation.js:401
  8660. msgid "valid address:port"
  8661. msgstr ""
  8662. #: modules/luci-base/htdocs/luci-static/resources/validation.js:557
  8663. #: modules/luci-base/htdocs/luci-static/resources/validation.js:561
  8664. msgid "valid date (YYYY-MM-DD)"
  8665. msgstr ""
  8666. #: modules/luci-base/htdocs/luci-static/resources/validation.js:248
  8667. msgid "valid decimal value"
  8668. msgstr ""
  8669. #: modules/luci-base/htdocs/luci-static/resources/validation.js:420
  8670. msgid "valid hexadecimal WEP key"
  8671. msgstr ""
  8672. #: modules/luci-base/htdocs/luci-static/resources/validation.js:408
  8673. msgid "valid hexadecimal WPA key"
  8674. msgstr ""
  8675. #: modules/luci-base/htdocs/luci-static/resources/validation.js:383
  8676. msgid "valid host:port"
  8677. msgstr ""
  8678. #: modules/luci-base/htdocs/luci-static/resources/validation.js:370
  8679. #: modules/luci-base/htdocs/luci-static/resources/validation.js:372
  8680. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:127
  8681. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:133
  8682. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:161
  8683. msgid "valid hostname"
  8684. msgstr ""
  8685. #: modules/luci-base/htdocs/luci-static/resources/validation.js:360
  8686. msgid "valid hostname or IP address"
  8687. msgstr ""
  8688. #: modules/luci-base/htdocs/luci-static/resources/validation.js:240
  8689. msgid "valid integer value"
  8690. msgstr ""
  8691. #: modules/luci-base/htdocs/luci-static/resources/validation.js:355
  8692. msgid "valid multicast MAC address"
  8693. msgstr ""
  8694. #: modules/luci-base/htdocs/luci-static/resources/validation.js:435
  8695. msgid ""
  8696. "valid network device name between 1 and 15 characters not containing \":\", "
  8697. "\"/\", \"%\" or spaces"
  8698. msgstr ""
  8699. #: modules/luci-base/htdocs/luci-static/resources/validation.js:433
  8700. msgid "valid network device name, not \".\" or \"..\""
  8701. msgstr ""
  8702. #: modules/luci-base/htdocs/luci-static/resources/validation.js:323
  8703. msgid "valid network in address/netmask notation"
  8704. msgstr ""
  8705. #: modules/luci-base/htdocs/luci-static/resources/validation.js:532
  8706. msgid "valid phone digit (0-9, \"*\", \"#\", \"!\" or \".\")"
  8707. msgstr ""
  8708. #: modules/luci-base/htdocs/luci-static/resources/validation.js:346
  8709. #: modules/luci-base/htdocs/luci-static/resources/validation.js:349
  8710. msgid "valid port or port range (port1-port2)"
  8711. msgstr ""
  8712. #: modules/luci-base/htdocs/luci-static/resources/validation.js:338
  8713. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:192
  8714. msgid "valid port value"
  8715. msgstr ""
  8716. #: modules/luci-base/htdocs/luci-static/resources/validation.js:537
  8717. msgid "valid time (HH:MM:SS)"
  8718. msgstr ""
  8719. #: modules/luci-base/htdocs/luci-static/resources/validation.js:459
  8720. msgid "value between %d and %d characters"
  8721. msgstr ""
  8722. #: modules/luci-base/htdocs/luci-static/resources/validation.js:440
  8723. msgid "value between %f and %f"
  8724. msgstr ""
  8725. #: modules/luci-base/htdocs/luci-static/resources/validation.js:444
  8726. msgid "value greater or equal to %f"
  8727. msgstr ""
  8728. #: modules/luci-base/htdocs/luci-static/resources/validation.js:448
  8729. msgid "value smaller or equal to %f"
  8730. msgstr ""
  8731. #: modules/luci-base/htdocs/luci-static/resources/validation.js:453
  8732. msgid "value with %d characters"
  8733. msgstr ""
  8734. #: modules/luci-base/htdocs/luci-static/resources/validation.js:464
  8735. msgid "value with at least %d characters"
  8736. msgstr ""
  8737. #: modules/luci-base/htdocs/luci-static/resources/validation.js:469
  8738. msgid "value with at most %d characters"
  8739. msgstr ""
  8740. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1398
  8741. msgid "weak security"
  8742. msgstr ""
  8743. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:72
  8744. msgctxt "nft unit"
  8745. msgid "week"
  8746. msgstr ""
  8747. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:47
  8748. msgid "yes"
  8749. msgstr ""
  8750. #: modules/luci-compat/luasrc/view/cbi/delegator.htm:20
  8751. msgid "« Back"
  8752. msgstr "« Kembali"