base.po 460 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820118211182211823118241182511826118271182811829118301183111832118331183411835118361183711838118391184011841118421184311844118451184611847118481184911850118511185211853118541185511856118571185811859118601186111862118631186411865118661186711868118691187011871118721187311874118751187611877118781187911880118811188211883118841188511886118871188811889118901189111892118931189411895118961189711898118991190011901119021190311904119051190611907119081190911910119111191211913119141191511916119171191811919119201192111922119231192411925119261192711928119291193011931119321193311934119351193611937119381193911940119411194211943119441194511946119471194811949119501195111952119531195411955119561195711958119591196011961119621196311964119651196611967119681196911970119711197211973119741197511976119771197811979119801198111982119831198411985119861198711988119891199011991119921199311994119951199611997119981199912000120011200212003120041200512006120071200812009120101201112012120131201412015120161201712018120191202012021120221202312024120251202612027120281202912030120311203212033120341203512036120371203812039120401204112042120431204412045120461204712048120491205012051120521205312054120551205612057120581205912060120611206212063120641206512066120671206812069120701207112072120731207412075120761207712078120791208012081120821208312084120851208612087120881208912090120911209212093120941209512096120971209812099121001210112102121031210412105121061210712108121091211012111121121211312114121151211612117121181211912120121211212212123121241212512126121271212812129121301213112132121331213412135121361213712138121391214012141121421214312144121451214612147121481214912150121511215212153121541215512156121571215812159121601216112162121631216412165121661216712168121691217012171121721217312174121751217612177121781217912180121811218212183121841218512186121871218812189121901219112192121931219412195121961219712198121991220012201122021220312204122051220612207122081220912210122111221212213122141221512216122171221812219122201222112222122231222412225122261222712228122291223012231122321223312234122351223612237122381223912240122411224212243122441224512246122471224812249122501225112252122531225412255122561225712258122591226012261122621226312264122651226612267122681226912270122711227212273122741227512276122771227812279122801228112282122831228412285122861228712288122891229012291122921229312294122951229612297122981229912300123011230212303123041230512306123071230812309123101231112312123131231412315123161231712318123191232012321123221232312324123251232612327123281232912330123311233212333123341233512336123371233812339123401234112342123431234412345123461234712348123491235012351123521235312354123551235612357123581235912360123611236212363123641236512366123671236812369123701237112372123731237412375123761237712378123791238012381123821238312384123851238612387123881238912390123911239212393123941239512396123971239812399124001240112402124031240412405124061240712408124091241012411124121241312414124151241612417124181241912420124211242212423124241242512426124271242812429124301243112432124331243412435124361243712438124391244012441124421244312444124451244612447124481244912450124511245212453124541245512456124571245812459124601246112462124631246412465124661246712468124691247012471124721247312474124751247612477124781247912480124811248212483124841248512486124871248812489124901249112492124931249412495124961249712498124991250012501125021250312504125051250612507
  1. msgid ""
  2. msgstr ""
  3. "Project-Id-Version: PACKAGE VERSION\n"
  4. "PO-Revision-Date: 2024-01-10 20:57+0000\n"
  5. "Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\n"
  6. "Language-Team: Hebrew <https://hosted.weblate.org/projects/openwrt/luci/he/>"
  7. "\n"
  8. "Language: he\n"
  9. "MIME-Version: 1.0\n"
  10. "Content-Type: text/plain; charset=UTF-8\n"
  11. "Content-Transfer-Encoding: 8bit\n"
  12. "Plural-Forms: nplurals=2; plural=(n != 1);\n"
  13. "X-Generator: Weblate 5.4-dev\n"
  14. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1277
  15. msgid "!known (not known)"
  16. msgstr ""
  17. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:649
  18. msgctxt "Yet unknown nftables table family (\"family\" table \"name\")"
  19. msgid "\"%h\" table \"%h\""
  20. msgstr ""
  21. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1629
  22. msgid "%.1f dB"
  23. msgstr "%.1f דציבל"
  24. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:123
  25. msgid "%d Bit"
  26. msgstr "%d סיביות"
  27. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4132
  28. msgid "%d invalid field(s)"
  29. msgstr "%d שדות שגויים"
  30. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:26
  31. msgid "%dh ago"
  32. msgstr ""
  33. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:24
  34. msgid "%dm ago"
  35. msgstr ""
  36. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:22
  37. msgid "%ds ago"
  38. msgstr ""
  39. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:762
  40. msgid "%s adds 1.2.3.0/24 for IPv4 requestors and ::/0 for IPv6 requestors."
  41. msgstr ""
  42. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:763
  43. msgid "%s adds 1.2.3.0/24 for both IPv4 and IPv6 requestors."
  44. msgstr ""
  45. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:761
  46. msgid ""
  47. "%s adds the /24 and /96 subnets of the requestor for IPv4 and IPv6 "
  48. "requestors, respectively."
  49. msgstr ""
  50. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:311
  51. msgid ""
  52. "%s is an independent project that aims to transparently reduce latency of a "
  53. "connection over Yggdrasil network, utilizing NAT traversal to bypass "
  54. "intermediary nodes."
  55. msgstr ""
  56. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:35
  57. msgid "%s is untagged in multiple VLANs!"
  58. msgstr ""
  59. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:902
  60. msgid "%s means \"the address of the system running dnsmasq\"."
  61. msgstr ""
  62. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:744
  63. msgid "%s uses a human-readable encoding of hex-and-colons"
  64. msgstr ""
  65. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:743
  66. msgid "%s uses an alternative encoding of the MAC as base64"
  67. msgstr ""
  68. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:742
  69. msgid "%s uses the default MAC address format encoding"
  70. msgstr ""
  71. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:297
  72. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:409
  73. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:276
  74. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:310
  75. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:328
  76. msgid "(%d minute window, %d second interval)"
  77. msgstr ""
  78. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:843
  79. msgid "(Max 1h == 3600)"
  80. msgstr ""
  81. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:127
  82. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:133
  83. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:268
  84. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:292
  85. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:88
  86. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:91
  87. msgid "(empty)"
  88. msgstr "(ריק)"
  89. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:364
  90. #: modules/luci-compat/luasrc/view/cbi/network_netinfo.htm:23
  91. #: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:58
  92. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:271
  93. msgid "(no interfaces attached)"
  94. msgstr "(לא צורף אף מנשק)"
  95. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:620
  96. msgctxt "Label indicating further amount of allowed ips"
  97. msgid "+ %d more"
  98. msgstr ""
  99. #: modules/luci-compat/luasrc/view/cbi/ucisection.htm:48
  100. msgid "-- Additional Field --"
  101. msgstr "-- שדה נוסף --"
  102. #: modules/luci-base/htdocs/luci-static/resources/cbi.js:275
  103. #: modules/luci-base/htdocs/luci-static/resources/form.js:3747
  104. #: modules/luci-base/htdocs/luci-static/resources/form.js:4244
  105. #: modules/luci-base/htdocs/luci-static/resources/ui.js:799
  106. #: modules/luci-base/htdocs/luci-static/resources/ui.js:1037
  107. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2030
  108. #: modules/luci-compat/luasrc/view/cbi/header.htm:8
  109. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:89
  110. msgid "-- Please choose --"
  111. msgstr "-- נא לבחור --"
  112. #: modules/luci-base/htdocs/luci-static/resources/cbi.js:276
  113. #: modules/luci-base/htdocs/luci-static/resources/ui.js:1038
  114. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2031
  115. #: modules/luci-compat/luasrc/view/cbi/header.htm:9
  116. msgid "-- custom --"
  117. msgstr "-- מותאם אישית --"
  118. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:271
  119. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:378
  120. msgid "-- match by label --"
  121. msgstr "-- התאמה לפי תווית --"
  122. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:257
  123. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:361
  124. msgid "-- match by uuid --"
  125. msgstr ""
  126. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:27
  127. #: modules/luci-compat/luasrc/view/cbi/network_ifacelist.htm:44
  128. #: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:23
  129. msgid "-- please select --"
  130. msgstr "-- נא לבחור --"
  131. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:59
  132. msgctxt "sstp log level value"
  133. msgid "0"
  134. msgstr ""
  135. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1065
  136. msgid "0 = not using RSSI threshold, 1 = do not change driver default"
  137. msgstr ""
  138. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:60
  139. msgctxt "sstp log level value"
  140. msgid "1"
  141. msgstr ""
  142. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:236
  143. msgid "1 Minute Load:"
  144. msgstr "עומס במשך דקה:"
  145. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:323
  146. msgctxt "nft amount of flags"
  147. msgid "1 flag"
  148. msgid_plural "%d flags"
  149. msgstr[0] ""
  150. msgstr[1] ""
  151. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1250
  152. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1000
  153. msgid "12h (12 hours - default)"
  154. msgstr ""
  155. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:256
  156. msgid "15 Minute Load:"
  157. msgstr "עומס במשך רבע שעה:"
  158. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:61
  159. msgctxt "sstp log level value"
  160. msgid "2"
  161. msgstr ""
  162. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1574
  163. msgid "256"
  164. msgstr ""
  165. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:62
  166. msgctxt "sstp log level value"
  167. msgid "3"
  168. msgstr ""
  169. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1249
  170. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:999
  171. msgid "3h (3 hours)"
  172. msgstr ""
  173. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:63
  174. msgctxt "sstp log level value"
  175. msgid "4"
  176. msgstr ""
  177. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1673
  178. msgid "4-character hexadecimal ID"
  179. msgstr ""
  180. #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:20
  181. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:11
  182. msgid "464XLAT (CLAT)"
  183. msgstr ""
  184. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:246
  185. msgid "5 Minute Load:"
  186. msgstr "עומס במשך 5 דקות:"
  187. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1248
  188. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:998
  189. msgid "5m (5 minutes)"
  190. msgstr ""
  191. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1702
  192. msgid "6-octet identifier as a hex string - no colons"
  193. msgstr ""
  194. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1251
  195. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1001
  196. msgid "7d (7 days)"
  197. msgstr ""
  198. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1725
  199. msgid "802.11k RRM"
  200. msgstr ""
  201. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1734
  202. msgid "802.11k: Enable beacon report via radio measurements."
  203. msgstr ""
  204. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1730
  205. msgid "802.11k: Enable neighbor report via radio measurements."
  206. msgstr ""
  207. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1662
  208. msgid "802.11r Fast Transition"
  209. msgstr ""
  210. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1250
  211. msgid "802.11v: BSS Max Idle. Units: seconds."
  212. msgstr ""
  213. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1760
  214. msgid "802.11v: Basic Service Set (BSS) transition management."
  215. msgstr ""
  216. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1749
  217. msgid "802.11v: Local Time Zone Advertisement in management frames."
  218. msgstr ""
  219. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1764
  220. msgid ""
  221. "802.11v: Proxy ARP enables non-AP STA to remain in power-save for longer."
  222. msgstr ""
  223. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1740
  224. msgid "802.11v: Time Advertisement in management frames."
  225. msgstr ""
  226. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1753
  227. msgid ""
  228. "802.11v: Wireless Network Management (WNM) Sleep Mode (extended sleep mode "
  229. "for stations)."
  230. msgstr ""
  231. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1757
  232. msgid ""
  233. "802.11v: Wireless Network Management (WNM) Sleep Mode Fixes: Prevents "
  234. "reinstallation attacks."
  235. msgstr ""
  236. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1907
  237. msgid "802.11w Association SA Query maximum timeout"
  238. msgstr ""
  239. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1914
  240. msgid "802.11w Association SA Query retry timeout"
  241. msgstr ""
  242. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1888
  243. msgid "802.11w Management Frame Protection"
  244. msgstr ""
  245. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1907
  246. msgid "802.11w maximum timeout"
  247. msgstr ""
  248. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1914
  249. msgid "802.11w retry timeout"
  250. msgstr ""
  251. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:235
  252. msgid "; invalid MAC:"
  253. msgstr ""
  254. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1082
  255. msgid "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>"
  256. msgstr ""
  257. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1071
  258. msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>"
  259. msgstr ""
  260. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:690
  261. msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Netmask"
  262. msgstr ""
  263. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:58
  264. msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Configuration"
  265. msgstr "הגדרות <abbr title=\"Light Emitting Diode\">LED</abbr>"
  266. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:70
  267. msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Name"
  268. msgstr "שם <abbr title=\"Light Emitting Diode\">LED</abbr>"
  269. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:976
  270. msgid "<abbr title=\"Neighbour Discovery Protocol\">NDP</abbr>-Proxy"
  271. msgstr ""
  272. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:921
  273. msgid "<abbr title=\"Prefix Delegation\">PD</abbr> minimum length"
  274. msgstr ""
  275. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:815
  276. msgid "<abbr title=\"Router Advertisement\">RA</abbr> Flags"
  277. msgstr ""
  278. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:890
  279. msgid "<abbr title=\"Router Advertisement\">RA</abbr> Hop Limit"
  280. msgstr ""
  281. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:864
  282. msgid "<abbr title=\"Router Advertisement\">RA</abbr> Lifetime"
  283. msgstr ""
  284. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:871
  285. msgid "<abbr title=\"Router Advertisement\">RA</abbr> MTU"
  286. msgstr ""
  287. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:785
  288. msgid "<abbr title=\"Router Advertisement\">RA</abbr>-Service"
  289. msgstr ""
  290. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:87
  291. msgctxt "nft relational \">\" operator expression"
  292. msgid "<var>%s</var> greater than <strong>%s</strong>"
  293. msgstr ""
  294. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:85
  295. msgctxt "nft relational \">=\" operator expression"
  296. msgid "<var>%s</var> greater than or equal to <strong>%s</strong>"
  297. msgstr ""
  298. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:90
  299. msgctxt "nft set match expression"
  300. msgid "<var>%s</var> in set <strong>%s</strong>"
  301. msgstr ""
  302. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:83
  303. msgctxt "nft relational \"==\" operator expression"
  304. msgid "<var>%s</var> is <strong>%s</strong>"
  305. msgstr ""
  306. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:89
  307. msgctxt "nft relational \"in\" operator expression"
  308. msgid "<var>%s</var> is one of <strong>%s</strong>"
  309. msgstr ""
  310. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:88
  311. msgctxt "nft relational \"<\" operator expression"
  312. msgid "<var>%s</var> lower than <strong>%s</strong>"
  313. msgstr ""
  314. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:86
  315. msgctxt "nft relational \"<=\" operator expression"
  316. msgid "<var>%s</var> lower than or equal to <strong>%s</strong>"
  317. msgstr ""
  318. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:84
  319. msgctxt "nft relational \"!=\" operator expression"
  320. msgid "<var>%s</var> not <strong>%s</strong>"
  321. msgstr ""
  322. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:91
  323. msgctxt "nft not in set match expression"
  324. msgid "<var>%s</var> not in set <strong>%s</strong>"
  325. msgstr ""
  326. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:86
  327. msgid ""
  328. "A batman-adv node can either run in server mode (sharing its internet "
  329. "connection with the mesh) or in client mode (searching for the most suitable "
  330. "internet connection in the mesh) or having the gateway support turned off "
  331. "entirely (which is the default setting)."
  332. msgstr ""
  333. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:424
  334. msgid "A configuration for the device \"%s\" already exists"
  335. msgstr ""
  336. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:241
  337. msgid ""
  338. "A default MTU of 65535 is set by Yggdrasil. It is recomended to utilize the "
  339. "default."
  340. msgstr ""
  341. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2794
  342. msgid "A directory with the same name already exists."
  343. msgstr ""
  344. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2666
  345. msgid "A new login is required since the authentication session expired."
  346. msgstr ""
  347. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:96
  348. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:173
  349. msgid ""
  350. "A numeric table index, or symbol alias declared in %s. Special aliases local "
  351. "(255), main (254) and default (253) are also valid"
  352. msgstr ""
  353. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1609
  354. msgid "A43C + J43 + A43"
  355. msgstr ""
  356. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1610
  357. msgid "A43C + J43 + A43 + V43"
  358. msgstr ""
  359. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1622
  360. msgid "ADSL"
  361. msgstr "ADSL"
  362. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1596
  363. msgid "ADSL (G.992.1) Annex A"
  364. msgstr ""
  365. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1597
  366. msgid "ADSL (G.992.1) Annex B"
  367. msgstr ""
  368. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1590
  369. msgid "ADSL (all variants) Annex A/L/M"
  370. msgstr ""
  371. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1586
  372. msgid "ADSL (all variants) Annex A/L/M + VDSL2 Annex A/B/C"
  373. msgstr ""
  374. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1591
  375. msgid "ADSL (all variants) Annex B"
  376. msgstr ""
  377. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1587
  378. msgid "ADSL (all variants) Annex B + VDSL2 Annex A/B/C"
  379. msgstr ""
  380. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1592
  381. msgid "ADSL (all variants) Annex B/J"
  382. msgstr ""
  383. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1588
  384. msgid "ADSL (all variants) Annex B/J + VDSL2 Annex A/B/C"
  385. msgstr ""
  386. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1594
  387. msgid "ADSL (all variants) Annex M"
  388. msgstr ""
  389. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1599
  390. msgid "ADSL2 (G.992.3) Annex A"
  391. msgstr ""
  392. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1600
  393. msgid "ADSL2 (G.992.3) Annex B"
  394. msgstr ""
  395. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1601
  396. msgid "ADSL2 (G.992.3) Annex L"
  397. msgstr ""
  398. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1602
  399. msgid "ADSL2 (G.992.3) Annex M"
  400. msgstr ""
  401. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1603
  402. msgid "ADSL2+ (G.992.5) Annex A"
  403. msgstr ""
  404. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1604
  405. msgid "ADSL2+ (G.992.5) Annex B"
  406. msgstr ""
  407. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1605
  408. msgid "ADSL2+ (G.992.5) Annex M"
  409. msgstr ""
  410. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1595
  411. msgid "ANSI T1.413"
  412. msgstr ""
  413. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:95
  414. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:65
  415. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:65
  416. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:91
  417. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:77
  418. msgid "APN"
  419. msgstr ""
  420. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:144
  421. msgid "APN profile index"
  422. msgstr ""
  423. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:358
  424. msgid "ARP"
  425. msgstr ""
  426. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:371
  427. msgid "ARP IP Targets"
  428. msgstr ""
  429. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:363
  430. msgid "ARP Interval"
  431. msgstr ""
  432. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:387
  433. msgid "ARP Validation"
  434. msgstr ""
  435. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:379
  436. msgid "ARP mode to consider a slave as being up"
  437. msgstr ""
  438. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:82
  439. msgid "ARP monitoring is not supported for the selected policy!"
  440. msgstr ""
  441. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:107
  442. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:107
  443. msgid "ARP proxy"
  444. msgstr ""
  445. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:175
  446. msgid "ARP retry threshold"
  447. msgstr "סף ניסיונות חוזרים של ARP"
  448. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:637
  449. msgid "ARP traffic table \"%h\""
  450. msgstr ""
  451. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1213
  452. msgid ""
  453. "ARP, IPv4 and IPv6 (even 802.1Q) with multicast destination MACs are unicast "
  454. "to the STA MAC address. Note: This is not Directed Multicast Service (DMS) "
  455. "in 802.11v. Note: might break receiver STA multicast expectations."
  456. msgstr ""
  457. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1617
  458. msgid "ATM (Asynchronous Transfer Mode)"
  459. msgstr ""
  460. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1638
  461. #, fuzzy
  462. msgid "ATM Bridges"
  463. msgstr "גשרי ATM"
  464. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1670
  465. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:66
  466. msgid "ATM Virtual Channel Identifier (VCI)"
  467. msgstr "ATM מזהה ערוץ וירטואלי (VCI)"
  468. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1671
  469. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:70
  470. msgid "ATM Virtual Path Identifier (VPI)"
  471. msgstr "מזהה נתיבים וירטואליים של ATM‏ (VPI)"
  472. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1638
  473. msgid ""
  474. "ATM bridges expose encapsulated ethernet in AAL5 connections as virtual "
  475. "Linux network interfaces which can be used in conjunction with DHCP or PPP "
  476. "to dial into the provider network."
  477. msgstr ""
  478. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1677
  479. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:62
  480. msgid "ATM device number"
  481. msgstr "מס' התקן של ATM"
  482. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:275
  483. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:560
  484. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:564
  485. msgid "Absent Interface"
  486. msgstr ""
  487. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:532
  488. msgid "Accept DNS queries only from hosts whose address is on a local subnet."
  489. msgstr ""
  490. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:267
  491. msgid "Accept from public keys"
  492. msgstr ""
  493. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:701
  494. msgid "Accept local"
  495. msgstr ""
  496. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:95
  497. msgctxt "nft accept action"
  498. msgid "Accept packet"
  499. msgstr ""
  500. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:701
  501. msgid "Accept packets with local source addresses"
  502. msgstr ""
  503. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:47
  504. #, fuzzy
  505. msgid "Access Concentrator"
  506. msgstr "מרכז גישות"
  507. #: modules/luci-base/htdocs/luci-static/resources/network.js:3904
  508. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1053
  509. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1168
  510. msgid "Access Point"
  511. msgstr "נקודת גישה"
  512. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:60
  513. msgid "Access Point Isolation"
  514. msgstr ""
  515. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:99
  516. msgid "Access Technologies"
  517. msgstr ""
  518. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:390
  519. msgid "Actions"
  520. msgstr "פעולות"
  521. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:14
  522. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:134
  523. msgid "Active"
  524. msgstr ""
  525. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:72
  526. msgid "Active Connections"
  527. msgstr "חיבורים פעילים"
  528. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:35
  529. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:182
  530. msgid "Active DHCP Leases"
  531. msgstr "הרשאות DHCP פעילות"
  532. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:54
  533. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:184
  534. msgid "Active DHCPv6 Leases"
  535. msgstr "הרשאות DHCPv6 פעילות"
  536. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:265
  537. msgid "Active IPv4 Routes"
  538. msgstr ""
  539. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:268
  540. msgid "Active IPv4 Rules"
  541. msgstr ""
  542. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:275
  543. msgid "Active IPv6 Routes"
  544. msgstr ""
  545. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:278
  546. msgid "Active IPv6 Rules"
  547. msgstr ""
  548. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:256
  549. msgid "Active peers"
  550. msgstr ""
  551. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:210
  552. msgid "Active-Backup policy (active-backup, 1)"
  553. msgstr ""
  554. # צריך אימות של מישהו שמבין יותר במושגים האלו אם צריך בכלל לתרגם את זה או להשאיר כמו שזה
  555. #: modules/luci-base/htdocs/luci-static/resources/network.js:3905
  556. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1055
  557. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:23
  558. #, fuzzy
  559. msgid "Ad-Hoc"
  560. msgstr "אד־הוק"
  561. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:215
  562. msgid "Adaptive load balancing (balance-alb, 6)"
  563. msgstr ""
  564. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:214
  565. msgid "Adaptive transmit load balancing (balance-tlb, 5)"
  566. msgstr ""
  567. #: modules/luci-base/htdocs/luci-static/resources/form.js:2235
  568. #: modules/luci-base/htdocs/luci-static/resources/form.js:2238
  569. #: modules/luci-base/htdocs/luci-static/resources/form.js:2251
  570. #: modules/luci-base/htdocs/luci-static/resources/form.js:2259
  571. #: modules/luci-base/htdocs/luci-static/resources/form.js:3545
  572. #: modules/luci-compat/luasrc/view/cbi/nsection.htm:25
  573. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:189
  574. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:197
  575. #: modules/luci-compat/luasrc/view/cbi/tsection.htm:39
  576. #: modules/luci-compat/luasrc/view/cbi/tsection.htm:47
  577. #: modules/luci-compat/luasrc/view/cbi/ucisection.htm:54
  578. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:946
  579. msgid "Add"
  580. msgstr "הוסף"
  581. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1642
  582. msgid "Add ATM Bridge"
  583. msgstr ""
  584. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:92
  585. msgid "Add IPv4 address…"
  586. msgstr ""
  587. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:186
  588. msgid "Add IPv6 address…"
  589. msgstr ""
  590. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:65
  591. msgid "Add LED action"
  592. msgstr ""
  593. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:221
  594. msgid "Add VLAN"
  595. msgstr ""
  596. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:757
  597. msgid ""
  598. "Add a subnet address to the DNS queries which are forwarded upstream, "
  599. "leaving this value empty disables the feature."
  600. msgstr ""
  601. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1391
  602. msgid "Add device configuration"
  603. msgstr ""
  604. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1331
  605. msgid "Add device configuration…"
  606. msgstr ""
  607. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:15
  608. msgid "Add instance"
  609. msgstr ""
  610. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:171
  611. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:177
  612. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:274
  613. msgid "Add key"
  614. msgstr ""
  615. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:263
  616. msgid ""
  617. "Add listeners in order to accept incoming peerings from non-local nodes. "
  618. "Multicast peer discovery works regardless of listeners set here. URI Format: "
  619. "<code>tls://0.0.0.0:0</code> or <code>tls://[::]:0</code> to listen on all "
  620. "interfaces. Choose an acceptable URI <code>tls://</code>, <code>tcp://</"
  621. "code>, <code>unix://</code> or <code>quic://</code>"
  622. msgstr ""
  623. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:433
  624. msgid "Add local domain suffix to names served from hosts files."
  625. msgstr "הוסף דומיין מקומי לשמות המוגשים מהקבצים של המארח"
  626. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:283
  627. msgid "Add multicast rule"
  628. msgstr ""
  629. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:454
  630. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1215
  631. msgid "Add new interface..."
  632. msgstr "הוסף ממשק חדש..."
  633. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:188
  634. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:188
  635. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:210
  636. msgid "Add peer"
  637. msgstr ""
  638. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:274
  639. msgid "Add peer address"
  640. msgstr ""
  641. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:740
  642. msgid "Add requestor MAC"
  643. msgstr ""
  644. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:352
  645. msgctxt "Dnsmasq instance"
  646. msgid "Add server instance"
  647. msgstr ""
  648. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1298
  649. msgid "Add static forward and reverse DNS entries for this host."
  650. msgstr ""
  651. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:756
  652. msgid "Add subnet address to forwards"
  653. msgstr ""
  654. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:741
  655. msgid ""
  656. "Add the MAC address of the requestor to DNS queries which are forwarded "
  657. "upstream."
  658. msgstr ""
  659. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:335
  660. msgid "Add to Blacklist"
  661. msgstr ""
  662. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:335
  663. msgid "Add to Whitelist"
  664. msgstr ""
  665. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1154
  666. msgid "Adding an IPv6 to an IPv4 set and vice-versa silently fails."
  667. msgstr ""
  668. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:178
  669. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:178
  670. msgid "Additional Peers"
  671. msgstr ""
  672. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:376
  673. msgid "Additional configuration settings (in TOML format)."
  674. msgstr ""
  675. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:662
  676. msgid "Additional hosts files"
  677. msgstr "קבצי מארח נוספים"
  678. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:901
  679. msgid "Additional options to send to the below match tags."
  680. msgstr ""
  681. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:734
  682. msgid "Additional servers file"
  683. msgstr ""
  684. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:38
  685. msgid "Address"
  686. msgstr "כתובת"
  687. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:613
  688. msgid "Address families of \"Relay from\" and \"Relay to address\" must match."
  689. msgstr ""
  690. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:21
  691. msgctxt "nft meta nfproto"
  692. msgid "Address family"
  693. msgstr ""
  694. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:271
  695. msgid "Address setting is invalid"
  696. msgstr ""
  697. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:151
  698. msgid "Address to access local relay bridge"
  699. msgstr ""
  700. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:476
  701. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:793
  702. msgid "Addresses"
  703. msgstr ""
  704. #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:3
  705. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:15
  706. #, fuzzy
  707. msgid "Administration"
  708. msgstr "מנהלה"
  709. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:468
  710. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:632
  711. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1668
  712. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:41
  713. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:133
  714. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:985
  715. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1049
  716. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:241
  717. msgid "Advanced Settings"
  718. msgstr "הגדרות מתקדמות"
  719. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:391
  720. msgid "Advanced device options"
  721. msgstr ""
  722. #: protocols/luci-proto-external/htdocs/luci-static/resources/protocol/external.js:34
  723. msgid ""
  724. "Afer making changes to network using external protocol, network must be "
  725. "manually restarted."
  726. msgstr ""
  727. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:76
  728. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:76
  729. msgid "Ageing"
  730. msgstr ""
  731. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:567
  732. msgid "Ageing time"
  733. msgstr ""
  734. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:50
  735. msgid "Aggregate Originator Messages"
  736. msgstr ""
  737. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:265
  738. msgid "Aggregation Selection Logic"
  739. msgstr ""
  740. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:268
  741. msgid "Aggregator: All slaves down or has no slaves (stable, 0)"
  742. msgstr ""
  743. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:270
  744. msgid ""
  745. "Aggregator: Chosen by the largest number of ports + slave added/removed or "
  746. "state changes (count, 2)"
  747. msgstr ""
  748. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:269
  749. msgid "Aggregator: Slave added/removed or state changes (bandwidth, 1)"
  750. msgstr ""
  751. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:192
  752. #, fuzzy
  753. msgid "Alert"
  754. msgstr "אזעקה"
  755. #: modules/luci-base/htdocs/luci-static/resources/network.js:3023
  756. #: modules/luci-compat/luasrc/model/network.lua:1417
  757. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:62
  758. msgid "Alias Interface"
  759. msgstr ""
  760. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:132
  761. msgid "Alias of \"%s\""
  762. msgstr ""
  763. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:771
  764. msgid "All servers"
  765. msgstr ""
  766. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:674
  767. msgid ""
  768. "Allocate IP addresses sequentially, starting from the lowest available "
  769. "address."
  770. msgstr ""
  771. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:673
  772. msgid "Allocate IPs sequentially"
  773. msgstr ""
  774. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:355
  775. msgid "Allocate listen addresses"
  776. msgstr ""
  777. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:27
  778. msgid "Allow <abbr title=\"Secure Shell\">SSH</abbr> password authentication"
  779. msgstr ""
  780. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1260
  781. msgid "Allow AP mode to disconnect STAs based on low ACK condition"
  782. msgstr ""
  783. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:356
  784. msgid ""
  785. "Allow Yggdrasil Jumper to automatically configure Yggdrasil with proper "
  786. "listen address and random port."
  787. msgstr ""
  788. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1151
  789. #, fuzzy
  790. msgid "Allow all except listed"
  791. msgstr "אפשר הכל חוץ מהרשומים"
  792. #: modules/luci-compat/root/usr/share/rpcd/acl.d/luci-compat.json:3
  793. msgid "Allow full UCI access for legacy applications"
  794. msgstr ""
  795. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1005
  796. msgid "Allow legacy 802.11b rates"
  797. msgstr ""
  798. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1150
  799. msgid "Allow listed only"
  800. msgstr "אפשר רשומים בלבד"
  801. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:514
  802. #, fuzzy
  803. msgid "Allow localhost"
  804. msgstr "אפשר localhost"
  805. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:178
  806. msgid "Allow rebooting the device"
  807. msgstr ""
  808. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:38
  809. msgid "Allow remote hosts to connect to local SSH forwarded ports"
  810. msgstr ""
  811. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:33
  812. msgid "Allow root logins with password"
  813. msgstr ""
  814. #: modules/luci-base/root/usr/share/rpcd/acl.d/luci-base.json:3
  815. msgid "Allow system feature probing"
  816. msgstr ""
  817. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:33
  818. msgid "Allow the <em>root</em> user to log in with password"
  819. msgstr ""
  820. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:609
  821. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:782
  822. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:56
  823. msgid "Allowed IPs"
  824. msgstr "כתובות IP מורשות"
  825. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:88
  826. msgid "Allowed network technology"
  827. msgstr ""
  828. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:302
  829. msgid "AllowedIPs setting is invalid"
  830. msgstr ""
  831. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:42
  832. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:42
  833. msgid "Alternatively, a multicast address to reach a group of peers."
  834. msgstr ""
  835. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:775
  836. msgid "Always"
  837. msgstr ""
  838. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/none.js:6
  839. msgid "Always off (kernel: none)"
  840. msgstr ""
  841. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/default-on.js:5
  842. msgid "Always on (kernel: default-on)"
  843. msgstr ""
  844. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:914
  845. msgid ""
  846. "Always send the chosen DHCP options. Sometimes needed, with e.g. PXELinux."
  847. msgstr ""
  848. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1032
  849. msgid ""
  850. "Always use 40MHz channels even if the secondary channel overlaps. Using this "
  851. "option does not comply with IEEE 802.11n-2009!"
  852. msgstr ""
  853. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:740
  854. msgid "Amount of Duplicate Address Detection probes to send"
  855. msgstr ""
  856. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:119
  857. msgid "Amount of seconds to wait for the modem to become ready"
  858. msgstr ""
  859. #: modules/luci-base/htdocs/luci-static/resources/form.js:610
  860. msgid "An error occurred while saving the form:"
  861. msgstr ""
  862. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:139
  863. msgid "An optional, short description for this device"
  864. msgstr ""
  865. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1584
  866. msgid "Annex"
  867. msgstr ""
  868. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:843
  869. msgid ""
  870. "Announce NAT64 prefix in <abbr title=\"Router Advertisement\">RA</abbr> "
  871. "messages."
  872. msgstr ""
  873. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:935
  874. msgid "Announce this device as IPv6 DNS server."
  875. msgstr ""
  876. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:801
  877. msgid ""
  878. "Announce this device as default router if a local IPv6 default route is "
  879. "present."
  880. msgstr ""
  881. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:803
  882. msgid ""
  883. "Announce this device as default router if a public IPv6 prefix is available, "
  884. "regardless of local default route availability."
  885. msgstr ""
  886. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:805
  887. msgid ""
  888. "Announce this device as default router regardless of whether a prefix or "
  889. "default route is present."
  890. msgstr ""
  891. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:942
  892. msgid "Announced DNS domains"
  893. msgstr ""
  894. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:926
  895. msgid "Announced IPv6 DNS servers"
  896. msgstr ""
  897. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1878
  898. msgid "Anonymous Identity"
  899. msgstr ""
  900. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:162
  901. msgid "Anonymous Mount"
  902. msgstr ""
  903. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:158
  904. msgid "Anonymous Swap"
  905. msgstr ""
  906. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:518
  907. msgctxt "nft match any traffic"
  908. msgid "Any packet"
  909. msgstr ""
  910. # אזור?
  911. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:93
  912. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:183
  913. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:205
  914. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:60
  915. #, fuzzy
  916. msgid "Any zone"
  917. msgstr "כל תחום"
  918. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:119
  919. msgid "Apply backup?"
  920. msgstr ""
  921. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4772
  922. msgid "Apply request failed with status <code>%h</code>"
  923. msgstr ""
  924. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2175
  925. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4488
  926. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4610
  927. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4746
  928. msgid "Apply unchecked"
  929. msgstr ""
  930. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4742
  931. msgid "Apply, reverting in case of connectivity loss"
  932. msgstr ""
  933. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4683
  934. msgid "Applying configuration changes… %ds"
  935. msgstr ""
  936. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:57
  937. msgid "Architecture"
  938. msgstr ""
  939. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:152
  940. msgid "Arp-scan"
  941. msgstr ""
  942. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1056
  943. msgid ""
  944. "Assign a part of given length of every public IPv6-prefix to this interface"
  945. msgstr ""
  946. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1269
  947. msgid "Assign new, freeform tags to this entry."
  948. msgstr ""
  949. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1061
  950. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:27
  951. msgid ""
  952. "Assign prefix parts using this hexadecimal subprefix ID for this interface."
  953. msgstr ""
  954. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2420
  955. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:366
  956. msgid "Associated Stations"
  957. msgstr "תחנות קשורות"
  958. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:151
  959. msgid "Associations"
  960. msgstr ""
  961. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:126
  962. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:127
  963. msgid ""
  964. "At least <strong>%h</strong> per <strong>%h</strong>, burst of <strong>%h</"
  965. "strong>"
  966. msgstr ""
  967. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:124
  968. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:125
  969. msgid ""
  970. "At most <strong>%h</strong> per <strong>%h</strong>, burst of <strong>%h</"
  971. "strong>"
  972. msgstr ""
  973. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:154
  974. msgid "Attempt to enable configured mount points for attached devices"
  975. msgstr ""
  976. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1532
  977. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1539
  978. msgid "Attributes to add/replace in each request."
  979. msgstr ""
  980. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:145
  981. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:64
  982. msgid "Auth Group"
  983. msgstr ""
  984. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1817
  985. msgid "Authentication"
  986. msgstr "אימות"
  987. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:76
  988. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:79
  989. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:89
  990. msgid "Authentication Type"
  991. msgstr ""
  992. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:419
  993. msgid "Authoritative"
  994. msgstr "מוסמך"
  995. #: modules/luci-base/ucode/template/sysauth.ut:17
  996. #: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:11
  997. msgid "Authorization Required"
  998. msgstr "דרוש אימות"
  999. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:365
  1000. msgid "Autofill listen addresses"
  1001. msgstr ""
  1002. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:120
  1003. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:18
  1004. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:24
  1005. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:107
  1006. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:116
  1007. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:113
  1008. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:51
  1009. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:96
  1010. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:82
  1011. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:56
  1012. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:69
  1013. msgid "Automatic"
  1014. msgstr ""
  1015. #: modules/luci-compat/luasrc/model/network/proto_hnet.lua:7
  1016. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:7
  1017. msgid "Automatic Homenet (HNCP)"
  1018. msgstr ""
  1019. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:97
  1020. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:97
  1021. msgid ""
  1022. "Automatic mac learning using multicast; inserts unknown source link layer "
  1023. "addresses and IP addresses into the VXLAN device %s"
  1024. msgstr ""
  1025. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:174
  1026. msgid "Automatically check filesystem for errors before mounting"
  1027. msgstr ""
  1028. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1049
  1029. msgid ""
  1030. "Automatically handle multiple uplink interfaces using source-based policy "
  1031. "routing."
  1032. msgstr ""
  1033. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:170
  1034. msgid "Automatically mount filesystems on hotplug"
  1035. msgstr ""
  1036. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:166
  1037. msgid "Automatically mount swap on hotplug"
  1038. msgstr ""
  1039. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:170
  1040. msgid "Automount Filesystem"
  1041. msgstr ""
  1042. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:166
  1043. msgid "Automount Swap"
  1044. msgstr ""
  1045. #: protocols/luci-proto-autoip/htdocs/luci-static/resources/protocol/autoip.js:6
  1046. msgid "Avahi IPv4LL"
  1047. msgstr ""
  1048. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:193
  1049. msgid "Available"
  1050. msgstr "זמין"
  1051. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:270
  1052. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:280
  1053. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:334
  1054. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:344
  1055. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:354
  1056. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:239
  1057. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:249
  1058. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:259
  1059. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:265
  1060. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:275
  1061. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:293
  1062. msgid "Average:"
  1063. msgstr "ממוצע:"
  1064. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:70
  1065. msgid "Avoid Bridge Loops"
  1066. msgstr ""
  1067. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1611
  1068. msgid "B43 + B43C"
  1069. msgstr ""
  1070. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1612
  1071. msgid "B43 + B43C + V43"
  1072. msgstr ""
  1073. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:48
  1074. msgid "BR / DMR / AFTR"
  1075. msgstr ""
  1076. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1760
  1077. msgid "BSS Transition"
  1078. msgstr ""
  1079. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:158
  1080. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:182
  1081. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1973
  1082. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:447
  1083. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:149
  1084. msgid "BSSID"
  1085. msgstr "BSSID"
  1086. #: modules/luci-compat/luasrc/view/cbi/footer.htm:14
  1087. #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:48
  1088. msgid "Back to Overview"
  1089. msgstr "חזרה לסקירה"
  1090. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:851
  1091. msgid "Back to peer configuration"
  1092. msgstr ""
  1093. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:393
  1094. msgid "Backup"
  1095. msgstr "גיבוי"
  1096. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:128
  1097. msgid "Backup / Flash Firmware"
  1098. msgstr "גיבוי / קושחת פלאש"
  1099. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:353
  1100. msgid "Backup file list"
  1101. msgstr "גיבוי רשימת קבצים"
  1102. #: modules/luci-compat/luasrc/view/cbi/wireless_modefreq.htm:186
  1103. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:562
  1104. msgid "Band"
  1105. msgstr ""
  1106. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:314
  1107. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:139
  1108. msgid "Bandwidth"
  1109. msgstr ""
  1110. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:431
  1111. msgid "Base device"
  1112. msgstr ""
  1113. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:144
  1114. msgid "Base64-encoded public key of this interface for sharing."
  1115. msgstr ""
  1116. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:10
  1117. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv_hardif.js:41
  1118. msgid "Batman Device"
  1119. msgstr ""
  1120. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv_hardif.js:10
  1121. msgid "Batman Interface"
  1122. msgstr ""
  1123. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:81
  1124. msgid ""
  1125. "Batman-adv has a built-in layer 2 fragmentation for unicast data flowing "
  1126. "through the mesh which will allow to run batman-adv over interfaces / "
  1127. "connections that don't allow to increase the MTU beyond the standard "
  1128. "Ethernet packet size of 1500 bytes. When the fragmentation is enabled batman-"
  1129. "adv will automatically fragment over-sized packets and defragment them on "
  1130. "the other end. Per default fragmentation is enabled and inactive if the "
  1131. "packet fits but it is possible to deactivate the fragmentation entirely."
  1132. msgstr ""
  1133. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1035
  1134. msgid "Beacon Interval"
  1135. msgstr ""
  1136. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1734
  1137. msgid "Beacon Report"
  1138. msgstr ""
  1139. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:354
  1140. msgid ""
  1141. "Below is the determined list of files to backup. It consists of changed "
  1142. "configuration files marked by opkg, essential base files and the user "
  1143. "defined backup patterns."
  1144. msgstr ""
  1145. "למטה יש את הרשימה הסופית של קבצים לגיבוי. היא מורכבת ע\"י קבצי הגדרות ששונו, "
  1146. "המסומנים ב opkg ׁOpen PacKaGe Managementׂ, קבצי בסיס חיוניים ותבניות הגיבוי "
  1147. "המוגדרות ע\"י המשתמש."
  1148. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:287
  1149. msgid "Bind NTP server"
  1150. msgstr ""
  1151. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:59
  1152. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64
  1153. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64
  1154. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:69
  1155. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:48
  1156. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:142
  1157. #: protocols/luci-proto-vti/htdocs/luci-static/resources/protocol/vti.js:59
  1158. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:132
  1159. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:132
  1160. msgid "Bind interface"
  1161. msgstr ""
  1162. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:538
  1163. msgid ""
  1164. "Bind only to configured interface addresses, instead of the wildcard address."
  1165. msgstr ""
  1166. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:980
  1167. msgid ""
  1168. "Bind service records to a domain name: specify the location of services."
  1169. msgstr ""
  1170. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:941
  1171. msgid ""
  1172. "Bind service records to a domain name: specify the location of services. See "
  1173. "<a href=\"%s\">RFC2782</a>."
  1174. msgstr ""
  1175. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:59
  1176. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64
  1177. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64
  1178. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:69
  1179. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:48
  1180. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:142
  1181. #: protocols/luci-proto-vti/htdocs/luci-static/resources/protocol/vti.js:59
  1182. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:132
  1183. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:132
  1184. msgid "Bind the tunnel to this interface (optional)."
  1185. msgstr ""
  1186. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:129
  1187. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:188
  1188. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:171
  1189. msgid "Bitrate"
  1190. msgstr ""
  1191. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:65
  1192. msgid "Bonding Mode"
  1193. msgstr ""
  1194. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:206
  1195. msgid "Bonding Policy"
  1196. msgstr ""
  1197. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:600
  1198. msgid "Both \"Relay from\" and \"Relay to address\" must be specified."
  1199. msgstr ""
  1200. #: modules/luci-base/htdocs/luci-static/resources/network.js:3029
  1201. #: modules/luci-compat/luasrc/model/network.lua:1421
  1202. msgid "Bridge"
  1203. msgstr "גשר"
  1204. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:491
  1205. msgctxt "MACVLAN mode"
  1206. msgid "Bridge (Support direct communication between MAC VLANs)"
  1207. msgstr ""
  1208. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:393
  1209. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:471
  1210. msgid "Bridge VLAN filtering"
  1211. msgstr ""
  1212. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:398
  1213. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1489
  1214. msgid "Bridge device"
  1215. msgstr ""
  1216. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:392
  1217. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:470
  1218. msgid "Bridge port specific options"
  1219. msgstr ""
  1220. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:522
  1221. msgid "Bridge ports"
  1222. msgstr ""
  1223. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:641
  1224. msgid "Bridge traffic table \"%h\""
  1225. msgstr ""
  1226. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1678
  1227. msgid "Bridge unit number"
  1228. msgstr "מס' יח' גשר"
  1229. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:558
  1230. msgid "Bring up empty bridge"
  1231. msgstr ""
  1232. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:574
  1233. #, fuzzy
  1234. msgid "Bring up on boot"
  1235. msgstr "הבא באיתחול"
  1236. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:558
  1237. msgid "Bring up the bridge interface even if no ports are attached"
  1238. msgstr ""
  1239. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1293
  1240. msgid "Broadcast"
  1241. msgstr ""
  1242. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:212
  1243. msgid "Broadcast policy (broadcast, 3)"
  1244. msgstr ""
  1245. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2884
  1246. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4248
  1247. msgid "Browse…"
  1248. msgstr ""
  1249. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:40
  1250. msgid "Buffered"
  1251. msgstr ""
  1252. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:403
  1253. msgid "By default, dnsmasq caches A, AAAA, CNAME and SRV DNS record types."
  1254. msgstr ""
  1255. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:130
  1256. msgid ""
  1257. "CA certificate (PEM encoded; Use instead of system-wide store to verify the "
  1258. "gateway certificate."
  1259. msgstr ""
  1260. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:181
  1261. msgid "CA certificate; if empty it will be saved after the first connection."
  1262. msgstr ""
  1263. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:79
  1264. msgid "CHAP"
  1265. msgstr ""
  1266. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:7
  1267. msgid "CLAT configuration failed"
  1268. msgstr ""
  1269. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:937
  1270. msgid "CNAME"
  1271. msgstr ""
  1272. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:959
  1273. msgid "CNAME or fqdn"
  1274. msgstr ""
  1275. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:72
  1276. msgid "CPU usage (%)"
  1277. msgstr "שימוש מעבד (%)"
  1278. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388
  1279. msgid "Cache"
  1280. msgstr ""
  1281. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:403
  1282. msgid "Cache arbitrary RR"
  1283. msgstr ""
  1284. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:43
  1285. msgid "Cached"
  1286. msgstr ""
  1287. #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:53
  1288. #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:53
  1289. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:21
  1290. msgid "Call failed"
  1291. msgstr ""
  1292. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1153
  1293. msgid "Can be hinted by adding 4 or 6 to the name."
  1294. msgstr ""
  1295. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:692
  1296. msgid ""
  1297. "Can be useful if ISP has IPv6 nameservers but does not provide IPv6 routing."
  1298. msgstr ""
  1299. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2976
  1300. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4219
  1301. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4738
  1302. #: modules/luci-compat/luasrc/view/cbi/delegator.htm:14
  1303. #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:52
  1304. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:174
  1305. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1221
  1306. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2294
  1307. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:128
  1308. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:297
  1309. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:209
  1310. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:472
  1311. msgid "Cancel"
  1312. msgstr "ביטול"
  1313. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:334
  1314. msgid "Cannot parse configuration: %s"
  1315. msgstr ""
  1316. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:568
  1317. msgctxt "Chain hook: forward"
  1318. msgid "Capture incoming packets addressed to other hosts"
  1319. msgstr ""
  1320. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:560
  1321. msgctxt "Chain hook: prerouting"
  1322. msgid "Capture incoming packets before any routing decision"
  1323. msgstr ""
  1324. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:564
  1325. msgctxt "Chain hook: input"
  1326. msgid "Capture incoming packets routed to the local system"
  1327. msgstr ""
  1328. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:576
  1329. msgctxt "Chain hook: postrouting"
  1330. msgid "Capture outgoing packets after any routing decision"
  1331. msgstr ""
  1332. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:572
  1333. msgctxt "Chain hook: output"
  1334. msgid "Capture outgoing packets originating from the local system"
  1335. msgstr ""
  1336. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:556
  1337. msgctxt "Chain hook: ingress"
  1338. msgid "Capture packets directly after the NIC received them"
  1339. msgstr ""
  1340. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:17
  1341. msgid "Category"
  1342. msgstr ""
  1343. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:114
  1344. msgid "Cell ID"
  1345. msgstr ""
  1346. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:113
  1347. msgid "Cell Location"
  1348. msgstr ""
  1349. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:167
  1350. #: protocols/luci-proto-modemmanager/root/usr/share/luci/menu.d/luci-proto-modemmanager.json:3
  1351. msgid "Cellular Network"
  1352. msgstr ""
  1353. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1801
  1354. msgid "Certificate constraint (Domain)"
  1355. msgstr ""
  1356. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1798
  1357. msgid "Certificate constraint (SAN)"
  1358. msgstr ""
  1359. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1795
  1360. msgid "Certificate constraint (Subject)"
  1361. msgstr ""
  1362. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1804
  1363. msgid "Certificate constraint (Wildcard)"
  1364. msgstr ""
  1365. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1795
  1366. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1853
  1367. msgid ""
  1368. "Certificate constraint substring - e.g. /CN=wifi.mycompany.com<br />See "
  1369. "`logread -f` during handshake for actual values"
  1370. msgstr ""
  1371. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1801
  1372. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1859
  1373. msgid ""
  1374. "Certificate constraint(s) against DNS SAN values (if available)<br />or "
  1375. "Subject CN (exact match)"
  1376. msgstr ""
  1377. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1804
  1378. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1862
  1379. msgid ""
  1380. "Certificate constraint(s) against DNS SAN values (if available)<br />or "
  1381. "Subject CN (suffix match)"
  1382. msgstr ""
  1383. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1798
  1384. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1856
  1385. msgid ""
  1386. "Certificate constraint(s) via Subject Alternate Name values<br />(supported "
  1387. "attributes: EMAIL, DNS, URI) - e.g. DNS:wifi.mycompany.com"
  1388. msgstr ""
  1389. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:54
  1390. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:57
  1391. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:212
  1392. msgid "Chain"
  1393. msgstr "שרשרת"
  1394. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:580
  1395. msgctxt "Yet unknown nftables chain hook"
  1396. msgid "Chain hook \"%h\""
  1397. msgstr ""
  1398. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4466
  1399. msgid "Changes"
  1400. msgstr "שינויים"
  1401. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4733
  1402. msgid ""
  1403. "Changes have been made to the existing connection via \"%h\". This could "
  1404. "inhibit access to this device. Any IP change requires <strong>connecting to "
  1405. "the new IP</strong> within %d seconds to retain the changes."
  1406. msgstr ""
  1407. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4808
  1408. msgid "Changes have been reverted."
  1409. msgstr ""
  1410. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:46
  1411. msgid "Changes the administrator password for accessing the device"
  1412. msgstr "משנה את סיסמת המנהל לגישה למכשיר"
  1413. #: modules/luci-compat/luasrc/view/cbi/wireless_modefreq.htm:190
  1414. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:128
  1415. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:184
  1416. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:571
  1417. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1971
  1418. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:444
  1419. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:170
  1420. msgid "Channel"
  1421. msgstr "ערוץ"
  1422. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:412
  1423. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:105
  1424. msgid "Channel Analysis"
  1425. msgstr ""
  1426. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:445
  1427. msgid "Channel Width"
  1428. msgstr ""
  1429. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:174
  1430. msgid "Check filesystems before mount"
  1431. msgstr ""
  1432. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2254
  1433. msgid "Check this option to delete the existing networks from this radio."
  1434. msgstr ""
  1435. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:110
  1436. msgid "Checking archive…"
  1437. msgstr ""
  1438. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:195
  1439. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:197
  1440. msgid "Checking image…"
  1441. msgstr ""
  1442. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:429
  1443. msgid "Choose mtdblock"
  1444. msgstr ""
  1445. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:579
  1446. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2284
  1447. msgid ""
  1448. "Choose the firewall zone you want to assign to this interface. Select "
  1449. "<em>unspecified</em> to remove the interface from the associated zone or "
  1450. "fill out the <em>custom</em> field to define a new zone and attach the "
  1451. "interface to it."
  1452. msgstr ""
  1453. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1085
  1454. msgid ""
  1455. "Choose the network(s) you want to attach to this wireless interface or fill "
  1456. "out the <em>custom</em> field to define a new network."
  1457. msgstr ""
  1458. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1296
  1459. msgid "Cipher"
  1460. msgstr ""
  1461. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:91
  1462. msgid "Cisco UDP encapsulation"
  1463. msgstr ""
  1464. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:393
  1465. msgid ""
  1466. "Click \"Generate archive\" to download a tar archive of the current "
  1467. "configuration files."
  1468. msgstr ""
  1469. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:426
  1470. msgid ""
  1471. "Click \"Save mtdblock\" to download specified mtdblock file. (NOTE: THIS "
  1472. "FEATURE IS FOR PROFESSIONALS! )"
  1473. msgstr ""
  1474. #: modules/luci-base/htdocs/luci-static/resources/network.js:3906
  1475. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1054
  1476. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1169
  1477. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:88
  1478. msgid "Client"
  1479. msgstr ""
  1480. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37
  1481. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:35
  1482. msgid "Client ID to send when requesting DHCP"
  1483. msgstr ""
  1484. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4485
  1485. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:173
  1486. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:179
  1487. msgid "Close"
  1488. msgstr ""
  1489. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:156
  1490. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:128
  1491. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:114
  1492. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:92
  1493. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:101
  1494. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:124
  1495. msgid ""
  1496. "Close inactive connection after the given amount of seconds, use 0 to "
  1497. "persist connection"
  1498. msgstr "סגור חיבורים לא פעילים אחרי מספר השניות שהוגדר, הזן 0 על-מנת לא לסגור"
  1499. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:44
  1500. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:63
  1501. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2418
  1502. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:394
  1503. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:356
  1504. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:359
  1505. #: themes/luci-theme-material/ucode/template/themes/material/header.ut:67
  1506. msgid "Collecting data..."
  1507. msgstr "נאספים נתונים…"
  1508. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:250
  1509. msgid "Collisions seen"
  1510. msgstr ""
  1511. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:71
  1512. msgid "Command"
  1513. msgstr "פקודה"
  1514. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:401
  1515. msgid "Command OK"
  1516. msgstr ""
  1517. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:32
  1518. msgid "Command failed"
  1519. msgstr ""
  1520. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:73
  1521. msgid "Comment"
  1522. msgstr "תגובה"
  1523. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:182
  1524. msgid "Common name or numeric ID of the %s in which this route is found"
  1525. msgstr ""
  1526. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1942
  1527. msgid ""
  1528. "Complicates key reinstallation attacks on the client side by disabling "
  1529. "retransmission of EAPOL-Key frames that are used to install keys. This "
  1530. "workaround might cause interoperability issues and reduced robustness of key "
  1531. "negotiation especially in environments with heavy traffic load."
  1532. msgstr ""
  1533. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:101
  1534. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:106
  1535. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:103
  1536. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:108
  1537. msgid "Compute outgoing checksum (optional)."
  1538. msgstr ""
  1539. #: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:40
  1540. msgid "Config File"
  1541. msgstr ""
  1542. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4466
  1543. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:456
  1544. msgid "Configuration"
  1545. msgstr "הגדרות"
  1546. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:675
  1547. msgid "Configuration Export"
  1548. msgstr ""
  1549. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4658
  1550. msgid "Configuration changes applied."
  1551. msgstr ""
  1552. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4596
  1553. msgid "Configuration changes have been rolled back!"
  1554. msgstr ""
  1555. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:63
  1556. msgid "Configuration failed"
  1557. msgstr ""
  1558. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1014
  1559. msgid ""
  1560. "Configures data rates based on the coverage cell density. Normal configures "
  1561. "basic rates to 6, 12, 24 Mbps if legacy 802.11b rates are not used else to "
  1562. "5.5, 11 Mbps. High configures basic rates to 12, 24 Mbps if legacy 802.11b "
  1563. "rates are not used else to the 11 Mbps rate. Very High configures 24 Mbps as "
  1564. "the basic rate. Supported rates lower than the minimum basic rate are not "
  1565. "offered."
  1566. msgstr ""
  1567. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:798
  1568. msgid ""
  1569. "Configures the default router advertisement in <abbr title=\"Router "
  1570. "Advertisement\">RA</abbr> messages."
  1571. msgstr ""
  1572. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:922
  1573. msgid ""
  1574. "Configures the minimum delegated prefix length assigned to a requesting "
  1575. "downstream router, potentially overriding a requested prefix length. If left "
  1576. "unspecified, the device will assign the smallest available prefix greater "
  1577. "than or equal to the requested prefix."
  1578. msgstr ""
  1579. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:786
  1580. msgid ""
  1581. "Configures the operation mode of the <abbr title=\"Router "
  1582. "Advertisement\">RA</abbr> service on this interface."
  1583. msgstr ""
  1584. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:911
  1585. msgid "Configures the operation mode of the DHCPv6 service on this interface."
  1586. msgstr ""
  1587. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:977
  1588. msgid ""
  1589. "Configures the operation mode of the NDP proxy service on this interface."
  1590. msgstr ""
  1591. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1377
  1592. msgid "Configure…"
  1593. msgstr ""
  1594. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:162
  1595. msgid "Confirm disconnect"
  1596. msgstr ""
  1597. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:55
  1598. msgid "Confirmation"
  1599. msgstr "אישור"
  1600. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:98
  1601. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:101
  1602. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:47
  1603. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:232
  1604. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:42
  1605. msgid "Connected"
  1606. msgstr "מחובר"
  1607. #: modules/luci-base/htdocs/luci-static/resources/network.js:9
  1608. #: modules/luci-compat/luasrc/model/network.lua:27
  1609. msgid "Connection attempt failed"
  1610. msgstr ""
  1611. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:8
  1612. msgid "Connection attempt failed."
  1613. msgstr ""
  1614. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:777
  1615. msgid "Connection endpoint"
  1616. msgstr ""
  1617. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:411
  1618. msgid "Connection lost"
  1619. msgstr ""
  1620. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:322
  1621. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:160
  1622. msgid "Connections"
  1623. msgstr "חיבורים"
  1624. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4732
  1625. msgid "Connectivity change"
  1626. msgstr ""
  1627. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:31
  1628. msgctxt "nft ct state"
  1629. msgid "Conntrack state"
  1630. msgstr ""
  1631. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:33
  1632. msgctxt "nft ct status"
  1633. msgid "Conntrack status"
  1634. msgstr ""
  1635. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:383
  1636. msgid "Consider the slave up when all ARP IP targets are reachable (all, 1)"
  1637. msgstr ""
  1638. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:382
  1639. msgid "Consider the slave up when any ARP IP target is reachable (any, 0)"
  1640. msgstr ""
  1641. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/crontab.js:18
  1642. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:370
  1643. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:54
  1644. msgid "Contents have been saved."
  1645. msgstr ""
  1646. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:388
  1647. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:422
  1648. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:861
  1649. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:132
  1650. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:271
  1651. msgid "Continue"
  1652. msgstr "המשך"
  1653. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:97
  1654. msgctxt "nft jump action"
  1655. msgid "Continue in <strong><a href=\"#%q.%q\">%h</a></strong>"
  1656. msgstr ""
  1657. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:129
  1658. msgid "Continue in calling chain"
  1659. msgstr ""
  1660. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:550
  1661. msgctxt "Chain policy: accept"
  1662. msgid "Continue processing unmatched packets"
  1663. msgstr ""
  1664. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4632
  1665. msgid ""
  1666. "Could not regain access to the device after applying the configuration "
  1667. "changes. You might need to reconnect if you modified network related "
  1668. "settings such as the IP address or wireless security credentials."
  1669. msgstr ""
  1670. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:189
  1671. msgid "Country"
  1672. msgstr "מדינה"
  1673. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1011
  1674. msgid "Country Code"
  1675. msgstr "קוד מדינה"
  1676. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1014
  1677. msgid "Coverage cell density"
  1678. msgstr ""
  1679. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:579
  1680. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2284
  1681. msgid "Create / Assign firewall-zone"
  1682. msgstr "צור / הקצה תחום-חומת אש"
  1683. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1253
  1684. msgid "Create interface"
  1685. msgstr ""
  1686. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:191
  1687. msgid "Critical"
  1688. msgstr "קריטי"
  1689. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:195
  1690. msgid "Cron Log Level"
  1691. msgstr ""
  1692. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:45
  1693. msgid "Cross Pass (Japan only)"
  1694. msgstr ""
  1695. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:651
  1696. msgid "Current power"
  1697. msgstr ""
  1698. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:28
  1699. msgctxt "nft meta hour"
  1700. msgid "Current time"
  1701. msgstr ""
  1702. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:29
  1703. msgctxt "nft meta day"
  1704. msgid "Current weekday"
  1705. msgstr ""
  1706. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:585
  1707. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:587
  1708. #: modules/luci-compat/luasrc/view/cbi/network_ifacelist.htm:51
  1709. #: modules/luci-compat/luasrc/view/cbi/network_ifacelist.htm:53
  1710. #: modules/luci-compat/luasrc/view/cbi/network_ifacelist.htm:82
  1711. #: modules/luci-compat/luasrc/view/cbi/network_ifacelist.htm:83
  1712. msgid "Custom Interface"
  1713. msgstr "ממשק מותאם אישית"
  1714. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:412
  1715. msgid ""
  1716. "Custom files (certificates, scripts) may remain on the system. To prevent "
  1717. "this, perform a factory-reset first."
  1718. msgstr ""
  1719. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/timer.js:6
  1720. msgid "Custom flash interval (kernel: timer)"
  1721. msgstr ""
  1722. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:59
  1723. msgid ""
  1724. "Customizes the behaviour of the device <abbr title=\"Light Emitting "
  1725. "Diode\">LED</abbr>s if possible."
  1726. msgstr ""
  1727. "מתאים את הגדרות ה-<abbr title=\"Light Emitting Diode\">LED</abbr>-ים במכשיר "
  1728. "(אם אפשרי)."
  1729. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:740
  1730. msgid "DAD transmits"
  1731. msgstr ""
  1732. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1581
  1733. msgid "DAE-Client"
  1734. msgstr ""
  1735. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1586
  1736. msgid "DAE-Port"
  1737. msgstr ""
  1738. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1592
  1739. msgid "DAE-Secret"
  1740. msgstr ""
  1741. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:900
  1742. msgid "DHCP Options"
  1743. msgstr ""
  1744. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:473
  1745. msgid "DHCP Server"
  1746. msgstr "שרת DHCP"
  1747. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:346
  1748. #: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:62
  1749. msgid "DHCP and DNS"
  1750. msgstr "DHCP ו- DNS"
  1751. #: modules/luci-base/htdocs/luci-static/resources/network.js:2091
  1752. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:16
  1753. #: modules/luci-compat/luasrc/model/network.lua:969
  1754. msgid "DHCP client"
  1755. msgstr "לקוח DHCP"
  1756. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:706
  1757. msgid "DHCP-Options"
  1758. msgstr "אפשרויות-DHCP"
  1759. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1004
  1760. msgid ""
  1761. "DHCPv4 <code>leasetime</code> is used as limit and preferred lifetime of the "
  1762. "IPv6 prefix."
  1763. msgstr ""
  1764. #: modules/luci-compat/luasrc/model/network/proto_dhcpv6.lua:7
  1765. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:7
  1766. msgid "DHCPv6 client"
  1767. msgstr ""
  1768. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:952
  1769. msgctxt "DHCPv6 option 56. RFC5908 link"
  1770. msgid "DHCPv6 option 56. %s."
  1771. msgstr ""
  1772. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:910
  1773. msgid "DHCPv6-Service"
  1774. msgstr ""
  1775. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:40
  1776. msgid "DNS"
  1777. msgstr "DNS"
  1778. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:469
  1779. msgid "DNS Forwards"
  1780. msgstr ""
  1781. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:390
  1782. msgid "DNS Records"
  1783. msgstr ""
  1784. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:788
  1785. msgid "DNS Servers"
  1786. msgstr ""
  1787. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:790
  1788. msgid "DNS query port"
  1789. msgstr "<abbr title=\"Domain Name System\">DNS</abbr> יציאת שאילתא"
  1790. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1024
  1791. msgid "DNS search domains"
  1792. msgstr ""
  1793. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:783
  1794. msgid "DNS server port"
  1795. msgstr "<abbr title=\"Domain Name System\">DNS</abbr> יציאת שרת"
  1796. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:788
  1797. msgid ""
  1798. "DNS servers for the remote clients using this tunnel to your openwrt device. "
  1799. "Some wireguard clients require this to be set."
  1800. msgstr ""
  1801. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:279
  1802. msgid "DNS setting is invalid"
  1803. msgstr ""
  1804. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1029
  1805. msgid "DNS weight"
  1806. msgstr ""
  1807. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:33
  1808. msgid "DNS-Label / FQDN"
  1809. msgstr ""
  1810. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:938
  1811. msgid "DNS-RR"
  1812. msgstr ""
  1813. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:391
  1814. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:718
  1815. msgid "DNSSEC"
  1816. msgstr ""
  1817. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:723
  1818. msgid "DNSSEC check unsigned"
  1819. msgstr ""
  1820. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:99
  1821. msgid "DPD Idle Timeout"
  1822. msgstr ""
  1823. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:41
  1824. msgid "DS-Lite AFTR address"
  1825. msgstr ""
  1826. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1581
  1827. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:37
  1828. msgid "DSL"
  1829. msgstr ""
  1830. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:21
  1831. msgid "DSL Status"
  1832. msgstr ""
  1833. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1620
  1834. msgid "DSL line mode"
  1835. msgstr ""
  1836. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1236
  1837. msgid "DTIM Interval"
  1838. msgstr ""
  1839. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:59
  1840. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1255
  1841. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:136
  1842. msgid "DUID"
  1843. msgstr ""
  1844. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:29
  1845. msgid "Data Rate"
  1846. msgstr ""
  1847. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:76
  1848. msgid "Data Received"
  1849. msgstr "התקבלו נתונים"
  1850. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:77
  1851. msgid "Data Transmitted"
  1852. msgstr "הועברו נתונים"
  1853. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:186
  1854. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:197
  1855. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:159
  1856. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:346
  1857. msgid "Debug"
  1858. msgstr ""
  1859. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/ipip6.js:70
  1860. msgid "Default gateway"
  1861. msgstr ""
  1862. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:370
  1863. msgctxt "Dnsmasq instance"
  1864. msgid "Default instance"
  1865. msgstr ""
  1866. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:797
  1867. msgid "Default router"
  1868. msgstr ""
  1869. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/none.js:12
  1870. msgid "Default state"
  1871. msgstr ""
  1872. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1153
  1873. msgid "Defaults to IPv4+6."
  1874. msgstr ""
  1875. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1148
  1876. msgid "Defaults to fw4."
  1877. msgstr ""
  1878. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:706
  1879. msgid ""
  1880. "Define additional DHCP options, for example "
  1881. "\"<code>6,192.168.2.1,192.168.2.2</code>\" which advertises different DNS "
  1882. "servers to clients."
  1883. msgstr ""
  1884. "הגדר אפשרויות DHCP נוספות, למשל \"<code>6,192.168.2.1,192.168.2.2</code>\" "
  1885. "אשר מציגות שרתי DNS שונים ללקוח"
  1886. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:516
  1887. msgid ""
  1888. "Defines a mapping of Linux internal packet priority to VLAN header priority "
  1889. "but for outgoing frames"
  1890. msgstr ""
  1891. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:510
  1892. msgid ""
  1893. "Defines a mapping of VLAN header priority to the Linux internal packet "
  1894. "priority on incoming frames"
  1895. msgstr ""
  1896. #: protocols/luci-proto-external/htdocs/luci-static/resources/protocol/external.js:34
  1897. msgid "Delay"
  1898. msgstr ""
  1899. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1053
  1900. msgid "Delegate IPv6 prefixes"
  1901. msgstr ""
  1902. #: modules/luci-base/htdocs/luci-static/resources/form.js:2312
  1903. #: modules/luci-base/htdocs/luci-static/resources/form.js:2698
  1904. #: modules/luci-base/htdocs/luci-static/resources/form.js:2702
  1905. #: modules/luci-base/htdocs/luci-static/resources/form.js:3529
  1906. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2945
  1907. #: modules/luci-compat/luasrc/view/cbi/nsection.htm:11
  1908. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:162
  1909. #: modules/luci-compat/luasrc/view/cbi/tsection.htm:16
  1910. msgid "Delete"
  1911. msgstr "למחוק"
  1912. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:205
  1913. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:211
  1914. msgid "Delete key"
  1915. msgstr ""
  1916. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2843
  1917. msgid "Delete request failed: %s"
  1918. msgstr ""
  1919. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:966
  1920. msgid "Delete this network"
  1921. msgstr "מחק רשת זו"
  1922. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1236
  1923. msgid "Delivery Traffic Indication Message Interval"
  1924. msgstr ""
  1925. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:342
  1926. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:139
  1927. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:196
  1928. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:196
  1929. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:505
  1930. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:53
  1931. msgid "Description"
  1932. msgstr "תיאור"
  1933. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2937
  1934. msgid "Deselect"
  1935. msgstr ""
  1936. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:237
  1937. msgid "Design"
  1938. msgstr "עיצוב"
  1939. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:714
  1940. msgid "Designated master"
  1941. msgstr ""
  1942. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:165
  1943. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:389
  1944. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:71
  1945. msgid "Destination"
  1946. msgstr "יעד"
  1947. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:44
  1948. msgctxt "nft ip daddr"
  1949. msgid "Destination IP"
  1950. msgstr ""
  1951. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:48
  1952. msgctxt "nft ip6 daddr"
  1953. msgid "Destination IPv6"
  1954. msgstr ""
  1955. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:52
  1956. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:52
  1957. msgid "Destination port"
  1958. msgstr "פתחת היעד"
  1959. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:46
  1960. msgctxt "nft ip dport"
  1961. msgid "Destination port"
  1962. msgstr ""
  1963. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:68
  1964. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:174
  1965. msgid "Destination zone"
  1966. msgstr "אזור היעד"
  1967. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:76
  1968. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:201
  1969. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:43
  1970. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:46
  1971. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:83
  1972. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:564
  1973. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1203
  1974. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1505
  1975. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:46
  1976. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:196
  1977. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:222
  1978. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:13
  1979. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:248
  1980. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:281
  1981. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:355
  1982. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:391
  1983. #: protocols/luci-proto-external/htdocs/luci-static/resources/protocol/external.js:29
  1984. msgid "Device"
  1985. msgstr "מכשיר"
  1986. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:980
  1987. msgid "Device Configuration"
  1988. msgstr "הגדרות מכשיר"
  1989. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:88
  1990. msgid "Device Identifier"
  1991. msgstr ""
  1992. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:132
  1993. msgid "Device is not active"
  1994. msgstr ""
  1995. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:242
  1996. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:717
  1997. msgid "Device is restarting…"
  1998. msgstr ""
  1999. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:495
  2000. msgid "Device name"
  2001. msgstr "שם המכשיר"
  2002. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:10
  2003. msgid "Device not managed by ModemManager."
  2004. msgstr ""
  2005. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1480
  2006. msgid "Device not present"
  2007. msgstr ""
  2008. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:395
  2009. msgid "Device type"
  2010. msgstr ""
  2011. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4631
  2012. msgid "Device unreachable!"
  2013. msgstr ""
  2014. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:53
  2015. msgid "Device unreachable! Still waiting for device..."
  2016. msgstr ""
  2017. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1328
  2018. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:287
  2019. msgid "Devices"
  2020. msgstr ""
  2021. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:389
  2022. msgid "Devices &amp; Ports"
  2023. msgstr ""
  2024. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:159
  2025. #: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:76
  2026. msgid "Diagnostics"
  2027. msgstr "אבחון"
  2028. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:114
  2029. msgid "Dial number"
  2030. msgstr ""
  2031. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:140
  2032. msgid "Dir"
  2033. msgstr ""
  2034. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2739
  2035. msgid "Directory"
  2036. msgstr ""
  2037. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1570
  2038. msgid ""
  2039. "Directs packet flows to specific CPUs where the local socket owner listens "
  2040. "(the local service)."
  2041. msgstr ""
  2042. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:119
  2043. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:209
  2044. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:958
  2045. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:998
  2046. msgid "Disable"
  2047. msgstr ""
  2048. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:665
  2049. msgid ""
  2050. "Disable <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</abbr> for "
  2051. "this interface."
  2052. msgstr ""
  2053. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:174
  2054. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:378
  2055. msgid "Disable DNS lookups"
  2056. msgstr ""
  2057. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:93
  2058. msgid "Disable Encryption"
  2059. msgstr ""
  2060. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1246
  2061. msgid "Disable Inactivity Polling"
  2062. msgstr ""
  2063. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:571
  2064. msgid "Disable this interface"
  2065. msgstr ""
  2066. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:956
  2067. msgid "Disable this network"
  2068. msgstr ""
  2069. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1562
  2070. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1015
  2071. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1548
  2072. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1741
  2073. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1889
  2074. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1923
  2075. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:13
  2076. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:65
  2077. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:121
  2078. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:108
  2079. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:117
  2080. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:114
  2081. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:52
  2082. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:97
  2083. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:83
  2084. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:57
  2085. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:70
  2086. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:500
  2087. msgid "Disabled"
  2088. msgstr ""
  2089. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:529
  2090. msgctxt "Label indicating that WireGuard peer is disabled"
  2091. msgid "Disabled"
  2092. msgstr ""
  2093. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1260
  2094. msgid "Disassociate On Low Acknowledgement"
  2095. msgstr ""
  2096. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:509
  2097. msgid ""
  2098. "Discard also upstream responses containing {rfc_4193_link}, Link-Local and "
  2099. "private IPv4-Mapped {rfc_4291_link} IPv6 Addresses."
  2100. msgstr ""
  2101. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:508
  2102. msgid "Discard upstream responses containing {rfc_1918_link} addresses."
  2103. msgstr ""
  2104. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:184
  2105. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:783
  2106. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:336
  2107. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:351
  2108. msgid "Disconnect"
  2109. msgstr ""
  2110. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:64
  2111. msgid "Disconnection attempt failed"
  2112. msgstr ""
  2113. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:13
  2114. msgid "Disconnection attempt failed."
  2115. msgstr ""
  2116. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:59
  2117. msgid "Disk space"
  2118. msgstr ""
  2119. #: modules/luci-base/htdocs/luci-static/resources/form.js:613
  2120. #: modules/luci-base/htdocs/luci-static/resources/form.js:2980
  2121. #: modules/luci-base/htdocs/luci-static/resources/form.js:3213
  2122. #: modules/luci-base/htdocs/luci-static/resources/form.js:3227
  2123. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3750
  2124. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4602
  2125. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1996
  2126. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:360
  2127. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:45
  2128. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:66
  2129. msgid "Dismiss"
  2130. msgstr "התעלמות"
  2131. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1020
  2132. msgid "Distance Optimization"
  2133. msgstr ""
  2134. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1020
  2135. msgid ""
  2136. "Distance to farthest network member in meters. Set only for distances above "
  2137. "one kilometer; otherwise it is harmful."
  2138. msgstr ""
  2139. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:75
  2140. msgid "Distributed ARP Table"
  2141. msgstr ""
  2142. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1283
  2143. msgid ""
  2144. "Dnsmasq instance to which this DHCP host section is bound. If unspecified, "
  2145. "the section is valid for all dnsmasq instances."
  2146. msgstr ""
  2147. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:919
  2148. msgid ""
  2149. "Dnsmasq instance to which this boot section is bound. If unspecified, the "
  2150. "section is valid for all dnsmasq instances."
  2151. msgstr ""
  2152. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:347
  2153. msgid ""
  2154. "Dnsmasq is a lightweight <abbr title=\"Dynamic Host Configuration "
  2155. "Protocol\">DHCP</abbr> server and <abbr title=\"Domain Name System\">DNS</"
  2156. "abbr> forwarder."
  2157. msgstr ""
  2158. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:731
  2159. msgid "Do not cache negative replies, e.g. for non-existent domains."
  2160. msgstr ""
  2161. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:86
  2162. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:91
  2163. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:88
  2164. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:93
  2165. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:70
  2166. msgid "Do not create host route to peer (optional)."
  2167. msgstr ""
  2168. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:551
  2169. msgid "Do not listen on the specified interfaces."
  2170. msgstr ""
  2171. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:914
  2172. msgid "Do not offer DHCPv6 service on this interface."
  2173. msgstr ""
  2174. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:980
  2175. msgid ""
  2176. "Do not proxy any <abbr title=\"Neighbour Discovery Protocol\">NDP</abbr> "
  2177. "packets."
  2178. msgstr ""
  2179. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:32
  2180. msgid "Do not send a Release when restarting"
  2181. msgstr ""
  2182. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:25
  2183. msgid "Do not send a hostname"
  2184. msgstr ""
  2185. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:789
  2186. msgid ""
  2187. "Do not send any <abbr title=\"Router Advertisement, ICMPv6 Type 134\">RA</"
  2188. "abbr> messages on this interface."
  2189. msgstr ""
  2190. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2829
  2191. msgid "Do you really want to delete \"%s\" ?"
  2192. msgstr ""
  2193. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:206
  2194. msgid "Do you really want to delete the following SSH key?"
  2195. msgstr ""
  2196. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:94
  2197. msgid "Do you really want to erase all settings?"
  2198. msgstr ""
  2199. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2827
  2200. msgid "Do you really want to recursively delete the directory \"%s\" ?"
  2201. msgstr ""
  2202. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:97
  2203. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:991
  2204. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1017
  2205. msgid "Domain"
  2206. msgstr ""
  2207. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:414
  2208. msgid "Domain required"
  2209. msgstr ""
  2210. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:522
  2211. msgid "Domain whitelist"
  2212. msgstr ""
  2213. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:83
  2214. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:88
  2215. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:67
  2216. msgid "Don't Fragment"
  2217. msgstr ""
  2218. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:152
  2219. msgid "Down"
  2220. msgstr ""
  2221. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:408
  2222. msgid "Down Delay"
  2223. msgstr ""
  2224. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2941
  2225. msgid "Download"
  2226. msgstr ""
  2227. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:396
  2228. msgid "Download backup"
  2229. msgstr "הורד גיבוי"
  2230. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3017
  2231. msgid "Download failed: %s"
  2232. msgstr ""
  2233. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:434
  2234. msgid "Download mtdblock"
  2235. msgstr ""
  2236. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1625
  2237. msgid "Downstream SNR offset"
  2238. msgstr ""
  2239. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:422
  2240. msgid ""
  2241. "Drag or paste a valid <em>*.conf</em> file below to configure the local "
  2242. "WireGuard interface."
  2243. msgstr ""
  2244. #: modules/luci-base/htdocs/luci-static/resources/form.js:2656
  2245. msgid "Drag to reorder"
  2246. msgstr ""
  2247. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:347
  2248. msgid "Drop Duplicate Frames"
  2249. msgstr ""
  2250. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:710
  2251. msgid ""
  2252. "Drop all gratuitous ARP frames, for example if there’s a known good ARP "
  2253. "proxy on the network and such frames need not be used or in the case of "
  2254. "802.11, must not be used to prevent attacks."
  2255. msgstr ""
  2256. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:732
  2257. msgid ""
  2258. "Drop all unsolicited neighbor advertisements, for example if there’s a known "
  2259. "good NA proxy on the network and such frames need not be used or in the case "
  2260. "of 802.11, must not be used to prevent attacks."
  2261. msgstr ""
  2262. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:710
  2263. msgid "Drop gratuitous ARP"
  2264. msgstr ""
  2265. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:786
  2266. msgid "Drop layer 2 multicast frames containing IPv4 unicast packets."
  2267. msgstr ""
  2268. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:790
  2269. msgid "Drop layer 2 multicast frames containing IPv6 unicast packets."
  2270. msgstr ""
  2271. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:786
  2272. msgid "Drop nested IPv4 unicast"
  2273. msgstr ""
  2274. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:790
  2275. msgid "Drop nested IPv6 unicast"
  2276. msgstr ""
  2277. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:96
  2278. msgctxt "nft drop action"
  2279. msgid "Drop packet"
  2280. msgstr ""
  2281. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:546
  2282. msgctxt "Chain policy: drop"
  2283. msgid "Drop unmatched packets"
  2284. msgstr ""
  2285. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:732
  2286. msgid "Drop unsolicited NA"
  2287. msgstr ""
  2288. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:12
  2289. msgid "Dropbear Instance"
  2290. msgstr ""
  2291. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:10
  2292. msgid ""
  2293. "Dropbear offers <abbr title=\"Secure Shell\">SSH</abbr> network shell access "
  2294. "and an integrated <abbr title=\"Secure Copy\">SCP</abbr> server"
  2295. msgstr ""
  2296. "Dropbear מאפשר גישת <abbr title=\"Secure Shell\">SSH</abbr> רשתית ושרת <abbr "
  2297. "title=\"Secure Copy\">SCP</abbr> מובנה"
  2298. #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:14
  2299. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:11
  2300. msgid "Dual-Stack Lite (RFC6333)"
  2301. msgstr ""
  2302. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:437
  2303. msgid "Dump cache on SIGUSR1, include requesting IP."
  2304. msgstr ""
  2305. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:682
  2306. msgid "Dynamic <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</abbr>"
  2307. msgstr "<abbr title=\"Dynamic Host Configuration Protocol\">DHCP</abbr> דינאמי"
  2308. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1581
  2309. msgid "Dynamic Authorization Extension client."
  2310. msgstr ""
  2311. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1586
  2312. msgid "Dynamic Authorization Extension port."
  2313. msgstr ""
  2314. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1592
  2315. msgid "Dynamic Authorization Extension secret."
  2316. msgstr ""
  2317. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:60
  2318. msgid "Dynamic tunnel"
  2319. msgstr ""
  2320. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:682
  2321. msgid ""
  2322. "Dynamically allocate DHCP addresses for clients. If disabled, only clients "
  2323. "having static leases will be served."
  2324. msgstr ""
  2325. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1574
  2326. msgid "E.g. <code>br-vlan</code> or <code>brvlan</code>."
  2327. msgstr ""
  2328. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1564
  2329. msgid "E.g. eth0, eth1"
  2330. msgstr ""
  2331. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:67
  2332. msgid "EA-bits length"
  2333. msgstr ""
  2334. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1773
  2335. msgid "EAP-Method"
  2336. msgstr ""
  2337. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1555
  2338. msgid "Each STA is assigned its own AP_VLAN interface."
  2339. msgstr ""
  2340. #: modules/luci-base/htdocs/luci-static/resources/form.js:2676
  2341. #: modules/luci-base/htdocs/luci-static/resources/form.js:2679
  2342. #: modules/luci-base/htdocs/luci-static/resources/form.js:3392
  2343. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:154
  2344. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:160
  2345. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:485
  2346. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:963
  2347. msgid "Edit"
  2348. msgstr "ערוך"
  2349. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1132
  2350. msgid "Edit IP set"
  2351. msgstr ""
  2352. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:878
  2353. msgid "Edit PXE/TFTP/BOOTP Host"
  2354. msgstr ""
  2355. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:190
  2356. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:190
  2357. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:212
  2358. msgid "Edit peer"
  2359. msgstr ""
  2360. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1173
  2361. msgid "Edit static lease"
  2362. msgstr ""
  2363. #: modules/luci-compat/luasrc/view/cbi/error.htm:13
  2364. msgid ""
  2365. "Edit the raw configuration data above to fix any error and hit \"Save\" to "
  2366. "reload the page."
  2367. msgstr ""
  2368. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:961
  2369. msgid "Edit this network"
  2370. msgstr "ערוך רשת זו"
  2371. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:912
  2372. msgid "Edit wireless network"
  2373. msgstr ""
  2374. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:65
  2375. msgctxt "nft rt mtu"
  2376. msgid "Effective route MTU"
  2377. msgstr ""
  2378. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:516
  2379. msgid "Egress QoS mapping"
  2380. msgstr ""
  2381. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:12
  2382. msgctxt "nft meta oif"
  2383. msgid "Egress device id"
  2384. msgstr ""
  2385. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:10
  2386. msgctxt "nft meta oifname"
  2387. msgid "Egress device name"
  2388. msgstr ""
  2389. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:193
  2390. msgid "Emergency"
  2391. msgstr "מצב חרום"
  2392. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:119
  2393. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:119
  2394. msgid "Emits netlink IP ADDR miss notifications"
  2395. msgstr ""
  2396. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:113
  2397. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:113
  2398. msgid "Emits netlink LLADDR miss notifications"
  2399. msgstr ""
  2400. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:958
  2401. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:998
  2402. msgid "Enable"
  2403. msgstr "הפעלה"
  2404. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:500
  2405. msgid "Enable / Disable peer. Restart wireguard interface to apply changes."
  2406. msgstr ""
  2407. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:592
  2408. msgid ""
  2409. "Enable <abbr title=\"Internet Group Management Protocol\">IGMP</abbr> "
  2410. "snooping"
  2411. msgstr ""
  2412. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:17
  2413. msgid "Enable <abbr title=\"Secure Shell\">SSH</abbr> service instance"
  2414. msgstr ""
  2415. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:572
  2416. msgid "Enable <abbr title=\"Spanning Tree Protocol\">STP</abbr>"
  2417. msgstr "אפשר <abbr title=\"Spanning Tree Protocol\">STP</abbr>"
  2418. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:809
  2419. msgid "Enable <abbr title=\"Stateless Address Auto Config\">SLAAC</abbr>"
  2420. msgstr ""
  2421. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:174
  2422. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:372
  2423. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:378
  2424. msgid "Enable DNS lookups"
  2425. msgstr ""
  2426. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:153
  2427. msgid "Enable Debugmode"
  2428. msgstr ""
  2429. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:299
  2430. msgid "Enable Dynamic Shuffling Of Flows"
  2431. msgstr ""
  2432. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:60
  2433. msgid "Enable HE.net dynamic endpoint update"
  2434. msgstr ""
  2435. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:725
  2436. msgid "Enable IPv6"
  2437. msgstr ""
  2438. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:101
  2439. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:108
  2440. msgid "Enable IPv6 negotiation"
  2441. msgstr ""
  2442. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:49
  2443. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:94
  2444. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:80
  2445. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:54
  2446. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:67
  2447. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:93
  2448. msgid "Enable IPv6 negotiation on the PPP link"
  2449. msgstr ""
  2450. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:728
  2451. msgid "Enable IPv6 segment routing"
  2452. msgstr ""
  2453. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:17
  2454. msgid "Enable Instance"
  2455. msgstr ""
  2456. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:194
  2457. msgid "Enable Jumbo Frame passthrough"
  2458. msgstr ""
  2459. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:763
  2460. msgid "Enable MAC address learning"
  2461. msgstr ""
  2462. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:257
  2463. msgid "Enable NTP client"
  2464. msgstr ""
  2465. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1478
  2466. msgid "Enable Private PSK (PPSK)"
  2467. msgstr ""
  2468. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:96
  2469. msgid "Enable Single DES"
  2470. msgstr ""
  2471. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:854
  2472. msgid "Enable TFTP server"
  2473. msgstr "אפשר שרת TFTP"
  2474. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:795
  2475. msgid "Enable VLAN filtering"
  2476. msgstr ""
  2477. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:184
  2478. msgid "Enable VLAN functionality"
  2479. msgstr "אפשר תפקוד VLAN"
  2480. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1946
  2481. msgid "Enable WPS pushbutton, requires WPA(2)-PSK/WPA3-SAE"
  2482. msgstr ""
  2483. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:319
  2484. msgid "Enable Yggdrasil Jumper"
  2485. msgstr ""
  2486. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/uhttpd.js:14
  2487. msgid ""
  2488. "Enable automatic redirection of <abbr title=\"Hypertext Transfer "
  2489. "Protocol\">HTTP</abbr> requests to <abbr title=\"Hypertext Transfer Protocol "
  2490. "Secure\">HTTPS</abbr> port."
  2491. msgstr ""
  2492. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1053
  2493. msgid ""
  2494. "Enable downstream delegation of IPv6 prefixes available on this interface"
  2495. msgstr ""
  2496. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1942
  2497. msgid "Enable key reinstallation (KRACK) countermeasures"
  2498. msgstr ""
  2499. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:189
  2500. msgid "Enable learning and aging"
  2501. msgstr "אפשר למידה והזדקנות"
  2502. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:200
  2503. msgid "Enable mirroring of incoming packets"
  2504. msgstr ""
  2505. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:201
  2506. msgid "Enable mirroring of outgoing packets"
  2507. msgstr ""
  2508. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:782
  2509. msgid "Enable multicast fast leave"
  2510. msgstr ""
  2511. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:601
  2512. msgid "Enable multicast querier"
  2513. msgstr ""
  2514. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:746
  2515. msgid "Enable multicast support"
  2516. msgstr ""
  2517. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:250
  2518. msgid ""
  2519. "Enable node info privacy so that only items specified in \"Node info\" are "
  2520. "sent back. Otherwise defaults including the platform, architecture and "
  2521. "Yggdrasil version are included."
  2522. msgstr ""
  2523. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1561
  2524. msgid "Enable packet steering across CPUs. May help or hinder network speed."
  2525. msgstr ""
  2526. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:676
  2527. msgid "Enable promiscuous mode"
  2528. msgstr ""
  2529. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:169
  2530. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:169
  2531. msgid "Enable rx checksum"
  2532. msgstr ""
  2533. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:89
  2534. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:94
  2535. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:91
  2536. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:96
  2537. msgid "Enable support for multicast traffic (optional)."
  2538. msgstr ""
  2539. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:83
  2540. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:88
  2541. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:67
  2542. msgid "Enable the DF (Don't Fragment) flag of the encapsulating packets."
  2543. msgstr ""
  2544. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:855
  2545. msgid "Enable the built-in single-instance TFTP server."
  2546. msgstr ""
  2547. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:956
  2548. msgid "Enable this network"
  2549. msgstr ""
  2550. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:33
  2551. msgid "Enable to minimise the chance of prefix change after a restart"
  2552. msgstr ""
  2553. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:173
  2554. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:173
  2555. msgid "Enable tx checksum"
  2556. msgstr ""
  2557. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:766
  2558. msgid "Enable unicast flooding"
  2559. msgstr ""
  2560. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1563
  2561. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1742
  2562. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1924
  2563. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:243
  2564. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:351
  2565. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:65
  2566. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:109
  2567. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:118
  2568. msgid "Enabled"
  2569. msgstr "פעילה"
  2570. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1564
  2571. msgid "Enabled (all CPUs)"
  2572. msgstr ""
  2573. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1925
  2574. msgid "Enabled (workaround mode)"
  2575. msgstr ""
  2576. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:592
  2577. msgid "Enables IGMP snooping on this bridge"
  2578. msgstr ""
  2579. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1662
  2580. msgid ""
  2581. "Enables fast roaming among access points that belong to the same Mobility "
  2582. "Domain"
  2583. msgstr ""
  2584. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:100
  2585. msgid ""
  2586. "Enables more efficient, group aware multicast forwarding infrastructure in "
  2587. "batman-adv."
  2588. msgstr ""
  2589. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:572
  2590. msgid "Enables the Spanning Tree Protocol on this bridge"
  2591. msgstr ""
  2592. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:61
  2593. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/ipip6.js:62
  2594. msgid "Encapsulation limit"
  2595. msgstr ""
  2596. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1615
  2597. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1673
  2598. msgid "Encapsulation mode"
  2599. msgstr ""
  2600. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:159
  2601. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:183
  2602. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1265
  2603. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1974
  2604. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:150
  2605. msgid "Encryption"
  2606. msgstr "הצפנה"
  2607. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:55
  2608. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:75
  2609. msgid "Endpoint"
  2610. msgstr "נקודת קצה"
  2611. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:647
  2612. msgid "Endpoint Host"
  2613. msgstr ""
  2614. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:663
  2615. msgid "Endpoint Port"
  2616. msgstr ""
  2617. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:312
  2618. msgid "Endpoint setting is invalid"
  2619. msgstr ""
  2620. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:751
  2621. msgid "Enforce IGMPv1"
  2622. msgstr ""
  2623. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:752
  2624. msgid "Enforce IGMPv2"
  2625. msgstr ""
  2626. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:753
  2627. msgid "Enforce IGMPv3"
  2628. msgstr ""
  2629. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:758
  2630. msgid "Enforce MLD version 1"
  2631. msgstr ""
  2632. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:759
  2633. msgid "Enforce MLD version 2"
  2634. msgstr ""
  2635. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:84
  2636. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:84
  2637. msgid "Ensure MTU does not exceed that of parent interface"
  2638. msgstr ""
  2639. #: modules/luci-compat/luasrc/view/cbi/dropdown.htm:16
  2640. msgid "Enter custom value"
  2641. msgstr ""
  2642. #: modules/luci-compat/luasrc/view/cbi/dropdown.htm:16
  2643. msgid "Enter custom values"
  2644. msgstr ""
  2645. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:97
  2646. msgid "Erasing..."
  2647. msgstr "מוחק..."
  2648. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:93
  2649. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:190
  2650. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:156
  2651. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:343
  2652. msgid "Error"
  2653. msgstr "שגיאה"
  2654. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:156
  2655. msgid "Error getting PublicKey"
  2656. msgstr ""
  2657. #: modules/luci-base/htdocs/luci-static/resources/network.js:3042
  2658. #: modules/luci-compat/luasrc/model/network.lua:1433
  2659. msgid "Ethernet Adapter"
  2660. msgstr ""
  2661. #: modules/luci-base/htdocs/luci-static/resources/network.js:3033
  2662. #: modules/luci-compat/luasrc/model/network.lua:1423
  2663. msgid "Ethernet Switch"
  2664. msgstr ""
  2665. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:277
  2666. msgid "Every 30 seconds (slow, 0)"
  2667. msgstr ""
  2668. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:278
  2669. msgid "Every second (fast, 1)"
  2670. msgstr ""
  2671. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:550
  2672. msgid "Exclude interfaces"
  2673. msgstr ""
  2674. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:160
  2675. msgid ""
  2676. "Execution of various network commands to check the connection and name "
  2677. "resolution to other systems."
  2678. msgstr ""
  2679. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:135
  2680. msgid "Execution order of this IP rule: lower numbers go first"
  2681. msgstr ""
  2682. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:516
  2683. msgid ""
  2684. "Exempt {loopback_slash_8_v4} and {localhost_v6} from rebinding checks, e.g. "
  2685. "for <abbr title=\"Real-time Block List\">RBL</abbr> services."
  2686. msgstr ""
  2687. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:410
  2688. msgid "Existing device"
  2689. msgstr ""
  2690. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:432
  2691. msgid "Expand hosts"
  2692. msgstr ""
  2693. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:114
  2694. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:114
  2695. msgid "Expect netlink reply to add MAC address into VXLAN FDB"
  2696. msgstr ""
  2697. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:120
  2698. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:120
  2699. msgid "Expect netlink reply to add destination IP address into Neighbour table"
  2700. msgstr ""
  2701. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:605
  2702. msgid "Expected port number."
  2703. msgstr ""
  2704. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1070
  2705. msgid "Expecting a hexadecimal assignment hint"
  2706. msgstr ""
  2707. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:19
  2708. msgid "Expecting a valid IPv4 address"
  2709. msgstr ""
  2710. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:19
  2711. msgid "Expecting a valid IPv6 address"
  2712. msgstr ""
  2713. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:235
  2714. msgid "Expecting a valid MAC address, optionally including wildcards"
  2715. msgstr ""
  2716. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:29
  2717. msgid "Expecting two priority values separated by a colon"
  2718. msgstr ""
  2719. #: modules/luci-base/htdocs/luci-static/resources/form.js:2271
  2720. #: modules/luci-base/htdocs/luci-static/resources/validation.js:77
  2721. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:142
  2722. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:148
  2723. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:176
  2724. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:192
  2725. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:196
  2726. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:200
  2727. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:203
  2728. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:207
  2729. msgid "Expecting: %s"
  2730. msgstr ""
  2731. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:53
  2732. msgid "Expecting: non-empty value"
  2733. msgstr ""
  2734. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:41
  2735. msgid "Expires"
  2736. msgstr ""
  2737. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:678
  2738. msgid ""
  2739. "Expiry time of leased addresses, minimum is 2 minutes (<code>2m</code>)."
  2740. msgstr ""
  2741. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:842
  2742. msgid ""
  2743. "Extend short TTL values to the seconds value given when caching them. Use "
  2744. "with caution."
  2745. msgstr ""
  2746. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:19
  2747. msgid "External"
  2748. msgstr ""
  2749. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1713
  2750. msgid "External R0 Key Holder List"
  2751. msgstr ""
  2752. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1717
  2753. msgid "External R1 Key Holder List"
  2754. msgstr ""
  2755. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:167
  2756. msgid "External system log server"
  2757. msgstr ""
  2758. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:172
  2759. msgid "External system log server port"
  2760. msgstr ""
  2761. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:177
  2762. msgid "External system log server protocol"
  2763. msgstr ""
  2764. #: protocols/luci-proto-external/htdocs/luci-static/resources/protocol/external.js:7
  2765. msgid "Externally managed interface"
  2766. msgstr ""
  2767. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:441
  2768. msgid "Extra DHCP logging"
  2769. msgstr ""
  2770. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:79
  2771. msgid "Extra SSH command options"
  2772. msgstr ""
  2773. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:375
  2774. msgid "Extra config"
  2775. msgstr ""
  2776. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:72
  2777. msgid "Extra pppd options"
  2778. msgstr ""
  2779. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:70
  2780. msgid "Extra sstpc options"
  2781. msgstr ""
  2782. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:98
  2783. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:98
  2784. msgid "FDB"
  2785. msgstr ""
  2786. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:77
  2787. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:77
  2788. msgid "FDB entry lifetime"
  2789. msgstr ""
  2790. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1143
  2791. msgid "FQDN"
  2792. msgstr ""
  2793. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1688
  2794. msgid "FT over DS"
  2795. msgstr ""
  2796. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1687
  2797. msgid "FT over the Air"
  2798. msgstr ""
  2799. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1685
  2800. msgid "FT protocol"
  2801. msgstr ""
  2802. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:91
  2803. msgid "Failed Reason"
  2804. msgstr ""
  2805. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:87
  2806. msgid "Failed to change the system password."
  2807. msgstr ""
  2808. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:21
  2809. msgid "Failed to configure modem"
  2810. msgstr ""
  2811. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4590
  2812. msgid "Failed to confirm apply within %ds, waiting for rollback…"
  2813. msgstr ""
  2814. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:22
  2815. msgid "Failed to connect"
  2816. msgstr ""
  2817. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:23
  2818. msgid "Failed to disconnect"
  2819. msgstr ""
  2820. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:36
  2821. msgid "Failed to execute \"/etc/init.d/%s %s\" action: %s"
  2822. msgstr ""
  2823. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:25
  2824. msgid "Failed to get modem information"
  2825. msgstr ""
  2826. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:26
  2827. msgid "Failed to initialize modem"
  2828. msgstr ""
  2829. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:30
  2830. msgid "Failed to set operating mode"
  2831. msgstr ""
  2832. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2747
  2833. msgid "File"
  2834. msgstr ""
  2835. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:735
  2836. msgid ""
  2837. "File listing upstream resolvers, optionally domain-specific, e.g. "
  2838. "{servers_file_entry01}, {servers_file_entry02}."
  2839. msgstr ""
  2840. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2684
  2841. msgid "File not accessible"
  2842. msgstr ""
  2843. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:631
  2844. msgid "File to store DHCP lease information."
  2845. msgstr ""
  2846. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:639
  2847. msgid "File with upstream resolvers."
  2848. msgstr ""
  2849. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2885
  2850. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:882
  2851. msgid "Filename"
  2852. msgstr ""
  2853. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:867
  2854. msgid "Filename of the boot image advertised to clients."
  2855. msgstr ""
  2856. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:191
  2857. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:315
  2858. msgid "Filesystem"
  2859. msgstr ""
  2860. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:392
  2861. msgid "Filter"
  2862. msgstr ""
  2863. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:696
  2864. msgid "Filter IPv4 A records"
  2865. msgstr ""
  2866. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:690
  2867. msgid "Filter IPv6 AAAA records"
  2868. msgstr ""
  2869. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:685
  2870. msgid "Filter SRV/SOA service discovery"
  2871. msgstr ""
  2872. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:701
  2873. msgid "Filter arbitrary RR"
  2874. msgstr ""
  2875. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:678
  2876. msgid "Filter private"
  2877. msgstr ""
  2878. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:394
  2879. msgid "Filtering for all slaves, no validation"
  2880. msgstr ""
  2881. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:395
  2882. msgid "Filtering for all slaves, validation only for active slave"
  2883. msgstr ""
  2884. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:396
  2885. msgid "Filtering for all slaves, validation only for backup slaves"
  2886. msgstr ""
  2887. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:686
  2888. msgid ""
  2889. "Filters SRV/SOA service discovery, to avoid triggering dial-on-demand links."
  2890. msgstr ""
  2891. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:65
  2892. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:24
  2893. msgid "Finalizing failed"
  2894. msgstr ""
  2895. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:150
  2896. msgid ""
  2897. "Find all currently attached filesystems and swap and replace configuration "
  2898. "with defaults based on what was detected"
  2899. msgstr ""
  2900. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:939
  2901. msgid "Find and join network"
  2902. msgstr ""
  2903. #: modules/luci-compat/luasrc/view/cbi/delegator.htm:9
  2904. msgid "Finish"
  2905. msgstr ""
  2906. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:27
  2907. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:43
  2908. msgid "Firewall"
  2909. msgstr ""
  2910. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:187
  2911. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:39
  2912. msgid "Firewall Mark"
  2913. msgstr "סימן חומת אש"
  2914. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:472
  2915. msgid "Firewall Settings"
  2916. msgstr ""
  2917. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:330
  2918. msgid "Firewall Status"
  2919. msgstr ""
  2920. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:184
  2921. msgid "Firewall mark"
  2922. msgstr ""
  2923. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1632
  2924. msgid "Firmware File"
  2925. msgstr ""
  2926. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:59
  2927. msgid "Firmware Version"
  2928. msgstr ""
  2929. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:772
  2930. msgid "First answer wins."
  2931. msgstr ""
  2932. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:791
  2933. msgid "Fixed source port for outbound DNS queries."
  2934. msgstr ""
  2935. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:314
  2936. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:451
  2937. msgid "Flash image..."
  2938. msgstr ""
  2939. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:310
  2940. msgid "Flash image?"
  2941. msgstr ""
  2942. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:441
  2943. msgid "Flash new firmware image"
  2944. msgstr ""
  2945. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:386
  2946. msgid "Flash operations"
  2947. msgstr ""
  2948. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:319
  2949. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:321
  2950. msgid "Flashing…"
  2951. msgstr ""
  2952. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1004
  2953. msgid "Follow IPv4 Lifetime"
  2954. msgstr ""
  2955. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:211
  2956. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:211
  2957. msgid "For multicast, an outgoing interface (%s) needs to be specified"
  2958. msgstr ""
  2959. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:913
  2960. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:685
  2961. msgid "Force"
  2962. msgstr ""
  2963. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1032
  2964. msgid "Force 40MHz mode"
  2965. msgstr ""
  2966. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1307
  2967. msgid "Force CCMP (AES)"
  2968. msgstr ""
  2969. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1308
  2970. msgid "Force CCMP-256 (AES)"
  2971. msgstr ""
  2972. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:685
  2973. msgid "Force DHCP on this network even if another server is detected."
  2974. msgstr ""
  2975. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1309
  2976. msgid "Force GCMP (AES)"
  2977. msgstr ""
  2978. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1310
  2979. msgid "Force GCMP-256 (AES)"
  2980. msgstr ""
  2981. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:749
  2982. msgid "Force IGMP version"
  2983. msgstr ""
  2984. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:756
  2985. msgid "Force MLD version"
  2986. msgstr ""
  2987. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1311
  2988. msgid "Force TKIP"
  2989. msgstr ""
  2990. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1312
  2991. msgid "Force TKIP and CCMP (AES)"
  2992. msgstr ""
  2993. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1294
  2994. msgid "Force broadcast DHCP response."
  2995. msgstr ""
  2996. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1319
  2997. msgid "Force link"
  2998. msgstr ""
  2999. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:283
  3000. msgid "Force upgrade"
  3001. msgstr ""
  3002. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:90
  3003. msgid "Force use of NAT-T"
  3004. msgstr ""
  3005. #: modules/luci-base/ucode/template/csrftoken.ut:8
  3006. msgid "Form token mismatch"
  3007. msgstr ""
  3008. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1527
  3009. msgid "Format:"
  3010. msgstr ""
  3011. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:982
  3012. msgid ""
  3013. "Forward <abbr title=\"Neighbour Discovery Protocol\">NDP</abbr> <abbr "
  3014. "title=\"Neighbour Solicitation, Type 135\">NS</abbr> and <abbr "
  3015. "title=\"Neighbour Advertisement, Type 136\">NA</abbr> messages between the "
  3016. "designated master interface and downstream interfaces."
  3017. msgstr ""
  3018. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:793
  3019. msgid ""
  3020. "Forward <abbr title=\"Router Advertisement, ICMPv6 Type 134\">RA</abbr> "
  3021. "messages received on the designated master interface to downstream "
  3022. "interfaces."
  3023. msgstr ""
  3024. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:164
  3025. msgid "Forward DHCP traffic"
  3026. msgstr ""
  3027. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:918
  3028. msgid ""
  3029. "Forward DHCPv6 messages between the designated master interface and "
  3030. "downstream interfaces."
  3031. msgstr ""
  3032. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:161
  3033. msgid "Forward broadcast traffic"
  3034. msgstr ""
  3035. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:581
  3036. msgid "Forward delay"
  3037. msgstr ""
  3038. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1060
  3039. msgid "Forward mesh peer traffic"
  3040. msgstr ""
  3041. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:778
  3042. msgid "Forward multicast packets as unicast packets on this device."
  3043. msgstr ""
  3044. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:470
  3045. msgid "Forward specific domain queries to specific upstream servers."
  3046. msgstr ""
  3047. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1297
  3048. msgid "Forward/reverse DNS"
  3049. msgstr ""
  3050. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:98
  3051. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:98
  3052. msgid "Forwarding DataBase"
  3053. msgstr ""
  3054. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1680
  3055. msgid "Forwarding mode"
  3056. msgstr ""
  3057. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:393
  3058. msgid "Forwards"
  3059. msgstr ""
  3060. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:80
  3061. msgid "Fragmentation"
  3062. msgstr ""
  3063. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1024
  3064. msgid "Fragmentation Threshold"
  3065. msgstr ""
  3066. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:62
  3067. msgctxt "nft nat flag fully-random"
  3068. msgid "Full port randomization"
  3069. msgstr ""
  3070. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:178
  3071. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:178
  3072. msgid "Further information about VXLAN interfaces and peers %s."
  3073. msgstr ""
  3074. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:200
  3075. msgid ""
  3076. "Further information about WireGuard interfaces and peers at <a href='http://"
  3077. "wireguard.com'>wireguard.com</a>."
  3078. msgstr ""
  3079. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:123
  3080. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:123
  3081. msgid "GBP"
  3082. msgstr ""
  3083. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:128
  3084. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:184
  3085. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:170
  3086. msgid "GHz"
  3087. msgstr ""
  3088. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:92
  3089. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:82
  3090. msgid "GPRS only"
  3091. msgstr ""
  3092. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:10
  3093. msgid "GRE tunnel over IPv4"
  3094. msgstr ""
  3095. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:10
  3096. msgid "GRE tunnel over IPv6"
  3097. msgstr ""
  3098. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:10
  3099. msgid "GRETAP tunnel over IPv4"
  3100. msgstr ""
  3101. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:10
  3102. msgid "GRETAP tunnel over IPv6"
  3103. msgstr ""
  3104. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:79
  3105. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:39
  3106. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:198
  3107. msgid "Gateway"
  3108. msgstr ""
  3109. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:85
  3110. msgid "Gateway Mode"
  3111. msgstr ""
  3112. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:38
  3113. msgid "Gateway Ports"
  3114. msgstr ""
  3115. #: modules/luci-base/htdocs/luci-static/resources/network.js:11
  3116. #: modules/luci-compat/luasrc/model/network.lua:29
  3117. msgid "Gateway address is invalid"
  3118. msgstr ""
  3119. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:151
  3120. msgid "Gateway metric"
  3121. msgstr ""
  3122. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:387
  3123. msgid "General"
  3124. msgstr ""
  3125. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:467
  3126. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:40
  3127. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:132
  3128. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:240
  3129. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:122
  3130. msgid "General Settings"
  3131. msgstr ""
  3132. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:631
  3133. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1667
  3134. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:984
  3135. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1046
  3136. msgid "General Setup"
  3137. msgstr ""
  3138. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:390
  3139. msgid "General device options"
  3140. msgstr ""
  3141. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:150
  3142. msgid "Generate Config"
  3143. msgstr ""
  3144. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1691
  3145. msgid "Generate PMK locally"
  3146. msgstr ""
  3147. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:398
  3148. msgid "Generate archive"
  3149. msgstr ""
  3150. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:836
  3151. msgid "Generate configuration"
  3152. msgstr ""
  3153. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:876
  3154. msgid "Generate configuration…"
  3155. msgstr ""
  3156. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:95
  3157. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:62
  3158. msgid "Generate new key pair"
  3159. msgstr ""
  3160. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:606
  3161. msgid "Generate preshared key"
  3162. msgstr ""
  3163. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:676
  3164. msgid "Generates a configuration suitable for import on a WireGuard peer"
  3165. msgstr ""
  3166. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:810
  3167. msgid "Generating QR code…"
  3168. msgstr ""
  3169. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:79
  3170. msgid "Given password confirmation did not match, password not changed!"
  3171. msgstr ""
  3172. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:146
  3173. msgid "Global Settings"
  3174. msgstr ""
  3175. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1551
  3176. msgid "Global network options"
  3177. msgstr ""
  3178. #: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:71
  3179. #: themes/luci-theme-material/ucode/template/themes/material/header.ut:91
  3180. #: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:67
  3181. #: themes/luci-theme-openwrt/ucode/template/themes/openwrt.org/header.ut:84
  3182. msgid "Go to firmware upgrade..."
  3183. msgstr ""
  3184. #: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:61
  3185. #: themes/luci-theme-material/ucode/template/themes/material/header.ut:81
  3186. #: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:57
  3187. #: themes/luci-theme-openwrt/ucode/template/themes/openwrt.org/header.ut:74
  3188. msgid "Go to password configuration..."
  3189. msgstr ""
  3190. #: modules/luci-base/htdocs/luci-static/resources/form.js:2598
  3191. #: modules/luci-base/htdocs/luci-static/resources/form.js:3711
  3192. #: modules/luci-compat/luasrc/view/cbi/full_valueheader.htm:4
  3193. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:58
  3194. msgid "Go to relevant configuration page"
  3195. msgstr ""
  3196. #: modules/luci-mod-network/root/usr/share/rpcd/acl.d/luci-mod-network.json:39
  3197. msgid "Grant access to DHCP configuration"
  3198. msgstr ""
  3199. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status-index.json:33
  3200. msgid "Grant access to DHCP status display"
  3201. msgstr ""
  3202. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status-index.json:42
  3203. msgid "Grant access to DSL status display"
  3204. msgstr ""
  3205. #: protocols/luci-proto-openconnect/root/usr/share/rpcd/acl.d/luci-openconnect.json:3
  3206. msgid "Grant access to LuCI OpenConnect procedures"
  3207. msgstr ""
  3208. #: protocols/luci-proto-wireguard/root/usr/share/rpcd/acl.d/luci-wireguard.json:3
  3209. msgid "Grant access to LuCI Wireguard procedures"
  3210. msgstr ""
  3211. #: protocols/luci-proto-yggdrasil/root/usr/share/rpcd/acl.d/luci-proto-yggdrasil.json:3
  3212. msgid "Grant access to LuCI Yggdrasil procedures"
  3213. msgstr ""
  3214. #: protocols/luci-proto-openfortivpn/root/usr/share/rpcd/acl.d/luci-openfortivpn.json:3
  3215. msgid "Grant access to LuCI openfortivpn procedures"
  3216. msgstr ""
  3217. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:22
  3218. msgid "Grant access to SSH configuration"
  3219. msgstr ""
  3220. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status-index.json:23
  3221. msgid "Grant access to Storage and Mount status display"
  3222. msgstr ""
  3223. #: modules/luci-base/root/usr/share/rpcd/acl.d/luci-base.json:12
  3224. msgid "Grant access to basic LuCI procedures"
  3225. msgstr ""
  3226. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:78
  3227. msgid "Grant access to crontab configuration"
  3228. msgstr ""
  3229. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:67
  3230. msgid "Grant access to firewall status"
  3231. msgstr ""
  3232. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:131
  3233. msgid "Grant access to flash operations"
  3234. msgstr ""
  3235. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status-index.json:3
  3236. msgid "Grant access to main status display"
  3237. msgstr ""
  3238. #: protocols/luci-proto-modemmanager/root/usr/share/rpcd/acl.d/luci-proto-modemmanager.json:3
  3239. msgid "Grant access to mmcli"
  3240. msgstr ""
  3241. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:99
  3242. msgid "Grant access to mount configuration"
  3243. msgstr ""
  3244. #: modules/luci-mod-network/root/usr/share/rpcd/acl.d/luci-mod-network.json:3
  3245. msgid "Grant access to network configuration"
  3246. msgstr ""
  3247. #: modules/luci-mod-network/root/usr/share/rpcd/acl.d/luci-mod-network.json:52
  3248. msgid "Grant access to network diagnostic tools"
  3249. msgstr ""
  3250. #: modules/luci-base/root/usr/share/rpcd/acl.d/luci-base.json:36
  3251. msgid "Grant access to network status information"
  3252. msgstr ""
  3253. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status-index.json:51
  3254. msgid "Grant access to port status display"
  3255. msgstr ""
  3256. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:13
  3257. msgid "Grant access to process status"
  3258. msgstr ""
  3259. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:3
  3260. msgid "Grant access to realtime statistics"
  3261. msgstr ""
  3262. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:44
  3263. msgid "Grant access to routing status"
  3264. msgstr ""
  3265. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:56
  3266. msgid "Grant access to startup configuration"
  3267. msgstr ""
  3268. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:3
  3269. msgid "Grant access to system configuration"
  3270. msgstr ""
  3271. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:30
  3272. msgid "Grant access to system logs"
  3273. msgstr ""
  3274. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:45
  3275. msgid "Grant access to uHTTPd configuration"
  3276. msgstr ""
  3277. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:58
  3278. msgid "Grant access to wireless channel status"
  3279. msgstr ""
  3280. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status-index.json:60
  3281. msgid "Grant access to wireless status display"
  3282. msgstr ""
  3283. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:124
  3284. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:124
  3285. msgid "Group Based Policy (VXLAN-GBP) extension"
  3286. msgstr ""
  3287. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:66
  3288. msgid "Group Password"
  3289. msgstr ""
  3290. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:22
  3291. msgid "Guest"
  3292. msgstr ""
  3293. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:81
  3294. msgid "HE.net password"
  3295. msgstr ""
  3296. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:73
  3297. msgid "HE.net username"
  3298. msgstr ""
  3299. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/uhttpd.js:9
  3300. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:64
  3301. msgid "HTTP(S) Access"
  3302. msgstr ""
  3303. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:46
  3304. msgid "Hang Up"
  3305. msgstr ""
  3306. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/heartbeat.js:6
  3307. msgid "Heartbeat interval (kernel: heartbeat)"
  3308. msgstr ""
  3309. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:576
  3310. msgid "Hello interval"
  3311. msgstr ""
  3312. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:114
  3313. msgid ""
  3314. "Here you can configure the basic aspects of your device like its hostname or "
  3315. "the timezone."
  3316. msgstr ""
  3317. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1108
  3318. msgid "Hex Data"
  3319. msgstr ""
  3320. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1059
  3321. msgid "Hexdata is automatically en/decoded on save and load"
  3322. msgstr ""
  3323. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1202
  3324. msgid "Hide <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>"
  3325. msgstr ""
  3326. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:297
  3327. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:336
  3328. msgid "Hide empty chains"
  3329. msgstr ""
  3330. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1017
  3331. msgid "High"
  3332. msgstr ""
  3333. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:707
  3334. msgid "Honor gratuitous ARP"
  3335. msgstr ""
  3336. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:593
  3337. msgctxt "Chain hook description"
  3338. msgid "Hook: <strong>%h</strong> (%h), Priority: <strong>%d</strong>"
  3339. msgstr ""
  3340. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:92
  3341. msgid "Hop Penalty"
  3342. msgstr ""
  3343. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:57
  3344. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2412
  3345. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:134
  3346. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:234
  3347. msgid "Host"
  3348. msgstr ""
  3349. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:171
  3350. msgid "Host expiry timeout"
  3351. msgstr ""
  3352. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:883
  3353. msgid "Host requests this filename from the boot server."
  3354. msgstr ""
  3355. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:88
  3356. msgid "Host-Uniq tag content"
  3357. msgstr ""
  3358. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1246
  3359. msgid ""
  3360. "Host-specific lease time, e.g. <code>5m</code>, <code>3h</code>, <code>7d</"
  3361. "code>."
  3362. msgstr ""
  3363. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:38
  3364. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1036
  3365. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1176
  3366. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:55
  3367. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:87
  3368. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:135
  3369. msgid "Hostname"
  3370. msgstr ""
  3371. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:22
  3372. msgid "Hostname to send when requesting DHCP"
  3373. msgstr ""
  3374. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:934
  3375. msgid "Hostnames"
  3376. msgstr ""
  3377. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1028
  3378. msgid ""
  3379. "Hostnames are used to bind a domain name to an IP address. This setting is "
  3380. "redundant for hostnames already configured with static leases, but it can be "
  3381. "useful to rebind an FQDN."
  3382. msgstr ""
  3383. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/timer.js:19
  3384. msgid "How long (in milliseconds) the LED should be off"
  3385. msgstr ""
  3386. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/timer.js:13
  3387. msgid "How long (in milliseconds) the LED should be on"
  3388. msgstr ""
  3389. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:280
  3390. msgid "Human-readable counters"
  3391. msgstr ""
  3392. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:24
  3393. msgid "Hybrid"
  3394. msgstr ""
  3395. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:49
  3396. msgctxt "nft icmp code"
  3397. msgid "ICMP code"
  3398. msgstr ""
  3399. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:50
  3400. msgctxt "nft icmp type"
  3401. msgid "ICMP type"
  3402. msgstr ""
  3403. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:51
  3404. msgctxt "nft icmpv6 code"
  3405. msgid "ICMPv6 code"
  3406. msgstr ""
  3407. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:52
  3408. msgctxt "nft icmpv6 type"
  3409. msgid "ICMPv6 type"
  3410. msgstr ""
  3411. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:128
  3412. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:128
  3413. msgid "ID used to uniquely identify the VXLAN"
  3414. msgstr ""
  3415. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:213
  3416. msgid "IEEE 802.3ad Dynamic link aggregation (802.3ad, 4)"
  3417. msgstr ""
  3418. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:75
  3419. msgid "IKE DH Group"
  3420. msgstr ""
  3421. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:86
  3422. msgid "IMEI"
  3423. msgstr ""
  3424. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:141
  3425. msgid "IP Address"
  3426. msgstr ""
  3427. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:167
  3428. msgid "IP Addresses"
  3429. msgstr ""
  3430. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:85
  3431. msgid "IP Protocol"
  3432. msgstr ""
  3433. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:398
  3434. msgid "IP Sets"
  3435. msgstr ""
  3436. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:138
  3437. msgid "IP Type"
  3438. msgstr ""
  3439. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1040
  3440. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:188
  3441. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:214
  3442. msgid "IP address"
  3443. msgstr ""
  3444. #: modules/luci-base/htdocs/luci-static/resources/network.js:10
  3445. #: modules/luci-compat/luasrc/model/network.lua:28
  3446. msgid "IP address is invalid"
  3447. msgstr ""
  3448. #: modules/luci-base/htdocs/luci-static/resources/network.js:13
  3449. #: modules/luci-compat/luasrc/model/network.lua:31
  3450. msgid "IP address is missing"
  3451. msgstr ""
  3452. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:210
  3453. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:210
  3454. msgid ""
  3455. "IP address of the remote VXLAN tunnel endpoint where the MAC address (Layer "
  3456. "2 Address) resides or a multicast address for a group of peers."
  3457. msgstr ""
  3458. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:793
  3459. msgid ""
  3460. "IP addresses for the peer to use inside the tunnel. Some clients require "
  3461. "this setting."
  3462. msgstr ""
  3463. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:782
  3464. msgid ""
  3465. "IP addresses that are allowed inside the tunnel. The peer will accept "
  3466. "tunnelled packets with source IP addresses matching this list and route back "
  3467. "packets with matching destination IP."
  3468. msgstr ""
  3469. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:36
  3470. msgctxt "nft ip protocol"
  3471. msgid "IP protocol"
  3472. msgstr ""
  3473. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:14
  3474. msgctxt "nft meta l4proto"
  3475. msgid "IP protocol"
  3476. msgstr ""
  3477. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:501
  3478. msgid "IP sets"
  3479. msgstr ""
  3480. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:776
  3481. msgid "IPs to override with {nxdomain}"
  3482. msgstr ""
  3483. #: protocols/luci-proto-xfrm/htdocs/luci-static/resources/protocol/xfrm.js:9
  3484. msgid "IPsec XFRM"
  3485. msgstr ""
  3486. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1158
  3487. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:87
  3488. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:110
  3489. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:88
  3490. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:96
  3491. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:87
  3492. msgid "IPv4"
  3493. msgstr ""
  3494. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:355
  3495. msgid "IPv4 Firewall"
  3496. msgstr ""
  3497. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:262
  3498. msgid "IPv4 Neighbours"
  3499. msgstr ""
  3500. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:261
  3501. msgid "IPv4 Routing"
  3502. msgstr ""
  3503. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:126
  3504. msgid "IPv4 Rules"
  3505. msgstr ""
  3506. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:33
  3507. msgid "IPv4 Upstream"
  3508. msgstr ""
  3509. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:179
  3510. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:39
  3511. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1211
  3512. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:88
  3513. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:167
  3514. msgid "IPv4 address"
  3515. msgstr "כתבות IPv4"
  3516. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:29
  3517. msgid "IPv4 assignment length"
  3518. msgstr ""
  3519. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:182
  3520. msgid "IPv4 broadcast"
  3521. msgstr ""
  3522. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:181
  3523. msgid "IPv4 gateway"
  3524. msgstr ""
  3525. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:180
  3526. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:174
  3527. msgid "IPv4 netmask"
  3528. msgstr ""
  3529. #: modules/luci-base/htdocs/luci-static/resources/validation.js:318
  3530. msgid "IPv4 network in address/netmask notation"
  3531. msgstr ""
  3532. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:140
  3533. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:205
  3534. msgid "IPv4 only"
  3535. msgstr ""
  3536. #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:16
  3537. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/ipip6.js:10
  3538. msgid "IPv4 over IPv6 (RFC2473-IPIPv6)"
  3539. msgstr ""
  3540. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:52
  3541. msgid "IPv4 prefix"
  3542. msgstr ""
  3543. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:61
  3544. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:55
  3545. msgid "IPv4 prefix length"
  3546. msgstr ""
  3547. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:625
  3548. msgid "IPv4 traffic table \"%h\""
  3549. msgstr ""
  3550. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1157
  3551. msgid "IPv4+6"
  3552. msgstr ""
  3553. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:88
  3554. msgid "IPv4+IPv6"
  3555. msgstr ""
  3556. #: modules/luci-compat/luasrc/model/network/proto_ipip.lua:9
  3557. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:10
  3558. msgid "IPv4-in-IPv4 (RFC2003)"
  3559. msgstr ""
  3560. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:95
  3561. msgid "IPv4/IPv6"
  3562. msgstr ""
  3563. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:139
  3564. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:204
  3565. msgid "IPv4/IPv6 (both - defaults to IPv4)"
  3566. msgstr ""
  3567. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:633
  3568. msgid "IPv4/IPv6 traffic table \"%h\""
  3569. msgstr ""
  3570. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1159
  3571. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:88
  3572. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:111
  3573. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:89
  3574. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:97
  3575. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:89
  3576. msgid "IPv6"
  3577. msgstr ""
  3578. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:81
  3579. msgid "IPv6 APN"
  3580. msgstr ""
  3581. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:150
  3582. msgid "IPv6 APN profile index"
  3583. msgstr ""
  3584. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:358
  3585. msgid "IPv6 Firewall"
  3586. msgstr ""
  3587. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:736
  3588. msgid "IPv6 MTU"
  3589. msgstr ""
  3590. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:272
  3591. msgid "IPv6 Neighbours"
  3592. msgstr ""
  3593. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:995
  3594. msgid "IPv6 Prefix Lifetime"
  3595. msgstr ""
  3596. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:634
  3597. msgid "IPv6 RA Settings"
  3598. msgstr ""
  3599. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:271
  3600. msgid "IPv6 Routing"
  3601. msgstr ""
  3602. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:126
  3603. msgid "IPv6 Rules"
  3604. msgstr ""
  3605. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:633
  3606. msgid "IPv6 Settings"
  3607. msgstr ""
  3608. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1555
  3609. msgid "IPv6 ULA-Prefix"
  3610. msgstr ""
  3611. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:33
  3612. msgid "IPv6 Upstream"
  3613. msgstr ""
  3614. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:184
  3615. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:58
  3616. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:135
  3617. msgid "IPv6 address"
  3618. msgstr ""
  3619. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1061
  3620. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:27
  3621. msgid "IPv6 assignment hint"
  3622. msgstr ""
  3623. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1056
  3624. msgid "IPv6 assignment length"
  3625. msgstr ""
  3626. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:189
  3627. msgid "IPv6 gateway"
  3628. msgstr ""
  3629. #: modules/luci-base/htdocs/luci-static/resources/validation.js:323
  3630. msgid "IPv6 network in address/netmask notation"
  3631. msgstr ""
  3632. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:141
  3633. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:206
  3634. msgid "IPv6 only"
  3635. msgstr ""
  3636. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1105
  3637. msgid "IPv6 preference"
  3638. msgstr ""
  3639. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:53
  3640. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:59
  3641. msgid "IPv6 prefix"
  3642. msgstr ""
  3643. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1078
  3644. msgid "IPv6 prefix filter"
  3645. msgstr ""
  3646. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:57
  3647. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:63
  3648. msgid "IPv6 prefix length"
  3649. msgstr ""
  3650. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:193
  3651. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:57
  3652. msgid "IPv6 routed prefix"
  3653. msgstr ""
  3654. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1049
  3655. msgid "IPv6 source routing"
  3656. msgstr ""
  3657. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1101
  3658. msgid "IPv6 suffix"
  3659. msgstr ""
  3660. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:55
  3661. msgid "IPv6 support"
  3662. msgstr ""
  3663. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:629
  3664. msgid "IPv6 traffic table \"%h\""
  3665. msgstr ""
  3666. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:90
  3667. msgid "IPv6-PD"
  3668. msgstr ""
  3669. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1263
  3670. msgid "IPv6-Suffix (hex)"
  3671. msgstr ""
  3672. #: modules/luci-compat/luasrc/model/network/proto_6x4.lua:13
  3673. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:10
  3674. msgid "IPv6-in-IPv4 (RFC4213)"
  3675. msgstr ""
  3676. #: modules/luci-compat/luasrc/model/network/proto_6x4.lua:17
  3677. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:9
  3678. msgid "IPv6-over-IPv4 (6rd)"
  3679. msgstr ""
  3680. #: modules/luci-compat/luasrc/model/network/proto_6x4.lua:15
  3681. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6to4.js:9
  3682. msgid "IPv6-over-IPv4 (6to4)"
  3683. msgstr ""
  3684. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1875
  3685. msgid "Identity"
  3686. msgstr ""
  3687. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1275
  3688. msgid ""
  3689. "If a host matches an entry which cannot be used because it specifies an "
  3690. "address on a different subnet, the tag %s is set."
  3691. msgstr ""
  3692. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:758
  3693. msgid ""
  3694. "If an address is specified in the flag, it will be used, otherwise, the "
  3695. "address of the requestor will be used."
  3696. msgstr ""
  3697. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:96
  3698. msgid "If checked, 1DES is enabled"
  3699. msgstr ""
  3700. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:55
  3701. msgid "If checked, adds \"+ipv6\" to the pppd options"
  3702. msgstr ""
  3703. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:93
  3704. msgid "If checked, encryption is disabled"
  3705. msgstr ""
  3706. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:104
  3707. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:104
  3708. msgid ""
  3709. "If destination MAC refers to router, replace it with destination MAC address"
  3710. msgstr ""
  3711. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:267
  3712. msgid ""
  3713. "If empty, all incoming connections will be allowed (default). This does not "
  3714. "affect outgoing peerings, nor link-local peers discovered via multicast."
  3715. msgstr ""
  3716. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1078
  3717. msgid ""
  3718. "If set, downstream subnets are only allocated from the given IPv6 prefix "
  3719. "classes."
  3720. msgstr ""
  3721. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:205
  3722. msgid "If set, the meaning of the match options is inverted"
  3723. msgstr ""
  3724. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:255
  3725. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:359
  3726. msgid ""
  3727. "If specified, mount the device by its UUID instead of a fixed device node"
  3728. msgstr ""
  3729. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:268
  3730. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:375
  3731. msgid ""
  3732. "If specified, mount the device by the partition label instead of a fixed "
  3733. "device node"
  3734. msgstr ""
  3735. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1011
  3736. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/ipip6.js:70
  3737. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:134
  3738. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:156
  3739. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:129
  3740. msgid "If unchecked, no default route is configured"
  3741. msgstr ""
  3742. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1015
  3743. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:145
  3744. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:160
  3745. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:140
  3746. msgid "If unchecked, the advertised DNS server addresses are ignored"
  3747. msgstr ""
  3748. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:338
  3749. msgid ""
  3750. "If your physical memory is insufficient unused data can be temporarily "
  3751. "swapped to a swap-device resulting in a higher amount of usable <abbr "
  3752. "title=\"Random Access Memory\">RAM</abbr>. Be aware that swapping data is a "
  3753. "very slow process as the swap-device cannot be accessed with the high "
  3754. "datarates of the <abbr title=\"Random Access Memory\">RAM</abbr>."
  3755. msgstr ""
  3756. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1212
  3757. msgid "Ignore"
  3758. msgstr ""
  3759. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:650
  3760. msgid "Ignore hosts files directory"
  3761. msgstr ""
  3762. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:665
  3763. msgid "Ignore interface"
  3764. msgstr ""
  3765. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1274
  3766. msgid "Ignore requests from unknown machines using %s."
  3767. msgstr ""
  3768. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:634
  3769. msgid "Ignore resolv file"
  3770. msgstr ""
  3771. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:657
  3772. msgid "Ignore {etc_hosts} file"
  3773. msgstr ""
  3774. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:449
  3775. msgid "Image"
  3776. msgstr ""
  3777. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:275
  3778. msgid "Image check failed:"
  3779. msgstr ""
  3780. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:463
  3781. msgid "Import as peer"
  3782. msgstr ""
  3783. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:174
  3784. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:463
  3785. msgid "Import configuration"
  3786. msgstr ""
  3787. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:491
  3788. msgid "Import configuration as peer…"
  3789. msgstr ""
  3790. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:477
  3791. msgid "Import settings"
  3792. msgstr ""
  3793. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:363
  3794. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:390
  3795. msgid "Imported peer configuration"
  3796. msgstr ""
  3797. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:174
  3798. msgid "Imports settings from an existing WireGuard configuration file"
  3799. msgstr ""
  3800. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:68
  3801. msgid "In"
  3802. msgstr ""
  3803. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1193
  3804. msgid ""
  3805. "In DHCPv4, it is possible to include more than one mac address. This allows "
  3806. "an IP address to be associated with multiple macaddrs, and dnsmasq abandons "
  3807. "a DHCP lease to one of the macaddrs when another asks for a lease. It only "
  3808. "works reliably if only one of the macaddrs is active at any time."
  3809. msgstr ""
  3810. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:71
  3811. msgid ""
  3812. "In bridged LAN setups it is advisable to enable the bridge loop avoidance in "
  3813. "order to avoid broadcast loops that can bring the entire LAN to a standstill."
  3814. msgstr ""
  3815. #: modules/luci-base/ucode/template/csrftoken.ut:13
  3816. msgid ""
  3817. "In order to prevent unauthorized access to the system, your request has been "
  3818. "blocked. Click \"Continue »\" below to return to the previous page."
  3819. msgstr ""
  3820. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:148
  3821. msgid "In seconds"
  3822. msgstr ""
  3823. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:156
  3824. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:128
  3825. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:114
  3826. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:92
  3827. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:101
  3828. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:124
  3829. msgid "Inactivity timeout"
  3830. msgstr ""
  3831. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:267
  3832. msgid "Inbound:"
  3833. msgstr ""
  3834. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:264
  3835. msgid ""
  3836. "Include in backup a list of current installed packages at /etc/backup/"
  3837. "installed_packages.txt"
  3838. msgstr ""
  3839. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:100
  3840. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:105
  3841. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:102
  3842. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:107
  3843. msgid "Incoming checksum"
  3844. msgstr ""
  3845. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:150
  3846. msgid "Incoming interface"
  3847. msgstr ""
  3848. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:92
  3849. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:97
  3850. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:94
  3851. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:99
  3852. #: protocols/luci-proto-vti/htdocs/luci-static/resources/protocol/vti.js:64
  3853. msgid "Incoming key"
  3854. msgstr ""
  3855. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:102
  3856. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:107
  3857. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:104
  3858. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:109
  3859. msgid "Incoming serialization"
  3860. msgstr ""
  3861. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:550
  3862. msgid "Indoor Only Channel Selected"
  3863. msgstr ""
  3864. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:187
  3865. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:158
  3866. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:345
  3867. msgid "Info"
  3868. msgstr ""
  3869. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:91
  3870. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:92
  3871. msgid "Information"
  3872. msgstr ""
  3873. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:510
  3874. msgid "Ingress QoS mapping"
  3875. msgstr ""
  3876. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:11
  3877. msgctxt "nft meta iif"
  3878. msgid "Ingress device id"
  3879. msgstr ""
  3880. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:9
  3881. msgctxt "nft meta iifname"
  3882. msgid "Ingress device name"
  3883. msgstr ""
  3884. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:162
  3885. msgid "Initial EPS Bearer"
  3886. msgstr ""
  3887. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:171
  3888. msgid "Initial EPS Bearer APN"
  3889. msgstr ""
  3890. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:175
  3891. msgid "Initial EPS Bearer Authentication Type"
  3892. msgstr ""
  3893. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:202
  3894. msgid "Initial EPS Bearer IP Type"
  3895. msgstr ""
  3896. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:193
  3897. msgid "Initial EPS Bearer Password"
  3898. msgstr ""
  3899. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:185
  3900. msgid "Initial EPS Bearer Username"
  3901. msgstr ""
  3902. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:67
  3903. msgid "Initialization failure"
  3904. msgstr ""
  3905. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:76
  3906. msgid "Initscript"
  3907. msgstr ""
  3908. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:111
  3909. msgid "Initscripts"
  3910. msgstr ""
  3911. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1859
  3912. msgid "Inner certificate constraint (Domain)"
  3913. msgstr ""
  3914. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1856
  3915. msgid "Inner certificate constraint (SAN)"
  3916. msgstr ""
  3917. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1853
  3918. msgid "Inner certificate constraint (Subject)"
  3919. msgstr ""
  3920. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1862
  3921. msgid "Inner certificate constraint (Wildcard)"
  3922. msgstr ""
  3923. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:289
  3924. msgid "Install protocol extensions..."
  3925. msgstr ""
  3926. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:918
  3927. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1282
  3928. msgid "Instance"
  3929. msgstr ""
  3930. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:125
  3931. msgctxt "WireGuard instance heading"
  3932. msgid "Instance \"%h\""
  3933. msgstr ""
  3934. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:374
  3935. msgctxt "Dnsmasq instance"
  3936. msgid "Instance \"%q\""
  3937. msgstr ""
  3938. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:34
  3939. msgid "Instance Details"
  3940. msgstr ""
  3941. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2280
  3942. msgid ""
  3943. "Instead of joining any network with a matching SSID, only connect to the "
  3944. "BSSID <code>%h</code>."
  3945. msgstr ""
  3946. #: modules/luci-compat/luasrc/view/cbi/map.htm:43
  3947. msgid "Insufficient permissions to read UCI configuration."
  3948. msgstr ""
  3949. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:136
  3950. msgid "Integrated Circuit Card Identifier"
  3951. msgstr ""
  3952. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:43
  3953. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:190
  3954. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:216
  3955. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:20
  3956. msgid "Interface"
  3957. msgstr "מנשק"
  3958. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:717
  3959. msgid "Interface \"%h\" is already marked as designated master."
  3960. msgstr ""
  3961. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:62
  3962. msgid "Interface %q device auto-migrated from %q to %q."
  3963. msgstr ""
  3964. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1042
  3965. msgid "Interface Configuration"
  3966. msgstr ""
  3967. #: protocols/luci-proto-xfrm/htdocs/luci-static/resources/protocol/xfrm.js:39
  3968. msgid "Interface ID"
  3969. msgstr ""
  3970. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:91
  3971. msgid "Interface disabled"
  3972. msgstr ""
  3973. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:97
  3974. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:151
  3975. msgid "Interface has %d pending changes"
  3976. msgstr ""
  3977. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:92
  3978. msgid "Interface is disabled"
  3979. msgstr ""
  3980. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:65
  3981. msgid "Interface is marked for deletion"
  3982. msgstr ""
  3983. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:196
  3984. msgid "Interface is reconnecting..."
  3985. msgstr ""
  3986. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:180
  3987. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:190
  3988. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:196
  3989. msgid "Interface is shutting down..."
  3990. msgstr ""
  3991. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:274
  3992. msgid "Interface is starting..."
  3993. msgstr ""
  3994. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:277
  3995. msgid "Interface is stopping..."
  3996. msgstr ""
  3997. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1220
  3998. msgid "Interface name"
  3999. msgstr ""
  4000. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:109
  4001. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:293
  4002. msgid "Interface not present or not connected yet."
  4003. msgstr ""
  4004. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:451
  4005. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:481
  4006. #: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:38
  4007. msgid "Interfaces"
  4008. msgstr ""
  4009. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:20
  4010. msgid "Internal"
  4011. msgstr ""
  4012. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:85
  4013. msgid "International Mobile Station Equipment Identity"
  4014. msgstr ""
  4015. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:139
  4016. msgid "International Mobile Subscriber Identity"
  4017. msgstr ""
  4018. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:290
  4019. msgid "Interval For Sending Learning Packets"
  4020. msgstr ""
  4021. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:610
  4022. msgid ""
  4023. "Interval in centiseconds between multicast general queries. By varying the "
  4024. "value, an administrator may tune the number of IGMP messages on the subnet; "
  4025. "larger values cause IGMP Queries to be sent less often"
  4026. msgstr ""
  4027. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:576
  4028. msgid "Interval in seconds for STP hello packets"
  4029. msgstr ""
  4030. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:192
  4031. #: modules/luci-compat/luasrc/view/cbi/tsection.htm:42
  4032. msgid "Invalid"
  4033. msgstr ""
  4034. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:101
  4035. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:68
  4036. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:71
  4037. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:97
  4038. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:73
  4039. msgid "Invalid APN provided"
  4040. msgstr ""
  4041. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:38
  4042. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:41
  4043. msgid "Invalid Base64 key string"
  4044. msgstr ""
  4045. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:121
  4046. msgid "Invalid IPv6 address"
  4047. msgstr ""
  4048. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:78
  4049. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:83
  4050. msgid "Invalid TOS value, expected 00..FF or inherit"
  4051. msgstr ""
  4052. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:83
  4053. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:88
  4054. msgid "Invalid Traffic Class value, expected 00..FF or inherit"
  4055. msgstr ""
  4056. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:285
  4057. msgid "Invalid VLAN ID given! Only IDs between %d and %d are allowed."
  4058. msgstr "מספר VLAN שגוי! רק ערכים בין %d לבין %d הם חוקיים."
  4059. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:294
  4060. msgid "Invalid VLAN ID given! Only unique IDs are allowed"
  4061. msgstr ""
  4062. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:403
  4063. msgid "Invalid argument"
  4064. msgstr ""
  4065. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:11
  4066. msgid ""
  4067. "Invalid bearer list. Possibly too many bearers created. This protocol "
  4068. "supports one and only one bearer."
  4069. msgstr ""
  4070. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:402
  4071. msgid "Invalid command"
  4072. msgstr ""
  4073. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:191
  4074. msgid "Invalid hexadecimal value"
  4075. msgstr ""
  4076. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:130
  4077. msgid "Invalid hostname or IPv4 address"
  4078. msgstr ""
  4079. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:138
  4080. msgid "Invalid port"
  4081. msgstr ""
  4082. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:16
  4083. msgid "Invalid private key string %s"
  4084. msgstr ""
  4085. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:28
  4086. msgid "Invalid public key string %s"
  4087. msgstr ""
  4088. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:112
  4089. msgid "Invalid server URL"
  4090. msgstr ""
  4091. #: modules/luci-base/ucode/template/sysauth.ut:12
  4092. #: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:32
  4093. msgid "Invalid username and/or password! Please try again."
  4094. msgstr "שם משתמש ו/או סיסמה שגויים! אנא נסה שנית."
  4095. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/heartbeat.js:13
  4096. msgid "Invert blinking"
  4097. msgstr ""
  4098. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:205
  4099. msgid "Invert match"
  4100. msgstr ""
  4101. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:223
  4102. msgctxt "VLAN port state"
  4103. msgid "Is Primary VLAN"
  4104. msgstr ""
  4105. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1216
  4106. msgid "Isolate Clients"
  4107. msgstr ""
  4108. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:238
  4109. msgid ""
  4110. "It appears that you are trying to flash an image that does not fit into the "
  4111. "flash memory, please verify the image file!"
  4112. msgstr ""
  4113. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:312
  4114. msgid ""
  4115. "It periodically probes for active sessions and automatically establishes "
  4116. "direct peerings over internet with remote nodes running Yggdrasil Jumper "
  4117. "without requiring firewall or port configuration."
  4118. msgstr ""
  4119. #: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:78
  4120. #: themes/luci-theme-material/ucode/template/themes/material/header.ut:98
  4121. #: themes/luci-theme-openwrt/ucode/template/themes/openwrt.org/header.ut:64
  4122. msgid "JavaScript required!"
  4123. msgstr ""
  4124. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2054
  4125. msgid "Join Network"
  4126. msgstr ""
  4127. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1988
  4128. msgid "Join Network: Wireless Scan"
  4129. msgstr ""
  4130. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2288
  4131. msgid "Joining Network: %q"
  4132. msgstr ""
  4133. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:179
  4134. msgid "Jump to rule"
  4135. msgstr ""
  4136. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:303
  4137. msgid "Jumper"
  4138. msgstr ""
  4139. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:179
  4140. msgid "Jumps to another rule specified by its priority value"
  4141. msgstr ""
  4142. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:230
  4143. msgid "Keep settings and retain the current configuration"
  4144. msgstr ""
  4145. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:60
  4146. msgid "Keep-Alive"
  4147. msgstr ""
  4148. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/dmesg.js:54
  4149. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:84
  4150. msgid "Kernel Log"
  4151. msgstr ""
  4152. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:60
  4153. msgid "Kernel Version"
  4154. msgstr ""
  4155. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1602
  4156. msgid "Key"
  4157. msgstr ""
  4158. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1628
  4159. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1629
  4160. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1630
  4161. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1631
  4162. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1643
  4163. msgid "Key #%d"
  4164. msgstr ""
  4165. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:92
  4166. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:97
  4167. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:94
  4168. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:99
  4169. #: protocols/luci-proto-vti/htdocs/luci-static/resources/protocol/vti.js:64
  4170. msgid "Key for incoming packets (optional)."
  4171. msgstr ""
  4172. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:96
  4173. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:101
  4174. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:98
  4175. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:103
  4176. #: protocols/luci-proto-vti/htdocs/luci-static/resources/protocol/vti.js:68
  4177. msgid "Key for outgoing packets (optional)."
  4178. msgstr ""
  4179. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:537
  4180. msgctxt "Label indicating that WireGuard peer lacks public key"
  4181. msgid "Key missing"
  4182. msgstr ""
  4183. #: protocols/luci-proto-unet/htdocs/luci-static/resources/protocol/unet.js:44
  4184. msgid "Key used to sign network config"
  4185. msgstr ""
  4186. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:71
  4187. msgctxt "nft unit"
  4188. msgid "KiB"
  4189. msgstr ""
  4190. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:54
  4191. msgid "Kill"
  4192. msgstr ""
  4193. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:202
  4194. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:202
  4195. msgid ""
  4196. "L2 (MAC) address of peer. Uses source-address learning when %s is specified"
  4197. msgstr ""
  4198. #: modules/luci-compat/luasrc/model/network/proto_ppp.lua:21
  4199. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:10
  4200. msgid "L2TP"
  4201. msgstr ""
  4202. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:40
  4203. msgid "L2TP Server"
  4204. msgstr ""
  4205. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:274
  4206. msgid "LACPDU Packets"
  4207. msgstr ""
  4208. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:130
  4209. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:102
  4210. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:88
  4211. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:62
  4212. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:75
  4213. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:98
  4214. msgid "LCP echo failure threshold"
  4215. msgstr ""
  4216. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:143
  4217. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:115
  4218. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:101
  4219. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:75
  4220. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:88
  4221. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:111
  4222. msgid "LCP echo interval"
  4223. msgstr ""
  4224. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:115
  4225. msgid "LED Configuration"
  4226. msgstr ""
  4227. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1674
  4228. msgid "LLC"
  4229. msgstr ""
  4230. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:268
  4231. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:375
  4232. msgid "Label"
  4233. msgstr ""
  4234. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:225
  4235. msgid "Language"
  4236. msgstr ""
  4237. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:125
  4238. msgid "Language and Style"
  4239. msgstr ""
  4240. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:945
  4241. msgid ""
  4242. "Larger weights (of the same prio) are given a proportionately higher "
  4243. "probability of being selected."
  4244. msgstr ""
  4245. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:147
  4246. msgid "Last Error"
  4247. msgstr ""
  4248. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:629
  4249. msgid "Last member interval"
  4250. msgstr ""
  4251. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:143
  4252. msgid "Latency"
  4253. msgstr ""
  4254. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:59
  4255. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:78
  4256. msgid "Latest Handshake"
  4257. msgstr "לחיצת יד אחרונה"
  4258. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:201
  4259. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:201
  4260. msgid "Layer 2 Address"
  4261. msgstr ""
  4262. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:21
  4263. msgid "Leaf"
  4264. msgstr ""
  4265. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:774
  4266. msgid "Learn"
  4267. msgstr ""
  4268. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:986
  4269. msgid "Learn routes"
  4270. msgstr ""
  4271. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:96
  4272. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:96
  4273. msgid "Learning"
  4274. msgstr ""
  4275. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:630
  4276. msgid "Lease file"
  4277. msgstr ""
  4278. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1245
  4279. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:678
  4280. msgid "Lease time"
  4281. msgstr ""
  4282. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:41
  4283. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:60
  4284. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:90
  4285. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:137
  4286. msgid "Lease time remaining"
  4287. msgstr ""
  4288. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:41
  4289. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:47
  4290. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:50
  4291. msgid "Leave empty to autodetect"
  4292. msgstr ""
  4293. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:40
  4294. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:39
  4295. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6to4.js:39
  4296. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:47
  4297. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/ipip6.js:48
  4298. msgid "Leave empty to use the current WAN address"
  4299. msgstr ""
  4300. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1005
  4301. msgid ""
  4302. "Legacy or badly behaving devices may require legacy 802.11b rates to "
  4303. "interoperate. Airtime efficiency may be significantly reduced where these "
  4304. "are used. It is recommended to not allow 802.11b rates where possible."
  4305. msgstr ""
  4306. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:677
  4307. msgid "Legacy rules detected"
  4308. msgstr ""
  4309. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4468
  4310. msgid "Legend:"
  4311. msgstr ""
  4312. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:673
  4313. msgid "Limit"
  4314. msgstr ""
  4315. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:712
  4316. msgid ""
  4317. "Limit response records (from {etc_hosts}) to those that fall within the "
  4318. "subnet of the querying interface."
  4319. msgstr ""
  4320. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:394
  4321. msgid "Limits"
  4322. msgstr ""
  4323. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:25
  4324. msgid "Line Mode"
  4325. msgstr ""
  4326. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:24
  4327. msgid "Line State"
  4328. msgstr ""
  4329. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:26
  4330. msgid "Line Uptime"
  4331. msgstr ""
  4332. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:128
  4333. msgid "Link Aggregation (Channel Bonding)"
  4334. msgstr ""
  4335. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:354
  4336. msgid "Link Monitoring"
  4337. msgstr ""
  4338. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:24
  4339. msgid "Link On"
  4340. msgstr ""
  4341. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:77
  4342. msgctxt "nft @ll,off,len"
  4343. msgid "Link layer header bits %d-%d"
  4344. msgstr ""
  4345. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:502
  4346. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1122
  4347. msgid ""
  4348. "List of IP sets to populate with the IPs of DNS lookup results of the FQDNs "
  4349. "also specified here."
  4350. msgstr ""
  4351. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1713
  4352. msgid ""
  4353. "List of R0KHs in the same Mobility Domain. <br />Format: MAC-address,NAS-"
  4354. "Identifier,256-bit key as hex string. <br />This list is used to map R0KH-ID "
  4355. "(NAS Identifier) to a destination MAC address when requesting PMK-R1 key "
  4356. "from the R0KH that the STA used during the Initial Mobility Domain "
  4357. "Association."
  4358. msgstr ""
  4359. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1717
  4360. msgid ""
  4361. "List of R1KHs in the same Mobility Domain. <br />Format: MAC-address,R1KH-ID "
  4362. "as 6 octets with colons,256-bit key as hex string. <br />This list is used "
  4363. "to map R1KH-ID to a destination MAC address when sending PMK-R1 key from the "
  4364. "R0KH. This is also the list of authorized R1KHs in the MD that can request "
  4365. "PMK-R1 keys."
  4366. msgstr ""
  4367. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:82
  4368. msgid "List of SSH key files for auth"
  4369. msgstr ""
  4370. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:523
  4371. msgid "List of domains to allow {rfc_1918_link} responses for."
  4372. msgstr ""
  4373. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:301
  4374. msgid "List of upstream NTP server candidates with which to synchronize."
  4375. msgstr ""
  4376. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:162
  4377. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:38
  4378. msgid "Listen Port"
  4379. msgstr "פתחת האזנה"
  4380. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:263
  4381. msgid "Listen addresses"
  4382. msgstr ""
  4383. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:260
  4384. msgid "Listen for peers"
  4385. msgstr ""
  4386. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:544
  4387. msgid "Listen interfaces"
  4388. msgstr ""
  4389. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:20
  4390. msgid "Listen only on the given interface or, if unspecified, on all"
  4391. msgstr ""
  4392. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:545
  4393. msgid ""
  4394. "Listen only on the specified interfaces, and loopback if not excluded "
  4395. "explicitly."
  4396. msgstr ""
  4397. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:292
  4398. msgid "Listen to multicast beacons"
  4399. msgstr ""
  4400. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:286
  4401. msgid "ListenPort setting is invalid"
  4402. msgstr ""
  4403. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:784
  4404. msgid "Listening port for inbound DNS queries."
  4405. msgstr ""
  4406. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:130
  4407. #: themes/luci-theme-openwrt/ucode/template/themes/openwrt.org/header.ut:46
  4408. msgid "Load"
  4409. msgstr "עומס"
  4410. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:63
  4411. msgid "Load Average"
  4412. msgstr "עומס ממוצע"
  4413. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:228
  4414. msgid ""
  4415. "Load Average is a metric that is used by Linux to keep track of system "
  4416. "resources."
  4417. msgstr ""
  4418. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:175
  4419. msgid "Load configuration…"
  4420. msgstr ""
  4421. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1249
  4422. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2217
  4423. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:167
  4424. msgid "Loading data…"
  4425. msgstr ""
  4426. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3027
  4427. msgid "Loading directory contents…"
  4428. msgstr ""
  4429. #: modules/luci-base/htdocs/luci-static/resources/luci.js:1942
  4430. #: modules/luci-base/ucode/template/view.ut:4
  4431. #: modules/luci-mod-status/ucode/template/admin_status/index.ut:12
  4432. #: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:40
  4433. msgid "Loading view…"
  4434. msgstr ""
  4435. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:956
  4436. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:100
  4437. msgid "Local"
  4438. msgstr ""
  4439. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:169
  4440. msgid "Local IP address"
  4441. msgstr ""
  4442. #: modules/luci-base/htdocs/luci-static/resources/network.js:12
  4443. #: modules/luci-compat/luasrc/model/network.lua:30
  4444. msgid "Local IP address is invalid"
  4445. msgstr ""
  4446. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:86
  4447. msgid "Local IP address to assign"
  4448. msgstr ""
  4449. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:46
  4450. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:46
  4451. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:44
  4452. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:40
  4453. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:39
  4454. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6to4.js:39
  4455. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/ipip6.js:44
  4456. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:151
  4457. #: protocols/luci-proto-vti/htdocs/luci-static/resources/protocol/vti.js:44
  4458. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:47
  4459. msgid "Local IPv4 address"
  4460. msgstr "כתובת IPv4 מקומית"
  4461. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:934
  4462. msgid "Local IPv6 DNS server"
  4463. msgstr ""
  4464. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:46
  4465. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:53
  4466. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:54
  4467. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:47
  4468. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/ipip6.js:48
  4469. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:47
  4470. msgid "Local IPv6 address"
  4471. msgstr "כתובת IPv6 מקומית"
  4472. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:115
  4473. msgid "Local Startup"
  4474. msgstr ""
  4475. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:61
  4476. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:131
  4477. msgid "Local Time"
  4478. msgstr ""
  4479. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1079
  4480. msgid "Local ULA"
  4481. msgstr ""
  4482. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:48
  4483. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:48
  4484. msgid "Local VTEP"
  4485. msgstr ""
  4486. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:428
  4487. msgid "Local domain"
  4488. msgstr ""
  4489. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:429
  4490. msgid "Local domain suffix appended to DHCP names and hosts file entries."
  4491. msgstr ""
  4492. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:531
  4493. msgid "Local service only"
  4494. msgstr ""
  4495. #: protocols/luci-proto-unet/htdocs/luci-static/resources/protocol/unet.js:41
  4496. msgid "Local wireguard key"
  4497. msgstr ""
  4498. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:711
  4499. msgid "Localise queries"
  4500. msgstr ""
  4501. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:117
  4502. msgid "Location Area Code"
  4503. msgstr ""
  4504. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2280
  4505. msgid "Lock to BSSID"
  4506. msgstr ""
  4507. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:395
  4508. msgid "Log"
  4509. msgstr ""
  4510. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:442
  4511. msgid ""
  4512. "Log all options sent to DHCP clients and the tags used to determine them."
  4513. msgstr ""
  4514. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:98
  4515. msgctxt "nft log action"
  4516. msgid "Log event \"<strong>%h</strong>…\""
  4517. msgstr ""
  4518. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:446
  4519. msgid "Log facility"
  4520. msgstr ""
  4521. #: modules/luci-base/ucode/template/sysauth.ut:38
  4522. #: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:36
  4523. msgid "Log in"
  4524. msgstr ""
  4525. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2674
  4526. msgid "Log in…"
  4527. msgstr ""
  4528. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:340
  4529. msgid "Log level"
  4530. msgstr ""
  4531. #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:81
  4532. msgid "Log out"
  4533. msgstr ""
  4534. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:185
  4535. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:155
  4536. msgid "Log output level"
  4537. msgstr ""
  4538. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:436
  4539. msgid "Log queries"
  4540. msgstr ""
  4541. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:123
  4542. msgid "Logging"
  4543. msgstr ""
  4544. #: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:23
  4545. msgid "Logging in…"
  4546. msgstr ""
  4547. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57
  4548. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:57
  4549. msgid ""
  4550. "Logical network from which to select the local endpoint if local IPv6 "
  4551. "address is empty and no WAN IPv6 is available (optional)."
  4552. msgstr ""
  4553. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:57
  4554. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62
  4555. msgid "Logical network to which the tunnel will be added (bridged) (optional)."
  4556. msgstr ""
  4557. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:682
  4558. msgid "Loose filtering"
  4559. msgstr ""
  4560. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:668
  4561. msgid "Lowest leased address as offset from the network address."
  4562. msgstr ""
  4563. #: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/footer.ut:12
  4564. msgid "Lua compatibility mode active"
  4565. msgstr ""
  4566. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:48
  4567. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:85
  4568. msgid "MAC"
  4569. msgstr ""
  4570. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1527
  4571. msgid "MAC Address"
  4572. msgstr ""
  4573. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1146
  4574. msgid "MAC Address Filter"
  4575. msgstr ""
  4576. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:258
  4577. msgid "MAC Address For The Actor"
  4578. msgstr ""
  4579. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:401
  4580. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1495
  4581. msgid "MAC VLAN"
  4582. msgstr ""
  4583. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:645
  4584. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:40
  4585. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1228
  4586. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2411
  4587. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:47
  4588. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:89
  4589. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:233
  4590. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:189
  4591. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:215
  4592. msgid "MAC address"
  4593. msgstr ""
  4594. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1191
  4595. msgid "MAC address(es)"
  4596. msgstr ""
  4597. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1048
  4598. msgid "MAC-Filter"
  4599. msgstr ""
  4600. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1153
  4601. msgid "MAC-List"
  4602. msgstr ""
  4603. #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:18
  4604. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:13
  4605. msgid "MAP / LW4over6"
  4606. msgstr ""
  4607. #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:65
  4608. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:7
  4609. msgid "MAP rule is invalid"
  4610. msgstr ""
  4611. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:24
  4612. msgid "MBIM Cellular"
  4613. msgstr ""
  4614. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:225
  4615. msgid "MD5"
  4616. msgstr "MD5"
  4617. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:199
  4618. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:28
  4619. msgid "MHz"
  4620. msgstr ""
  4621. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:359
  4622. msgid "MII"
  4623. msgstr ""
  4624. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:427
  4625. msgid "MII / ETHTOOL ioctls"
  4626. msgstr ""
  4627. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:400
  4628. msgid "MII Interval"
  4629. msgstr ""
  4630. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:634
  4631. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1539
  4632. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:90
  4633. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:53
  4634. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:83
  4635. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:83
  4636. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:182
  4637. #: protocols/luci-proto-xfrm/htdocs/luci-static/resources/protocol/xfrm.js:46
  4638. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:241
  4639. msgid "MTU"
  4640. msgstr ""
  4641. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:936
  4642. msgid "MX"
  4643. msgstr ""
  4644. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:303
  4645. msgid ""
  4646. "Make sure to clone the root filesystem using something like the commands "
  4647. "below:"
  4648. msgstr ""
  4649. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:122
  4650. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:115
  4651. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:53
  4652. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:98
  4653. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:84
  4654. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:58
  4655. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:71
  4656. msgid "Manual"
  4657. msgstr ""
  4658. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:82
  4659. msgid "Manufacturer"
  4660. msgstr ""
  4661. #: modules/luci-base/htdocs/luci-static/resources/network.js:3908
  4662. msgid "Master (VLAN)"
  4663. msgstr ""
  4664. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1272
  4665. msgid "Match Tag"
  4666. msgstr ""
  4667. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:907
  4668. msgid "Match this Tag"
  4669. msgstr ""
  4670. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:161
  4671. msgid "Match traffic destined to this interface"
  4672. msgstr ""
  4673. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:165
  4674. msgid "Match traffic destined to this subnet (CIDR notation)"
  4675. msgstr ""
  4676. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:150
  4677. msgid "Match traffic from this interface"
  4678. msgstr ""
  4679. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:154
  4680. msgid "Match traffic from this source subnet (CIDR notation)"
  4681. msgstr ""
  4682. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:174
  4683. msgid "Matched traffic re-targets to an interface using this table."
  4684. msgstr ""
  4685. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:850
  4686. msgid "Max <abbr title=\"Router Advertisement\">RA</abbr> interval"
  4687. msgstr ""
  4688. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:90
  4689. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:90
  4690. msgid "Max FDB size"
  4691. msgstr ""
  4692. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:848
  4693. msgid "Max cache TTL"
  4694. msgstr ""
  4695. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:806
  4696. msgid "Max valid value %s."
  4697. msgstr ""
  4698. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:813
  4699. msgid "Max. DHCP leases"
  4700. msgstr ""
  4701. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:820
  4702. msgid "Max. EDNS0 packet size"
  4703. msgstr ""
  4704. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:827
  4705. msgid "Max. concurrent queries"
  4706. msgstr ""
  4707. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:586
  4708. msgid "Maximum age"
  4709. msgstr ""
  4710. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1255
  4711. msgid "Maximum allowed Listen Interval"
  4712. msgstr ""
  4713. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:814
  4714. msgid "Maximum allowed number of active DHCP leases."
  4715. msgstr ""
  4716. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:828
  4717. msgid "Maximum allowed number of concurrent DNS queries."
  4718. msgstr ""
  4719. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:821
  4720. msgid "Maximum allowed size of EDNS0 UDP packets."
  4721. msgstr ""
  4722. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:126
  4723. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:124
  4724. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:113
  4725. msgid "Maximum amount of seconds to wait for the modem to become ready"
  4726. msgstr ""
  4727. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:91
  4728. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:91
  4729. msgid "Maximum number of FDB entries"
  4730. msgstr ""
  4731. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:673
  4732. msgid "Maximum number of leased addresses."
  4733. msgstr ""
  4734. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:596
  4735. msgid "Maximum snooping table size"
  4736. msgstr ""
  4737. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:805
  4738. msgid "Maximum source port #"
  4739. msgstr ""
  4740. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:850
  4741. msgid ""
  4742. "Maximum time allowed between sending unsolicited <abbr title=\"Router "
  4743. "Advertisement, ICMPv6 Type 134\">RA</abbr>. Default is 600 seconds."
  4744. msgstr ""
  4745. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1008
  4746. msgid "Maximum transmit power"
  4747. msgstr ""
  4748. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:687
  4749. msgid "May prevent VoIP or other services from working."
  4750. msgstr ""
  4751. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:129
  4752. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:188
  4753. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:199
  4754. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:28
  4755. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:171
  4756. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:324
  4757. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:325
  4758. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:326
  4759. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:330
  4760. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:331
  4761. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:332
  4762. msgid "Mbit/s"
  4763. msgstr ""
  4764. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:35
  4765. msgid "Medium"
  4766. msgstr ""
  4767. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:24
  4768. msgid "Memory"
  4769. msgstr ""
  4770. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:73
  4771. msgid "Memory usage (%)"
  4772. msgstr ""
  4773. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:156
  4774. msgid "Mesh ID"
  4775. msgstr ""
  4776. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1057
  4777. msgid "Mesh Id"
  4778. msgstr ""
  4779. #: modules/luci-base/htdocs/luci-static/resources/network.js:3910
  4780. msgid "Mesh Point"
  4781. msgstr ""
  4782. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:41
  4783. msgid "Mesh Routing"
  4784. msgstr ""
  4785. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:41
  4786. msgid "Mesh and routing related options"
  4787. msgstr ""
  4788. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:404
  4789. msgid "Method not found"
  4790. msgstr ""
  4791. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:355
  4792. msgid "Method of link monitoring"
  4793. msgstr ""
  4794. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:424
  4795. msgid "Method to determine link status"
  4796. msgstr ""
  4797. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:83
  4798. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:199
  4799. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:225
  4800. msgid "Metric"
  4801. msgstr ""
  4802. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1034
  4803. msgid ""
  4804. "Metric is an ordinal, where a gateway with 1 is chosen 1st, 2 is chosen 2nd, "
  4805. "3 is chosen 3rd, etc"
  4806. msgstr ""
  4807. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:70
  4808. msgctxt "nft unit"
  4809. msgid "MiB"
  4810. msgstr ""
  4811. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:857
  4812. msgid "Min <abbr title=\"Router Advertisement\">RA</abbr> interval"
  4813. msgstr ""
  4814. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:841
  4815. msgid "Min cache TTL"
  4816. msgstr ""
  4817. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:798
  4818. msgid "Min valid value %s."
  4819. msgstr ""
  4820. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:721
  4821. msgid "Minimum ARP validity time"
  4822. msgstr ""
  4823. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:242
  4824. msgid "Minimum Number of Links"
  4825. msgstr ""
  4826. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:721
  4827. msgid ""
  4828. "Minimum required time in seconds before an ARP entry may be replaced. "
  4829. "Prevents ARP cache thrashing."
  4830. msgstr ""
  4831. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:797
  4832. msgid "Minimum source port #"
  4833. msgstr ""
  4834. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:857
  4835. msgid ""
  4836. "Minimum time allowed between sending unsolicited <abbr title=\"Router "
  4837. "Advertisement, ICMPv6 Type 134\">RA</abbr>. Default is 200 seconds."
  4838. msgstr ""
  4839. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:204
  4840. msgid "Mirror monitor port"
  4841. msgstr ""
  4842. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:203
  4843. msgid "Mirror source port"
  4844. msgstr ""
  4845. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:120
  4846. msgid "Mobile Country Code"
  4847. msgstr ""
  4848. #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:9
  4849. msgid "Mobile Data"
  4850. msgstr ""
  4851. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:123
  4852. msgid "Mobile Network Code"
  4853. msgstr ""
  4854. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1673
  4855. msgid "Mobility Domain"
  4856. msgstr ""
  4857. #: modules/luci-compat/luasrc/view/cbi/wireless_modefreq.htm:182
  4858. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:488
  4859. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:157
  4860. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:180
  4861. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:553
  4862. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1052
  4863. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1972
  4864. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:446
  4865. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:148
  4866. msgid "Mode"
  4867. msgstr ""
  4868. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:56
  4869. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:83
  4870. msgid "Model"
  4871. msgstr ""
  4872. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:81
  4873. msgid "Modem Info"
  4874. msgstr ""
  4875. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:9
  4876. msgid ""
  4877. "Modem connection in progress. Please wait. This process will timeout after 2 "
  4878. "minutes."
  4879. msgstr ""
  4880. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:77
  4881. msgid "Modem default"
  4882. msgstr ""
  4883. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:73
  4884. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:54
  4885. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:51
  4886. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:65
  4887. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:73
  4888. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:57
  4889. msgid "Modem device"
  4890. msgstr ""
  4891. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:66
  4892. msgid "Modem information query failed"
  4893. msgstr ""
  4894. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:126
  4895. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:124
  4896. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:119
  4897. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:113
  4898. msgid "Modem init timeout"
  4899. msgstr ""
  4900. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:21
  4901. msgid "ModemManager"
  4902. msgstr ""
  4903. #: modules/luci-base/htdocs/luci-static/resources/network.js:3907
  4904. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1140
  4905. msgid "Monitor"
  4906. msgstr ""
  4907. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:31
  4908. msgid "More Characters"
  4909. msgstr ""
  4910. #: modules/luci-base/htdocs/luci-static/resources/form.js:2539
  4911. msgid "More…"
  4912. msgstr ""
  4913. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:192
  4914. msgid "Mount Point"
  4915. msgstr ""
  4916. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:144
  4917. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:228
  4918. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:102
  4919. msgid "Mount Points"
  4920. msgstr ""
  4921. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:229
  4922. msgid "Mount Points - Mount Entry"
  4923. msgstr ""
  4924. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:339
  4925. msgid "Mount Points - Swap Entry"
  4926. msgstr ""
  4927. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:228
  4928. msgid ""
  4929. "Mount Points define at which point a memory device will be attached to the "
  4930. "filesystem"
  4931. msgstr ""
  4932. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:154
  4933. msgid "Mount attached devices"
  4934. msgstr ""
  4935. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:162
  4936. msgid "Mount filesystems not specifically configured"
  4937. msgstr ""
  4938. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:332
  4939. msgid "Mount options"
  4940. msgstr ""
  4941. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:293
  4942. msgid "Mount point"
  4943. msgstr ""
  4944. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:158
  4945. msgid "Mount swap not specifically configured"
  4946. msgstr ""
  4947. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:223
  4948. msgid "Mounted file systems"
  4949. msgstr ""
  4950. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:152
  4951. msgid "Move down"
  4952. msgstr ""
  4953. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:151
  4954. msgid "Move up"
  4955. msgstr ""
  4956. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1213
  4957. msgid "Multi To Unicast"
  4958. msgstr ""
  4959. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:89
  4960. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:94
  4961. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:91
  4962. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:96
  4963. msgid "Multicast"
  4964. msgstr ""
  4965. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:99
  4966. msgid "Multicast Mode"
  4967. msgstr ""
  4968. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:772
  4969. msgid "Multicast routing"
  4970. msgstr ""
  4971. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:281
  4972. msgid "Multicast rules"
  4973. msgstr ""
  4974. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:778
  4975. msgid "Multicast to unicast"
  4976. msgstr ""
  4977. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1522
  4978. msgid "Must be in %s format."
  4979. msgstr ""
  4980. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:197
  4981. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:197
  4982. msgid "My Peer"
  4983. msgstr ""
  4984. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1668
  4985. msgid "NAS ID"
  4986. msgstr ""
  4987. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:536
  4988. msgid "NAT action chain \"%h\""
  4989. msgstr ""
  4990. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:87
  4991. msgid "NAT-T Mode"
  4992. msgstr ""
  4993. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:41
  4994. msgid "NAT64 Prefix"
  4995. msgstr ""
  4996. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:843
  4997. msgid "NAT64 prefix"
  4998. msgstr ""
  4999. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:26
  5000. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:35
  5001. msgid "NCM"
  5002. msgstr ""
  5003. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:991
  5004. msgid "NDP-Proxy slave"
  5005. msgstr ""
  5006. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:72
  5007. msgid "NT Domain"
  5008. msgstr ""
  5009. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:951
  5010. msgid "NTP Servers"
  5011. msgstr ""
  5012. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:300
  5013. msgid "NTP server candidates"
  5014. msgstr ""
  5015. #: modules/luci-base/htdocs/luci-static/resources/form.js:2576
  5016. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4234
  5017. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:27
  5018. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:94
  5019. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1180
  5020. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:68
  5021. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:36
  5022. msgid "Name"
  5023. msgstr "שם"
  5024. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2257
  5025. msgid ""
  5026. "Name for OpenWrt network configuration. (No relation to wireless network "
  5027. "name/SSID)"
  5028. msgstr ""
  5029. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2256
  5030. msgid "Name of the new network"
  5031. msgstr ""
  5032. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:229
  5033. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:229
  5034. msgid ""
  5035. "Name of the outgoing interface to reach the remote VXLAN tunnel endpoint"
  5036. msgstr ""
  5037. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1134
  5038. msgid "Name of the set"
  5039. msgstr ""
  5040. #: protocols/luci-proto-unet/htdocs/luci-static/resources/protocol/unet.js:38
  5041. msgid "Name of the tunnel device"
  5042. msgstr ""
  5043. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:416
  5044. msgid "Names not in {etc_hosts} are answered {not_found}."
  5045. msgstr ""
  5046. #: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:39
  5047. #: themes/luci-theme-openwrt/ucode/template/themes/openwrt.org/header.ut:42
  5048. msgid "Navigation"
  5049. msgstr ""
  5050. #: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:10
  5051. msgid "Nebula Network"
  5052. msgstr ""
  5053. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1730
  5054. msgid "Neighbour Report"
  5055. msgstr ""
  5056. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:713
  5057. msgid "Neighbour cache validity"
  5058. msgstr ""
  5059. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1148
  5060. msgid "Netfilter table name"
  5061. msgstr ""
  5062. #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:45
  5063. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1085
  5064. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2410
  5065. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:386
  5066. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:54
  5067. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:232
  5068. msgid "Network"
  5069. msgstr ""
  5070. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:104
  5071. msgid "Network Coding"
  5072. msgstr ""
  5073. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:76
  5074. msgid "Network Mode"
  5075. msgstr ""
  5076. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:97
  5077. msgid "Network Registration"
  5078. msgstr ""
  5079. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2250
  5080. msgid "Network SSID"
  5081. msgstr ""
  5082. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:60
  5083. msgid "Network address"
  5084. msgstr ""
  5085. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:179
  5086. msgid "Network and its mask that define the size of the destination"
  5087. msgstr ""
  5088. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:184
  5089. msgid "Network and its mask that define which source addresses use this route"
  5090. msgstr ""
  5091. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:866
  5092. msgid "Network boot image"
  5093. msgstr ""
  5094. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:381
  5095. msgid "Network bridge configuration migration"
  5096. msgstr ""
  5097. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:397
  5098. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1501
  5099. msgid "Network device"
  5100. msgstr ""
  5101. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:7
  5102. msgid "Network device activity (kernel: netdev)"
  5103. msgstr ""
  5104. #: modules/luci-base/htdocs/luci-static/resources/network.js:15
  5105. #: modules/luci-compat/luasrc/model/network.lua:33
  5106. msgid "Network device is not present"
  5107. msgstr ""
  5108. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:645
  5109. msgid "Network device table \"%h\""
  5110. msgstr ""
  5111. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:78
  5112. msgctxt "nft @nh,off,len"
  5113. msgid "Network header bits %d-%d"
  5114. msgstr ""
  5115. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:415
  5116. msgid "Network ifname configuration migration"
  5117. msgstr ""
  5118. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:57
  5119. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62
  5120. msgid "Network interface"
  5121. msgstr ""
  5122. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:773
  5123. msgid "Never"
  5124. msgstr "אף פעם"
  5125. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:16
  5126. #, fuzzy
  5127. msgctxt "No WireGuard peer handshake yet"
  5128. msgid "Never"
  5129. msgstr "אף פעם"
  5130. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:415
  5131. msgid "Never forward DNS queries which lack dots or domain parts."
  5132. msgstr ""
  5133. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:424
  5134. msgid ""
  5135. "Never forward these matching domains or subdomains; resolve from DHCP or "
  5136. "hosts files only."
  5137. msgstr ""
  5138. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:380
  5139. msgctxt "Dnsmasq instance"
  5140. msgid "New instance name…"
  5141. msgstr ""
  5142. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1235
  5143. msgid "New interface for \"%s\" can not be created: %s"
  5144. msgstr ""
  5145. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1183
  5146. msgid "New interface name…"
  5147. msgstr ""
  5148. #: modules/luci-compat/luasrc/view/cbi/delegator.htm:11
  5149. msgid "Next »"
  5150. msgstr ""
  5151. #: modules/luci-base/htdocs/luci-static/resources/form.js:4181
  5152. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:303
  5153. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:351
  5154. msgid "No"
  5155. msgstr ""
  5156. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:642
  5157. msgid "No DHCP Server configured for this interface"
  5158. msgstr ""
  5159. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:202
  5160. msgid "No Data"
  5161. msgstr ""
  5162. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1465
  5163. msgid "No Encryption"
  5164. msgstr ""
  5165. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:171
  5166. msgid "No Host Routes"
  5167. msgstr ""
  5168. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:89
  5169. msgid "No NAT-T"
  5170. msgstr ""
  5171. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:79
  5172. msgid "No RX signal"
  5173. msgstr ""
  5174. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:148
  5175. msgid "No WireGuard interfaces configured."
  5176. msgstr ""
  5177. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:16
  5178. msgid "No allowed mode configuration found."
  5179. msgstr ""
  5180. #: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:69
  5181. #: themes/luci-theme-material/ucode/template/themes/material/header.ut:89
  5182. #: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:65
  5183. #: themes/luci-theme-openwrt/ucode/template/themes/openwrt.org/header.ut:82
  5184. msgid ""
  5185. "No changes to settings will be stored and are lost after rebooting. This "
  5186. "mode should only be used to install a firmware upgrade"
  5187. msgstr ""
  5188. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69
  5189. msgid "No client associated"
  5190. msgstr ""
  5191. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:27
  5192. msgid "No control device specified"
  5193. msgstr ""
  5194. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3265
  5195. msgctxt "empty table placeholder"
  5196. msgid "No data"
  5197. msgstr ""
  5198. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:406
  5199. msgid "No data received"
  5200. msgstr ""
  5201. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:750
  5202. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:757
  5203. msgid "No enforcement"
  5204. msgstr ""
  5205. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:239
  5206. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:242
  5207. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:245
  5208. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:248
  5209. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:251
  5210. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:254
  5211. msgid "No entries available"
  5212. msgstr ""
  5213. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2951
  5214. msgid "No entries in this directory"
  5215. msgstr ""
  5216. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:858
  5217. msgid ""
  5218. "No fixed interface listening port defined, peers might not be able to "
  5219. "initiate connections to this WireGuard instance!"
  5220. msgstr ""
  5221. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:86
  5222. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:91
  5223. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:88
  5224. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:93
  5225. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:70
  5226. msgid "No host route"
  5227. msgstr ""
  5228. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:792
  5229. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:142
  5230. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:362
  5231. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:59
  5232. msgid "No information available"
  5233. msgstr "אין פרטים זמינים"
  5234. #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:66
  5235. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:8
  5236. msgid "No matching prefix delegation"
  5237. msgstr ""
  5238. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:145
  5239. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:148
  5240. msgid "No more slaves available"
  5241. msgstr ""
  5242. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:194
  5243. msgid "No more slaves available, can not save interface"
  5244. msgstr ""
  5245. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:730
  5246. msgid "No negative cache"
  5247. msgstr ""
  5248. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:696
  5249. msgid "No nftables ruleset loaded."
  5250. msgstr ""
  5251. #: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:58
  5252. #: themes/luci-theme-material/ucode/template/themes/material/header.ut:78
  5253. #: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:54
  5254. #: themes/luci-theme-openwrt/ucode/template/themes/openwrt.org/header.ut:71
  5255. msgid "No password set!"
  5256. msgstr "לא הוגדרה סיסמה!"
  5257. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:84
  5258. #, fuzzy
  5259. msgid "No peers connected"
  5260. msgstr "לא מחובר"
  5261. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:497
  5262. msgid "No peers defined yet."
  5263. msgstr ""
  5264. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:15
  5265. msgid "No preferred mode configuration found."
  5266. msgstr ""
  5267. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:146
  5268. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:283
  5269. msgid "No public keys present yet."
  5270. msgstr ""
  5271. #: modules/luci-base/htdocs/luci-static/resources/tools/views.js:20
  5272. msgid "No related logs yet!"
  5273. msgstr ""
  5274. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:613
  5275. msgctxt "nft chain is empty"
  5276. msgid "No rules in this chain"
  5277. msgstr ""
  5278. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:91
  5279. msgid "No rules in this chain."
  5280. msgstr ""
  5281. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:390
  5282. msgid "No validation or filtering"
  5283. msgstr ""
  5284. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:139
  5285. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1280
  5286. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:259
  5287. msgid "No zone assigned"
  5288. msgstr ""
  5289. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:246
  5290. msgid "Node info"
  5291. msgstr ""
  5292. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:250
  5293. msgid "Node info privacy"
  5294. msgstr ""
  5295. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:58
  5296. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:84
  5297. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:187
  5298. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:235
  5299. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:279
  5300. msgid "Noise"
  5301. msgstr ""
  5302. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:30
  5303. msgid "Noise Margin"
  5304. msgstr ""
  5305. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:272
  5306. msgid "Noise:"
  5307. msgstr ""
  5308. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:537
  5309. msgid "Non-wildcard"
  5310. msgstr ""
  5311. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:159
  5312. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:183
  5313. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:80
  5314. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:85
  5315. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:114
  5316. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:182
  5317. msgid "None"
  5318. msgstr ""
  5319. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1016
  5320. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:198
  5321. msgid "Normal"
  5322. msgstr ""
  5323. #: modules/luci-base/ucode/template/error404.ut:9
  5324. msgid "Not Found"
  5325. msgstr ""
  5326. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:211
  5327. msgctxt "VLAN port state"
  5328. msgid "Not Member"
  5329. msgstr ""
  5330. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:75
  5331. msgid "Not associated"
  5332. msgstr ""
  5333. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:36
  5334. msgid "Not connected"
  5335. msgstr "לא מחובר"
  5336. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:46
  5337. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:83
  5338. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:107
  5339. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:133
  5340. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:301
  5341. msgid "Not present"
  5342. msgstr ""
  5343. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:92
  5344. msgid "Not started on boot"
  5345. msgstr ""
  5346. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:409
  5347. msgid "Not supported"
  5348. msgstr ""
  5349. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:714
  5350. msgid "Note: IPv4 only."
  5351. msgstr ""
  5352. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1888
  5353. msgid ""
  5354. "Note: Some wireless drivers do not fully support 802.11w. E.g. mwlwifi may "
  5355. "have problems"
  5356. msgstr ""
  5357. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1922
  5358. msgid ""
  5359. "Note: Workaround mode allows a STA that claims OCV capability to connect "
  5360. "even if the STA doesn't send OCI or negotiate PMF."
  5361. msgstr ""
  5362. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1571
  5363. msgid ""
  5364. "Note: this setting is for local services on the device only (not for "
  5365. "forwarding)."
  5366. msgstr ""
  5367. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:558
  5368. msgid ""
  5369. "Note: you may also need a DHCP Proxy (currently unavailable) when specifying "
  5370. "a non-standard Relay To port(<code>addr#port</code>)."
  5371. msgstr ""
  5372. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:142
  5373. msgid "Notes"
  5374. msgstr ""
  5375. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:188
  5376. msgid "Notice"
  5377. msgstr ""
  5378. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:135
  5379. msgid "Nslookup"
  5380. msgstr ""
  5381. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:338
  5382. msgid "Number of IGMP membership reports"
  5383. msgstr ""
  5384. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:835
  5385. msgid "Number of cached DNS entries, 10000 is maximum, 0 is no caching."
  5386. msgstr ""
  5387. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:316
  5388. msgid "Number of peer notifications after failover event"
  5389. msgstr ""
  5390. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:69
  5391. msgid "Obfuscated Group Password"
  5392. msgstr ""
  5393. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:61
  5394. msgid "Obfuscated Password"
  5395. msgstr ""
  5396. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:118
  5397. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:111
  5398. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:49
  5399. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:94
  5400. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:80
  5401. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:54
  5402. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:67
  5403. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:93
  5404. msgid "Obtain IPv6 address"
  5405. msgstr ""
  5406. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/none.js:19
  5407. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:87
  5408. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:357
  5409. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:342
  5410. msgid "Off"
  5411. msgstr ""
  5412. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/timer.js:18
  5413. msgid "Off-State Delay"
  5414. msgstr ""
  5415. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1560
  5416. msgid ""
  5417. "Off: <code>vlanXXX</code>, e.g., <code>vlan1</code>. On: "
  5418. "<code>vlan_tagged_interface.XXX</code>, e.g. <code>eth0.1</code>."
  5419. msgstr ""
  5420. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:652
  5421. msgid ""
  5422. "Off: use all files in the directory including the instance specific hosts "
  5423. "file"
  5424. msgstr ""
  5425. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/none.js:19
  5426. msgid "On"
  5427. msgstr ""
  5428. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:112
  5429. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:112
  5430. msgid "On a l2miss, send ARP"
  5431. msgstr ""
  5432. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:118
  5433. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:118
  5434. msgid "On a l3miss, send ARP for IP -> mac resolution"
  5435. msgstr ""
  5436. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/timer.js:12
  5437. msgid "On-State Delay"
  5438. msgstr ""
  5439. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:115
  5440. msgid "On-link"
  5441. msgstr ""
  5442. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:651
  5443. msgid "On: use instance specific hosts file only"
  5444. msgstr ""
  5445. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1219
  5446. msgid "One of hostname or MAC address must be specified!"
  5447. msgstr ""
  5448. #: modules/luci-base/htdocs/luci-static/resources/validation.js:520
  5449. msgid "One of the following: %s"
  5450. msgstr ""
  5451. #: modules/luci-compat/luasrc/view/cbi/nullsection.htm:17
  5452. #: modules/luci-compat/luasrc/view/cbi/ucisection.htm:22
  5453. msgid "One or more fields contain invalid values!"
  5454. msgstr "ישנם שדות המכילים ערכים בלתי חוקיים!"
  5455. #: modules/luci-compat/luasrc/view/cbi/map.htm:32
  5456. msgid "One or more invalid/required values on tab"
  5457. msgstr ""
  5458. #: modules/luci-compat/luasrc/view/cbi/nullsection.htm:19
  5459. #: modules/luci-compat/luasrc/view/cbi/ucisection.htm:24
  5460. msgid "One or more required fields have no value!"
  5461. msgstr ""
  5462. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:908
  5463. msgid "Only DHCP Clients with this tag are sent this boot option."
  5464. msgstr ""
  5465. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:619
  5466. msgid "Only accept replies via"
  5467. msgstr ""
  5468. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:769
  5469. msgid "Only allow communication with non-isolated bridge ports when enabled"
  5470. msgstr ""
  5471. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:236
  5472. msgid ""
  5473. "Only if current active slave fails and the primary slave is up (failure, 2)"
  5474. msgstr ""
  5475. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:97
  5476. msgid "Only interfaces using this table (via override) will use this route."
  5477. msgstr ""
  5478. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:682
  5479. msgid "Open iptables rules overview…"
  5480. msgstr ""
  5481. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:474
  5482. msgid "Open list..."
  5483. msgstr ""
  5484. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:65
  5485. msgid "OpenConnect"
  5486. msgstr ""
  5487. #: modules/luci-compat/luasrc/model/network/proto_openconnect.lua:9
  5488. msgid "OpenConnect (CISCO AnyConnect)"
  5489. msgstr ""
  5490. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:63
  5491. msgid "OpenFortivpn"
  5492. msgstr ""
  5493. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:723
  5494. msgid ""
  5495. "Operate in <em>relay mode</em> if a designated master interface is "
  5496. "configured and active, otherwise disable <abbr title=\"Neighbour Discovery "
  5497. "Protocol\">NDP</abbr> proxying."
  5498. msgstr ""
  5499. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:722
  5500. msgid ""
  5501. "Operate in <em>relay mode</em> if a designated master interface is "
  5502. "configured and active, otherwise fall back to <em>server mode</em>."
  5503. msgstr ""
  5504. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:724
  5505. msgid ""
  5506. "Operate in <em>relay mode</em> if an upstream IPv6 prefix is present, "
  5507. "otherwise disable service."
  5508. msgstr ""
  5509. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1922
  5510. msgid "Operating Channel Validation"
  5511. msgstr ""
  5512. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1001
  5513. msgid "Operating frequency"
  5514. msgstr ""
  5515. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:100
  5516. msgid "Operator"
  5517. msgstr ""
  5518. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:101
  5519. msgid "Operator Code"
  5520. msgstr ""
  5521. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:135
  5522. msgid "Operator Name"
  5523. msgstr ""
  5524. #: modules/luci-base/htdocs/luci-static/resources/form.js:2008
  5525. #: modules/luci-base/htdocs/luci-static/resources/form.js:4193
  5526. msgid "Option \"%s\" contains an invalid input value."
  5527. msgstr ""
  5528. #: modules/luci-base/htdocs/luci-static/resources/form.js:2023
  5529. msgid "Option \"%s\" must not be empty."
  5530. msgstr ""
  5531. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4475
  5532. msgid "Option changed"
  5533. msgstr ""
  5534. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4477
  5535. msgid "Option removed"
  5536. msgstr ""
  5537. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1549
  5538. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1890
  5539. msgid "Optional"
  5540. msgstr ""
  5541. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1177
  5542. msgid "Optional hostname to assign"
  5543. msgstr ""
  5544. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:246
  5545. msgid ""
  5546. "Optional node info. This must be a { \"key\": \"value\", ... } map or set as "
  5547. "null. This is entirely optional but, if set, is visible to the whole network "
  5548. "on request."
  5549. msgstr ""
  5550. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:142
  5551. msgid "Optional, free-form notes about this device"
  5552. msgstr ""
  5553. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:147
  5554. msgid "Optional, in seconds. If set to '0', no reconnect is attempted."
  5555. msgstr ""
  5556. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:187
  5557. msgid ""
  5558. "Optional. 32-bit mark for outgoing encrypted packets. Enter value in hex, "
  5559. "starting with <code>0x</code>."
  5560. msgstr ""
  5561. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1101
  5562. msgid ""
  5563. "Optional. Allowed values: 'eui64', 'random', fixed value like '::1' or "
  5564. "'::1:2'. When IPv6 prefix (like 'a:b:c:d::') is received from a delegating "
  5565. "server, use the suffix (like '::1') to form the IPv6 address ('a:b:c:d::1') "
  5566. "for the interface."
  5567. msgstr ""
  5568. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:587
  5569. msgid ""
  5570. "Optional. Base64-encoded preshared key. Adds in an additional layer of "
  5571. "symmetric-key cryptography for post-quantum resistance."
  5572. msgstr ""
  5573. #: protocols/luci-proto-xfrm/htdocs/luci-static/resources/protocol/xfrm.js:42
  5574. msgid "Optional. Bind to a specific interface."
  5575. msgstr ""
  5576. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:644
  5577. msgid "Optional. Create routes for Allowed IPs for this peer."
  5578. msgstr ""
  5579. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:196
  5580. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:196
  5581. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:505
  5582. msgid "Optional. Description of peer."
  5583. msgstr ""
  5584. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:171
  5585. msgid "Optional. Do not create host routes to peers."
  5586. msgstr ""
  5587. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:647
  5588. msgid ""
  5589. "Optional. Host of peer. Names are resolved prior to bringing up the "
  5590. "interface."
  5591. msgstr ""
  5592. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:609
  5593. msgid ""
  5594. "Optional. IP addresses and prefixes that this peer is allowed to use inside "
  5595. "the tunnel. Usually the peer's tunnel IP addresses and the networks the peer "
  5596. "routes through the tunnel."
  5597. msgstr ""
  5598. #: protocols/luci-proto-xfrm/htdocs/luci-static/resources/protocol/xfrm.js:46
  5599. msgid "Optional. Maximum Transmission Unit of the XFRM interface."
  5600. msgstr ""
  5601. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:182
  5602. msgid "Optional. Maximum Transmission Unit of tunnel interface."
  5603. msgstr ""
  5604. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:663
  5605. msgid "Optional. Port of peer."
  5606. msgstr ""
  5607. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:578
  5608. msgid ""
  5609. "Optional. Private key of the WireGuard peer. The key is not required for "
  5610. "establishing a connection but allows generating a peer configuration or QR "
  5611. "code if available. It can be removed after the configuration has been "
  5612. "exported."
  5613. msgstr ""
  5614. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:668
  5615. msgid ""
  5616. "Optional. Seconds between keep alive messages. Default is 0 (disabled). "
  5617. "Recommended value if this device is behind a NAT is 25."
  5618. msgstr ""
  5619. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:162
  5620. msgid "Optional. UDP port used for outgoing and incoming packets."
  5621. msgstr ""
  5622. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:72
  5623. msgid "Options"
  5624. msgstr ""
  5625. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:125
  5626. msgid "Options:"
  5627. msgstr ""
  5628. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:969
  5629. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1001
  5630. msgid "Ordinal: lower comes first."
  5631. msgstr ""
  5632. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:83
  5633. msgid "Ordinal: routes with the lowest metric match first"
  5634. msgstr ""
  5635. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:55
  5636. msgid "Originator Interval"
  5637. msgstr ""
  5638. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:351
  5639. msgid "Other:"
  5640. msgstr ""
  5641. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:69
  5642. msgid "Out"
  5643. msgstr ""
  5644. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:277
  5645. msgid "Outbound:"
  5646. msgstr ""
  5647. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:101
  5648. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:106
  5649. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:103
  5650. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:108
  5651. msgid "Outgoing checksum"
  5652. msgstr ""
  5653. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:161
  5654. msgid "Outgoing interface"
  5655. msgstr ""
  5656. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:96
  5657. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:101
  5658. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:98
  5659. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:103
  5660. #: protocols/luci-proto-vti/htdocs/luci-static/resources/protocol/vti.js:68
  5661. msgid "Outgoing key"
  5662. msgstr ""
  5663. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:103
  5664. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:108
  5665. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:105
  5666. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:110
  5667. msgid "Outgoing serialization"
  5668. msgstr ""
  5669. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:50
  5670. msgid "Output Interface"
  5671. msgstr ""
  5672. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:68
  5673. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:174
  5674. msgid "Output zone"
  5675. msgstr ""
  5676. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:16
  5677. msgid "Overlap"
  5678. msgstr ""
  5679. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1038
  5680. msgid "Override IPv4 routing table"
  5681. msgstr ""
  5682. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1043
  5683. msgid "Override IPv6 routing table"
  5684. msgstr ""
  5685. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv_hardif.js:54
  5686. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:64
  5687. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:69
  5688. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:69
  5689. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:74
  5690. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:53
  5691. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:128
  5692. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:144
  5693. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:193
  5694. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:57
  5695. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:132
  5696. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:118
  5697. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:96
  5698. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:105
  5699. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:117
  5700. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:66
  5701. #: protocols/luci-proto-vti/htdocs/luci-static/resources/protocol/vti.js:55
  5702. msgid "Override MTU"
  5703. msgstr ""
  5704. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:74
  5705. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:79
  5706. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:63
  5707. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:142
  5708. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:142
  5709. msgid "Override TOS"
  5710. msgstr ""
  5711. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:69
  5712. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:74
  5713. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:74
  5714. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:79
  5715. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:58
  5716. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:137
  5717. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:137
  5718. msgid "Override TTL"
  5719. msgstr ""
  5720. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1228
  5721. msgid ""
  5722. "Override default MAC address - the range of usable addresses might be "
  5723. "limited by the driver"
  5724. msgstr ""
  5725. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1220
  5726. msgid "Override default interface name"
  5727. msgstr ""
  5728. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:167
  5729. msgid "Override the gateway in DHCP responses"
  5730. msgstr ""
  5731. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:690
  5732. msgid ""
  5733. "Override the netmask sent to clients. Normally it is calculated from the "
  5734. "subnet that is served."
  5735. msgstr ""
  5736. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:179
  5737. msgid "Override the table used for internal routes"
  5738. msgstr ""
  5739. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:3
  5740. msgid "Overview"
  5741. msgstr ""
  5742. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2795
  5743. msgid "Overwrite existing file \"%s\" ?"
  5744. msgstr ""
  5745. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:342
  5746. msgid "Overwrite the current settings with the imported configuration?"
  5747. msgstr ""
  5748. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:98
  5749. msgid "Own Numbers"
  5750. msgstr ""
  5751. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:70
  5752. msgid "Owner"
  5753. msgstr ""
  5754. #: modules/luci-base/htdocs/luci-static/resources/network.js:3911
  5755. msgid "P2P Client"
  5756. msgstr ""
  5757. #: modules/luci-base/htdocs/luci-static/resources/network.js:3912
  5758. msgid "P2P Go"
  5759. msgstr ""
  5760. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:78
  5761. msgid "PAP"
  5762. msgstr ""
  5763. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:77
  5764. msgid "PAP/CHAP"
  5765. msgstr ""
  5766. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:111
  5767. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:88
  5768. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:132
  5769. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:107
  5770. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:45
  5771. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:90
  5772. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:76
  5773. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:44
  5774. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:63
  5775. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:101
  5776. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:50
  5777. msgid "PAP/CHAP password"
  5778. msgstr ""
  5779. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:109
  5780. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:83
  5781. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:127
  5782. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:105
  5783. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:43
  5784. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:88
  5785. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:74
  5786. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:42
  5787. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:61
  5788. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:96
  5789. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:48
  5790. msgid "PAP/CHAP username"
  5791. msgstr ""
  5792. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:94
  5793. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:121
  5794. msgid "PDP Type"
  5795. msgstr ""
  5796. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:69
  5797. msgid "PID"
  5798. msgstr ""
  5799. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:106
  5800. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:73
  5801. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:76
  5802. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:102
  5803. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:86
  5804. msgid "PIN"
  5805. msgstr ""
  5806. #: modules/luci-base/htdocs/luci-static/resources/network.js:21
  5807. #: modules/luci-compat/luasrc/model/network.lua:39
  5808. msgid "PIN code rejected"
  5809. msgstr ""
  5810. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1708
  5811. msgid "PMK R1 Push"
  5812. msgstr ""
  5813. #: modules/luci-compat/luasrc/model/network/proto_ppp.lua:13
  5814. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:43
  5815. msgid "PPP"
  5816. msgstr ""
  5817. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:58
  5818. msgid "PPPoA Encapsulation"
  5819. msgstr ""
  5820. #: modules/luci-compat/luasrc/model/network/proto_ppp.lua:19
  5821. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:28
  5822. msgid "PPPoATM"
  5823. msgstr ""
  5824. #: modules/luci-compat/luasrc/model/network/proto_ppp.lua:17
  5825. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:28
  5826. msgid "PPPoE"
  5827. msgstr ""
  5828. #: modules/luci-compat/luasrc/model/network/proto_pppossh.lua:9
  5829. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:28
  5830. msgid "PPPoSSH"
  5831. msgstr ""
  5832. #: modules/luci-compat/luasrc/model/network/proto_ppp.lua:15
  5833. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:28
  5834. msgid "PPtP"
  5835. msgstr ""
  5836. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:73
  5837. msgid "PSID offset"
  5838. msgstr ""
  5839. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:70
  5840. msgid "PSID-bits length"
  5841. msgstr ""
  5842. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:559
  5843. msgctxt "Label indicating that WireGuard peer uses a PSK"
  5844. msgid "PSK"
  5845. msgstr ""
  5846. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1618
  5847. msgid "PTM/EFM (Packet Transfer Mode)"
  5848. msgstr ""
  5849. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:400
  5850. msgid "PXE/TFTP"
  5851. msgstr ""
  5852. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:103
  5853. msgid "Packet Service State"
  5854. msgstr ""
  5855. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1561
  5856. msgid "Packet Steering"
  5857. msgstr ""
  5858. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:25
  5859. msgctxt "nft meta mark"
  5860. msgid "Packet mark"
  5861. msgstr ""
  5862. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:27
  5863. msgctxt "nft meta time"
  5864. msgid "Packet receive time"
  5865. msgstr ""
  5866. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:54
  5867. msgid "Packets"
  5868. msgstr ""
  5869. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:282
  5870. msgid "Packets To Transmit Before Moving To Next Slave"
  5871. msgstr ""
  5872. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:90
  5873. msgid "Packets exceeding this value may be fragmented"
  5874. msgstr ""
  5875. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:291
  5876. msgid "Part of network:"
  5877. msgid_plural "Part of networks:"
  5878. msgstr[0] ""
  5879. msgstr[1] ""
  5880. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:139
  5881. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1280
  5882. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:259
  5883. msgid "Part of zone %q"
  5884. msgstr ""
  5885. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:492
  5886. msgctxt "MACVLAN mode"
  5887. msgid "Pass-through (Mirror physical device to single MAC VLAN)"
  5888. msgstr ""
  5889. #: modules/luci-base/ucode/template/sysauth.ut:29
  5890. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1881
  5891. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:51
  5892. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:148
  5893. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:103
  5894. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:58
  5895. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:298
  5896. #: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:19
  5897. msgid "Password"
  5898. msgstr ""
  5899. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:27
  5900. msgid "Password authentication"
  5901. msgstr ""
  5902. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1813
  5903. msgid "Password of Private Key"
  5904. msgstr ""
  5905. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1871
  5906. msgid "Password of inner Private Key"
  5907. msgstr ""
  5908. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:31
  5909. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:33
  5910. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:35
  5911. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:37
  5912. msgid "Password strength"
  5913. msgstr ""
  5914. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:151
  5915. msgid "Password2"
  5916. msgstr ""
  5917. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:266
  5918. msgid "Paste or drag SSH key file…"
  5919. msgstr ""
  5920. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:431
  5921. msgid "Paste or drag WireGuard peer configuration (wg0.conf) file…"
  5922. msgstr ""
  5923. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:424
  5924. msgid ""
  5925. "Paste or drag a WireGuard configuration (commonly <em>wg0.conf</em>) from "
  5926. "another system below to create a matching peer entry allowing that system to "
  5927. "connect to the local WireGuard interface."
  5928. msgstr ""
  5929. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:430
  5930. msgid "Paste or drag supplied WireGuard configuration file…"
  5931. msgstr ""
  5932. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1792
  5933. msgid "Path to CA-Certificate"
  5934. msgstr ""
  5935. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1807
  5936. msgid "Path to Client-Certificate"
  5937. msgstr ""
  5938. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1810
  5939. msgid "Path to Private Key"
  5940. msgstr "נתיב למפתח הפרטי"
  5941. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1850
  5942. msgid "Path to inner CA-Certificate"
  5943. msgstr ""
  5944. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1865
  5945. msgid "Path to inner Client-Certificate"
  5946. msgstr ""
  5947. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1868
  5948. msgid "Path to inner Private Key"
  5949. msgstr ""
  5950. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2727
  5951. msgid "Paused"
  5952. msgstr ""
  5953. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:273
  5954. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:283
  5955. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:337
  5956. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:347
  5957. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:357
  5958. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:242
  5959. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:252
  5960. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:262
  5961. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:268
  5962. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:278
  5963. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:296
  5964. msgid "Peak:"
  5965. msgstr ""
  5966. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:74
  5967. msgid "Peer"
  5968. msgstr "עמית"
  5969. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:51
  5970. msgid "Peer Details"
  5971. msgstr ""
  5972. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:210
  5973. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:241
  5974. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:210
  5975. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:241
  5976. msgid "Peer IP"
  5977. msgstr ""
  5978. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:89
  5979. msgid "Peer IP address to assign"
  5980. msgstr ""
  5981. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:667
  5982. msgid "Peer MAC address"
  5983. msgstr ""
  5984. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:276
  5985. msgid "Peer URI"
  5986. msgstr ""
  5987. #: modules/luci-base/htdocs/luci-static/resources/network.js:14
  5988. #: modules/luci-compat/luasrc/model/network.lua:32
  5989. msgid "Peer address is missing"
  5990. msgstr ""
  5991. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:270
  5992. msgid "Peer addresses"
  5993. msgstr ""
  5994. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:648
  5995. msgid "Peer device name"
  5996. msgstr ""
  5997. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:279
  5998. msgid "Peer interface"
  5999. msgstr ""
  6000. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:200
  6001. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:254
  6002. msgid "Peers"
  6003. msgstr ""
  6004. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:80
  6005. msgid "Perfect Forward Secrecy"
  6006. msgstr ""
  6007. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:103
  6008. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:108
  6009. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:105
  6010. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:110
  6011. msgid "Perform outgoing packets serialization (optional)."
  6012. msgstr ""
  6013. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:34
  6014. msgid "Perform reboot"
  6015. msgstr ""
  6016. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:408
  6017. msgid "Perform reset"
  6018. msgstr ""
  6019. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:407
  6020. msgid "Permission denied"
  6021. msgstr ""
  6022. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:668
  6023. msgid "Persistent Keep Alive"
  6024. msgstr ""
  6025. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:147
  6026. msgid "Persistent reconnect interval"
  6027. msgstr ""
  6028. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:321
  6029. msgid "PersistentKeepAlive setting is invalid"
  6030. msgstr ""
  6031. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:290
  6032. msgid "Phy Rate:"
  6033. msgstr ""
  6034. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:469
  6035. msgid "Physical Settings"
  6036. msgstr ""
  6037. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:87
  6038. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:88
  6039. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:98
  6040. msgid "Ping"
  6041. msgstr ""
  6042. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:49
  6043. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:50
  6044. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:86
  6045. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:87
  6046. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:138
  6047. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:64
  6048. msgid "Pkts."
  6049. msgstr ""
  6050. #: modules/luci-base/ucode/template/sysauth.ut:19
  6051. msgid "Please enter your username and password."
  6052. msgstr "נא למלא את שם המשתמש והסיסמה שלך."
  6053. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4211
  6054. msgid "Please select the file to upload."
  6055. msgstr "נא לבחור את הקובץ להעלאה."
  6056. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:54
  6057. msgid "Policy"
  6058. msgstr "מדיניות"
  6059. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:594
  6060. msgctxt "Chain hook policy"
  6061. msgid "Policy: <strong>%h</strong> (%h)"
  6062. msgstr "מדיניות: <strong>%h</strong>‏ (%h)"
  6063. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:964
  6064. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:23
  6065. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:223
  6066. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:223
  6067. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:294
  6068. msgid "Port"
  6069. msgstr "פתחה"
  6070. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:137
  6071. msgctxt "WireGuard listen port"
  6072. msgid "Port %d"
  6073. msgstr "פתחה %d"
  6074. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:293
  6075. msgid "Port is not part of any network"
  6076. msgstr "פתחה אינה חלק מרשת כלשהי"
  6077. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:769
  6078. msgid "Port isolation"
  6079. msgstr "בידוד פתחות"
  6080. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:299
  6081. msgid "Port status"
  6082. msgstr "מצב פתחה"
  6083. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:278
  6084. msgid "Port status:"
  6085. msgstr "מצב פתחה:"
  6086. #: modules/luci-base/htdocs/luci-static/resources/validation.js:546
  6087. msgid "Potential negation of: %s"
  6088. msgstr "ניגוד אפשרי מול: %s"
  6089. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:89
  6090. msgid "Power State"
  6091. msgstr "מצב צריכת חשמל"
  6092. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:78
  6093. msgid "Prefer LTE"
  6094. msgstr "להעדיף LTE"
  6095. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:79
  6096. msgid "Prefer UMTS"
  6097. msgstr "להעדיף UMTS"
  6098. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:995
  6099. msgid "Preferred lifetime for a prefix."
  6100. msgstr ""
  6101. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:108
  6102. msgid "Preferred network technology"
  6103. msgstr "טכנולוגיית רשת מועדפת"
  6104. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:37
  6105. msgid "Prefix Delegated"
  6106. msgstr ""
  6107. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:199
  6108. msgid "Prefix suppressor"
  6109. msgstr ""
  6110. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:587
  6111. msgid "Preshared Key"
  6112. msgstr ""
  6113. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:558
  6114. msgid "Preshared key in use"
  6115. msgstr ""
  6116. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:295
  6117. msgid "PresharedKey setting is invalid"
  6118. msgstr ""
  6119. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:130
  6120. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:102
  6121. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:88
  6122. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:62
  6123. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:75
  6124. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:98
  6125. msgid ""
  6126. "Presume peer to be dead after given amount of LCP echo failures, use 0 to "
  6127. "ignore failures"
  6128. msgstr ""
  6129. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1216
  6130. msgid "Prevents client-to-client communication"
  6131. msgstr ""
  6132. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:61
  6133. msgid ""
  6134. "Prevents one wireless client to talk to another. This setting only affects "
  6135. "packets without any VLAN tag (untagged packets)."
  6136. msgstr ""
  6137. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:200
  6138. msgid ""
  6139. "Prevents overly broad routes being considered. Setting 16 would "
  6140. "consider /17, /24, /28 or more specific routes yet ignore /16, /8, /0 "
  6141. "(default) routes"
  6142. msgstr ""
  6143. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:218
  6144. msgid "Primary Slave"
  6145. msgstr ""
  6146. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:235
  6147. msgid ""
  6148. "Primary becomes active slave when it comes back up if speed and duplex "
  6149. "better than current slave (better, 1)"
  6150. msgstr ""
  6151. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:234
  6152. msgid "Primary becomes active slave whenever it comes back up (always, 0)"
  6153. msgstr ""
  6154. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:562
  6155. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:969
  6156. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1001
  6157. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:135
  6158. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:207
  6159. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:233
  6160. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:146
  6161. msgid "Priority"
  6162. msgstr ""
  6163. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:553
  6164. msgctxt "Label indicating that WireGuard peer private key is stored"
  6165. msgid "Private"
  6166. msgstr ""
  6167. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:490
  6168. msgctxt "MACVLAN mode"
  6169. msgid "Private (Prevent communication between MAC VLANs)"
  6170. msgstr ""
  6171. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:137
  6172. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:578
  6173. msgid "Private Key"
  6174. msgstr ""
  6175. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1478
  6176. msgid ""
  6177. "Private Pre-Shared Key (PPSK) allows the use of different Pre-Shared Key for "
  6178. "each STA MAC address. Private MAC PSKs are stored on the RADIUS server."
  6179. msgstr ""
  6180. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:230
  6181. msgid "Private key"
  6182. msgstr ""
  6183. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:552
  6184. msgid "Private key present"
  6185. msgstr ""
  6186. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:283
  6187. msgid "PrivateKey setting is missing or invalid"
  6188. msgstr ""
  6189. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:64
  6190. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:93
  6191. msgid "Processes"
  6192. msgstr ""
  6193. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:67
  6194. msgid "Prot."
  6195. msgstr ""
  6196. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:82
  6197. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:549
  6198. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1197
  6199. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:387
  6200. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:36
  6201. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:201
  6202. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:227
  6203. msgid "Protocol"
  6204. msgstr ""
  6205. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:282
  6206. msgid "Provide NTP server"
  6207. msgstr ""
  6208. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:916
  6209. msgid ""
  6210. "Provide a DHCPv6 server on this interface and reply to DHCPv6 solicitations "
  6211. "and requests."
  6212. msgstr ""
  6213. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:944
  6214. msgid "Provide new network"
  6215. msgstr ""
  6216. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:288
  6217. msgid ""
  6218. "Provide the NTP server to the selected interface or, if unspecified, to all "
  6219. "interfaces"
  6220. msgstr ""
  6221. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:154
  6222. msgid "Proxy Server"
  6223. msgstr ""
  6224. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1764
  6225. msgid "ProxyARP"
  6226. msgstr ""
  6227. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1139
  6228. msgid "Pseudo Ad-Hoc (ahdemo)"
  6229. msgstr ""
  6230. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:144
  6231. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:573
  6232. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:37
  6233. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:54
  6234. msgid "Public Key"
  6235. msgstr "מפתח ציבורי"
  6236. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:235
  6237. msgid "Public key"
  6238. msgstr ""
  6239. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:535
  6240. msgid "Public key is missing"
  6241. msgstr ""
  6242. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:544
  6243. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:101
  6244. msgctxt "Tooltip displaying full WireGuard peer public key"
  6245. msgid "Public key: %h"
  6246. msgstr ""
  6247. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:290
  6248. msgid ""
  6249. "Public keys allow for passwordless SSH logins with higher security than "
  6250. "plain passwords. In order to upload a new key to the device, paste an "
  6251. "OpenSSH-compatible public key or drag a <code>.pub</code> file into the "
  6252. "input field."
  6253. msgstr ""
  6254. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:193
  6255. msgid "Public prefix routed to this device for distribution to clients."
  6256. msgstr ""
  6257. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:292
  6258. msgid "PublicKey setting is invalid"
  6259. msgstr ""
  6260. #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:9
  6261. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:27
  6262. msgid "QMI Cellular"
  6263. msgstr ""
  6264. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:146
  6265. msgid "Quality"
  6266. msgstr ""
  6267. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:181
  6268. msgid ""
  6269. "Quantifies the cost or distance to a destination in a way that allows "
  6270. "routers to make informed decisions about the optimal path to forward data "
  6271. "packets"
  6272. msgstr ""
  6273. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:772
  6274. msgid "Query all available upstream resolvers."
  6275. msgstr ""
  6276. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:610
  6277. msgid "Query interval"
  6278. msgstr ""
  6279. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:615
  6280. msgid "Query response interval"
  6281. msgstr ""
  6282. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:646
  6283. msgid "Query upstream resolvers in the order they appear in the resolv file."
  6284. msgstr ""
  6285. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1696
  6286. msgid "R0 Key Lifetime"
  6287. msgstr ""
  6288. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1702
  6289. msgid "R1 Key Holder"
  6290. msgstr ""
  6291. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1531
  6292. msgid "RADIUS Access-Request attributes"
  6293. msgstr ""
  6294. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1505
  6295. msgid "RADIUS Accounting Port"
  6296. msgstr ""
  6297. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1511
  6298. msgid "RADIUS Accounting Secret"
  6299. msgstr ""
  6300. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1500
  6301. msgid "RADIUS Accounting Server"
  6302. msgstr ""
  6303. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1538
  6304. msgid "RADIUS Accounting-Request attributes"
  6305. msgstr ""
  6306. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1487
  6307. msgid "RADIUS Authentication Port"
  6308. msgstr ""
  6309. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1494
  6310. msgid "RADIUS Authentication Secret"
  6311. msgstr ""
  6312. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1481
  6313. msgid "RADIUS Authentication Server"
  6314. msgstr ""
  6315. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1545
  6316. msgid "RADIUS Dynamic VLAN Assignment"
  6317. msgstr ""
  6318. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1555
  6319. msgid "RADIUS Per STA VLAN"
  6320. msgstr ""
  6321. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1574
  6322. msgid "RADIUS VLAN Bridge Naming Scheme"
  6323. msgstr ""
  6324. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1560
  6325. msgid "RADIUS VLAN Naming"
  6326. msgstr ""
  6327. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1564
  6328. msgid "RADIUS VLAN Tagged Interface"
  6329. msgstr ""
  6330. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:88
  6331. msgid "RFC3947 NAT-T mode"
  6332. msgstr ""
  6333. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1598
  6334. msgid "RSN Preauth"
  6335. msgstr ""
  6336. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1065
  6337. msgid "RSSI threshold for joining"
  6338. msgstr ""
  6339. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1028
  6340. msgid "RTS/CTS Threshold"
  6341. msgstr ""
  6342. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:49
  6343. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:86
  6344. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:144
  6345. msgid "RX"
  6346. msgstr ""
  6347. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:236
  6348. msgid "RX Rate"
  6349. msgstr "קצב קליטה"
  6350. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2414
  6351. msgid "RX Rate / TX Rate"
  6352. msgstr ""
  6353. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1725
  6354. msgid ""
  6355. "Radio Resource Measurement - Sends beacons to assist roaming. Not all "
  6356. "clients support this."
  6357. msgstr ""
  6358. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:61
  6359. msgctxt "nft nat flag random"
  6360. msgid "Randomize source port mapping"
  6361. msgstr ""
  6362. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1101
  6363. msgid "Raw Data"
  6364. msgstr ""
  6365. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:88
  6366. msgid "Raw hex-encoded bytes. Leave empty unless your ISP require this"
  6367. msgstr ""
  6368. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:626
  6369. msgid "Read {etc_ethers} to configure the DHCP server."
  6370. msgstr ""
  6371. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:554
  6372. msgid "Really switch protocol?"
  6373. msgstr ""
  6374. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:118
  6375. msgid "Realtime Graphs"
  6376. msgstr ""
  6377. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1679
  6378. msgid "Reassociation Deadline"
  6379. msgstr ""
  6380. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:507
  6381. msgid "Rebind protection"
  6382. msgstr ""
  6383. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:20
  6384. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:140
  6385. msgid "Reboot"
  6386. msgstr ""
  6387. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:153
  6388. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:162
  6389. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:46
  6390. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:51
  6391. msgid "Rebooting…"
  6392. msgstr ""
  6393. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:21
  6394. msgid "Reboots the operating system of your device"
  6395. msgstr ""
  6396. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:26
  6397. msgid "Receive"
  6398. msgstr ""
  6399. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:243
  6400. msgid "Receive dropped"
  6401. msgstr ""
  6402. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:242
  6403. msgid "Receive errors"
  6404. msgstr ""
  6405. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:57
  6406. #, fuzzy
  6407. msgid "Received Data"
  6408. msgstr "התקבלו נתונים"
  6409. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:239
  6410. msgid "Received bytes"
  6411. msgstr ""
  6412. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:241
  6413. msgid "Received multicast"
  6414. msgstr ""
  6415. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:240
  6416. msgid "Received packets"
  6417. msgstr ""
  6418. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:167
  6419. msgid "Recommended. IP addresses of the WireGuard interface."
  6420. msgstr ""
  6421. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:198
  6422. msgid "Reconnect Timeout"
  6423. msgstr ""
  6424. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:494
  6425. msgid "Reconnect this interface"
  6426. msgstr ""
  6427. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/uhttpd.js:14
  6428. msgid "Redirect to HTTPS"
  6429. msgstr ""
  6430. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:118
  6431. msgctxt "nft redirect to port"
  6432. msgid "Redirect to local port <strong>%h</strong>"
  6433. msgstr ""
  6434. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:117
  6435. msgctxt "nft redirect"
  6436. msgid "Redirect to local system"
  6437. msgstr ""
  6438. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:57
  6439. msgid "References"
  6440. msgstr ""
  6441. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:417
  6442. msgid "Refresh Channels"
  6443. msgstr ""
  6444. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2721
  6445. msgid "Refreshing"
  6446. msgstr ""
  6447. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:102
  6448. msgid "Registration State"
  6449. msgstr ""
  6450. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:101
  6451. msgctxt "nft reject with icmp type"
  6452. msgid "Reject IPv4 packet with <strong>ICMP type %h</strong>"
  6453. msgstr ""
  6454. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:103
  6455. msgctxt "nft reject with icmpx type"
  6456. msgid "Reject packet with <strong>ICMP type %h</strong>"
  6457. msgstr ""
  6458. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:102
  6459. msgctxt "nft reject with icmpv6 type"
  6460. msgid "Reject packet with <strong>ICMPv6 type %h</strong>"
  6461. msgstr ""
  6462. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:100
  6463. msgctxt "nft reject with tcp reset"
  6464. msgid "Reject packet with <strong>TCP reset</strong>"
  6465. msgstr ""
  6466. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:680
  6467. msgid ""
  6468. "Reject reverse lookups to {rfc_6303_link} IP ranges ({reverse_arpa}) not in "
  6469. "{etc_hosts}."
  6470. msgstr ""
  6471. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:199
  6472. msgid ""
  6473. "Reject routing decisions that have a prefix length less than or equal to the "
  6474. "specified value"
  6475. msgstr ""
  6476. #: modules/luci-compat/luasrc/model/network/proto_relay.lua:153
  6477. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:399
  6478. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:996
  6479. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:39
  6480. msgid "Relay"
  6481. msgstr ""
  6482. #: modules/luci-compat/luasrc/model/network/proto_relay.lua:157
  6483. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:36
  6484. msgid "Relay Bridge"
  6485. msgstr ""
  6486. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:557
  6487. msgid "Relay DHCP requests elsewhere. OK: v4↔v4, v6↔v6. Not OK: v4↔v6, v6↔v4."
  6488. msgstr ""
  6489. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:154
  6490. msgid "Relay between networks"
  6491. msgstr ""
  6492. #: modules/luci-compat/luasrc/model/network/proto_relay.lua:12
  6493. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:64
  6494. msgid "Relay bridge"
  6495. msgstr ""
  6496. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:569
  6497. msgid "Relay from"
  6498. msgstr ""
  6499. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:589
  6500. msgid "Relay to address"
  6501. msgstr ""
  6502. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:100
  6503. msgid "Reload"
  6504. msgstr ""
  6505. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:50
  6506. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:49
  6507. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:41
  6508. msgid "Remote IPv4 address"
  6509. msgstr ""
  6510. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:42
  6511. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:42
  6512. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:40
  6513. #: protocols/luci-proto-vti/htdocs/luci-static/resources/protocol/vti.js:40
  6514. msgid "Remote IPv4 address or FQDN"
  6515. msgstr ""
  6516. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:41
  6517. msgid "Remote IPv6 address"
  6518. msgstr ""
  6519. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:42
  6520. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:42
  6521. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/ipip6.js:40
  6522. msgid "Remote IPv6 address or FQDN"
  6523. msgstr ""
  6524. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:43
  6525. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:43
  6526. msgid "Remote VTEP"
  6527. msgstr ""
  6528. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:968
  6529. msgid "Remove"
  6530. msgstr ""
  6531. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:697
  6532. msgid "Remove IPv4 addresses from the results and only return IPv6 addresses."
  6533. msgstr ""
  6534. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:691
  6535. msgid "Remove IPv6 addresses from the results and only return IPv4 addresses."
  6536. msgstr ""
  6537. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:752
  6538. msgid "Remove MAC address before forwarding query"
  6539. msgstr ""
  6540. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:753
  6541. msgid ""
  6542. "Remove any MAC address information already in downstream queries before "
  6543. "forwarding upstream."
  6544. msgstr ""
  6545. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:768
  6546. msgid ""
  6547. "Remove any subnet address already present in a downstream query before "
  6548. "forwarding it upstream."
  6549. msgstr ""
  6550. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:371
  6551. msgctxt "Dnsmasq instance"
  6552. msgid "Remove default instance"
  6553. msgstr ""
  6554. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:375
  6555. msgctxt "Dnsmasq instance"
  6556. msgid "Remove instance \"%q\""
  6557. msgstr ""
  6558. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:371
  6559. msgctxt "Dnsmasq instance"
  6560. msgid "Remove instance #%d"
  6561. msgstr ""
  6562. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1381
  6563. msgid "Remove related device settings from the configuration"
  6564. msgstr ""
  6565. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:767
  6566. msgid "Remove subnet address before forwarding query"
  6567. msgstr ""
  6568. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:701
  6569. msgid "Removes records of the specified type(s) from answers."
  6570. msgstr ""
  6571. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2254
  6572. msgid "Replace wireless configuration"
  6573. msgstr ""
  6574. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:108
  6575. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:108
  6576. msgid "Reply on Neighbour request when mapping found in VXLAN FDB"
  6577. msgstr ""
  6578. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:17
  6579. msgid "Request IPv6-address"
  6580. msgstr ""
  6581. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:23
  6582. msgid "Request IPv6-prefix of length"
  6583. msgstr ""
  6584. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:408
  6585. msgid "Request timeout"
  6586. msgstr ""
  6587. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:100
  6588. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:105
  6589. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:102
  6590. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:107
  6591. msgid "Require incoming checksum (optional)."
  6592. msgstr ""
  6593. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:102
  6594. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:107
  6595. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:104
  6596. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:109
  6597. msgid "Require incoming packets serialization (optional)."
  6598. msgstr ""
  6599. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1550
  6600. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1891
  6601. msgid "Required"
  6602. msgstr ""
  6603. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34
  6604. msgid "Required for certain ISPs, e.g. Charter with DOCSIS 3"
  6605. msgstr ""
  6606. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:137
  6607. msgid "Required. Base64-encoded private key for this interface."
  6608. msgstr ""
  6609. #: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:40
  6610. msgid "Required. Path to the .yml config file for this interface."
  6611. msgstr ""
  6612. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:573
  6613. msgid "Required. Public key of the WireGuard peer."
  6614. msgstr ""
  6615. #: protocols/luci-proto-xfrm/htdocs/luci-static/resources/protocol/xfrm.js:39
  6616. msgid "Required. XFRM interface ID to be used for SA."
  6617. msgstr ""
  6618. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1545
  6619. msgid ""
  6620. "Required: Rejects auth if RADIUS server does not provide appropriate VLAN "
  6621. "attributes."
  6622. msgstr ""
  6623. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1392
  6624. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1393
  6625. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1394
  6626. msgid "Requires hostapd"
  6627. msgstr ""
  6628. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1399
  6629. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1400
  6630. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1401
  6631. msgid "Requires hostapd with EAP Suite-B support"
  6632. msgstr ""
  6633. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1397
  6634. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1398
  6635. msgid "Requires hostapd with EAP support"
  6636. msgstr ""
  6637. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1402
  6638. msgid "Requires hostapd with OWE support"
  6639. msgstr ""
  6640. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1395
  6641. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1396
  6642. msgid "Requires hostapd with SAE support"
  6643. msgstr ""
  6644. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1390
  6645. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1391
  6646. msgid "Requires hostapd with WEP support"
  6647. msgstr ""
  6648. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1407
  6649. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1408
  6650. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1409
  6651. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1422
  6652. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1423
  6653. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1424
  6654. msgid "Requires wpa-supplicant"
  6655. msgstr ""
  6656. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1414
  6657. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1415
  6658. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1416
  6659. msgid "Requires wpa-supplicant with EAP Suite-B support"
  6660. msgstr ""
  6661. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1412
  6662. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1413
  6663. msgid "Requires wpa-supplicant with EAP support"
  6664. msgstr ""
  6665. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1417
  6666. msgid "Requires wpa-supplicant with OWE support"
  6667. msgstr ""
  6668. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1410
  6669. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1411
  6670. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1427
  6671. msgid "Requires wpa-supplicant with SAE support"
  6672. msgstr ""
  6673. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1405
  6674. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1406
  6675. msgid "Requires wpa-supplicant with WEP support"
  6676. msgstr ""
  6677. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:231
  6678. msgid "Reselection policy for primary slave"
  6679. msgstr ""
  6680. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2197
  6681. #: modules/luci-base/ucode/template/sysauth.ut:39
  6682. #: modules/luci-compat/luasrc/view/cbi/delegator.htm:17
  6683. #: modules/luci-compat/luasrc/view/cbi/footer.htm:30
  6684. #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:66
  6685. msgid "Reset"
  6686. msgstr ""
  6687. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:347
  6688. msgid "Reset Counters"
  6689. msgstr ""
  6690. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:406
  6691. msgid "Reset to defaults"
  6692. msgstr ""
  6693. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:396
  6694. msgid "Resolv &amp; Hosts Files"
  6695. msgstr ""
  6696. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:638
  6697. msgid "Resolv file"
  6698. msgstr ""
  6699. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:477
  6700. msgid "Resolve specified FQDNs to an IP."
  6701. msgstr ""
  6702. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:423
  6703. msgid "Resolve these locally"
  6704. msgstr ""
  6705. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1091
  6706. msgid "Resource Record Name"
  6707. msgstr ""
  6708. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1096
  6709. msgid "Resource Record Number"
  6710. msgstr ""
  6711. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:405
  6712. msgid "Resource not found"
  6713. msgstr ""
  6714. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:496
  6715. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:936
  6716. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:99
  6717. msgid "Restart"
  6718. msgstr ""
  6719. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:352
  6720. msgid "Restart Firewall"
  6721. msgstr ""
  6722. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:934
  6723. msgid "Restart radio interface"
  6724. msgstr ""
  6725. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:402
  6726. msgid "Restore"
  6727. msgstr "שחזור"
  6728. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:412
  6729. msgid "Restore backup"
  6730. msgstr ""
  6731. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:366
  6732. msgid ""
  6733. "Retrieve the listener addresses from the Yggdrasil interface configuration."
  6734. msgstr ""
  6735. #: modules/luci-base/htdocs/luci-static/resources/ui.js:386
  6736. #: modules/luci-base/htdocs/luci-static/resources/ui.js:387
  6737. msgid "Reveal/hide password"
  6738. msgstr ""
  6739. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:679
  6740. msgid "Reverse path filter"
  6741. msgstr ""
  6742. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4499
  6743. msgid "Revert"
  6744. msgstr ""
  6745. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4606
  6746. msgid "Revert changes"
  6747. msgstr ""
  6748. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4817
  6749. msgid "Revert request failed with status <code>%h</code>"
  6750. msgstr ""
  6751. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4797
  6752. msgid "Reverting configuration…"
  6753. msgstr ""
  6754. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:84
  6755. msgid "Revision"
  6756. msgstr ""
  6757. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:111
  6758. msgctxt "nft dnat ip to addr"
  6759. msgid "Rewrite destination to <strong>%h</strong>"
  6760. msgstr ""
  6761. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:114
  6762. msgctxt "nft dnat ip6 to addr"
  6763. msgid "Rewrite destination to <strong>%h</strong>"
  6764. msgstr ""
  6765. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:112
  6766. msgctxt "nft dnat ip to addr:port"
  6767. msgid "Rewrite destination to <strong>%h</strong>, port <strong>%h</strong>"
  6768. msgstr ""
  6769. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:115
  6770. msgctxt "nft dnat ip6 to addr:port"
  6771. msgid "Rewrite destination to <strong>%h</strong>, port <strong>%h</strong>"
  6772. msgstr ""
  6773. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:105
  6774. msgctxt "nft snat ip to addr"
  6775. msgid "Rewrite source to <strong>%h</strong>"
  6776. msgstr ""
  6777. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:108
  6778. msgctxt "nft snat ip6 to addr"
  6779. msgid "Rewrite source to <strong>%h</strong>"
  6780. msgstr ""
  6781. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:106
  6782. msgctxt "nft snat ip to addr:port"
  6783. msgid "Rewrite source to <strong>%h</strong>, port <strong>%h</strong>"
  6784. msgstr ""
  6785. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:109
  6786. msgctxt "nft snat ip6 to addr:port"
  6787. msgid "Rewrite source to <strong>%h</strong>, port <strong>%h</strong>"
  6788. msgstr ""
  6789. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:120
  6790. msgid "Rewrite to egress device address"
  6791. msgstr ""
  6792. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1598
  6793. msgid ""
  6794. "Robust Security Network (RSN): Allow roaming preauth for WPA2-EAP networks "
  6795. "(and advertise it in WLAN beacons). Only works if the specified network "
  6796. "interface is a bridge. Shortens the time-critical reassociation process."
  6797. msgstr ""
  6798. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:605
  6799. msgid "Robustness"
  6800. msgstr ""
  6801. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:860
  6802. msgid ""
  6803. "Root directory for files served via TFTP. <em>Enable TFTP server</em> and "
  6804. "<em>TFTP server root</em> turn on the TFTP server and serve files from "
  6805. "<em>TFTP server root</em>."
  6806. msgstr ""
  6807. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:298
  6808. msgid "Root preparation"
  6809. msgstr ""
  6810. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:209
  6811. msgid "Round-Robin policy (balance-rr, 0)"
  6812. msgstr ""
  6813. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:644
  6814. msgid "Route Allowed IPs"
  6815. msgstr ""
  6816. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:532
  6817. msgid "Route action chain \"%h\""
  6818. msgstr ""
  6819. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:103
  6820. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:103
  6821. msgid "Route short-circuit (RSC)"
  6822. msgstr ""
  6823. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:48
  6824. msgid "Route type"
  6825. msgstr ""
  6826. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:864
  6827. msgid ""
  6828. "Router Lifetime published in <abbr title=\"Router Advertisement, ICMPv6 Type "
  6829. "134\">RA</abbr> messages. Maximum is 9000 seconds."
  6830. msgstr ""
  6831. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:46
  6832. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:26
  6833. msgid "Router Password"
  6834. msgstr ""
  6835. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:29
  6836. msgid ""
  6837. "Routes go in routing tables and define the specific path to reach "
  6838. "destinations."
  6839. msgstr ""
  6840. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:28
  6841. #: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:50
  6842. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:258
  6843. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:15
  6844. msgid "Routing"
  6845. msgstr ""
  6846. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:44
  6847. msgid "Routing Algorithm"
  6848. msgstr ""
  6849. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:28
  6850. msgid ""
  6851. "Routing defines over which interface and gateway a certain host or network "
  6852. "can be reached."
  6853. msgstr ""
  6854. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:95
  6855. msgid "Routing table into which to insert this rule."
  6856. msgstr ""
  6857. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:172
  6858. msgid "Routing table to use for traffic matching this rule."
  6859. msgstr ""
  6860. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:218
  6861. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:208
  6862. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:234
  6863. msgid "Rule"
  6864. msgstr ""
  6865. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:602
  6866. msgid "Rule actions"
  6867. msgstr ""
  6868. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:475
  6869. msgctxt "nft comment"
  6870. msgid "Rule comment: %s"
  6871. msgstr ""
  6872. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:540
  6873. msgid "Rule container chain \"%h\""
  6874. msgstr ""
  6875. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:601
  6876. msgid "Rule matches"
  6877. msgstr ""
  6878. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:142
  6879. msgid "Rule type"
  6880. msgstr ""
  6881. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:30
  6882. msgid ""
  6883. "Rules determine which routing table to use, based on conditions like source "
  6884. "address or interface."
  6885. msgstr ""
  6886. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2360
  6887. msgid "Runtime error"
  6888. msgstr ""
  6889. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:226
  6890. msgid "SHA256"
  6891. msgstr ""
  6892. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:145
  6893. msgid "SIM %d"
  6894. msgstr ""
  6895. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:147
  6896. msgid "SIMs"
  6897. msgstr ""
  6898. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:59
  6899. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:280
  6900. msgid "SNR"
  6901. msgstr ""
  6902. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:935
  6903. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:954
  6904. msgid "SRV"
  6905. msgstr ""
  6906. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:10
  6907. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:38
  6908. msgid "SSH Access"
  6909. msgstr ""
  6910. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:70
  6911. msgid "SSH server address"
  6912. msgstr ""
  6913. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:74
  6914. msgid "SSH server port"
  6915. msgstr ""
  6916. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:58
  6917. msgid "SSH username"
  6918. msgstr ""
  6919. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:289
  6920. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:51
  6921. msgid "SSH-Keys"
  6922. msgstr ""
  6923. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:156
  6924. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:181
  6925. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1970
  6926. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:443
  6927. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:147
  6928. msgid "SSID"
  6929. msgstr ""
  6930. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:9
  6931. msgid "SSTP"
  6932. msgstr ""
  6933. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:44
  6934. msgid "SSTP Port"
  6935. msgstr ""
  6936. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:41
  6937. msgid "SSTP Server"
  6938. msgstr ""
  6939. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:338
  6940. msgid "SWAP"
  6941. msgstr ""
  6942. #: modules/luci-base/htdocs/luci-static/resources/form.js:3232
  6943. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2192
  6944. #: modules/luci-compat/luasrc/view/cbi/error.htm:17
  6945. #: modules/luci-compat/luasrc/view/cbi/footer.htm:26
  6946. #: modules/luci-compat/luasrc/view/cbi/header.htm:20
  6947. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:465
  6948. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:123
  6949. msgid "Save"
  6950. msgstr ""
  6951. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2174
  6952. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4487
  6953. #: modules/luci-compat/luasrc/view/cbi/footer.htm:22
  6954. msgid "Save & Apply"
  6955. msgstr ""
  6956. #: modules/luci-base/htdocs/luci-static/resources/form.js:609
  6957. msgid "Save error"
  6958. msgstr ""
  6959. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:436
  6960. msgid "Save mtdblock"
  6961. msgstr ""
  6962. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:426
  6963. msgid "Save mtdblock contents"
  6964. msgstr ""
  6965. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:941
  6966. msgid "Scan"
  6967. msgstr ""
  6968. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/crontab.js:28
  6969. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:90
  6970. msgid "Scheduled Tasks"
  6971. msgstr ""
  6972. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/dmesg.js:47
  6973. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/syslog.js:51
  6974. msgctxt "scroll to top (the head) of the log file"
  6975. msgid "Scroll to head"
  6976. msgstr ""
  6977. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/dmesg.js:38
  6978. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/syslog.js:42
  6979. msgctxt "scroll to bottom (the tail) of the log file"
  6980. msgid "Scroll to tail"
  6981. msgstr ""
  6982. #: protocols/luci-proto-external/htdocs/luci-static/resources/protocol/external.js:41
  6983. msgid "Search domain"
  6984. msgstr ""
  6985. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:39
  6986. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:62
  6987. msgid "Section %s is empty."
  6988. msgstr ""
  6989. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4471
  6990. msgid "Section added"
  6991. msgstr ""
  6992. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4473
  6993. msgid "Section removed"
  6994. msgstr ""
  6995. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:332
  6996. msgid "See \"mount\" manpage for details"
  6997. msgstr ""
  6998. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:285
  6999. msgid ""
  7000. "Select 'Force upgrade' to flash the image even if the image format check "
  7001. "fails. Use only if you are sure that the firmware is correct and meant for "
  7002. "your device!"
  7003. msgstr ""
  7004. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2686
  7005. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2836
  7006. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3000
  7007. msgid "Select file…"
  7008. msgstr ""
  7009. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:325
  7010. msgid "Selects the transmit hash policy to use for slave selection"
  7011. msgstr ""
  7012. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:791
  7013. msgid ""
  7014. "Send <abbr title=\"Router Advertisement, ICMPv6 Type 134\">RA</abbr> "
  7015. "messages advertising this device as IPv6 router."
  7016. msgstr ""
  7017. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:704
  7018. msgid "Send ICMP redirects"
  7019. msgstr ""
  7020. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:143
  7021. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:115
  7022. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:101
  7023. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:75
  7024. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:88
  7025. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:111
  7026. msgid ""
  7027. "Send LCP echo requests at the given interval in seconds, only effective in "
  7028. "conjunction with failure threshold"
  7029. msgstr ""
  7030. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:290
  7031. msgid "Send multicast beacon"
  7032. msgstr ""
  7033. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:24
  7034. msgid "Send the hostname of this device"
  7035. msgstr ""
  7036. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:89
  7037. msgid "Server"
  7038. msgstr ""
  7039. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:894
  7040. msgid "Server address"
  7041. msgstr ""
  7042. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:888
  7043. msgid "Server name"
  7044. msgstr ""
  7045. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:50
  7046. msgid "Service Name"
  7047. msgstr ""
  7048. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:88
  7049. msgid "Service Type"
  7050. msgstr ""
  7051. #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:36
  7052. msgid "Services"
  7053. msgstr "שירותים"
  7054. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2664
  7055. msgid "Session expired"
  7056. msgstr ""
  7057. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:126
  7058. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:175
  7059. msgid "Set Static"
  7060. msgstr ""
  7061. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:849
  7062. msgid "Set a maximum seconds TTL value for entries in the cache."
  7063. msgstr ""
  7064. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1007
  7065. msgid "Set an alias for a hostname."
  7066. msgstr ""
  7067. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1058
  7068. msgid "Set an arbitrary resource record (RR) type."
  7069. msgstr ""
  7070. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:122
  7071. msgctxt "nft mangle"
  7072. msgid "Set header field <var>%s</var> to <strong>%s</strong>"
  7073. msgstr ""
  7074. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:991
  7075. msgid "Set interface as NDP-Proxy external slave. Default is off."
  7076. msgstr ""
  7077. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1319
  7078. msgid ""
  7079. "Set interface properties regardless of the link carrier (If set, carrier "
  7080. "sense events do not invoke hotplug handlers)."
  7081. msgstr ""
  7082. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:447
  7083. msgid "Set log class/facility for syslog entries."
  7084. msgstr ""
  7085. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:307
  7086. msgid "Set same MAC Address to all slaves"
  7087. msgstr ""
  7088. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:810
  7089. msgid ""
  7090. "Set the autonomous address-configuration flag in the prefix information "
  7091. "options of sent <abbr title=\"Router Advertisement\">RA</abbr> messages. "
  7092. "When enabled, clients will perform stateless IPv6 address autoconfiguration."
  7093. msgstr ""
  7094. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:718
  7095. msgid ""
  7096. "Set this interface as master for RA and DHCPv6 relaying as well as NDP "
  7097. "proxying."
  7098. msgstr ""
  7099. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:311
  7100. msgid "Set to currently active slave (active, 1)"
  7101. msgstr ""
  7102. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:312
  7103. msgid "Set to first slave added to the bond (follow, 2)"
  7104. msgstr ""
  7105. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:645
  7106. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:661
  7107. msgid "Set up DHCP Server"
  7108. msgstr ""
  7109. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:986
  7110. msgid "Set up routes for proxied IPv6 neighbours."
  7111. msgstr ""
  7112. #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:55
  7113. #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:55
  7114. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:23
  7115. msgid "Setting PLMN failed"
  7116. msgstr ""
  7117. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:68
  7118. msgid "Setting operation mode failed"
  7119. msgstr ""
  7120. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:89
  7121. msgid "Setting the allowed network technology."
  7122. msgstr ""
  7123. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:109
  7124. msgid "Setting the preferred network technology."
  7125. msgstr ""
  7126. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/uhttpd.js:11
  7127. msgid "Settings"
  7128. msgstr ""
  7129. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1050
  7130. msgid ""
  7131. "Settings for assisting wireless clients in roaming between multiple APs: "
  7132. "802.11r, 802.11k and 802.11v"
  7133. msgstr ""
  7134. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:212
  7135. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:39
  7136. msgid "Short GI"
  7137. msgstr ""
  7138. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1233
  7139. msgid "Short Preamble"
  7140. msgstr ""
  7141. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:472
  7142. msgid "Show current backup file list"
  7143. msgstr ""
  7144. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:297
  7145. msgid "Show empty chains"
  7146. msgstr ""
  7147. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:280
  7148. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:342
  7149. msgid "Show raw counters"
  7150. msgstr ""
  7151. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:500
  7152. msgid "Shutdown this interface"
  7153. msgstr ""
  7154. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:57
  7155. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:63
  7156. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:186
  7157. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1969
  7158. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:42
  7159. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:442
  7160. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:146
  7161. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:235
  7162. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:278
  7163. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:284
  7164. msgid "Signal"
  7165. msgstr ""
  7166. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2413
  7167. msgid "Signal / Noise"
  7168. msgstr ""
  7169. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:104
  7170. msgid "Signal Quality"
  7171. msgstr ""
  7172. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:148
  7173. msgid "Signal Refresh Rate"
  7174. msgstr ""
  7175. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:262
  7176. msgid "Signal:"
  7177. msgstr ""
  7178. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4235
  7179. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:224
  7180. msgid "Size"
  7181. msgstr ""
  7182. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:834
  7183. msgid "Size of DNS query cache"
  7184. msgstr ""
  7185. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:208
  7186. msgid "Size of the ZRam device in megabytes"
  7187. msgstr ""
  7188. #: modules/luci-compat/luasrc/view/cbi/footer.htm:18
  7189. #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:57
  7190. msgid "Skip"
  7191. msgstr ""
  7192. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:259
  7193. msgid "Skip from backup files that are equal to those in /rom"
  7194. msgstr ""
  7195. #: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:35
  7196. #: themes/luci-theme-openwrt/ucode/template/themes/openwrt.org/header.ut:38
  7197. msgid "Skip to content"
  7198. msgstr "דלג אל התוכן"
  7199. #: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:34
  7200. #: themes/luci-theme-openwrt/ucode/template/themes/openwrt.org/header.ut:37
  7201. msgid "Skip to navigation"
  7202. msgstr "דלג אל הניווט"
  7203. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:185
  7204. msgid "Slave Interfaces"
  7205. msgstr ""
  7206. #: modules/luci-base/htdocs/luci-static/resources/network.js:3036
  7207. #: modules/luci-compat/luasrc/model/network.lua:1428
  7208. msgid "Software VLAN"
  7209. msgstr ""
  7210. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1001
  7211. msgid ""
  7212. "Some channels may be restricted to Indoor Only use by your Regulatory "
  7213. "Domain. Make sure to follow this advice if a channel is reported as such."
  7214. msgstr ""
  7215. #: modules/luci-compat/luasrc/view/cbi/header.htm:5
  7216. msgid "Some fields are invalid, cannot save values!"
  7217. msgstr "חלק מהשדות אינם תקינים, אין אפשרות לשמור את הערכים!"
  7218. #: modules/luci-base/ucode/template/error404.ut:10
  7219. msgid "Sorry, the object you requested was not found."
  7220. msgstr "סליחה, אך האובייקט שביקשת אינו נמצא."
  7221. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:444
  7222. msgid ""
  7223. "Sorry, there is no sysupgrade support present; a new firmware image must be "
  7224. "flashed manually. Please refer to the wiki for device specific install "
  7225. "instructions."
  7226. msgstr ""
  7227. "סליחה, אין תמיכה בעדכון מערכת, ולכן קושחה חדשה חייבת להיצרב ידנית. אנא פנה "
  7228. "אל ה-wiki של OpenWrt עבור הוראות ספציפיות למכשיר שלך."
  7229. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:105
  7230. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:154
  7231. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:388
  7232. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:70
  7233. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:224
  7234. msgid "Source"
  7235. msgstr "מקור"
  7236. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:43
  7237. msgctxt "nft ip saddr"
  7238. msgid "Source IP"
  7239. msgstr ""
  7240. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:47
  7241. msgctxt "nft ip6 saddr"
  7242. msgid "Source IPv6"
  7243. msgstr ""
  7244. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:251
  7245. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:251
  7246. msgid "Source VNI"
  7247. msgstr ""
  7248. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57
  7249. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:57
  7250. msgid "Source interface"
  7251. msgstr ""
  7252. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:45
  7253. msgctxt "nft ip sport"
  7254. msgid "Source port"
  7255. msgstr ""
  7256. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:57
  7257. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:57
  7258. msgid "Source port range"
  7259. msgstr ""
  7260. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:874
  7261. msgid ""
  7262. "Special <abbr title=\"Preboot eXecution Environment\">PXE</abbr> boot "
  7263. "options for Dnsmasq."
  7264. msgstr ""
  7265. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:943
  7266. msgid ""
  7267. "Specifies a fixed list of DNS search domains to announce via DHCPv6. If left "
  7268. "unspecified, the local device DNS search domain will be announced."
  7269. msgstr ""
  7270. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:927
  7271. msgid ""
  7272. "Specifies a fixed list of IPv6 DNS server addresses to announce via DHCPv6. "
  7273. "If left unspecified, the device will announce itself as IPv6 DNS server "
  7274. "unless the <em>Local IPv6 DNS server</em> option is disabled."
  7275. msgstr ""
  7276. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:194
  7277. msgid ""
  7278. "Specifies an individual UID or range of UIDs to match, e.g. 1000 to match "
  7279. "corresponding UID or 1000-1005 to inclusively match all UIDs within the "
  7280. "corresponding range"
  7281. msgstr ""
  7282. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:348
  7283. msgid ""
  7284. "Specifies that duplicate frames (received on inactive ports) should be "
  7285. "dropped or delivered"
  7286. msgstr ""
  7287. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:364
  7288. msgid "Specifies the ARP link monitoring frequency in milliseconds"
  7289. msgstr ""
  7290. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:372
  7291. msgid "Specifies the IP addresses to use for ARP monitoring"
  7292. msgstr ""
  7293. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:401
  7294. msgid "Specifies the MII link monitoring frequency in milliseconds"
  7295. msgstr ""
  7296. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:189
  7297. msgid "Specifies the TOS value to match in IP headers"
  7298. msgstr ""
  7299. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:266
  7300. msgid "Specifies the aggregation selection logic to use"
  7301. msgstr ""
  7302. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:293
  7303. msgid "Specifies the directory the device is attached to"
  7304. msgstr ""
  7305. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:816
  7306. msgid ""
  7307. "Specifies the flags sent in <abbr title=\"Router Advertisement\">RA</abbr> "
  7308. "messages, for example to instruct clients to request further information via "
  7309. "stateful DHCPv6."
  7310. msgstr ""
  7311. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:184
  7312. msgid ""
  7313. "Specifies the fwmark and optionally its mask to match, e.g. 0xFF to match "
  7314. "mark 255 or 0x0/0x1 to match any even mark value"
  7315. msgstr ""
  7316. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:43
  7317. msgid ""
  7318. "Specifies the logical interface name of the parent (or master) interface "
  7319. "this route belongs to"
  7320. msgstr ""
  7321. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:259
  7322. msgid ""
  7323. "Specifies the mac-address for the actor in protocol packet exchanges "
  7324. "(LACPDUs). If empty, masters' mac address defaults to system default"
  7325. msgstr ""
  7326. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:175
  7327. msgid ""
  7328. "Specifies the maximum amount of failed ARP requests until hosts are presumed "
  7329. "to be dead"
  7330. msgstr ""
  7331. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:171
  7332. msgid ""
  7333. "Specifies the maximum amount of seconds after which hosts are presumed to be "
  7334. "dead"
  7335. msgstr ""
  7336. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1008
  7337. msgid ""
  7338. "Specifies the maximum transmit power the wireless radio may use. Depending "
  7339. "on regulatory requirements and wireless usage, the actual transmit power may "
  7340. "be reduced by the driver."
  7341. msgstr ""
  7342. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:243
  7343. msgid ""
  7344. "Specifies the minimum number of links that must be active before asserting "
  7345. "carrier"
  7346. msgstr ""
  7347. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:207
  7348. msgid "Specifies the mode to be used for this bonding interface"
  7349. msgstr ""
  7350. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:79
  7351. msgid ""
  7352. "Specifies the network gateway. If omitted, the gateway from the parent "
  7353. "interface is taken if any, otherwise creates a link scope route. If set to "
  7354. "0.0.0.0 no gateway will be specified for the route"
  7355. msgstr ""
  7356. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:339
  7357. msgid ""
  7358. "Specifies the number of IGMP membership reports to be issued after a "
  7359. "failover event in 200ms intervals"
  7360. msgstr ""
  7361. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:283
  7362. msgid ""
  7363. "Specifies the number of packets to transmit through a slave before moving to "
  7364. "the next one"
  7365. msgstr ""
  7366. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:317
  7367. msgid ""
  7368. "Specifies the number of peer notifications (gratuitous ARPs and unsolicited "
  7369. "IPv6 Neighbor Advertisements) to be issued after a failover event"
  7370. msgstr ""
  7371. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:291
  7372. msgid ""
  7373. "Specifies the number of seconds between instances where the bonding driver "
  7374. "sends learning packets to each slaves peer switch"
  7375. msgstr ""
  7376. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:105
  7377. msgid ""
  7378. "Specifies the preferred source address when sending to destinations covered "
  7379. "by the target"
  7380. msgstr ""
  7381. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:380
  7382. msgid "Specifies the quantity of ARP IP targets that must be reachable"
  7383. msgstr ""
  7384. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:275
  7385. msgid ""
  7386. "Specifies the rate in which the link partner will be asked to transmit "
  7387. "LACPDU packets"
  7388. msgstr ""
  7389. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:232
  7390. msgid ""
  7391. "Specifies the reselection policy for the primary slave when failure of the "
  7392. "active slave or recovery of the primary slave occurs"
  7393. msgstr ""
  7394. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:48
  7395. msgid "Specifies the route type to be created"
  7396. msgstr ""
  7397. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:142
  7398. msgid "Specifies the rule target routing action"
  7399. msgstr ""
  7400. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:251
  7401. msgid "Specifies the system priority"
  7402. msgstr ""
  7403. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:409
  7404. msgid ""
  7405. "Specifies the time in milliseconds to wait before disabling a slave after a "
  7406. "link failure detection"
  7407. msgstr ""
  7408. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:417
  7409. msgid ""
  7410. "Specifies the time in milliseconds to wait before enabling a slave after a "
  7411. "link recovery detection"
  7412. msgstr ""
  7413. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:548
  7414. msgid ""
  7415. "Specifies the wired ports to attach to this bridge. In order to attach "
  7416. "wireless networks, choose the associated interface as network in the "
  7417. "wireless settings."
  7418. msgstr ""
  7419. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:388
  7420. msgid ""
  7421. "Specifies whether ARP probes and replies should be validated or non-ARP "
  7422. "traffic should be filtered for link monitoring"
  7423. msgstr ""
  7424. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:308
  7425. msgid ""
  7426. "Specifies whether active-backup mode should set all slaves to the same MAC "
  7427. "address at enslavement"
  7428. msgstr ""
  7429. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:425
  7430. msgid ""
  7431. "Specifies whether or not miimon should use MII or ETHTOOL ioctls vs. "
  7432. "netif_carrier_ok()"
  7433. msgstr ""
  7434. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:300
  7435. msgid ""
  7436. "Specifies whether to shuffle active flows across slaves based on the load"
  7437. msgstr ""
  7438. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:186
  7439. msgid ""
  7440. "Specifies which slave interfaces should be attached to this bonding interface"
  7441. msgstr ""
  7442. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:219
  7443. msgid ""
  7444. "Specifies which slave is the primary device. It will always be the active "
  7445. "slave while it is available"
  7446. msgstr ""
  7447. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:63
  7448. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:142
  7449. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:142
  7450. msgid "Specify a TOS (Type of Service)."
  7451. msgstr ""
  7452. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:74
  7453. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:79
  7454. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:79
  7455. msgid ""
  7456. "Specify a TOS (Type of Service). Can be <code>inherit</code> (the outer "
  7457. "header inherits the value of the inner header) or an hexadecimal value "
  7458. "<code>00..FF</code> (optional)."
  7459. msgstr ""
  7460. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:74
  7461. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:74
  7462. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:79
  7463. msgid ""
  7464. "Specify a TTL (Time to Live) for the encapsulating packet other than the "
  7465. "default (64) (optional)."
  7466. msgstr ""
  7467. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:69
  7468. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:58
  7469. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:137
  7470. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:137
  7471. msgid ""
  7472. "Specify a TTL (Time to Live) for the encapsulating packet other than the "
  7473. "default (64)."
  7474. msgstr ""
  7475. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:84
  7476. msgid ""
  7477. "Specify a Traffic Class. Can be <code>inherit</code> (the outer header "
  7478. "inherits the value of the inner header) or an hexadecimal value <code>00.."
  7479. "FF</code> (optional)."
  7480. msgstr ""
  7481. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:64
  7482. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:69
  7483. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:69
  7484. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:74
  7485. msgid ""
  7486. "Specify an MTU (Maximum Transmission Unit) other than the default (1280 "
  7487. "bytes) (optional)."
  7488. msgstr ""
  7489. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:53
  7490. msgid ""
  7491. "Specify an MTU (Maximum Transmission Unit) other than the default (1280 "
  7492. "bytes)."
  7493. msgstr ""
  7494. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2273
  7495. msgid "Specify the secret encryption key here."
  7496. msgstr ""
  7497. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:215
  7498. msgid "Speed: %d Mibit/s, Duplex: %s"
  7499. msgstr ""
  7500. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1598
  7501. msgid "Splitterless ADSL (G.992.2) Annex A"
  7502. msgstr ""
  7503. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:717
  7504. msgid "Stale neighbour cache timeout"
  7505. msgstr ""
  7506. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1572
  7507. msgid "Standard: none"
  7508. msgstr ""
  7509. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:668
  7510. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:98
  7511. msgid "Start"
  7512. msgstr ""
  7513. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:140
  7514. msgid "Start WPS"
  7515. msgstr ""
  7516. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:75
  7517. msgid "Start priority"
  7518. msgstr ""
  7519. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2073
  7520. msgid "Start refresh"
  7521. msgstr ""
  7522. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4721
  7523. msgid "Starting configuration apply…"
  7524. msgstr ""
  7525. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1986
  7526. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:468
  7527. msgid "Starting wireless scan..."
  7528. msgstr ""
  7529. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:109
  7530. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:78
  7531. msgid "Startup"
  7532. msgstr "אתחול"
  7533. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:90
  7534. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:139
  7535. msgid "State"
  7536. msgstr ""
  7537. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:34
  7538. msgid "Static IPv4 Routes"
  7539. msgstr "ניתובי IPv4 סטטיים"
  7540. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:34
  7541. msgid "Static IPv6 Routes"
  7542. msgstr "ניתובי IPv6 סטטיים"
  7543. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:91
  7544. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:138
  7545. msgid "Static Lease"
  7546. msgstr ""
  7547. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:397
  7548. msgid "Static Leases"
  7549. msgstr "הקצאות סטטיות"
  7550. #: modules/luci-base/htdocs/luci-static/resources/network.js:2090
  7551. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:173
  7552. #: modules/luci-compat/luasrc/model/network.lua:967
  7553. msgid "Static address"
  7554. msgstr "כתובת סטטית"
  7555. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1162
  7556. msgid ""
  7557. "Static leases are used to assign fixed IP addresses and symbolic hostnames "
  7558. "to DHCP clients. They are also required for non-dynamic interface "
  7559. "configurations where only hosts with a corresponding lease are served."
  7560. msgstr ""
  7561. "הקצאות סטטיות נועדו להקצות כתובות IP קבועות ואת שם הרשת שלהן ללקוחות DHCP. "
  7562. "הן נחוצות גם עבור הגדרות ממשק שאינן דינאמיות, בהן מטופלות רק ישויות בעלות "
  7563. "הקצאה מתאימה."
  7564. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1250
  7565. msgid "Station inactivity limit"
  7566. msgstr ""
  7567. #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:16
  7568. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:536
  7569. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:990
  7570. #: modules/luci-mod-status/ucode/template/admin_status/index.ut:9
  7571. msgid "Status"
  7572. msgstr "מצב"
  7573. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1569
  7574. msgid "Steering flows (<abbr title=\"Receive Packet Steering\">RPS</abbr>)"
  7575. msgstr ""
  7576. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:502
  7577. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:101
  7578. msgid "Stop"
  7579. msgstr "עצור"
  7580. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:135
  7581. msgid "Stop WPS"
  7582. msgstr ""
  7583. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1984
  7584. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2078
  7585. msgid "Stop refresh"
  7586. msgstr ""
  7587. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:38
  7588. msgid "Storage"
  7589. msgstr ""
  7590. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:683
  7591. msgid "Strict filtering"
  7592. msgstr ""
  7593. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:645
  7594. msgid "Strict order"
  7595. msgstr ""
  7596. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:33
  7597. msgid "Strong"
  7598. msgstr ""
  7599. #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:61
  7600. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2298
  7601. msgid "Submit"
  7602. msgstr "שלח"
  7603. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1573
  7604. msgid "Suggested: 128"
  7605. msgstr ""
  7606. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:667
  7607. msgid "Suppress logging"
  7608. msgstr ""
  7609. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:668
  7610. msgid "Suppress logging of the routine operation for the DHCP protocol."
  7611. msgstr ""
  7612. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:46
  7613. msgid "Swap free"
  7614. msgstr ""
  7615. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:139
  7616. #: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:3
  7617. msgid "Switch"
  7618. msgstr ""
  7619. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:172
  7620. msgid "Switch %q"
  7621. msgstr ""
  7622. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:150
  7623. msgid ""
  7624. "Switch %q has an unknown topology - the VLAN settings might not be accurate."
  7625. msgstr ""
  7626. #: modules/luci-base/htdocs/luci-static/resources/network.js:3036
  7627. #: modules/luci-compat/luasrc/model/network.lua:1426
  7628. msgid "Switch VLAN"
  7629. msgstr ""
  7630. #: modules/luci-base/htdocs/luci-static/resources/network.js:3033
  7631. msgid "Switch port"
  7632. msgstr ""
  7633. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:555
  7634. msgid "Switch protocol"
  7635. msgstr ""
  7636. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:103
  7637. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:104
  7638. #: modules/luci-compat/luasrc/view/cbi/ipaddr.htm:26
  7639. msgid "Switch to CIDR list notation"
  7640. msgstr ""
  7641. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2731
  7642. msgid "Symbolic link"
  7643. msgstr ""
  7644. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:89
  7645. msgid "Sync with NTP-Server"
  7646. msgstr ""
  7647. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:81
  7648. msgid "Sync with browser"
  7649. msgstr ""
  7650. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:954
  7651. msgid "Syntax:"
  7652. msgstr ""
  7653. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:478
  7654. msgid "Syntax: {code_syntax}."
  7655. msgstr ""
  7656. #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:26
  7657. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:22
  7658. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:113
  7659. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:3
  7660. msgid "System"
  7661. msgstr ""
  7662. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/syslog.js:58
  7663. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:63
  7664. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:75
  7665. msgid "System Log"
  7666. msgstr ""
  7667. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:250
  7668. msgid "System Priority"
  7669. msgstr ""
  7670. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:118
  7671. msgid "System Properties"
  7672. msgstr ""
  7673. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:227
  7674. msgid "System load"
  7675. msgstr ""
  7676. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:162
  7677. msgid "System log buffer size"
  7678. msgstr ""
  7679. #: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:68
  7680. #: themes/luci-theme-material/ucode/template/themes/material/header.ut:88
  7681. #: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:64
  7682. #: themes/luci-theme-openwrt/ucode/template/themes/openwrt.org/header.ut:81
  7683. msgid "System running in recovery (initramfs) mode."
  7684. msgstr ""
  7685. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:67
  7686. msgctxt "nft tcp option maxseg size"
  7687. msgid "TCP MSS"
  7688. msgstr ""
  7689. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:54
  7690. msgctxt "nft tcp dport"
  7691. msgid "TCP destination port"
  7692. msgstr ""
  7693. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:57
  7694. msgctxt "nft tcp flags"
  7695. msgid "TCP flags"
  7696. msgstr ""
  7697. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:53
  7698. msgctxt "nft tcp sport"
  7699. msgid "TCP source port"
  7700. msgstr ""
  7701. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:341
  7702. msgid "TCP:"
  7703. msgstr "TCP:"
  7704. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:859
  7705. msgid "TFTP server root"
  7706. msgstr ""
  7707. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:50
  7708. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:87
  7709. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:145
  7710. msgid "TX"
  7711. msgstr "שידור"
  7712. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:236
  7713. msgid "TX Rate"
  7714. msgstr "קצב שידור"
  7715. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:672
  7716. msgid "TX queue length"
  7717. msgstr ""
  7718. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:95
  7719. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:172
  7720. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:18
  7721. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:182
  7722. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:200
  7723. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:226
  7724. msgid "Table"
  7725. msgstr "טבלה"
  7726. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1153
  7727. msgid "Table IP family"
  7728. msgstr ""
  7729. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1268
  7730. msgid "Tag"
  7731. msgstr ""
  7732. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:219
  7733. msgctxt "VLAN port state"
  7734. msgid "Tagged"
  7735. msgstr ""
  7736. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:959
  7737. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1022
  7738. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:60
  7739. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:66
  7740. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:178
  7741. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:180
  7742. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:197
  7743. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:223
  7744. msgid "Target"
  7745. msgstr "יעד"
  7746. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:58
  7747. msgid "Target Platform"
  7748. msgstr ""
  7749. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:103
  7750. msgid "Target network"
  7751. msgstr ""
  7752. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:60
  7753. msgid "Temp space"
  7754. msgstr ""
  7755. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:50
  7756. msgid "Terminate"
  7757. msgstr ""
  7758. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:871
  7759. msgid ""
  7760. "The <abbr title=\"Maximum Transmission Unit\">MTU</abbr> to be published in "
  7761. "<abbr title=\"Router Advertisement, ICMPv6 Type 134\">RA</abbr> messages. "
  7762. "Minimum is 1280 bytes."
  7763. msgstr ""
  7764. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:819
  7765. msgid ""
  7766. "The <em>Managed address configuration</em> (M) flag indicates that IPv6 "
  7767. "addresses are available via DHCPv6."
  7768. msgstr ""
  7769. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:823
  7770. msgid ""
  7771. "The <em>Mobile IPv6 Home Agent</em> (H) flag indicates that the device is "
  7772. "also acting as Mobile IPv6 home agent on this link."
  7773. msgstr ""
  7774. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:821
  7775. msgid ""
  7776. "The <em>Other configuration</em> (O) flag indicates that other information, "
  7777. "such as DNS servers, is available via DHCPv6."
  7778. msgstr ""
  7779. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:84
  7780. msgid "The <em>block mount</em> command failed with code %d"
  7781. msgstr ""
  7782. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1256
  7783. msgid "The DHCPv6-DUID (DHCP unique identifier) of this host."
  7784. msgstr ""
  7785. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1029
  7786. msgid ""
  7787. "The DNS server entries in the local resolv.conf are primarily sorted by the "
  7788. "weight specified here"
  7789. msgstr ""
  7790. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:77
  7791. msgid ""
  7792. "The HE.net endpoint update configuration changed, you must now use the plain "
  7793. "username instead of the user ID!"
  7794. msgstr ""
  7795. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1228
  7796. msgid "The IP address %h is already used by another static lease"
  7797. msgstr ""
  7798. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1237
  7799. msgid "The IP address is outside of any DHCP pool address range"
  7800. msgstr ""
  7801. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:895
  7802. msgid "The IP address of the boot server"
  7803. msgstr ""
  7804. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1211
  7805. msgid ""
  7806. "The IP address to be used for this host, or <em>ignore</em> to ignore any "
  7807. "DHCP request from this host."
  7808. msgstr ""
  7809. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:41
  7810. msgid "The IPv4 address or the fully-qualified domain name of the remote end."
  7811. msgstr ""
  7812. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:42
  7813. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:42
  7814. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:40
  7815. #: protocols/luci-proto-vti/htdocs/luci-static/resources/protocol/vti.js:40
  7816. msgid ""
  7817. "The IPv4 address or the fully-qualified domain name of the remote tunnel end."
  7818. msgstr ""
  7819. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:41
  7820. msgid "The IPv6 address or the fully-qualified domain name of the remote end."
  7821. msgstr ""
  7822. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:42
  7823. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:42
  7824. msgid ""
  7825. "The IPv6 address or the fully-qualified domain name of the remote tunnel end."
  7826. msgstr ""
  7827. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1264
  7828. msgid ""
  7829. "The IPv6 interface identifier (address suffix) as hexadecimal number (max. "
  7830. "16 chars)."
  7831. msgstr ""
  7832. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:53
  7833. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:59
  7834. msgid ""
  7835. "The IPv6 prefix assigned to the provider, usually ends with <code>::</code>"
  7836. msgstr ""
  7837. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/timer.js:7
  7838. msgid "The LED blinks with the configured on/off frequency"
  7839. msgstr ""
  7840. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/heartbeat.js:7
  7841. msgid "The LED flashes to simulate actual heart beat."
  7842. msgstr ""
  7843. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:8
  7844. msgid ""
  7845. "The LED flashes with link status and activity on the configured interface."
  7846. msgstr ""
  7847. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/none.js:7
  7848. msgid "The LED is always in default state off."
  7849. msgstr ""
  7850. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/default-on.js:6
  7851. msgid "The LED is always in default state on."
  7852. msgstr ""
  7853. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:267
  7854. msgid ""
  7855. "The MAC address %h is already used by another static lease in the same DHCP "
  7856. "pool"
  7857. msgstr ""
  7858. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:640
  7859. msgid "The MTU must not exceed the parent device MTU of %d bytes"
  7860. msgstr ""
  7861. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:950
  7862. msgid "The VLAN ID must be unique"
  7863. msgstr ""
  7864. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:85
  7865. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:85
  7866. msgid ""
  7867. "The VXLAN header adds 50 bytes of IPv4 encapsulation overhead, 74 bytes for "
  7868. "IPv6."
  7869. msgstr ""
  7870. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:180
  7871. msgid "The address through which this %s is reachable"
  7872. msgstr ""
  7873. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:45
  7874. msgid "The algorithm that is used to discover mesh routes"
  7875. msgstr ""
  7876. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2258
  7877. msgid ""
  7878. "The allowed characters are: <code>A-Z</code>, <code>a-z</code>, <code>0-9</"
  7879. "code> and <code>_</code>"
  7880. msgstr ""
  7881. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:759
  7882. msgid ""
  7883. "The amount of the address forwarded depends on the prefix length parameter: "
  7884. "32 (128 for IPv6) forwards the whole address, zero forwards none of it but "
  7885. "still marks the request so that no upstream nameserver will add client "
  7886. "address information either."
  7887. msgstr ""
  7888. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:320
  7889. msgid ""
  7890. "The checkbox cannot be modified unless the <code>yggdrasil-jumper</code> "
  7891. "package is installed."
  7892. msgstr ""
  7893. #: modules/luci-compat/luasrc/view/cbi/error.htm:6
  7894. msgid "The configuration file could not be loaded due to the following error:"
  7895. msgstr ""
  7896. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2250
  7897. msgid ""
  7898. "The correct SSID must be manually specified when joining a hidden wireless "
  7899. "network"
  7900. msgstr ""
  7901. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:760
  7902. msgid "The default (%s) is zero for both IPv4 and IPv6."
  7903. msgstr ""
  7904. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4597
  7905. msgid ""
  7906. "The device could not be reached within %d seconds after applying the pending "
  7907. "changes, which caused the configuration to be rolled back for safety "
  7908. "reasons. If you believe that the configuration changes are correct "
  7909. "nonetheless, perform an unchecked configuration apply. Alternatively, you "
  7910. "can dismiss this warning and edit changes before attempting to apply again, "
  7911. "or revert all pending changes to keep the currently working configuration "
  7912. "state."
  7913. msgstr ""
  7914. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:281
  7915. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:391
  7916. msgid ""
  7917. "The device file of the memory or partition (<abbr title=\"for example\">e.g."
  7918. "</abbr> <code>/dev/sda1</code>)"
  7919. msgstr ""
  7920. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:504
  7921. msgid "The device name \"%s\" is already taken"
  7922. msgstr ""
  7923. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:382
  7924. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:416
  7925. msgid ""
  7926. "The existing network configuration needs to be changed for LuCI to function "
  7927. "properly."
  7928. msgstr ""
  7929. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:855
  7930. msgid ""
  7931. "The existing wireless configuration needs to be changed for LuCI to function "
  7932. "properly."
  7933. msgstr ""
  7934. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:222
  7935. msgid ""
  7936. "The flash image was uploaded. Below is the checksum and file size listed, "
  7937. "compare them with the original file to ensure data integrity. <br /> Click "
  7938. "'Continue' below to start the flash procedure."
  7939. msgstr ""
  7940. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:259
  7941. msgid "The following rules are currently active on this system."
  7942. msgstr "החוקים הבאים מאופשרים כרגע במערכת זו."
  7943. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/heartbeat.js:8
  7944. msgid "The frequency is in direct proportion to 1-minute average CPU load."
  7945. msgstr ""
  7946. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:155
  7947. msgid "The gateway address must not be a local IP address"
  7948. msgstr ""
  7949. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:756
  7950. msgid ""
  7951. "The generated configuration can be imported into a WireGuard client "
  7952. "application to set up a connection towards this device."
  7953. msgstr ""
  7954. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:172
  7955. msgid "The given SSH public key has already been added."
  7956. msgstr ""
  7957. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:178
  7958. msgid ""
  7959. "The given SSH public key is invalid. Please supply proper public RSA, "
  7960. "ED25519 or ECDSA keys."
  7961. msgstr ""
  7962. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1192
  7963. msgid "The hardware address(es) of this entry/host."
  7964. msgstr ""
  7965. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:93
  7966. msgid ""
  7967. "The hop penalty setting allows to modify batman-adv's preference for "
  7968. "multihop routes vs. short routes. The value is applied to the TQ of each "
  7969. "forwarded OGM, thereby propagating the cost of an extra hop (the packet has "
  7970. "to be received and retransmitted which costs airtime)"
  7971. msgstr ""
  7972. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:889
  7973. msgid "The hostname of the boot server"
  7974. msgstr ""
  7975. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:28
  7976. msgid "The interface could not be found"
  7977. msgstr ""
  7978. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1186
  7979. msgid "The interface name is already used"
  7980. msgstr ""
  7981. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1192
  7982. msgid "The interface name is too long"
  7983. msgstr ""
  7984. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:61
  7985. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:55
  7986. msgid ""
  7987. "The length of the IPv4 prefix in bits, the remainder is used in the IPv6 "
  7988. "addresses."
  7989. msgstr ""
  7990. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:57
  7991. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:63
  7992. msgid "The length of the IPv6 prefix in bits"
  7993. msgstr ""
  7994. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:168
  7995. msgid "The local IPv4 address"
  7996. msgstr ""
  7997. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:46
  7998. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:46
  7999. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:44
  8000. #: protocols/luci-proto-vti/htdocs/luci-static/resources/protocol/vti.js:44
  8001. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:47
  8002. msgid "The local IPv4 address over which the tunnel is created (optional)."
  8003. msgstr ""
  8004. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:175
  8005. msgid "The local IPv4 netmask"
  8006. msgstr ""
  8007. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:46
  8008. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:53
  8009. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:47
  8010. msgid "The local IPv6 address over which the tunnel is created (optional)."
  8011. msgstr ""
  8012. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:629
  8013. msgid ""
  8014. "The max response time in centiseconds inserted into group-specific queries "
  8015. "sent in response to leave group messages. It is also the amount of time "
  8016. "between group-specific query messages. This value may be tuned to modify the "
  8017. "\"leave latency\" of the network. A reduced value results in reduced time to "
  8018. "detect the loss of the last member of a group"
  8019. msgstr ""
  8020. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:615
  8021. msgid ""
  8022. "The max response time in centiseconds inserted into the periodic general "
  8023. "queries. By varying the value, an administrator may tune the burstiness of "
  8024. "IGMP messages on the subnet; larger values make the traffic less bursty, as "
  8025. "host responses are spread out over a larger interval"
  8026. msgstr ""
  8027. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:890
  8028. msgid ""
  8029. "The maximum hops to be published in <abbr title=\"Router Advertisement\">RA</"
  8030. "abbr> messages. Maximum is 255 hops."
  8031. msgstr ""
  8032. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1123
  8033. msgid "The netfilter components below are only regarded when running fw4."
  8034. msgstr ""
  8035. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2264
  8036. msgid "The network name is already used"
  8037. msgstr ""
  8038. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:139
  8039. msgid ""
  8040. "The network ports on this device can be combined to several <abbr "
  8041. "title=\"Virtual Local Area Network\">VLAN</abbr>s in which computers can "
  8042. "communicate directly with each other. <abbr title=\"Virtual Local Area "
  8043. "Network\">VLAN</abbr>s are often used to separate different network "
  8044. "segments. Often there is by default one Uplink port for a connection to the "
  8045. "next greater network like the internet and other ports for a local network."
  8046. msgstr ""
  8047. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:230
  8048. msgid "The private key for your Yggdrasil node"
  8049. msgstr ""
  8050. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:777
  8051. msgid ""
  8052. "The public hostname or IP address of this system the peer should connect to. "
  8053. "This usually is a static public IP address, a static hostname or a DDNS "
  8054. "domain."
  8055. msgstr ""
  8056. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:235
  8057. msgid "The public key for your Yggdrasil node"
  8058. msgstr ""
  8059. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:623
  8060. msgid "The query response interval must be lower than the query interval value"
  8061. msgstr ""
  8062. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:158
  8063. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:42
  8064. msgid "The reboot command failed with code %d"
  8065. msgstr ""
  8066. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:147
  8067. msgid "The restore command failed with code %d"
  8068. msgstr ""
  8069. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:605
  8070. msgid ""
  8071. "The robustness value allows tuning for the expected packet loss on the "
  8072. "network. If a network is expected to be lossy, the robustness value may be "
  8073. "increased. IGMP is robust to (Robustness-1) packet losses"
  8074. msgstr ""
  8075. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:183
  8076. msgid "The routing protocol identifier of this route"
  8077. msgstr ""
  8078. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1452
  8079. msgid "The selected %s mode is incompatible with %s encryption"
  8080. msgstr ""
  8081. #: modules/luci-base/ucode/template/csrftoken.ut:11
  8082. msgid "The submitted security token is invalid or already expired!"
  8083. msgstr ""
  8084. #: modules/luci-base/htdocs/luci-static/resources/tools/views.js:27
  8085. msgid "The syslog output, pre-filtered for messages related to:"
  8086. msgstr ""
  8087. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:98
  8088. msgid ""
  8089. "The system is erasing the configuration partition now and will reboot itself "
  8090. "when finished."
  8091. msgstr ""
  8092. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:322
  8093. msgid ""
  8094. "The system is flashing now.<br /> DO NOT POWER OFF THE DEVICE!<br /> Wait a "
  8095. "few minutes before you try to reconnect. It might be necessary to renew the "
  8096. "address of your computer to reach the device again, depending on your "
  8097. "settings."
  8098. msgstr ""
  8099. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:163
  8100. msgid ""
  8101. "The system is rebooting now. If the restored configuration changed the "
  8102. "current LAN IP address, you might need to reconnect manually."
  8103. msgstr ""
  8104. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:85
  8105. msgid "The system password has been successfully changed."
  8106. msgstr ""
  8107. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:347
  8108. msgid "The sysupgrade command failed with code %d"
  8109. msgstr ""
  8110. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1164
  8111. msgid ""
  8112. "The tag construct filters which host directives are used; more than one tag "
  8113. "can be provided, in this case the request must match all of them. Tagged "
  8114. "directives are used in preference to untagged ones. Note that one of mac, "
  8115. "duid or hostname still needs to be specified (can be a wildcard)."
  8116. msgstr ""
  8117. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:120
  8118. msgid ""
  8119. "The uploaded backup archive appears to be valid and contains the files "
  8120. "listed below. Press \"Continue\" to restore the backup and reboot, or "
  8121. "\"Cancel\" to abort the operation."
  8122. msgstr ""
  8123. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:115
  8124. msgid "The uploaded backup archive is not readable"
  8125. msgstr ""
  8126. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:251
  8127. msgid "The uploaded firmware does not allow keeping current configuration."
  8128. msgstr ""
  8129. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:246
  8130. msgid ""
  8131. "The uploaded image file does not contain a supported format. Make sure that "
  8132. "you choose the generic image format for your platform."
  8133. msgstr ""
  8134. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1535
  8135. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1547
  8136. msgid "The value is overridden by configuration."
  8137. msgstr ""
  8138. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:56
  8139. msgid ""
  8140. "The value specifies the interval (milliseconds) in which batman-adv floods "
  8141. "the network with its protocol information."
  8142. msgstr ""
  8143. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:678
  8144. msgid ""
  8145. "There are legacy iptables rules present on the system. Mixing iptables and "
  8146. "nftables rules is discouraged and may lead to incomplete traffic filtering."
  8147. msgstr ""
  8148. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1338
  8149. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1370
  8150. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:130
  8151. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:179
  8152. msgid "There are no active leases"
  8153. msgstr ""
  8154. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4764
  8155. msgid "There are no changes to apply"
  8156. msgstr ""
  8157. #: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:59
  8158. #: themes/luci-theme-material/ucode/template/themes/material/header.ut:79
  8159. #: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:55
  8160. #: themes/luci-theme-openwrt/ucode/template/themes/openwrt.org/header.ut:72
  8161. msgid ""
  8162. "There is no password set on this router. Please configure a root password to "
  8163. "protect the web interface."
  8164. msgstr ""
  8165. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:49
  8166. msgid "This IPv4 address of the relay"
  8167. msgstr ""
  8168. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1833
  8169. msgid "This authentication type is not applicable to the selected EAP method."
  8170. msgstr ""
  8171. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:58
  8172. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:56
  8173. msgid "This does not look like a valid PEM file"
  8174. msgstr ""
  8175. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:456
  8176. msgid ""
  8177. "This is a list of shell glob patterns for matching files and directories to "
  8178. "include during sysupgrade. Modified files in /etc/config/ and certain other "
  8179. "configurations are automatically preserved."
  8180. msgstr ""
  8181. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:81
  8182. msgid ""
  8183. "This is either the \"Update Key\" configured for the tunnel or the account "
  8184. "password if no update key has been configured"
  8185. msgstr ""
  8186. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:106
  8187. msgid "This is only used if no default route matches the destination gateway"
  8188. msgstr ""
  8189. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv_hardif.js:42
  8190. msgid ""
  8191. "This is the batman-adv device where you want to link the physical Device "
  8192. "from above to. If this list is empty, then you need to create one first. If "
  8193. "you want to route mesh traffic over a wired network device, then please "
  8194. "select it from the above Device selector. If you want to assign the batman-"
  8195. "adv interface to a Wi-fi mesh then do not select a Device in the Device "
  8196. "selector but rather go to the Wireless settings and select this Interface as "
  8197. "a network from there."
  8198. msgstr ""
  8199. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:116
  8200. msgid ""
  8201. "This is the content of /etc/rc.local. Insert your own commands here (in "
  8202. "front of 'exit 0') to execute them at the end of the boot process."
  8203. msgstr ""
  8204. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:54
  8205. msgid ""
  8206. "This is the local endpoint address assigned by the tunnel broker, it usually "
  8207. "ends with <code>...:2/64</code>"
  8208. msgstr ""
  8209. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:420
  8210. msgid "This is the only DHCP server in the local network."
  8211. msgstr ""
  8212. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:73
  8213. msgid "This is the plain username for logging into the account"
  8214. msgstr ""
  8215. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:57
  8216. msgid ""
  8217. "This is the prefix routed to you by the tunnel broker for use by clients"
  8218. msgstr ""
  8219. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/crontab.js:29
  8220. msgid "This is the system crontab in which scheduled tasks can be defined."
  8221. msgstr ""
  8222. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:50
  8223. msgid ""
  8224. "This is usually the address of the nearest PoP operated by the tunnel broker"
  8225. msgstr ""
  8226. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:65
  8227. msgid ""
  8228. "This list gives an overview over currently running system processes and "
  8229. "their status."
  8230. msgstr "רשימה זו מציגה סקירה של תהליכי המערכת הרצים כרגע ואת מצבם."
  8231. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:404
  8232. msgid "This option adds additional record types to the cache."
  8233. msgstr ""
  8234. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1787
  8235. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1845
  8236. msgid ""
  8237. "This option cannot be used because the ca-bundle package is not installed."
  8238. msgstr ""
  8239. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:323
  8240. msgid "This page displays the active connections via this device."
  8241. msgstr ""
  8242. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:315
  8243. msgid ""
  8244. "This page displays the bandwidth used for all available physical interfaces."
  8245. msgstr ""
  8246. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:342
  8247. msgid ""
  8248. "This page displays the wireless metrics, for each available radio interfaces."
  8249. msgstr ""
  8250. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1558
  8251. msgid "This prefix is randomly generated at first install."
  8252. msgstr ""
  8253. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:713
  8254. msgid "This prevents unreachable IPs in subnets not accessible to you."
  8255. msgstr ""
  8256. #: modules/luci-base/htdocs/luci-static/resources/form.js:2282
  8257. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:172
  8258. #: modules/luci-compat/luasrc/view/cbi/tsection.htm:32
  8259. msgid "This section contains no values yet"
  8260. msgstr "סעיף זה לא מכיל ערכים עדיין"
  8261. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:124
  8262. msgid "Time Synchronization"
  8263. msgstr "סנכרון זמן"
  8264. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1740
  8265. msgid "Time advertisement"
  8266. msgstr ""
  8267. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:713
  8268. msgid "Time in milliseconds"
  8269. msgstr ""
  8270. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:581
  8271. msgid "Time in seconds to spend in listening and learning states"
  8272. msgstr ""
  8273. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1241
  8274. msgid "Time interval for rekeying GTK"
  8275. msgstr ""
  8276. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1749
  8277. msgid "Time zone"
  8278. msgstr ""
  8279. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:15
  8280. msgid "Timed-out"
  8281. msgstr ""
  8282. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:717
  8283. msgid "Timeout in seconds"
  8284. msgstr ""
  8285. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:567
  8286. msgid "Timeout in seconds for learned MAC addresses in the forwarding database"
  8287. msgstr ""
  8288. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:586
  8289. msgid "Timeout in seconds until topology updates on link loss"
  8290. msgstr ""
  8291. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:145
  8292. msgid "Timezone"
  8293. msgstr "אזור זמן"
  8294. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:425
  8295. msgid ""
  8296. "To fully configure the local WireGuard interface from an existing (e.g. "
  8297. "provider supplied) configuration file, use the <strong><a class=\"full-"
  8298. "import\" href=\"#\">configuration import</a></strong> instead."
  8299. msgstr ""
  8300. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:402
  8301. msgid ""
  8302. "To restore configuration files, you can upload a previously generated backup "
  8303. "archive here. To reset the firmware to its initial state, click \"Perform "
  8304. "reset\" (only possible with squashfs images)."
  8305. msgstr ""
  8306. "על מנת לשחזר את קבצי ההגדרות, באפשרותך להעלות ארכיון גיבוי שנוצר לפני כן."
  8307. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1607
  8308. msgid "Tone"
  8309. msgstr ""
  8310. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:35
  8311. msgid "Total Available"
  8312. msgstr "סה\"כ פנוי"
  8313. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:347
  8314. msgid "Trace"
  8315. msgstr ""
  8316. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:110
  8317. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:111
  8318. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:121
  8319. msgid "Traceroute"
  8320. msgstr ""
  8321. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:126
  8322. msgid "Tracking Area Code"
  8323. msgstr ""
  8324. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:54
  8325. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:65
  8326. msgid "Traffic"
  8327. msgstr "תעבורה"
  8328. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:79
  8329. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:84
  8330. msgid "Traffic Class"
  8331. msgstr ""
  8332. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:528
  8333. msgid "Traffic filter chain \"%h\""
  8334. msgstr ""
  8335. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:466
  8336. msgctxt "nft counter"
  8337. msgid "Traffic matched by rule: %.1000mPackets, %.1024mBytes"
  8338. msgstr ""
  8339. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:390
  8340. msgid "Transfer"
  8341. msgstr "העברה"
  8342. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:777
  8343. msgid ""
  8344. "Transform replies which contain the specified addresses or subnets into "
  8345. "{nxdomain} responses."
  8346. msgstr ""
  8347. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:44
  8348. msgid "Transix (Japan only)"
  8349. msgstr ""
  8350. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:25
  8351. msgid "Transmit"
  8352. msgstr "שידור"
  8353. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:324
  8354. msgid "Transmit Hash Policy"
  8355. msgstr ""
  8356. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:248
  8357. msgid "Transmit dropped"
  8358. msgstr ""
  8359. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:247
  8360. msgid "Transmit errors"
  8361. msgstr ""
  8362. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:58
  8363. #, fuzzy
  8364. msgid "Transmitted Data"
  8365. msgstr "אנטנת שידור"
  8366. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:245
  8367. msgid "Transmitted bytes"
  8368. msgstr ""
  8369. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:246
  8370. msgid "Transmitted packets"
  8371. msgstr ""
  8372. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:79
  8373. msgctxt "nft @th,off,len"
  8374. msgid "Transport header bits %d-%d"
  8375. msgstr ""
  8376. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:59
  8377. msgctxt "nft th dport"
  8378. msgid "Transport header destination port"
  8379. msgstr ""
  8380. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:58
  8381. msgctxt "nft th sport"
  8382. msgid "Transport header source port"
  8383. msgstr ""
  8384. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:75
  8385. msgid "Trigger"
  8386. msgstr ""
  8387. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:20
  8388. msgid "Trigger Mode"
  8389. msgstr ""
  8390. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:69
  8391. msgid "Tunnel ID"
  8392. msgstr ""
  8393. #: modules/luci-base/htdocs/luci-static/resources/network.js:3039
  8394. #: modules/luci-compat/luasrc/model/network.lua:1431
  8395. msgid "Tunnel Interface"
  8396. msgstr ""
  8397. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:44
  8398. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:57
  8399. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/ipip6.js:58
  8400. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:76
  8401. msgid "Tunnel Link"
  8402. msgstr ""
  8403. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1492
  8404. msgid "Tunnel device"
  8405. msgstr ""
  8406. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:185
  8407. msgid "Tx-Power"
  8408. msgstr "עוצמת שידור"
  8409. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:45
  8410. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1523
  8411. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:169
  8412. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:43
  8413. msgid "Type"
  8414. msgstr ""
  8415. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:189
  8416. msgid "Type of service"
  8417. msgstr ""
  8418. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:56
  8419. msgctxt "nft udp dport"
  8420. msgid "UDP destination port"
  8421. msgstr ""
  8422. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:223
  8423. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:223
  8424. msgid ""
  8425. "UDP destination port number to use to connect to the remote VXLAN tunnel "
  8426. "endpoint"
  8427. msgstr ""
  8428. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:55
  8429. msgctxt "nft udp sport"
  8430. msgid "UDP source port"
  8431. msgstr ""
  8432. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:331
  8433. msgid "UDP:"
  8434. msgstr "UDP:"
  8435. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1557
  8436. msgid "ULA for IPv6 is analogous to IPv4 private network addressing."
  8437. msgstr ""
  8438. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:91
  8439. msgid "UMTS only"
  8440. msgstr ""
  8441. #: modules/luci-compat/luasrc/model/network/proto_3g.lua:10
  8442. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:43
  8443. msgid "UMTS/GPRS/EV-DO"
  8444. msgstr ""
  8445. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:138
  8446. msgid "URI"
  8447. msgstr ""
  8448. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:43
  8449. msgid "URI scheme %s not supported"
  8450. msgstr ""
  8451. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:255
  8452. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:359
  8453. msgid "UUID"
  8454. msgstr ""
  8455. #: modules/luci-base/htdocs/luci-static/resources/network.js:16
  8456. #: modules/luci-base/htdocs/luci-static/resources/network.js:17
  8457. #: modules/luci-compat/luasrc/model/network.lua:34
  8458. #: modules/luci-compat/luasrc/model/network.lua:35
  8459. msgid "Unable to determine device name"
  8460. msgstr ""
  8461. #: modules/luci-base/htdocs/luci-static/resources/network.js:18
  8462. #: modules/luci-compat/luasrc/model/network.lua:36
  8463. msgid "Unable to determine external IP address"
  8464. msgstr ""
  8465. #: modules/luci-base/htdocs/luci-static/resources/network.js:19
  8466. #: modules/luci-compat/luasrc/model/network.lua:37
  8467. msgid "Unable to determine upstream interface"
  8468. msgstr ""
  8469. #: modules/luci-base/ucode/template/error404.ut:12
  8470. msgid "Unable to dispatch"
  8471. msgstr ""
  8472. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/dmesg.js:15
  8473. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/syslog.js:18
  8474. msgid "Unable to load log data:"
  8475. msgstr ""
  8476. #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:54
  8477. #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:54
  8478. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:22
  8479. msgid "Unable to obtain client ID"
  8480. msgstr ""
  8481. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:221
  8482. msgid "Unable to obtain mount information"
  8483. msgstr ""
  8484. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:311
  8485. msgid "Unable to reset ip6tables counters: %s"
  8486. msgstr ""
  8487. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:309
  8488. msgid "Unable to reset iptables counters: %s"
  8489. msgstr ""
  8490. #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:64
  8491. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:7
  8492. msgid "Unable to resolve AFTR host name"
  8493. msgstr ""
  8494. #: modules/luci-base/htdocs/luci-static/resources/network.js:20
  8495. #: modules/luci-compat/luasrc/model/network.lua:38
  8496. msgid "Unable to resolve peer host name"
  8497. msgstr ""
  8498. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:317
  8499. msgid "Unable to restart firewall: %s"
  8500. msgstr ""
  8501. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/crontab.js:22
  8502. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:372
  8503. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:56
  8504. msgid "Unable to save contents: %s"
  8505. msgstr ""
  8506. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:14
  8507. msgid "Unable to set allowed mode list."
  8508. msgstr ""
  8509. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:17
  8510. msgid "Unable to set preferred mode."
  8511. msgstr ""
  8512. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:29
  8513. msgid "Unable to verify PIN"
  8514. msgstr ""
  8515. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1380
  8516. msgid "Unconfigure"
  8517. msgstr ""
  8518. #: protocols/luci-proto-xfrm/htdocs/luci-static/resources/protocol/xfrm.js:42
  8519. msgid "Underlying interface"
  8520. msgstr ""
  8521. #: protocols/luci-proto-unet/htdocs/luci-static/resources/protocol/unet.js:8
  8522. msgid "Unet"
  8523. msgstr ""
  8524. #: modules/luci-base/htdocs/luci-static/resources/fs.js:102
  8525. msgid "Unexpected reply data format"
  8526. msgstr ""
  8527. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1556
  8528. msgid ""
  8529. "Unique Local Address (%s) - prefix <code>fd00::/8</code> (the L bit is "
  8530. "always 1)."
  8531. msgstr ""
  8532. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:78
  8533. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:78
  8534. msgid "Units: seconds"
  8535. msgstr ""
  8536. #: modules/luci-base/htdocs/luci-static/resources/network.js:2092
  8537. #: modules/luci-base/htdocs/luci-static/resources/network.js:3913
  8538. #: modules/luci-compat/luasrc/model/network.lua:971
  8539. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:17
  8540. msgid "Unknown"
  8541. msgstr ""
  8542. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:12
  8543. msgid "Unknown and unsupported connection method."
  8544. msgstr ""
  8545. #: modules/luci-base/htdocs/luci-static/resources/network.js:2435
  8546. #: modules/luci-compat/luasrc/model/network.lua:1138
  8547. msgid "Unknown error (%s)"
  8548. msgstr ""
  8549. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:412
  8550. msgid "Unknown error code"
  8551. msgstr ""
  8552. #: modules/luci-base/htdocs/luci-static/resources/network.js:2089
  8553. #: modules/luci-base/htdocs/luci-static/resources/protocol/none.js:6
  8554. #: modules/luci-compat/luasrc/model/network.lua:965
  8555. msgid "Unmanaged"
  8556. msgstr ""
  8557. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:195
  8558. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:217
  8559. msgid "Unmount"
  8560. msgstr ""
  8561. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:370
  8562. msgctxt "Dnsmasq instance"
  8563. msgid "Unnamed instance #%d"
  8564. msgstr ""
  8565. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:121
  8566. msgid "Unnamed key"
  8567. msgstr ""
  8568. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4411
  8569. msgid "Unsaved Changes"
  8570. msgstr ""
  8571. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:410
  8572. msgid "Unspecified error"
  8573. msgstr ""
  8574. #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:67
  8575. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:9
  8576. msgid "Unsupported MAP type"
  8577. msgstr ""
  8578. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:37
  8579. msgid "Unsupported URI scheme in %s"
  8580. msgstr ""
  8581. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:69
  8582. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:31
  8583. msgid "Unsupported modem"
  8584. msgstr ""
  8585. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:116
  8586. msgid "Unsupported protocol"
  8587. msgstr ""
  8588. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:288
  8589. msgid "Unsupported protocol type."
  8590. msgstr ""
  8591. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:215
  8592. msgctxt "VLAN port state"
  8593. msgid "Untagged"
  8594. msgstr ""
  8595. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:520
  8596. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:97
  8597. msgid "Untitled peer"
  8598. msgstr ""
  8599. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:151
  8600. msgid "Up"
  8601. msgstr ""
  8602. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:416
  8603. msgid "Up Delay"
  8604. msgstr ""
  8605. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4299
  8606. msgid "Upload"
  8607. msgstr ""
  8608. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:443
  8609. msgid ""
  8610. "Upload a sysupgrade-compatible image here to replace the running firmware."
  8611. msgstr ""
  8612. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:138
  8613. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:169
  8614. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:414
  8615. msgid "Upload archive..."
  8616. msgstr ""
  8617. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2890
  8618. msgid "Upload file"
  8619. msgstr ""
  8620. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2865
  8621. msgid "Upload file…"
  8622. msgstr ""
  8623. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4217
  8624. msgid "Upload has been cancelled"
  8625. msgstr ""
  8626. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2812
  8627. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4287
  8628. msgid "Upload request failed: %s"
  8629. msgstr ""
  8630. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4210
  8631. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4260
  8632. msgid "Uploading file…"
  8633. msgstr ""
  8634. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:856
  8635. msgid ""
  8636. "Upon pressing \"Continue\", anonymous \"wifi-iface\" sections will be "
  8637. "assigned with a name in the form <em>wifinet#</em> and the network will be "
  8638. "restarted to apply the updated configuration."
  8639. msgstr ""
  8640. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:383
  8641. msgid ""
  8642. "Upon pressing \"Continue\", bridges configuration will be updated and the "
  8643. "network will be restarted to apply the updated configuration."
  8644. msgstr ""
  8645. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:417
  8646. msgid ""
  8647. "Upon pressing \"Continue\", ifname options will get renamed and the network "
  8648. "will be restarted to apply the updated configuration."
  8649. msgstr ""
  8650. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:84
  8651. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:62
  8652. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:142
  8653. msgid "Uptime"
  8654. msgstr ""
  8655. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:106
  8656. msgid "Use DHCP"
  8657. msgstr ""
  8658. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:295
  8659. msgid "Use DHCP advertised servers"
  8660. msgstr ""
  8661. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:167
  8662. msgid "Use DHCP gateway"
  8663. msgstr ""
  8664. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:115
  8665. msgid "Use DHCPv6"
  8666. msgstr ""
  8667. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1015
  8668. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:144
  8669. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:160
  8670. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:139
  8671. msgid "Use DNS servers advertised by peer"
  8672. msgstr ""
  8673. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:683
  8674. msgid "Use ISO/IEC 3166 alpha2 country codes."
  8675. msgstr ""
  8676. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:48
  8677. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:89
  8678. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:69
  8679. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6to4.js:53
  8680. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:69
  8681. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/ipip6.js:78
  8682. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:84
  8683. msgid "Use MTU on tunnel interface"
  8684. msgstr ""
  8685. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:85
  8686. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:65
  8687. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6to4.js:49
  8688. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:80
  8689. msgid "Use TTL on tunnel interface"
  8690. msgstr ""
  8691. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:327
  8692. msgid "Use XOR of hardware MAC addresses (layer2)"
  8693. msgstr ""
  8694. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:328
  8695. msgid "Use XOR of hardware MAC addresses and IP addresses (layer2+3)"
  8696. msgstr ""
  8697. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:330
  8698. msgid ""
  8699. "Use XOR of hardware MAC addresses and IP addresses, rely on skb_flow_dissect "
  8700. "(encap2+3)"
  8701. msgstr ""
  8702. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:295
  8703. msgid "Use as external overlay (/overlay)"
  8704. msgstr ""
  8705. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:294
  8706. msgid "Use as root filesystem (/)"
  8707. msgstr ""
  8708. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34
  8709. msgid "Use broadcast flag"
  8710. msgstr "השתמש בדגל broadcast"
  8711. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1315
  8712. msgid "Use builtin IPv6-management"
  8713. msgstr ""
  8714. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1019
  8715. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:148
  8716. msgid "Use custom DNS servers"
  8717. msgstr "השתמש בשרתי DNS מותאמים אישית"
  8718. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1011
  8719. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:133
  8720. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:156
  8721. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:128
  8722. msgid "Use default gateway"
  8723. msgstr ""
  8724. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1033
  8725. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/ipip6.js:73
  8726. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:138
  8727. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:164
  8728. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:133
  8729. msgid "Use gateway metric"
  8730. msgstr ""
  8731. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:88
  8732. msgid "Use legacy MAP"
  8733. msgstr ""
  8734. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:88
  8735. msgid ""
  8736. "Use legacy MAP interface identifier format (draft-ietf-softwire-map-00) "
  8737. "instead of RFC7597"
  8738. msgstr ""
  8739. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:179
  8740. msgid "Use routing table"
  8741. msgstr "השתמש בטבלת ניתוב"
  8742. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:63
  8743. msgctxt "nft nat flag persistent"
  8744. msgid "Use same source and destination for each connection"
  8745. msgstr ""
  8746. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1780
  8747. msgid "Use system certificates"
  8748. msgstr ""
  8749. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1838
  8750. msgid "Use system certificates for inner-tunnel"
  8751. msgstr ""
  8752. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1163
  8753. msgid ""
  8754. "Use the <em>Add</em> Button to add a new lease entry. The <em>MAC address</"
  8755. "em> identifies the host, the <em>IPv4 address</em> specifies the fixed "
  8756. "address to use, and the <em>Hostname</em> is assigned as a symbolic name to "
  8757. "the requesting host. The optional <em>Lease time</em> can be used to set non-"
  8758. "standard host-specific lease time, e.g. 12h, 3d or infinite."
  8759. msgstr ""
  8760. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:329
  8761. msgid "Use upper layer protocol information (layer3+4)"
  8762. msgstr ""
  8763. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:331
  8764. msgid ""
  8765. "Use upper layer protocol information, rely on skb_flow_dissect (encap3+4)"
  8766. msgstr ""
  8767. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:625
  8768. msgid "Use {etc_ethers}"
  8769. msgstr ""
  8770. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:36
  8771. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:194
  8772. msgid "Used"
  8773. msgstr ""
  8774. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1625
  8775. msgid "Used Key Slot"
  8776. msgstr ""
  8777. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1668
  8778. msgid ""
  8779. "Used for two different purposes: RADIUS NAS ID and 802.11r R0KH-ID. Not "
  8780. "needed with normal WPA(2)-PSK."
  8781. msgstr ""
  8782. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:798
  8783. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:806
  8784. msgid "Useful for systems behind firewalls."
  8785. msgstr ""
  8786. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:157
  8787. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:106
  8788. msgid "User certificate (PEM encoded)"
  8789. msgstr ""
  8790. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:194
  8791. msgid "User identifier"
  8792. msgstr ""
  8793. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:169
  8794. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:118
  8795. msgid "User key (PEM encoded)"
  8796. msgstr ""
  8797. #: modules/luci-base/ucode/template/sysauth.ut:23
  8798. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:146
  8799. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:101
  8800. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:56
  8801. #: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:13
  8802. msgid "Username"
  8803. msgstr "שם משתמש"
  8804. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:131
  8805. msgid "Utilize flow table <strong>%h</strong>"
  8806. msgstr ""
  8807. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1675
  8808. msgid "VC-Mux"
  8809. msgstr ""
  8810. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1623
  8811. msgid "VDSL"
  8812. msgstr ""
  8813. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:489
  8814. msgctxt "MACVLAN mode"
  8815. msgid "VEPA (Virtual Ethernet Port Aggregator)"
  8816. msgstr ""
  8817. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:400
  8818. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1486
  8819. msgid "VLAN (802.1ad)"
  8820. msgstr ""
  8821. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:399
  8822. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1483
  8823. msgid "VLAN (802.1q)"
  8824. msgstr ""
  8825. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:468
  8826. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:931
  8827. msgid "VLAN ID"
  8828. msgstr ""
  8829. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:173
  8830. msgid "VLANs on %q"
  8831. msgstr ""
  8832. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:128
  8833. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:246
  8834. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:128
  8835. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:246
  8836. msgid "VNI"
  8837. msgstr ""
  8838. #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:54
  8839. msgid "VPN"
  8840. msgstr ""
  8841. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:42
  8842. msgid "VPN Local address"
  8843. msgstr ""
  8844. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:46
  8845. msgid "VPN Local port"
  8846. msgstr ""
  8847. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:97
  8848. msgid "VPN Protocol"
  8849. msgstr ""
  8850. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:106
  8851. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:93
  8852. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:58
  8853. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:39
  8854. msgid "VPN Server"
  8855. msgstr "שרת VPN"
  8856. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:152
  8857. msgid "VPN Server certificate's SHA256 hash"
  8858. msgstr ""
  8859. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:96
  8860. msgid "VPN Server port"
  8861. msgstr ""
  8862. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:144
  8863. msgid "VPN Server's certificate SHA1 hash"
  8864. msgstr ""
  8865. #: modules/luci-compat/luasrc/model/network/proto_vpnc.lua:9
  8866. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:9
  8867. msgid "VPNC (CISCO 3000 (and others) VPN)"
  8868. msgstr ""
  8869. #: protocols/luci-proto-vti/htdocs/luci-static/resources/protocol/vti.js:10
  8870. msgid "VTI"
  8871. msgstr ""
  8872. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:11
  8873. msgid "VXLAN (RFC7348)"
  8874. msgstr ""
  8875. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:127
  8876. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:127
  8877. msgid "VXLAN network identifier"
  8878. msgstr ""
  8879. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:11
  8880. msgid "VXLANv6 (RFC7348)"
  8881. msgstr ""
  8882. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:719
  8883. msgid ""
  8884. "Validate DNS replies and cache DNSSEC data, requires upstream to support "
  8885. "DNSSEC."
  8886. msgstr ""
  8887. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1780
  8888. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1838
  8889. msgid ""
  8890. "Validate server certificate using built-in system CA bundle,<br />requires "
  8891. "the \"ca-bundle\" package"
  8892. msgstr ""
  8893. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:393
  8894. msgid "Validation for all slaves"
  8895. msgstr ""
  8896. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:391
  8897. msgid "Validation only for active slave"
  8898. msgstr ""
  8899. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:392
  8900. msgid "Validation only for backup slaves"
  8901. msgstr ""
  8902. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:73
  8903. msgid "Vendor"
  8904. msgstr ""
  8905. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:40
  8906. msgid "Vendor Class to send when requesting DHCP"
  8907. msgstr ""
  8908. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:724
  8909. msgid "Verify unsigned domain responses really come from unsigned domains."
  8910. msgstr ""
  8911. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:198
  8912. msgid "Verifying the uploaded image file."
  8913. msgstr ""
  8914. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1018
  8915. msgid "Very High"
  8916. msgstr ""
  8917. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:229
  8918. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:229
  8919. msgid "Via"
  8920. msgstr ""
  8921. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:241
  8922. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:241
  8923. msgid "Via shall be specified when %s is a multicast address"
  8924. msgstr ""
  8925. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:402
  8926. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1498
  8927. msgid "Virtual Ethernet"
  8928. msgstr ""
  8929. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:60
  8930. msgid "Virtual dynamic interface"
  8931. msgstr ""
  8932. #: modules/luci-base/htdocs/luci-static/resources/network.js:3909
  8933. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1168
  8934. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1169
  8935. msgid "WDS"
  8936. msgstr ""
  8937. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1369
  8938. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1461
  8939. msgid "WEP Open System"
  8940. msgstr ""
  8941. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1370
  8942. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1462
  8943. msgid "WEP Shared Key"
  8944. msgstr ""
  8945. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2273
  8946. msgid "WEP passphrase"
  8947. msgstr "סיסמת WEP"
  8948. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1050
  8949. msgid "WLAN roaming"
  8950. msgstr ""
  8951. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1206
  8952. msgid "WMM Mode"
  8953. msgstr ""
  8954. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1753
  8955. msgid "WNM Sleep Mode"
  8956. msgstr ""
  8957. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1757
  8958. msgid "WNM Sleep Mode Fixes"
  8959. msgstr ""
  8960. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2273
  8961. msgid "WPA passphrase"
  8962. msgstr "סיסמת WPA"
  8963. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1360
  8964. msgid ""
  8965. "WPA-Encryption requires wpa_supplicant (for client mode) or hostapd (for AP "
  8966. "and ad-hoc mode) to be installed."
  8967. msgstr ""
  8968. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:153
  8969. msgid "WPS status"
  8970. msgstr ""
  8971. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:47
  8972. msgid "Waiting for device..."
  8973. msgstr ""
  8974. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:344
  8975. msgid "Warn"
  8976. msgstr ""
  8977. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:189
  8978. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:199
  8979. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:157
  8980. msgid "Warning"
  8981. msgstr "אזהרה"
  8982. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:26
  8983. msgid "Warning: There are unsaved changes that will get lost on reboot!"
  8984. msgstr ""
  8985. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:37
  8986. msgid "Weak"
  8987. msgstr ""
  8988. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:974
  8989. msgid "Weight"
  8990. msgstr ""
  8991. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1273
  8992. msgid ""
  8993. "When a host matches an entry then the special tag %s is set. Use %s to match "
  8994. "all known hosts."
  8995. msgstr ""
  8996. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1105
  8997. msgid ""
  8998. "When delegating prefixes to multiple downstreams, interfaces with a higher "
  8999. "preference value are considered first when allocating subnets."
  9000. msgstr ""
  9001. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:105
  9002. msgid ""
  9003. "When enabled network coding increases the WiFi throughput by combining "
  9004. "multiple frames into a single frame, thus reducing the needed air time."
  9005. msgstr ""
  9006. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:76
  9007. msgid ""
  9008. "When enabled the distributed ARP table forms a mesh-wide ARP cache that "
  9009. "helps non-mesh clients to get ARP responses much more reliably and without "
  9010. "much delay."
  9011. msgstr ""
  9012. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:115
  9013. msgid ""
  9014. "When enabled, gateway is on-link even if the gateway does not match any "
  9015. "interface prefix"
  9016. msgstr ""
  9017. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:707
  9018. msgid ""
  9019. "When enabled, new ARP table entries are added from received gratuitous ARP "
  9020. "requests or replies, otherwise only preexisting table entries are updated, "
  9021. "but no new hosts are learned."
  9022. msgstr ""
  9023. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/heartbeat.js:14
  9024. msgid ""
  9025. "When inverted, the LED is continuously lit and flickers instead of it being "
  9026. "off by default and blinking on system activity."
  9027. msgstr ""
  9028. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:66
  9029. msgid ""
  9030. "When running the mesh over multiple WiFi interfaces per node batman-adv is "
  9031. "capable of optimizing the traffic flow to gain maximum performance."
  9032. msgstr ""
  9033. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1691
  9034. msgid ""
  9035. "When using a PSK, the PMK can be automatically generated. When enabled, the "
  9036. "R0/R1 key options below are not applied. Disable this to use the R0 and R1 "
  9037. "key options."
  9038. msgstr ""
  9039. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1206
  9040. msgid ""
  9041. "Where Wi-Fi Multimedia (WMM) Mode QoS is disabled, clients may be limited to "
  9042. "802.11a/802.11g rates."
  9043. msgstr ""
  9044. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1202
  9045. msgid ""
  9046. "Where the ESSID is hidden, clients may fail to roam and airtime efficiency "
  9047. "may be significantly reduced."
  9048. msgstr ""
  9049. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:178
  9050. msgid "Which is used to access this %s"
  9051. msgstr ""
  9052. #: modules/luci-compat/luasrc/view/cbi/wireless_modefreq.htm:194
  9053. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:580
  9054. msgid "Width"
  9055. msgstr ""
  9056. #: protocols/luci-proto-wireguard/root/usr/share/luci/menu.d/luci-proto-wireguard.json:3
  9057. msgid "WireGuard"
  9058. msgstr "WireGuard"
  9059. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:120
  9060. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:165
  9061. msgid "WireGuard Status"
  9062. msgstr "מצב WireGuard"
  9063. #: modules/luci-compat/luasrc/model/network/proto_wireguard.lua:9
  9064. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:105
  9065. msgid "WireGuard VPN"
  9066. msgstr ""
  9067. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:527
  9068. msgid "WireGuard peer is disabled"
  9069. msgstr ""
  9070. #: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:17
  9071. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:10
  9072. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:341
  9073. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:148
  9074. msgid "Wireless"
  9075. msgstr ""
  9076. #: modules/luci-base/htdocs/luci-static/resources/network.js:3026
  9077. #: modules/luci-compat/luasrc/model/network.lua:1419
  9078. msgid "Wireless Adapter"
  9079. msgstr ""
  9080. #: modules/luci-base/htdocs/luci-static/resources/network.js:3005
  9081. #: modules/luci-base/htdocs/luci-static/resources/network.js:4332
  9082. #: modules/luci-compat/luasrc/model/network.lua:1405
  9083. #: modules/luci-compat/luasrc/model/network.lua:1868
  9084. msgid "Wireless Network"
  9085. msgstr ""
  9086. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:872
  9087. msgid "Wireless Overview"
  9088. msgstr ""
  9089. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1047
  9090. msgid "Wireless Security"
  9091. msgstr ""
  9092. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:854
  9093. msgid "Wireless configuration migration"
  9094. msgstr ""
  9095. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:153
  9096. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:193
  9097. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:152
  9098. msgid "Wireless is disabled"
  9099. msgstr ""
  9100. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:153
  9101. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:193
  9102. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:152
  9103. msgid "Wireless is not associated"
  9104. msgstr ""
  9105. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:996
  9106. msgid "Wireless network is disabled"
  9107. msgstr "רשת אלחוטית מנוטרלת"
  9108. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:996
  9109. msgid "Wireless network is enabled"
  9110. msgstr "רשת אלחוטית מאופשרת"
  9111. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1935
  9112. msgid "Workaround mode can only be used when acting as an access point."
  9113. msgstr ""
  9114. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:437
  9115. msgid "Write received DNS queries to syslog."
  9116. msgstr ""
  9117. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:181
  9118. msgid "Write system log to file"
  9119. msgstr ""
  9120. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:211
  9121. msgid "XOR policy (balance-xor, 2)"
  9122. msgstr ""
  9123. #: modules/luci-base/htdocs/luci-static/resources/form.js:4181
  9124. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:302
  9125. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:350
  9126. msgid "Yes"
  9127. msgstr ""
  9128. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:310
  9129. msgid "Yes (none, 0)"
  9130. msgstr ""
  9131. #: protocols/luci-proto-yggdrasil/htdocs/luci-static/resources/protocol/yggdrasil.js:205
  9132. msgid "Yggdrasil Network"
  9133. msgstr ""
  9134. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:163
  9135. msgid ""
  9136. "You appear to be currently connected to the device via the \"%h\" interface. "
  9137. "Do you really want to shut down the interface?"
  9138. msgstr ""
  9139. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:112
  9140. msgid ""
  9141. "You can enable or disable installed init scripts here. Changes will be "
  9142. "applied after a device reboot.<br /><strong>Warning: If you disable "
  9143. "essential init scripts like \"network\", your device might become "
  9144. "inaccessible!</strong>"
  9145. msgstr ""
  9146. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:944
  9147. msgid "You may add multiple records for the same Target."
  9148. msgstr ""
  9149. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:981
  9150. msgid "You may add multiple records for the same domain."
  9151. msgstr ""
  9152. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:559
  9153. msgid "You may add multiple unique Relay To on the same Listen addr."
  9154. msgstr ""
  9155. #: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:79
  9156. #: themes/luci-theme-material/ucode/template/themes/material/header.ut:99
  9157. #: themes/luci-theme-openwrt/ucode/template/themes/openwrt.org/header.ut:65
  9158. msgid ""
  9159. "You must enable JavaScript in your browser or LuCI will not work properly."
  9160. msgstr "אתה חייב להפעיל את JavaScript בדפדפן שלך; אחרת, LuCI לא יפעל כראוי."
  9161. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:120
  9162. msgid ""
  9163. "You must select a primary interface which is included in selected slave "
  9164. "interfaces!"
  9165. msgstr ""
  9166. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:101
  9167. msgid ""
  9168. "You must select at least one ARP IP target if ARP monitoring is selected!"
  9169. msgstr ""
  9170. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:213
  9171. msgid "ZRam Compression Algorithm"
  9172. msgstr ""
  9173. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:206
  9174. msgid "ZRam Settings"
  9175. msgstr ""
  9176. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:208
  9177. msgid "ZRam Size"
  9178. msgstr ""
  9179. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:943
  9180. msgid "_proto: _tcp, _udp, _sctp, _quic, … ."
  9181. msgstr ""
  9182. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:942
  9183. msgid ""
  9184. "_service: _sip, _ldap, _imap, _stun, _xmpp-client, … . (Note: while _http is "
  9185. "possible, no browsers support SRV records.)"
  9186. msgstr ""
  9187. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:794
  9188. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:158
  9189. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:169
  9190. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:105
  9191. msgid "any"
  9192. msgstr "כלשהו"
  9193. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1608
  9194. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1616
  9195. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1621
  9196. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:87
  9197. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:102
  9198. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:139
  9199. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1306
  9200. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:83
  9201. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:48
  9202. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:51
  9203. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:89
  9204. msgid "auto"
  9205. msgstr "אוטומטי"
  9206. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:157
  9207. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:800
  9208. msgid "automatic"
  9209. msgstr ""
  9210. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:198
  9211. msgid "automatic (disabled)"
  9212. msgstr ""
  9213. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:198
  9214. msgid "automatic (enabled)"
  9215. msgstr ""
  9216. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:82
  9217. msgid "baseT"
  9218. msgstr ""
  9219. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1681
  9220. msgid "bridged"
  9221. msgstr ""
  9222. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:155
  9223. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:418
  9224. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:35
  9225. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:99
  9226. #: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:31
  9227. msgid "create"
  9228. msgstr ""
  9229. #: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:69
  9230. msgid "create:"
  9231. msgstr ""
  9232. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:165
  9233. msgid ""
  9234. "custom: Use different options when establishing a connection (these options "
  9235. "are prefixed with %s)."
  9236. msgstr ""
  9237. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:55
  9238. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:57
  9239. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:58
  9240. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:62
  9241. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:63
  9242. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:83
  9243. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:84
  9244. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:87
  9245. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:185
  9246. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:186
  9247. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:187
  9248. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:41
  9249. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:42
  9250. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:276
  9251. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:278
  9252. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:279
  9253. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:283
  9254. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:284
  9255. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:263
  9256. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:266
  9257. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:269
  9258. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:273
  9259. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:276
  9260. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:279
  9261. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:306
  9262. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:307
  9263. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:308
  9264. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:312
  9265. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:313
  9266. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:314
  9267. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:316
  9268. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:317
  9269. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:318
  9270. msgid "dBm"
  9271. msgstr ""
  9272. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:73
  9273. msgctxt "nft unit"
  9274. msgid "day"
  9275. msgstr ""
  9276. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:164
  9277. msgid "default: Use the configuration options above (APN, IP Type, ...)."
  9278. msgstr ""
  9279. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1149
  9280. msgid "disable"
  9281. msgstr "בטל"
  9282. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:157
  9283. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:681
  9284. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:788
  9285. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:913
  9286. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:979
  9287. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1057
  9288. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:91
  9289. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:25
  9290. msgid "disabled"
  9291. msgstr ""
  9292. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:20
  9293. msgctxt "DHCPv6 address request mode"
  9294. msgid "disabled"
  9295. msgstr ""
  9296. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:637
  9297. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:671
  9298. msgid "driver default"
  9299. msgstr ""
  9300. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1229
  9301. msgid "driver default (%s)"
  9302. msgstr ""
  9303. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:70
  9304. msgid "e.g: --proxy 10.10.10.10"
  9305. msgstr ""
  9306. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:72
  9307. msgid "e.g: dump"
  9308. msgstr ""
  9309. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:157
  9310. msgid "enabled"
  9311. msgstr ""
  9312. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:747
  9313. msgid "enabled (default)"
  9314. msgstr ""
  9315. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:60
  9316. msgctxt "WireGuard keep alive interval"
  9317. msgid "every %ds"
  9318. msgstr ""
  9319. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1318
  9320. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1348
  9321. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:101
  9322. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:148
  9323. msgid "expired"
  9324. msgstr ""
  9325. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:19
  9326. msgctxt "DHCPv6 address request mode"
  9327. msgid "force"
  9328. msgstr ""
  9329. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:804
  9330. msgid "forced"
  9331. msgstr ""
  9332. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:94
  9333. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:205
  9334. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:61
  9335. msgid "forward"
  9336. msgstr "קדימה"
  9337. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:98
  9338. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:84
  9339. msgid "full-duplex"
  9340. msgstr ""
  9341. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:98
  9342. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:84
  9343. msgid "half-duplex"
  9344. msgstr ""
  9345. #: modules/luci-base/htdocs/luci-static/resources/validation.js:623
  9346. msgid "hexadecimal encoded value"
  9347. msgstr ""
  9348. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2046
  9349. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:353
  9350. msgid "hidden"
  9351. msgstr ""
  9352. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:74
  9353. msgctxt "nft unit"
  9354. msgid "hour"
  9355. msgstr ""
  9356. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:794
  9357. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:919
  9358. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:983
  9359. msgid "hybrid mode"
  9360. msgstr ""
  9361. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:65
  9362. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/ipip6.js:66
  9363. msgid "ignore"
  9364. msgstr ""
  9365. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1252
  9366. msgid "infinite (lease does not expire)"
  9367. msgstr ""
  9368. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:78
  9369. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:201
  9370. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:46
  9371. msgid "input"
  9372. msgstr "קלט"
  9373. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1528
  9374. msgid "integer"
  9375. msgstr ""
  9376. #: modules/luci-base/htdocs/luci-static/resources/validation.js:440
  9377. msgid "key between 8 and 63 characters"
  9378. msgstr ""
  9379. #: modules/luci-base/htdocs/luci-static/resources/validation.js:452
  9380. msgid "key with either 5 or 13 characters"
  9381. msgstr ""
  9382. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1276
  9383. msgid "known"
  9384. msgstr ""
  9385. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1278
  9386. msgid "known-othernet (on different subnet)"
  9387. msgstr ""
  9388. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:111
  9389. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:111
  9390. msgid "l2miss: Layer 2 miss"
  9391. msgstr ""
  9392. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:117
  9393. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:117
  9394. msgid "l3miss: Layer 3 miss"
  9395. msgstr ""
  9396. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:818
  9397. msgid "managed config (M)"
  9398. msgstr ""
  9399. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1471
  9400. msgid "medium security"
  9401. msgstr ""
  9402. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:75
  9403. msgctxt "nft unit"
  9404. msgid "minute"
  9405. msgstr ""
  9406. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1696
  9407. msgid "minutes"
  9408. msgstr ""
  9409. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:822
  9410. msgid "mobile home agent (H)"
  9411. msgstr ""
  9412. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:428
  9413. msgid "netif_carrier_ok()"
  9414. msgstr ""
  9415. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:47
  9416. msgid "no"
  9417. msgstr "לא"
  9418. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:104
  9419. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:76
  9420. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:232
  9421. msgid "no link"
  9422. msgstr ""
  9423. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1229
  9424. msgid "no override"
  9425. msgstr ""
  9426. #: modules/luci-base/htdocs/luci-static/resources/form.js:2271
  9427. #: modules/luci-base/htdocs/luci-static/resources/validation.js:72
  9428. msgid "non-empty value"
  9429. msgstr ""
  9430. #: modules/luci-base/htdocs/luci-static/resources/form.js:3382
  9431. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:825
  9432. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:166
  9433. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:39
  9434. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:56
  9435. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:60
  9436. msgid "none"
  9437. msgstr "ללא"
  9438. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:163
  9439. msgid "none: Do not set an initial EPS bearer (default behaviour)"
  9440. msgstr ""
  9441. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:41
  9442. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:55
  9443. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:69
  9444. msgid "not present"
  9445. msgstr ""
  9446. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1528
  9447. msgid "octet string"
  9448. msgstr ""
  9449. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:746
  9450. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:349
  9451. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1026
  9452. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1030
  9453. msgid "off"
  9454. msgstr "כבוי"
  9455. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:802
  9456. msgid "on available prefix"
  9457. msgstr ""
  9458. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1472
  9459. msgid "open network"
  9460. msgstr ""
  9461. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:820
  9462. msgid "other config (O)"
  9463. msgstr ""
  9464. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:78
  9465. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:46
  9466. msgid "output"
  9467. msgstr ""
  9468. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:28
  9469. msgid "over a day ago"
  9470. msgstr "לפני למעלה מיום"
  9471. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:69
  9472. msgctxt "nft unit"
  9473. msgid "packets"
  9474. msgstr ""
  9475. #: modules/luci-base/htdocs/luci-static/resources/validation.js:265
  9476. msgid "positive decimal value"
  9477. msgstr ""
  9478. #: modules/luci-base/htdocs/luci-static/resources/validation.js:257
  9479. msgid "positive integer value"
  9480. msgstr ""
  9481. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:164
  9482. msgid "random"
  9483. msgstr ""
  9484. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1230
  9485. msgid "randomly generated"
  9486. msgstr ""
  9487. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:51
  9488. msgid ""
  9489. "reduces overhead by collecting and aggregating originator messages in a "
  9490. "single packet rather than many small ones"
  9491. msgstr ""
  9492. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:792
  9493. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:917
  9494. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:981
  9495. msgid "relay mode"
  9496. msgstr ""
  9497. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1682
  9498. msgid "routed"
  9499. msgstr "מנותב"
  9500. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1241
  9501. msgid "sec"
  9502. msgstr ""
  9503. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:790
  9504. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:915
  9505. msgid "server mode"
  9506. msgstr ""
  9507. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:58
  9508. msgid "sstpc Log-level"
  9509. msgstr ""
  9510. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:466
  9511. msgid "stderr"
  9512. msgstr ""
  9513. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1528
  9514. msgid "string (UTF-8)"
  9515. msgstr ""
  9516. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1470
  9517. msgid "strong security"
  9518. msgstr ""
  9519. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:354
  9520. msgid "tagged"
  9521. msgstr "מתויג"
  9522. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:246
  9523. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:246
  9524. msgid ""
  9525. "the VXLAN Network Identifier (or VXLAN Segment ID) to use to connect to the "
  9526. "remote VXLAN tunnel endpoint"
  9527. msgstr ""
  9528. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:251
  9529. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:251
  9530. msgid ""
  9531. "the source VNI Network Identifier (or VXLAN Segment ID) this entry belongs "
  9532. "to. Used only when the VXLAN device is in external or collect metadata mode"
  9533. msgstr ""
  9534. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1679
  9535. msgid "time units (TUs / 1.024 ms) [1000-65535]"
  9536. msgstr ""
  9537. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:18
  9538. msgctxt "DHCPv6 address request mode"
  9539. msgid "try"
  9540. msgstr ""
  9541. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/uhttpd.js:9
  9542. msgid ""
  9543. "uHTTPd offers <abbr title=\"Hypertext Transfer Protocol\">HTTP</abbr> or "
  9544. "<abbr title=\"Hypertext Transfer Protocol Secure\">HTTPS</abbr> network "
  9545. "access."
  9546. msgstr ""
  9547. #: modules/luci-base/htdocs/luci-static/resources/validation.js:613
  9548. msgid "unique value"
  9549. msgstr "ערך יחודי"
  9550. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:652
  9551. msgid "unknown"
  9552. msgstr "לא ידוע"
  9553. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:28
  9554. msgid "unknown version"
  9555. msgstr "גרסה לא ידועה"
  9556. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1316
  9557. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1346
  9558. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:99
  9559. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:146
  9560. msgid "unlimited"
  9561. msgstr "ללא הגבלה"
  9562. #: modules/luci-base/htdocs/luci-static/resources/form.js:3747
  9563. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:85
  9564. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:147
  9565. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:382
  9566. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:409
  9567. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:445
  9568. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:482
  9569. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:578
  9570. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:53
  9571. #: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:38
  9572. msgid "unspecified"
  9573. msgstr "לא מוגדר"
  9574. #: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:71
  9575. msgid "unspecified -or- create:"
  9576. msgstr "לא מוגדר -או- ליצור:"
  9577. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:352
  9578. msgid "untagged"
  9579. msgstr "לא מתויג"
  9580. #: modules/luci-base/htdocs/luci-static/resources/validation.js:270
  9581. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:192
  9582. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:203
  9583. msgid "valid IP address"
  9584. msgstr "כתובת IP תקפה"
  9585. #: modules/luci-base/htdocs/luci-static/resources/validation.js:270
  9586. msgid "valid IP address or prefix"
  9587. msgstr "כתובת או קידומת IP תקפה"
  9588. #: modules/luci-base/htdocs/luci-static/resources/validation.js:351
  9589. msgid "valid IP address range"
  9590. msgstr ""
  9591. #: modules/luci-base/htdocs/luci-static/resources/validation.js:307
  9592. msgid "valid IPv4 CIDR"
  9593. msgstr ""
  9594. #: modules/luci-base/htdocs/luci-static/resources/validation.js:278
  9595. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:196
  9596. msgid "valid IPv4 address"
  9597. msgstr ""
  9598. #: modules/luci-base/htdocs/luci-static/resources/validation.js:278
  9599. msgid "valid IPv4 address or network"
  9600. msgstr ""
  9601. #: modules/luci-base/htdocs/luci-static/resources/validation.js:357
  9602. msgid "valid IPv4 address range"
  9603. msgstr ""
  9604. #: modules/luci-base/htdocs/luci-static/resources/validation.js:419
  9605. msgid "valid IPv4 address:port"
  9606. msgstr ""
  9607. #: modules/luci-base/htdocs/luci-static/resources/validation.js:341
  9608. msgid "valid IPv4 network"
  9609. msgstr ""
  9610. #: modules/luci-base/htdocs/luci-static/resources/validation.js:301
  9611. msgid "valid IPv4 or IPv6 CIDR"
  9612. msgstr ""
  9613. #: modules/luci-base/htdocs/luci-static/resources/validation.js:291
  9614. msgid "valid IPv4 prefix value (0-32)"
  9615. msgstr ""
  9616. #: modules/luci-base/htdocs/luci-static/resources/validation.js:313
  9617. msgid "valid IPv6 CIDR"
  9618. msgstr ""
  9619. #: modules/luci-base/htdocs/luci-static/resources/validation.js:286
  9620. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:200
  9621. msgid "valid IPv6 address"
  9622. msgstr ""
  9623. #: modules/luci-base/htdocs/luci-static/resources/validation.js:286
  9624. msgid "valid IPv6 address or prefix"
  9625. msgstr ""
  9626. #: modules/luci-base/htdocs/luci-static/resources/validation.js:363
  9627. msgid "valid IPv6 address range"
  9628. msgstr ""
  9629. #: modules/luci-base/htdocs/luci-static/resources/validation.js:331
  9630. msgid "valid IPv6 host id"
  9631. msgstr ""
  9632. #: modules/luci-base/htdocs/luci-static/resources/validation.js:346
  9633. msgid "valid IPv6 network"
  9634. msgstr ""
  9635. #: modules/luci-base/htdocs/luci-static/resources/validation.js:296
  9636. msgid "valid IPv6 prefix value (0-128)"
  9637. msgstr ""
  9638. #: modules/luci-base/htdocs/luci-static/resources/validation.js:385
  9639. msgid "valid MAC address"
  9640. msgstr ""
  9641. #: modules/luci-base/htdocs/luci-static/resources/validation.js:456
  9642. msgid "valid UCI identifier"
  9643. msgstr ""
  9644. #: modules/luci-base/htdocs/luci-static/resources/validation.js:407
  9645. msgid "valid UCI identifier, hostname or IP address range"
  9646. msgstr ""
  9647. #: modules/luci-base/htdocs/luci-static/resources/validation.js:428
  9648. #: modules/luci-base/htdocs/luci-static/resources/validation.js:431
  9649. msgid "valid address:port"
  9650. msgstr ""
  9651. #: modules/luci-base/htdocs/luci-static/resources/validation.js:587
  9652. #: modules/luci-base/htdocs/luci-static/resources/validation.js:591
  9653. msgid "valid date (YYYY-MM-DD)"
  9654. msgstr ""
  9655. #: modules/luci-base/htdocs/luci-static/resources/validation.js:261
  9656. msgid "valid decimal value"
  9657. msgstr ""
  9658. #: modules/luci-base/htdocs/luci-static/resources/validation.js:450
  9659. msgid "valid hexadecimal WEP key"
  9660. msgstr ""
  9661. #: modules/luci-base/htdocs/luci-static/resources/validation.js:438
  9662. msgid "valid hexadecimal WPA key"
  9663. msgstr ""
  9664. #: modules/luci-base/htdocs/luci-static/resources/validation.js:413
  9665. msgid "valid host:port"
  9666. msgstr ""
  9667. #: modules/luci-base/htdocs/luci-static/resources/validation.js:400
  9668. #: modules/luci-base/htdocs/luci-static/resources/validation.js:402
  9669. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:142
  9670. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:148
  9671. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:176
  9672. msgid "valid hostname"
  9673. msgstr ""
  9674. #: modules/luci-base/htdocs/luci-static/resources/validation.js:390
  9675. msgid "valid hostname or IP address"
  9676. msgstr ""
  9677. #: modules/luci-base/htdocs/luci-static/resources/validation.js:253
  9678. msgid "valid integer value"
  9679. msgstr ""
  9680. #: modules/luci-base/htdocs/luci-static/resources/validation.js:385
  9681. msgid "valid multicast MAC address"
  9682. msgstr ""
  9683. #: modules/luci-base/htdocs/luci-static/resources/validation.js:465
  9684. msgid ""
  9685. "valid network device name between 1 and 15 characters not containing \":\", "
  9686. "\"/\", \"%\" or spaces"
  9687. msgstr ""
  9688. #: modules/luci-base/htdocs/luci-static/resources/validation.js:463
  9689. msgid "valid network device name, not \".\" or \"..\""
  9690. msgstr ""
  9691. #: modules/luci-base/htdocs/luci-static/resources/validation.js:336
  9692. msgid "valid network in address/netmask notation"
  9693. msgstr ""
  9694. #: modules/luci-base/htdocs/luci-static/resources/validation.js:562
  9695. msgid "valid phone digit (0-9, \"*\", \"#\", \"!\" or \".\")"
  9696. msgstr ""
  9697. #: modules/luci-base/htdocs/luci-static/resources/validation.js:376
  9698. #: modules/luci-base/htdocs/luci-static/resources/validation.js:379
  9699. msgid "valid port or port range (port1-port2)"
  9700. msgstr ""
  9701. #: modules/luci-base/htdocs/luci-static/resources/validation.js:368
  9702. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:207
  9703. msgid "valid port value"
  9704. msgstr ""
  9705. #: modules/luci-base/htdocs/luci-static/resources/validation.js:567
  9706. msgid "valid time (HH:MM:SS)"
  9707. msgstr ""
  9708. #: modules/luci-base/htdocs/luci-static/resources/validation.js:489
  9709. msgid "value between %d and %d characters"
  9710. msgstr ""
  9711. #: modules/luci-base/htdocs/luci-static/resources/validation.js:470
  9712. msgid "value between %f and %f"
  9713. msgstr ""
  9714. #: modules/luci-base/htdocs/luci-static/resources/validation.js:474
  9715. msgid "value greater or equal to %f"
  9716. msgstr ""
  9717. #: modules/luci-base/htdocs/luci-static/resources/validation.js:478
  9718. msgid "value smaller or equal to %f"
  9719. msgstr ""
  9720. #: modules/luci-base/htdocs/luci-static/resources/validation.js:483
  9721. msgid "value with %d characters"
  9722. msgstr ""
  9723. #: modules/luci-base/htdocs/luci-static/resources/validation.js:494
  9724. msgid "value with at least %d characters"
  9725. msgstr ""
  9726. #: modules/luci-base/htdocs/luci-static/resources/validation.js:499
  9727. msgid "value with at most %d characters"
  9728. msgstr ""
  9729. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1472
  9730. msgid "weak security"
  9731. msgstr ""
  9732. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:72
  9733. msgctxt "nft unit"
  9734. msgid "week"
  9735. msgstr ""
  9736. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:47
  9737. msgid "yes"
  9738. msgstr "כן"
  9739. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:483
  9740. msgctxt "hint: <code>/#/</code> matches any domain (and returns NXDOMAIN)."
  9741. msgid "{any_domain} matches any domain (and returns {nxdomain})."
  9742. msgstr ""
  9743. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:487
  9744. msgctxt ""
  9745. "hint: <code>/example.com/#</code> returns NULL addresses (<code>0.0.0.0</"
  9746. "code>, <code>::</code>) for example.com and its subdomains."
  9747. msgid ""
  9748. "{example_null} returns {null_addr} addresses ({null_ipv4}, {null_ipv6}) for "
  9749. "{example_com} and its subdomains."
  9750. msgstr ""
  9751. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:480
  9752. msgctxt "hint: <code>/example.com/</code> returns <code>NXDOMAIN</code>."
  9753. msgid "{example_nx} returns {nxdomain}."
  9754. msgstr ""
  9755. #: modules/luci-compat/luasrc/view/cbi/delegator.htm:20
  9756. msgid "« Back"
  9757. msgstr "<< אחורה"
  9758. #~ msgid "Back"
  9759. #~ msgstr "חזרה"
  9760. #~ msgid "Run filesystem check"
  9761. #~ msgstr "הרץ בדיקת מערכת קבצים"
  9762. #~ msgid "Local server"
  9763. #~ msgstr "שרת מקומי"
  9764. #~ msgid "Distance to farthest network member in meters."
  9765. #~ msgstr "מרחק לנק' הרשת הרחוקה ביותר במטרים"
  9766. #~ msgid "Back to configuration"
  9767. #~ msgstr "חזרה להגדרות"
  9768. #~ msgid "Close list..."
  9769. #~ msgstr "סגור רשימה..."
  9770. #~ msgid "Sorry, the server encountered an unexpected error."
  9771. #~ msgstr "סליחה, השרת נתקל בשגיאה לא צפויה."
  9772. #~ msgid "TFTP Settings"
  9773. #~ msgstr "הגדרות TFTP"
  9774. #~ msgid "Auto Refresh"
  9775. #~ msgstr "רענון אוטומטי"
  9776. #~ msgid "on"
  9777. #~ msgstr "פועל"
  9778. #~ msgid "Bridge interfaces"
  9779. #~ msgstr "ממשקי גשר"
  9780. #~ msgid "Define a name for this network."
  9781. #~ msgstr "הגדר שם לרשת זו"
  9782. #~ msgid "Bad address specified!"
  9783. #~ msgstr "פורטה כתובת לא תקינה"
  9784. #~ msgid "Loading"
  9785. #~ msgstr "טוען"
  9786. #~ msgid "Assign interfaces..."
  9787. #~ msgstr "הקצה ממשקים"
  9788. #~ msgid ""
  9789. #~ "This page gives an overview over currently active network connections."
  9790. #~ msgstr "דף זה מציג סקירה של חיבורי הרשת הפעילים כרגע."
  9791. #~ msgid "Changes applied."
  9792. #~ msgstr "השינויים הוחלו"
  9793. #~ msgid "(%s available)"
  9794. #~ msgstr "(%s פנוי)"
  9795. #~ msgid "Check"
  9796. #~ msgstr "לבדוק"
  9797. #~ msgid "Antenna 1"
  9798. #~ msgstr "אנטנה 1"
  9799. #~ msgid "Antenna 2"
  9800. #~ msgstr "אנטנה 2"
  9801. #~ msgid "Antenna Configuration"
  9802. #~ msgstr "הגדרות אנטנה"
  9803. #~ msgid "Back to overview"
  9804. #~ msgstr "חזרה לסקירה"
  9805. #~ msgid "Back to scan results"
  9806. #~ msgstr "חזרה לתוצאות סריקה"
  9807. #~ msgid "Broadcom 802.11%s Wireless Controller"
  9808. #~ msgstr "שלט אלחוטי Broadcom 802.11%s"
  9809. #~ msgid "Broadcom BCM%04x 802.11 Wireless Controller"
  9810. #~ msgstr "שלט אלחוטי Broadcom BCM%04x 802.11"
  9811. #~ msgid "Common Configuration"
  9812. #~ msgstr "הגדרות נפוצות"
  9813. #~ msgid "Connect"
  9814. #~ msgstr "התחבר"
  9815. #~ msgid "Connection Limit"
  9816. #~ msgstr "מגבלת חיבורים"
  9817. #~ msgid "Cover the following interface"
  9818. #~ msgstr "כסה את הממשק הבא"
  9819. #~ msgid "Cover the following interfaces"
  9820. #~ msgstr "כסה את הממשקים הבאים"
  9821. #~ msgid "Create Interface"
  9822. #~ msgstr "צור ממשק"
  9823. #~ msgid "Create a bridge over multiple interfaces"
  9824. #~ msgstr "צור גשר בין מספר ממשקים"
  9825. #~ msgid "Diversity"
  9826. #~ msgstr "גיוון"
  9827. #~ msgid "Edit this interface"
  9828. #~ msgstr "ערוך ממשק זה"
  9829. #~ msgid "The given network name is not unique"
  9830. #~ msgstr "השם שניתן לרשת איננו ייחודי"
  9831. #, fuzzy
  9832. #~ msgid ""
  9833. #~ "The hardware is not multi-SSID capable and the existing configuration "
  9834. #~ "will be replaced if you proceed."
  9835. #~ msgstr ""
  9836. #~ "החומרה אינה תומכת בריבוי SSID ולכן ההגדרות הנוכחיות יוחלפו אם תמשיך."
  9837. #~ msgid "Transmission Rate"
  9838. #~ msgstr "קצב שידור"
  9839. #~ msgid "Transmit Power"
  9840. #~ msgstr "עוצמת שידור"
  9841. #, fuzzy
  9842. #~ msgid "Set up Time Synchronization"
  9843. #~ msgstr "סנכרון זמן"
  9844. #~ msgid "Theme"
  9845. #~ msgstr "עיצוב"
  9846. #~ msgid "Time Synchronization is not configured yet."
  9847. #~ msgstr "סנכרון זמן עדיין לא הוגדר."
  9848. #~ msgid "Available packages"
  9849. #~ msgstr "חבילות זמינות"
  9850. #~ msgid "Displaying only packages containing"
  9851. #~ msgstr "מציג רק חבילות המכילות"
  9852. #~ msgid "Download and install package"
  9853. #~ msgstr "הורד והתקן חבילות"
  9854. #~ msgid "No package lists available"
  9855. #~ msgstr "אין רשימת חבילות זמינה"
  9856. #~ msgid "Package name"
  9857. #~ msgstr "שם החבילה"
  9858. #~ msgid "Software"
  9859. #~ msgstr "תוכנה"
  9860. #~ msgid "Version"
  9861. #~ msgstr "גרסה"
  9862. #~ msgid "IPv4 and IPv6"
  9863. #~ msgstr "IPv4 ו-IPv6"
  9864. #~ msgid "Configuration files will be kept."
  9865. #~ msgstr "קבצי ההגדרות ישמרו."
  9866. #~ msgid "Activate this network"
  9867. #~ msgstr "הפעל רשת זו"
  9868. #~ msgid "DHCP Leases"
  9869. #~ msgstr "הרשאות DHCP"
  9870. #~ msgid "DHCPv6 Leases"
  9871. #~ msgstr "הרשאות DHCPv6"
  9872. #, fuzzy
  9873. #~ msgid ""
  9874. #~ "Really shut down network? You might lose access to this device if you are "
  9875. #~ "connected via this interface."
  9876. #~ msgstr ""
  9877. #~ "האם למחוק את הרשת האלחוטית הזו? המחיקה אינה ניתנת לביטול!\n"
  9878. #~ "ייתכן ותאבד גישה לנתב הזה אם אתה מחובר דרך השרת הזו."
  9879. #~ msgid "Sort"
  9880. #~ msgstr "מיין"
  9881. #~ msgid "help"
  9882. #~ msgstr "עזרה"
  9883. #~ msgid "Apply"
  9884. #~ msgstr "החל"
  9885. #~ msgid "Applying changes"
  9886. #~ msgstr "מחיל הגדרות"
  9887. #~ msgid "Configuration applied."
  9888. #~ msgstr "הגדרות הוחלו"
  9889. #~ msgid "Action"
  9890. #~ msgstr "פעולה"
  9891. #~ msgid "Buttons"
  9892. #~ msgstr "כפתורים"
  9893. #~ msgid "This page allows the configuration of custom button actions"
  9894. #~ msgstr "דף זה מאפשר להגדיר פעולות מיוחדות עבור הלחצנים."
  9895. #~ msgid "AR Support"
  9896. #~ msgstr "תמיכת AR"
  9897. #~ msgid "Atheros 802.11%s Wireless Controller"
  9898. #~ msgstr "שלט אלחוטי Atheros 802.11%s"
  9899. #~ msgid "Background Scan"
  9900. #~ msgstr "סריקת רקע"
  9901. #~ msgid "Compression"
  9902. #~ msgstr "דחיסה"
  9903. #~ msgid "Static WDS"
  9904. #~ msgstr "WDS סטטי"
  9905. #, fuzzy
  9906. #~ msgid "An additional network will be created if you leave this unchecked."
  9907. #~ msgstr "רשת נוספת תווצר אם תשאיר את זה לא מסומן"
  9908. #~ msgid "CPU"
  9909. #~ msgstr "מעבד"