base.po 322 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693
  1. msgid ""
  2. msgstr ""
  3. "Project-Id-Version: PACKAGE VERSION\n"
  4. "PO-Revision-Date: 2021-01-15 22:31+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 4.5-dev\n"
  14. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1484
  15. msgid "%.1f dB"
  16. msgstr "%.1f דציבל"
  17. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:117
  18. msgid "%d Bit"
  19. msgstr "%d סיביות"
  20. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3712
  21. msgid "%d invalid field(s)"
  22. msgstr "%d שדות שגויים"
  23. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:35
  24. msgid "%s is untagged in multiple VLANs!"
  25. msgstr ""
  26. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:296
  27. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:405
  28. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:272
  29. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:309
  30. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:327
  31. msgid "(%d minute window, %d second interval)"
  32. msgstr ""
  33. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:118
  34. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:124
  35. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:258
  36. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:282
  37. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:88
  38. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:91
  39. msgid "(empty)"
  40. msgstr "(ריק)"
  41. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:351
  42. #: modules/luci-compat/luasrc/view/cbi/network_netinfo.htm:23
  43. #: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:58
  44. msgid "(no interfaces attached)"
  45. msgstr "(לא צורף אף מנשק)"
  46. #: modules/luci-compat/luasrc/view/cbi/ucisection.htm:48
  47. msgid "-- Additional Field --"
  48. msgstr "-- שדה נוסף --"
  49. #: modules/luci-base/htdocs/luci-static/resources/cbi.js:275
  50. #: modules/luci-base/htdocs/luci-static/resources/form.js:3397
  51. #: modules/luci-base/htdocs/luci-static/resources/form.js:3763
  52. #: modules/luci-base/htdocs/luci-static/resources/ui.js:784
  53. #: modules/luci-base/htdocs/luci-static/resources/ui.js:1022
  54. #: modules/luci-base/htdocs/luci-static/resources/ui.js:1995
  55. #: modules/luci-compat/luasrc/view/cbi/header.htm:8
  56. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:89
  57. msgid "-- Please choose --"
  58. msgstr "-- נא לבחור --"
  59. #: modules/luci-base/htdocs/luci-static/resources/cbi.js:276
  60. #: modules/luci-base/htdocs/luci-static/resources/ui.js:1023
  61. #: modules/luci-base/htdocs/luci-static/resources/ui.js:1996
  62. #: modules/luci-compat/luasrc/view/cbi/header.htm:9
  63. msgid "-- custom --"
  64. msgstr "-- מותאם אישית --"
  65. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:270
  66. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:379
  67. msgid "-- match by label --"
  68. msgstr "-- התאמה לפי תווית --"
  69. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:256
  70. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:362
  71. msgid "-- match by uuid --"
  72. msgstr ""
  73. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:27
  74. #: modules/luci-compat/luasrc/view/cbi/network_ifacelist.htm:44
  75. #: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:23
  76. msgid "-- please select --"
  77. msgstr "-- נא לבחור --"
  78. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:55
  79. msgctxt "sstp log level value"
  80. msgid "0"
  81. msgstr ""
  82. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1002
  83. msgid "0 = not using RSSI threshold, 1 = do not change driver default"
  84. msgstr ""
  85. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:56
  86. msgctxt "sstp log level value"
  87. msgid "1"
  88. msgstr ""
  89. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:233
  90. msgid "1 Minute Load:"
  91. msgstr "עומס במשך דקה:"
  92. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:253
  93. msgid "15 Minute Load:"
  94. msgstr "עומס במשך רבע שעה:"
  95. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:57
  96. msgctxt "sstp log level value"
  97. msgid "2"
  98. msgstr ""
  99. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:58
  100. msgctxt "sstp log level value"
  101. msgid "3"
  102. msgstr ""
  103. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:59
  104. msgctxt "sstp log level value"
  105. msgid "4"
  106. msgstr ""
  107. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1514
  108. msgid "4-character hexadecimal ID"
  109. msgstr ""
  110. #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:18
  111. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:11
  112. msgid "464XLAT (CLAT)"
  113. msgstr ""
  114. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:243
  115. msgid "5 Minute Load:"
  116. msgstr "עומס במשך 5 דקות:"
  117. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1543
  118. msgid "6-octet identifier as a hex string - no colons"
  119. msgstr ""
  120. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1503
  121. msgid "802.11r Fast Transition"
  122. msgstr ""
  123. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1690
  124. msgid "802.11w Association SA Query maximum timeout"
  125. msgstr ""
  126. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1697
  127. msgid "802.11w Association SA Query retry timeout"
  128. msgstr ""
  129. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1678
  130. msgid "802.11w Management Frame Protection"
  131. msgstr ""
  132. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1690
  133. msgid "802.11w maximum timeout"
  134. msgstr ""
  135. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1697
  136. msgid "802.11w retry timeout"
  137. msgstr ""
  138. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1019
  139. msgid "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>"
  140. msgstr ""
  141. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:326
  142. msgid "<abbr title=\"Domain Name System\">DNS</abbr> query port"
  143. msgstr "<abbr title=\"Domain Name System\">DNS</abbr> יציאת שאילתא"
  144. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:317
  145. msgid "<abbr title=\"Domain Name System\">DNS</abbr> server port"
  146. msgstr "<abbr title=\"Domain Name System\">DNS</abbr> יציאת שרת"
  147. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:260
  148. msgid ""
  149. "<abbr title=\"Domain Name System\">DNS</abbr> servers will be queried in the "
  150. "order of the resolvfile"
  151. msgstr ""
  152. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1008
  153. msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>"
  154. msgstr ""
  155. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:495
  156. msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Address"
  157. msgstr "כתובות <abbr title=\"Internet Protocol Version 4\">IPv4</abbr>"
  158. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:42
  159. msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Gateway"
  160. msgstr ""
  161. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:691
  162. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:36
  163. msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Netmask"
  164. msgstr ""
  165. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:31
  166. msgid ""
  167. "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Address or Network "
  168. "(CIDR)"
  169. msgstr ""
  170. "כתובת או רשת (CIDR) <abbr title=\"Internet Protocol Version 6\">IPv6</abbr>"
  171. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:42
  172. msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Gateway"
  173. msgstr ""
  174. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:531
  175. msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Suffix (hex)"
  176. msgstr ""
  177. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:58
  178. msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Configuration"
  179. msgstr "הגדרות <abbr title=\"Light Emitting Diode\">LED</abbr>"
  180. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:69
  181. msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Name"
  182. msgstr "שם <abbr title=\"Light Emitting Diode\">LED</abbr>"
  183. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:431
  184. msgid "<abbr title=\"Media Access Control\">MAC</abbr>-Address"
  185. msgstr "כתובת-<abbr title=\"Media Access Control\">MAC</abbr>"
  186. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:897
  187. msgid "<abbr title=\"Neighbour Discovery Protocol\">NDP</abbr>-Proxy"
  188. msgstr ""
  189. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:791
  190. msgid "<abbr title=\"Router Advertisement\">RA</abbr> Flags"
  191. msgstr ""
  192. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:849
  193. msgid "<abbr title=\"Router Advertisement\">RA</abbr> Hop Limit"
  194. msgstr ""
  195. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:825
  196. msgid "<abbr title=\"Router Advertisement\">RA</abbr> Lifetime"
  197. msgstr ""
  198. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:832
  199. msgid "<abbr title=\"Router Advertisement\">RA</abbr> MTU"
  200. msgstr ""
  201. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:763
  202. msgid "<abbr title=\"Router Advertisement\">RA</abbr>-Service"
  203. msgstr ""
  204. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:525
  205. msgid "<abbr title=\"The DHCP Unique Identifier\">DUID</abbr>"
  206. msgstr ""
  207. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:335
  208. msgid ""
  209. "<abbr title=\"maximal\">Max.</abbr> <abbr title=\"Dynamic Host Configuration "
  210. "Protocol\">DHCP</abbr> leases"
  211. msgstr ""
  212. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:344
  213. msgid ""
  214. "<abbr title=\"maximal\">Max.</abbr> <abbr title=\"Extension Mechanisms for "
  215. "Domain Name System\">EDNS0</abbr> packet size"
  216. msgstr ""
  217. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:353
  218. msgid "<abbr title=\"maximal\">Max.</abbr> concurrent queries"
  219. msgstr ""
  220. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/crontab.js:29
  221. msgid ""
  222. "<br/>Note: you need to manually restart the cron service if the crontab file "
  223. "was empty before editing."
  224. msgstr ""
  225. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:370
  226. msgid "A configuration for the device \"%s\" already exists"
  227. msgstr ""
  228. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2741
  229. msgid "A directory with the same name already exists."
  230. msgstr ""
  231. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2671
  232. msgid "A new login is required since the authentication session expired."
  233. msgstr ""
  234. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1464
  235. msgid "A43C + J43 + A43"
  236. msgstr ""
  237. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1465
  238. msgid "A43C + J43 + A43 + V43"
  239. msgstr ""
  240. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1477
  241. msgid "ADSL"
  242. msgstr "ADSL"
  243. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1453
  244. msgid "ANSI T1.413"
  245. msgstr ""
  246. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:95
  247. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:94
  248. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:87
  249. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:68
  250. msgid "APN"
  251. msgstr ""
  252. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:200
  253. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:352
  254. msgid "ARP"
  255. msgstr ""
  256. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:365
  257. msgid "ARP IP Targets"
  258. msgstr ""
  259. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:357
  260. msgid "ARP Interval"
  261. msgstr ""
  262. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:381
  263. msgid "ARP Validation"
  264. msgstr ""
  265. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:373
  266. msgid "ARP mode to consider a slave as being up"
  267. msgstr ""
  268. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:77
  269. msgid "ARP monitoring is not supported for the selected policy!"
  270. msgstr ""
  271. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:175
  272. msgid "ARP retry threshold"
  273. msgstr "סף ניסיונות חוזרים של ARP"
  274. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1472
  275. msgid "ATM (Asynchronous Transfer Mode)"
  276. msgstr ""
  277. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1493
  278. #, fuzzy
  279. msgid "ATM Bridges"
  280. msgstr "גשרי ATM"
  281. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1525
  282. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:66
  283. msgid "ATM Virtual Channel Identifier (VCI)"
  284. msgstr "ATM מזהה ערוץ וירטואלי (VCI)"
  285. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1526
  286. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:70
  287. #, fuzzy
  288. msgid "ATM Virtual Path Identifier (VPI)"
  289. msgstr "מזהה נתיבים ווירטואליים של ATM (VPI)"
  290. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1493
  291. msgid ""
  292. "ATM bridges expose encapsulated ethernet in AAL5 connections as virtual "
  293. "Linux network interfaces which can be used in conjunction with DHCP or PPP "
  294. "to dial into the provider network."
  295. msgstr ""
  296. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1532
  297. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:62
  298. msgid "ATM device number"
  299. msgstr "מס' התקן של ATM"
  300. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:36
  301. msgid "ATU-C System Vendor ID"
  302. msgstr ""
  303. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:265
  304. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:544
  305. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:548
  306. msgid "Absent Interface"
  307. msgstr ""
  308. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:647
  309. msgid "Accept local"
  310. msgstr ""
  311. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:647
  312. msgid "Accept packets with local source addresses"
  313. msgstr ""
  314. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:47
  315. #, fuzzy
  316. msgid "Access Concentrator"
  317. msgstr "מרכז גישות"
  318. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:990
  319. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1104
  320. msgid "Access Point"
  321. msgstr "נקודת גישה"
  322. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:358
  323. msgid "Actions"
  324. msgstr "פעולות"
  325. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:14
  326. msgid "Active"
  327. msgstr ""
  328. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:203
  329. msgid "Active <abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Routes"
  330. msgstr ""
  331. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:209
  332. msgid "Active <abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Routes"
  333. msgstr ""
  334. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:81
  335. msgid "Active Connections"
  336. msgstr "חיבורים פעילים"
  337. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:33
  338. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:173
  339. msgid "Active DHCP Leases"
  340. msgstr "הרשאות DHCP פעילות"
  341. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:52
  342. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:175
  343. msgid "Active DHCPv6 Leases"
  344. msgstr "הרשאות DHCPv6 פעילות"
  345. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:203
  346. msgid "Active-Backup policy (active-backup, 1)"
  347. msgstr ""
  348. # צריך אימות של מישהו שמבין יותר במושגים האלו אם צריך בכלל לתרגם את זה או להשאיר כמו שזה
  349. #: modules/luci-base/htdocs/luci-static/resources/network.js:3864
  350. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:992
  351. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:23
  352. #, fuzzy
  353. msgid "Ad-Hoc"
  354. msgstr "אד־הוק"
  355. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:208
  356. msgid "Adaptive load balancing (balance-alb, 6)"
  357. msgstr ""
  358. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:207
  359. msgid "Adaptive transmit load balancing (balance-tlb, 5)"
  360. msgstr ""
  361. #: modules/luci-base/htdocs/luci-static/resources/form.js:2192
  362. #: modules/luci-base/htdocs/luci-static/resources/form.js:2195
  363. #: modules/luci-base/htdocs/luci-static/resources/form.js:2209
  364. #: modules/luci-base/htdocs/luci-static/resources/form.js:2210
  365. #: modules/luci-base/htdocs/luci-static/resources/form.js:3195
  366. #: modules/luci-compat/luasrc/view/cbi/nsection.htm:25
  367. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:189
  368. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:197
  369. #: modules/luci-compat/luasrc/view/cbi/tsection.htm:39
  370. #: modules/luci-compat/luasrc/view/cbi/tsection.htm:47
  371. #: modules/luci-compat/luasrc/view/cbi/ucisection.htm:54
  372. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:884
  373. msgid "Add"
  374. msgstr "הוסף"
  375. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1497
  376. msgid "Add ATM Bridge"
  377. msgstr ""
  378. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:92
  379. msgid "Add IPv4 address…"
  380. msgstr ""
  381. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:185
  382. msgid "Add IPv6 address…"
  383. msgstr ""
  384. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:65
  385. msgid "Add LED action"
  386. msgstr ""
  387. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:219
  388. msgid "Add VLAN"
  389. msgstr ""
  390. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1287
  391. msgid "Add device configuration"
  392. msgstr ""
  393. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1227
  394. msgid "Add device configuration…"
  395. msgstr ""
  396. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:15
  397. msgid "Add instance"
  398. msgstr ""
  399. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:165
  400. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:171
  401. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:268
  402. msgid "Add key"
  403. msgstr ""
  404. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:248
  405. #, fuzzy
  406. msgid "Add local domain suffix to names served from hosts files"
  407. msgstr "הוסף דומיין מקומי לשמות המוגשים מהקבצים של המארח"
  408. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:465
  409. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1114
  410. msgid "Add new interface..."
  411. msgstr "הוסף ממשק חדש..."
  412. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:120
  413. msgid "Add peer"
  414. msgstr ""
  415. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:331
  416. msgid "Add to Blacklist"
  417. msgstr ""
  418. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:331
  419. msgid "Add to Whitelist"
  420. msgstr ""
  421. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:200
  422. msgid "Additional Hosts files"
  423. msgstr "קבצי מארח נוספים"
  424. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:255
  425. msgid "Additional servers file"
  426. msgstr ""
  427. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:34
  428. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:35
  429. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:36
  430. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:37
  431. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:38
  432. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:39
  433. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:40
  434. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:41
  435. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:42
  436. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:43
  437. msgid "Address"
  438. msgstr "כתובת"
  439. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:151
  440. msgid "Address to access local relay bridge"
  441. msgstr ""
  442. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:285
  443. msgid "Addresses"
  444. msgstr ""
  445. #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:3
  446. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:15
  447. #, fuzzy
  448. msgid "Administration"
  449. msgstr "מנהלה"
  450. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:164
  451. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:478
  452. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:633
  453. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1523
  454. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:25
  455. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:923
  456. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:987
  457. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:241
  458. msgid "Advanced Settings"
  459. msgstr "הגדרות מתקדמות"
  460. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:337
  461. msgid "Advanced device options"
  462. msgstr ""
  463. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:513
  464. msgid "Ageing time"
  465. msgstr ""
  466. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:27
  467. msgid "Aggregate Transmit Power (ACTATP)"
  468. msgstr ""
  469. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:258
  470. msgid "Aggregation Selection Logic"
  471. msgstr ""
  472. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:261
  473. msgid "Aggregator: All slaves down or has no slaves (stable, 0)"
  474. msgstr ""
  475. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:263
  476. msgid ""
  477. "Aggregator: Chosen by the largest number of ports + slave added/removed or "
  478. "state changes (count, 2)"
  479. msgstr ""
  480. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:262
  481. msgid "Aggregator: Slave added/removed or state changes (bandwidth, 1)"
  482. msgstr ""
  483. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:178
  484. #, fuzzy
  485. msgid "Alert"
  486. msgstr "אזעקה"
  487. #: modules/luci-base/htdocs/luci-static/resources/network.js:2985
  488. #: modules/luci-compat/luasrc/model/network.lua:1417
  489. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:62
  490. msgid "Alias Interface"
  491. msgstr ""
  492. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:146
  493. msgid "Alias of \"%s\""
  494. msgstr ""
  495. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:263
  496. msgid "All Servers"
  497. msgstr ""
  498. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:209
  499. msgid ""
  500. "Allocate IP addresses sequentially, starting from the lowest available "
  501. "address"
  502. msgstr ""
  503. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:208
  504. msgid "Allocate IP sequentially"
  505. msgstr ""
  506. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:25
  507. msgid "Allow <abbr title=\"Secure Shell\">SSH</abbr> password authentication"
  508. msgstr ""
  509. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1184
  510. msgid "Allow AP mode to disconnect STAs based on low ACK condition"
  511. msgstr ""
  512. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1088
  513. #, fuzzy
  514. msgid "Allow all except listed"
  515. msgstr "אפשר הכל חוץ מהרשומים"
  516. #: modules/luci-compat/root/usr/share/rpcd/acl.d/luci-compat.json:3
  517. msgid "Allow full UCI access for legacy applications"
  518. msgstr ""
  519. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:943
  520. msgid "Allow legacy 802.11b rates"
  521. msgstr ""
  522. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1087
  523. msgid "Allow listed only"
  524. msgstr "אפשר רשומים בלבד"
  525. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:300
  526. #, fuzzy
  527. msgid "Allow localhost"
  528. msgstr "אפשר localhost"
  529. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:157
  530. msgid "Allow rebooting the device"
  531. msgstr ""
  532. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:36
  533. msgid "Allow remote hosts to connect to local SSH forwarded ports"
  534. msgstr ""
  535. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:31
  536. msgid "Allow root logins with password"
  537. msgstr ""
  538. #: modules/luci-base/root/usr/share/rpcd/acl.d/luci-base.json:3
  539. msgid "Allow system feature probing"
  540. msgstr ""
  541. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:31
  542. msgid "Allow the <em>root</em> user to login with password"
  543. msgstr ""
  544. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301
  545. msgid ""
  546. "Allow upstream responses in the 127.0.0.0/8 range, e.g. for RBL services"
  547. msgstr ""
  548. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:143
  549. msgid "Allowed IPs"
  550. msgstr "כתובות IP מורשות"
  551. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:708
  552. msgid "Always"
  553. msgstr ""
  554. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/none.js:5
  555. msgid "Always off (kernel: none)"
  556. msgstr ""
  557. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/default-on.js:6
  558. msgid "Always on (kernel: default-on)"
  559. msgstr ""
  560. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:970
  561. msgid ""
  562. "Always use 40MHz channels even if the secondary channel overlaps. Using this "
  563. "option does not comply with IEEE 802.11n-2009!"
  564. msgstr ""
  565. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:673
  566. msgid "Amount of Duplicate Address Detection probes to send"
  567. msgstr ""
  568. #: modules/luci-base/htdocs/luci-static/resources/form.js:603
  569. msgid "An error occurred while saving the form:"
  570. msgstr ""
  571. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:125
  572. msgid "An optional, short description for this device"
  573. msgstr ""
  574. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1445
  575. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:20
  576. msgid "Annex"
  577. msgstr ""
  578. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1446
  579. msgid "Annex A + L + M (all)"
  580. msgstr ""
  581. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1454
  582. msgid "Annex A G.992.1"
  583. msgstr ""
  584. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1455
  585. msgid "Annex A G.992.2"
  586. msgstr ""
  587. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1456
  588. msgid "Annex A G.992.3"
  589. msgstr ""
  590. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1457
  591. msgid "Annex A G.992.5"
  592. msgstr ""
  593. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1447
  594. msgid "Annex B (all)"
  595. msgstr ""
  596. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1450
  597. msgid "Annex B G.992.1"
  598. msgstr ""
  599. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1451
  600. msgid "Annex B G.992.3"
  601. msgstr ""
  602. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1452
  603. msgid "Annex B G.992.5"
  604. msgstr ""
  605. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1448
  606. msgid "Annex J (all)"
  607. msgstr ""
  608. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1458
  609. msgid "Annex L G.992.3 POTS 1"
  610. msgstr ""
  611. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1449
  612. msgid "Annex M (all)"
  613. msgstr ""
  614. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1459
  615. msgid "Annex M G.992.3"
  616. msgstr ""
  617. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1460
  618. msgid "Annex M G.992.5"
  619. msgstr ""
  620. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:885
  621. msgid "Announce this device as IPv6 DNS server."
  622. msgstr ""
  623. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:777
  624. msgid ""
  625. "Announce this device as default router if a local IPv6 default route is "
  626. "present."
  627. msgstr ""
  628. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:779
  629. msgid ""
  630. "Announce this device as default router if a public IPv6 prefix is available, "
  631. "regardless of local default route availability."
  632. msgstr ""
  633. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:781
  634. msgid ""
  635. "Announce this device as default router regardless of whether a prefix or "
  636. "default route is present."
  637. msgstr ""
  638. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:890
  639. msgid "Announced DNS domains"
  640. msgstr ""
  641. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:878
  642. msgid "Announced IPv6 DNS servers"
  643. msgstr ""
  644. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1668
  645. msgid "Anonymous Identity"
  646. msgstr ""
  647. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:162
  648. msgid "Anonymous Mount"
  649. msgstr ""
  650. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:158
  651. msgid "Anonymous Swap"
  652. msgstr ""
  653. # אזור?
  654. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:84
  655. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:174
  656. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:195
  657. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:60
  658. #, fuzzy
  659. msgid "Any zone"
  660. msgstr "כל תחום"
  661. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:119
  662. msgid "Apply backup?"
  663. msgstr ""
  664. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4299
  665. msgid "Apply request failed with status <code>%h</code>"
  666. msgstr ""
  667. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2182
  668. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4165
  669. msgid "Apply unchecked"
  670. msgstr ""
  671. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4238
  672. msgid "Applying configuration changes… %ds"
  673. msgstr ""
  674. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:56
  675. msgid "Architecture"
  676. msgstr ""
  677. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:958
  678. msgid ""
  679. "Assign a part of given length of every public IPv6-prefix to this interface"
  680. msgstr ""
  681. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:963
  682. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:27
  683. msgid ""
  684. "Assign prefix parts using this hexadecimal subprefix ID for this interface."
  685. msgstr ""
  686. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2158
  687. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:362
  688. msgid "Associated Stations"
  689. msgstr "תחנות קשורות"
  690. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:145
  691. msgid "Associations"
  692. msgstr ""
  693. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:154
  694. msgid "Attempt to enable configured mount points for attached devices"
  695. msgstr ""
  696. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:110
  697. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:64
  698. msgid "Auth Group"
  699. msgstr ""
  700. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1607
  701. msgid "Authentication"
  702. msgstr "אימות"
  703. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:97
  704. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:71
  705. msgid "Authentication Type"
  706. msgstr ""
  707. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:172
  708. msgid "Authoritative"
  709. msgstr "מוסמך"
  710. #: modules/luci-base/luasrc/view/sysauth.htm:17
  711. msgid "Authorization Required"
  712. msgstr "דרוש אימות"
  713. #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:196
  714. #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:197
  715. msgid "Auto Refresh"
  716. msgstr "רענון אוטומטי"
  717. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:108
  718. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:18
  719. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:24
  720. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:100
  721. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:51
  722. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:96
  723. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:82
  724. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:56
  725. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:69
  726. msgid "Automatic"
  727. msgstr ""
  728. #: modules/luci-compat/luasrc/model/network/proto_hnet.lua:7
  729. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:7
  730. msgid "Automatic Homenet (HNCP)"
  731. msgstr ""
  732. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:174
  733. msgid "Automatically check filesystem for errors before mounting"
  734. msgstr ""
  735. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:170
  736. msgid "Automatically mount filesystems on hotplug"
  737. msgstr ""
  738. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:166
  739. msgid "Automatically mount swap on hotplug"
  740. msgstr ""
  741. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:170
  742. msgid "Automount Filesystem"
  743. msgstr ""
  744. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:166
  745. msgid "Automount Swap"
  746. msgstr ""
  747. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:193
  748. msgid "Available"
  749. msgstr "זמין"
  750. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:270
  751. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:280
  752. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:331
  753. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:341
  754. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:351
  755. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:236
  756. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:246
  757. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:256
  758. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:265
  759. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:275
  760. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:293
  761. msgid "Average:"
  762. msgstr "ממוצע:"
  763. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1466
  764. msgid "B43 + B43C"
  765. msgstr ""
  766. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1467
  767. msgid "B43 + B43C + V43"
  768. msgstr ""
  769. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:48
  770. msgid "BR / DMR / AFTR"
  771. msgstr ""
  772. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:158
  773. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:182
  774. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1735
  775. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:379
  776. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:143
  777. msgid "BSSID"
  778. msgstr "BSSID"
  779. #: modules/luci-compat/luasrc/view/cbi/footer.htm:14
  780. #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:48
  781. msgid "Back to Overview"
  782. msgstr "חזרה לסקירה"
  783. #: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:48
  784. msgid "Back to configuration"
  785. msgstr "חזרה להגדרות"
  786. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:361
  787. msgid "Backup"
  788. msgstr "גיבוי"
  789. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:114
  790. msgid "Backup / Flash Firmware"
  791. msgstr "גיבוי / קושחת פלאש"
  792. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:321
  793. #: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:12
  794. msgid "Backup file list"
  795. msgstr "גיבוי רשימת קבצים"
  796. #: modules/luci-compat/luasrc/view/cbi/wireless_modefreq.htm:158
  797. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:501
  798. msgid "Band"
  799. msgstr ""
  800. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:377
  801. msgid "Base device"
  802. msgstr ""
  803. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:973
  804. msgid "Beacon Interval"
  805. msgstr ""
  806. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:322
  807. #: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:46
  808. msgid ""
  809. "Below is the determined list of files to backup. It consists of changed "
  810. "configuration files marked by opkg, essential base files and the user "
  811. "defined backup patterns."
  812. msgstr ""
  813. "למטה יש את הרשימה הסופית של קבצים לגיבוי. היא מורכבת ע\"י קבצי הגדרות ששונו, "
  814. "המסומנים ב opkg ׁOpen PacKaGe Managementׂ, קבצי בסיס חיוניים ותבניות הגיבוי "
  815. "המוגדרות ע\"י המשתמש."
  816. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:395
  817. msgid ""
  818. "Bind dynamically to interfaces rather than wildcard address (recommended as "
  819. "linux default)"
  820. msgstr ""
  821. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:59
  822. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64
  823. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64
  824. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:69
  825. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:48
  826. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:55
  827. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:57
  828. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:52
  829. msgid "Bind interface"
  830. msgstr ""
  831. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:59
  832. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64
  833. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64
  834. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:69
  835. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:48
  836. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:55
  837. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:57
  838. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:52
  839. msgid "Bind the tunnel to this interface (optional)."
  840. msgstr ""
  841. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:129
  842. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:188
  843. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:165
  844. msgid "Bitrate"
  845. msgstr ""
  846. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:266
  847. msgid "Bogus NX Domain Override"
  848. msgstr ""
  849. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:199
  850. msgid "Bonding Policy"
  851. msgstr ""
  852. #: modules/luci-base/htdocs/luci-static/resources/network.js:2991
  853. #: modules/luci-compat/luasrc/model/network.lua:1421
  854. msgid "Bridge"
  855. msgstr "גשר"
  856. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:437
  857. msgctxt "MACVLAN mode"
  858. msgid "Bridge (Support direct communication between MAC VLANs)"
  859. msgstr ""
  860. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:339
  861. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:481
  862. msgid "Bridge VLAN filtering"
  863. msgstr ""
  864. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:344
  865. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1368
  866. msgid "Bridge device"
  867. msgstr ""
  868. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:338
  869. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:480
  870. msgid "Bridge port specific options"
  871. msgstr ""
  872. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:468
  873. msgid "Bridge ports"
  874. msgstr ""
  875. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1533
  876. msgid "Bridge unit number"
  877. msgstr "מס' יח' גשר"
  878. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:504
  879. msgid "Bring up empty bridge"
  880. msgstr ""
  881. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:575
  882. #, fuzzy
  883. msgid "Bring up on boot"
  884. msgstr "הבא באיתחול"
  885. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:504
  886. msgid "Bring up the bridge interface even if no ports are attached"
  887. msgstr ""
  888. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:205
  889. msgid "Broadcast policy (broadcast, 3)"
  890. msgstr ""
  891. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2831
  892. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3822
  893. msgid "Browse…"
  894. msgstr ""
  895. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:37
  896. msgid "Buffered"
  897. msgstr ""
  898. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:144
  899. msgid "CA certificate; if empty it will be saved after the first connection."
  900. msgstr ""
  901. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:7
  902. msgid "CLAT configuration failed"
  903. msgstr ""
  904. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:72
  905. msgid "CPU usage (%)"
  906. msgstr "שימוש מעבד (%)"
  907. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:41
  908. msgid "Cached"
  909. msgstr ""
  910. #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:53
  911. #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:53
  912. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:21
  913. msgid "Call failed"
  914. msgstr ""
  915. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2924
  916. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3831
  917. #: modules/luci-compat/luasrc/view/cbi/delegator.htm:14
  918. #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:52
  919. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:188
  920. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1120
  921. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2032
  922. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:128
  923. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:270
  924. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:203
  925. msgid "Cancel"
  926. msgstr "ביטול"
  927. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:17
  928. msgid "Category"
  929. msgstr ""
  930. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1591
  931. msgid "Certificate constraint (Domain)"
  932. msgstr ""
  933. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1588
  934. msgid "Certificate constraint (SAN)"
  935. msgstr ""
  936. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1585
  937. msgid "Certificate constraint (Subject)"
  938. msgstr ""
  939. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1594
  940. msgid "Certificate constraint (Wildcard)"
  941. msgstr ""
  942. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1585
  943. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1643
  944. msgid ""
  945. "Certificate constraint substring - e.g. /CN=wifi.mycompany.com<br />See "
  946. "`logread -f` during handshake for actual values"
  947. msgstr ""
  948. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1591
  949. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1649
  950. msgid ""
  951. "Certificate constraint(s) against DNS SAN values (if available)<br />or "
  952. "Subject CN (exact match)"
  953. msgstr ""
  954. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1594
  955. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1652
  956. msgid ""
  957. "Certificate constraint(s) against DNS SAN values (if available)<br />or "
  958. "Subject CN (suffix match)"
  959. msgstr ""
  960. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1588
  961. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1646
  962. msgid ""
  963. "Certificate constraint(s) via Subject Alternate Name values<br />(supported "
  964. "attributes: EMAIL, DNS, URI) - e.g. DNS:wifi.mycompany.com"
  965. msgstr ""
  966. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:54
  967. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:57
  968. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:212
  969. msgid "Chain"
  970. msgstr "שרשרת"
  971. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4051
  972. msgid "Changes"
  973. msgstr "שינויים"
  974. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4334
  975. msgid "Changes have been reverted."
  976. msgstr ""
  977. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:46
  978. msgid "Changes the administrator password for accessing the device"
  979. msgstr "משנה את סיסמת המנהל לגישה למכשיר"
  980. #: modules/luci-compat/luasrc/view/cbi/wireless_modefreq.htm:162
  981. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:128
  982. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:184
  983. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:510
  984. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1733
  985. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:376
  986. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:164
  987. msgid "Channel"
  988. msgstr "ערוץ"
  989. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:75
  990. msgid "Channel Analysis"
  991. msgstr ""
  992. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:377
  993. msgid "Channel Width"
  994. msgstr ""
  995. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:174
  996. msgid "Check filesystems before mount"
  997. msgstr ""
  998. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1994
  999. msgid "Check this option to delete the existing networks from this radio."
  1000. msgstr ""
  1001. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:110
  1002. msgid "Checking archive…"
  1003. msgstr ""
  1004. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:193
  1005. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:195
  1006. msgid "Checking image…"
  1007. msgstr ""
  1008. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:397
  1009. msgid "Choose mtdblock"
  1010. msgstr ""
  1011. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:580
  1012. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2022
  1013. msgid ""
  1014. "Choose the firewall zone you want to assign to this interface. Select "
  1015. "<em>unspecified</em> to remove the interface from the associated zone or "
  1016. "fill out the <em>custom</em> field to define a new zone and attach the "
  1017. "interface to it."
  1018. msgstr ""
  1019. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1022
  1020. msgid ""
  1021. "Choose the network(s) you want to attach to this wireless interface or fill "
  1022. "out the <em>custom</em> field to define a new network."
  1023. msgstr ""
  1024. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1220
  1025. msgid "Cipher"
  1026. msgstr ""
  1027. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:91
  1028. msgid "Cisco UDP encapsulation"
  1029. msgstr ""
  1030. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:361
  1031. msgid ""
  1032. "Click \"Generate archive\" to download a tar archive of the current "
  1033. "configuration files."
  1034. msgstr ""
  1035. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:394
  1036. msgid ""
  1037. "Click \"Save mtdblock\" to download specified mtdblock file. (NOTE: THIS "
  1038. "FEATURE IS FOR PROFESSIONALS! )"
  1039. msgstr ""
  1040. #: modules/luci-base/htdocs/luci-static/resources/network.js:3863
  1041. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:991
  1042. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1105
  1043. msgid "Client"
  1044. msgstr ""
  1045. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37
  1046. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:33
  1047. msgid "Client ID to send when requesting DHCP"
  1048. msgstr ""
  1049. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4068
  1050. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:167
  1051. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:173
  1052. msgid "Close"
  1053. msgstr ""
  1054. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:144
  1055. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:128
  1056. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:114
  1057. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:92
  1058. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:101
  1059. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:124
  1060. msgid ""
  1061. "Close inactive connection after the given amount of seconds, use 0 to "
  1062. "persist connection"
  1063. msgstr "סגור חיבורים לא פעילים אחרי מספר השניות שהוגדר, הזן 0 על-מנת לא לסגור"
  1064. #: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:49
  1065. msgid "Close list..."
  1066. msgstr "סגור רשימה..."
  1067. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:42
  1068. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:61
  1069. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2156
  1070. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:391
  1071. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:352
  1072. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:355
  1073. #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:204
  1074. msgid "Collecting data..."
  1075. msgstr "נאספים נתונים…"
  1076. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:71
  1077. msgid "Command"
  1078. msgstr "פקודה"
  1079. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:401
  1080. msgid "Command OK"
  1081. msgstr ""
  1082. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:33
  1083. msgid "Command failed"
  1084. msgstr ""
  1085. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:73
  1086. msgid "Comment"
  1087. msgstr ""
  1088. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1704
  1089. msgid ""
  1090. "Complicates key reinstallation attacks on the client side by disabling "
  1091. "retransmission of EAPOL-Key frames that are used to install keys. This "
  1092. "workaround might cause interoperability issues and reduced robustness of key "
  1093. "negotiation especially in environments with heavy traffic load."
  1094. msgstr ""
  1095. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:101
  1096. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:106
  1097. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:103
  1098. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:108
  1099. msgid "Compute outgoing checksum (optional)."
  1100. msgstr ""
  1101. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4051
  1102. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:424
  1103. msgid "Configuration"
  1104. msgstr "הגדרות"
  1105. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4213
  1106. msgid "Configuration changes applied."
  1107. msgstr ""
  1108. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4151
  1109. msgid "Configuration changes have been rolled back!"
  1110. msgstr ""
  1111. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:63
  1112. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:21
  1113. msgid "Configuration failed"
  1114. msgstr ""
  1115. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:952
  1116. msgid ""
  1117. "Configures data rates based on the coverage cell density. Normal configures "
  1118. "basic rates to 6, 12, 24 Mbps if legacy 802.11b rates are not used else to "
  1119. "5.5, 11 Mbps. High configures basic rates to 12, 24 Mbps if legacy 802.11b "
  1120. "rates are not used else to the 11 Mbps rate. Very High configures 24 Mbps as "
  1121. "the basic rate. Supported rates lower than the minimum basic rate are not "
  1122. "offered."
  1123. msgstr ""
  1124. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:775
  1125. msgid ""
  1126. "Configures the default router advertisement in <abbr title=\"Router "
  1127. "Advertisement\">RA</abbr> messages."
  1128. msgstr ""
  1129. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:764
  1130. msgid ""
  1131. "Configures the operation mode of the <abbr title=\"Router Advertisement"
  1132. "\">RA</abbr> service on this interface."
  1133. msgstr ""
  1134. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:868
  1135. msgid "Configures the operation mode of the DHCPv6 service on this interface."
  1136. msgstr ""
  1137. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:898
  1138. msgid ""
  1139. "Configures the operation mode of the NDP proxy service on this interface."
  1140. msgstr ""
  1141. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1273
  1142. msgid "Configure…"
  1143. msgstr ""
  1144. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:176
  1145. msgid "Confirm disconnect"
  1146. msgstr ""
  1147. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:55
  1148. msgid "Confirmation"
  1149. msgstr "אישור"
  1150. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:97
  1151. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:100
  1152. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:47
  1153. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:51
  1154. msgid "Connected"
  1155. msgstr "מחובר"
  1156. #: modules/luci-base/htdocs/luci-static/resources/network.js:9
  1157. #: modules/luci-compat/luasrc/model/network.lua:27
  1158. msgid "Connection attempt failed"
  1159. msgstr ""
  1160. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:40
  1161. msgid "Connection attempt failed."
  1162. msgstr ""
  1163. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:411
  1164. msgid "Connection lost"
  1165. msgstr ""
  1166. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:130
  1167. msgid "Connections"
  1168. msgstr "חיבורים"
  1169. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:377
  1170. msgid "Consider the slave up when all ARP IP targets are reachable (all, 1)"
  1171. msgstr ""
  1172. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:376
  1173. msgid "Consider the slave up when any ARP IP target is reachable (any, 0)"
  1174. msgstr ""
  1175. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/crontab.js:18
  1176. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:338
  1177. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:55
  1178. msgid "Contents have been saved."
  1179. msgstr ""
  1180. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:399
  1181. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:433
  1182. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:799
  1183. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:132
  1184. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:262
  1185. msgid "Continue"
  1186. msgstr ""
  1187. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4187
  1188. msgid ""
  1189. "Could not regain access to the device after applying the configuration "
  1190. "changes. You might need to reconnect if you modified network related "
  1191. "settings such as the IP address or wireless security credentials."
  1192. msgstr ""
  1193. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:189
  1194. msgid "Country"
  1195. msgstr "מדינה"
  1196. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:949
  1197. msgid "Country Code"
  1198. msgstr "קוד מדינה"
  1199. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:952
  1200. msgid "Coverage cell density"
  1201. msgstr ""
  1202. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:580
  1203. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2022
  1204. msgid "Create / Assign firewall-zone"
  1205. msgstr "צור / הקצה תחום-חומת אש"
  1206. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1149
  1207. msgid "Create interface"
  1208. msgstr ""
  1209. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:177
  1210. msgid "Critical"
  1211. msgstr "קריטי"
  1212. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:181
  1213. msgid "Cron Log Level"
  1214. msgstr ""
  1215. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:590
  1216. msgid "Current power"
  1217. msgstr ""
  1218. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:569
  1219. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:571
  1220. #: modules/luci-compat/luasrc/view/cbi/network_ifacelist.htm:51
  1221. #: modules/luci-compat/luasrc/view/cbi/network_ifacelist.htm:53
  1222. #: modules/luci-compat/luasrc/view/cbi/network_ifacelist.htm:82
  1223. #: modules/luci-compat/luasrc/view/cbi/network_ifacelist.htm:83
  1224. msgid "Custom Interface"
  1225. msgstr "ממשק מותאם אישית"
  1226. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:380
  1227. msgid ""
  1228. "Custom files (certificates, scripts) may remain on the system. To prevent "
  1229. "this, perform a factory-reset first."
  1230. msgstr ""
  1231. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/timer.js:6
  1232. msgid "Custom flash interval (kernel: timer)"
  1233. msgstr ""
  1234. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:59
  1235. msgid ""
  1236. "Customizes the behaviour of the device <abbr title=\"Light Emitting Diode"
  1237. "\">LED</abbr>s if possible."
  1238. msgstr ""
  1239. "מתאים את הגדרות ה-<abbr title=\"Light Emitting Diode\">LED</abbr>-ים במכשיר "
  1240. "(אם אפשרי)."
  1241. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:673
  1242. msgid "DAD transmits"
  1243. msgstr ""
  1244. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1425
  1245. msgid "DAE-Client"
  1246. msgstr ""
  1247. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1430
  1248. msgid "DAE-Port"
  1249. msgstr ""
  1250. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1435
  1251. msgid "DAE-Secret"
  1252. msgstr ""
  1253. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:483
  1254. msgid "DHCP Server"
  1255. msgstr "שרת DHCP"
  1256. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:155
  1257. #: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:50
  1258. msgid "DHCP and DNS"
  1259. msgstr "DHCP ו- DNS"
  1260. #: modules/luci-base/htdocs/luci-static/resources/network.js:2100
  1261. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:16
  1262. #: modules/luci-compat/luasrc/model/network.lua:969
  1263. msgid "DHCP client"
  1264. msgstr "לקוח DHCP"
  1265. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:707
  1266. msgid "DHCP-Options"
  1267. msgstr "אפשרויות-DHCP"
  1268. #: modules/luci-compat/luasrc/model/network/proto_dhcpv6.lua:7
  1269. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:7
  1270. msgid "DHCPv6 client"
  1271. msgstr ""
  1272. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:867
  1273. msgid "DHCPv6-Service"
  1274. msgstr ""
  1275. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:45
  1276. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:46
  1277. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:47
  1278. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:48
  1279. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:49
  1280. msgid "DNS"
  1281. msgstr "DNS"
  1282. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:277
  1283. msgid "DNS forwardings"
  1284. msgstr ""
  1285. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:932
  1286. msgid "DNS search domains"
  1287. msgstr ""
  1288. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:937
  1289. msgid "DNS weight"
  1290. msgstr ""
  1291. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:33
  1292. msgid "DNS-Label / FQDN"
  1293. msgstr ""
  1294. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:228
  1295. msgid "DNSSEC"
  1296. msgstr ""
  1297. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:232
  1298. msgid "DNSSEC check unsigned"
  1299. msgstr ""
  1300. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:99
  1301. msgid "DPD Idle Timeout"
  1302. msgstr ""
  1303. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:41
  1304. msgid "DS-Lite AFTR address"
  1305. msgstr ""
  1306. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1442
  1307. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:44
  1308. msgid "DSL"
  1309. msgstr ""
  1310. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:14
  1311. msgid "DSL Status"
  1312. msgstr ""
  1313. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1475
  1314. msgid "DSL line mode"
  1315. msgstr ""
  1316. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1160
  1317. msgid "DTIM Interval"
  1318. msgstr ""
  1319. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:57
  1320. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:127
  1321. msgid "DUID"
  1322. msgstr ""
  1323. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:21
  1324. msgid "Data Rate"
  1325. msgstr ""
  1326. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:172
  1327. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:183
  1328. msgid "Debug"
  1329. msgstr ""
  1330. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1400
  1331. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1415
  1332. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1430
  1333. msgid "Default %d"
  1334. msgstr ""
  1335. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:774
  1336. msgid "Default router"
  1337. msgstr ""
  1338. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/default-on.js:11
  1339. msgid "Default state"
  1340. msgstr ""
  1341. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:707
  1342. msgid ""
  1343. "Define additional DHCP options, for example "
  1344. "\"<code>6,192.168.2.1,192.168.2.2</code>\" which advertises different DNS "
  1345. "servers to clients."
  1346. msgstr ""
  1347. "הגדר אפשרויות DHCP נוספות, למשל \"<code>6,192.168.2.1,192.168.2.2</code>\" "
  1348. "אשר מציגות שרתי DNS שונים ללקוח"
  1349. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:462
  1350. msgid ""
  1351. "Defines a mapping of Linux internal packet priority to VLAN header priority "
  1352. "but for outgoing frames"
  1353. msgstr ""
  1354. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:456
  1355. msgid ""
  1356. "Defines a mapping of VLAN header priority to the Linux internal packet "
  1357. "priority on incoming frames"
  1358. msgstr ""
  1359. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:955
  1360. msgid "Delegate IPv6 prefixes"
  1361. msgstr ""
  1362. #: modules/luci-base/htdocs/luci-static/resources/form.js:2262
  1363. #: modules/luci-base/htdocs/luci-static/resources/form.js:2687
  1364. #: modules/luci-base/htdocs/luci-static/resources/form.js:2691
  1365. #: modules/luci-base/htdocs/luci-static/resources/form.js:3179
  1366. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2893
  1367. #: modules/luci-compat/luasrc/view/cbi/nsection.htm:11
  1368. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:162
  1369. #: modules/luci-compat/luasrc/view/cbi/tsection.htm:16
  1370. msgid "Delete"
  1371. msgstr "למחוק"
  1372. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:199
  1373. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:205
  1374. msgid "Delete key"
  1375. msgstr ""
  1376. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2790
  1377. msgid "Delete request failed: %s"
  1378. msgstr ""
  1379. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:904
  1380. msgid "Delete this network"
  1381. msgstr "מחק רשת זו"
  1382. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1160
  1383. msgid "Delivery Traffic Indication Message Interval"
  1384. msgstr ""
  1385. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:340
  1386. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:125
  1387. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:129
  1388. msgid "Description"
  1389. msgstr "תיאור"
  1390. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2889
  1391. msgid "Deselect"
  1392. msgstr ""
  1393. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:222
  1394. msgid "Design"
  1395. msgstr "עיצוב"
  1396. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:715
  1397. msgid "Designated master"
  1398. msgstr ""
  1399. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:386
  1400. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:71
  1401. msgid "Destination"
  1402. msgstr "יעד"
  1403. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:48
  1404. msgid "Destination port"
  1405. msgstr ""
  1406. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:59
  1407. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:165
  1408. msgid "Destination zone"
  1409. msgstr ""
  1410. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:67
  1411. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:191
  1412. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:43
  1413. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:46
  1414. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:81
  1415. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:569
  1416. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1102
  1417. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1384
  1418. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:55
  1419. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:12
  1420. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:247
  1421. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:280
  1422. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:356
  1423. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:392
  1424. msgid "Device"
  1425. msgstr "מכשיר"
  1426. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:918
  1427. msgid "Device Configuration"
  1428. msgstr "הגדרות מכשיר"
  1429. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:132
  1430. msgid "Device is not active"
  1431. msgstr ""
  1432. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:233
  1433. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:656
  1434. msgid "Device is restarting…"
  1435. msgstr ""
  1436. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:441
  1437. msgid "Device name"
  1438. msgstr ""
  1439. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:45
  1440. msgid "Device not managed by ModemManager."
  1441. msgstr ""
  1442. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1359
  1443. msgid "Device not present"
  1444. msgstr ""
  1445. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:341
  1446. msgid "Device type"
  1447. msgstr ""
  1448. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4186
  1449. msgid "Device unreachable!"
  1450. msgstr ""
  1451. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:53
  1452. msgid "Device unreachable! Still waiting for device..."
  1453. msgstr ""
  1454. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1224
  1455. msgid "Devices"
  1456. msgstr ""
  1457. #: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:88
  1458. msgid "Diagnostics"
  1459. msgstr "אבחון"
  1460. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:102
  1461. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:94
  1462. msgid "Dial number"
  1463. msgstr ""
  1464. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2686
  1465. msgid "Directory"
  1466. msgstr ""
  1467. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:896
  1468. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:936
  1469. msgid "Disable"
  1470. msgstr ""
  1471. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:666
  1472. msgid ""
  1473. "Disable <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</abbr> for "
  1474. "this interface."
  1475. msgstr ""
  1476. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:174
  1477. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:375
  1478. msgid "Disable DNS lookups"
  1479. msgstr ""
  1480. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:93
  1481. msgid "Disable Encryption"
  1482. msgstr ""
  1483. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1170
  1484. msgid "Disable Inactivity Polling"
  1485. msgstr ""
  1486. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:894
  1487. msgid "Disable this network"
  1488. msgstr ""
  1489. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:953
  1490. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1679
  1491. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:13
  1492. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:66
  1493. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:109
  1494. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:101
  1495. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:52
  1496. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:97
  1497. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:83
  1498. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:57
  1499. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:70
  1500. msgid "Disabled"
  1501. msgstr ""
  1502. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1184
  1503. msgid "Disassociate On Low Acknowledgement"
  1504. msgstr ""
  1505. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:294
  1506. msgid "Discard upstream RFC1918 responses"
  1507. msgstr ""
  1508. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:198
  1509. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:722
  1510. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:332
  1511. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:347
  1512. msgid "Disconnect"
  1513. msgstr ""
  1514. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:64
  1515. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:22
  1516. msgid "Disconnection attempt failed"
  1517. msgstr ""
  1518. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:48
  1519. msgid "Disconnection attempt failed."
  1520. msgstr ""
  1521. #: modules/luci-base/htdocs/luci-static/resources/form.js:606
  1522. #: modules/luci-base/htdocs/luci-static/resources/form.js:2886
  1523. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3330
  1524. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4157
  1525. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1758
  1526. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:328
  1527. msgid "Dismiss"
  1528. msgstr "התעלמות"
  1529. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:958
  1530. msgid "Distance Optimization"
  1531. msgstr ""
  1532. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:958
  1533. msgid "Distance to farthest network member in meters."
  1534. msgstr "מרחק לנק' הרשת הרחוקה ביותר במטרים"
  1535. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:155
  1536. msgid ""
  1537. "Dnsmasq is a combined <abbr title=\"Dynamic Host Configuration Protocol"
  1538. "\">DHCP</abbr>-Server and <abbr title=\"Domain Name System\">DNS</abbr>-"
  1539. "Forwarder for <abbr title=\"Network Address Translation\">NAT</abbr> "
  1540. "firewalls"
  1541. msgstr ""
  1542. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:252
  1543. msgid "Do not cache negative replies, e.g. for not existing domains"
  1544. msgstr ""
  1545. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:86
  1546. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:91
  1547. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:88
  1548. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:93
  1549. msgid "Do not create host route to peer (optional)."
  1550. msgstr ""
  1551. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:219
  1552. msgid "Do not forward requests that cannot be answered by public name servers"
  1553. msgstr ""
  1554. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:214
  1555. msgid "Do not forward reverse lookups for local networks"
  1556. msgstr ""
  1557. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:870
  1558. msgid "Do not offer DHCPv6 service on this interface."
  1559. msgstr ""
  1560. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:158
  1561. msgctxt "VLAN port state"
  1562. msgid "Do not participate"
  1563. msgstr ""
  1564. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:900
  1565. msgid ""
  1566. "Do not proxy any <abbr title=\"Neighbour Discovery Protocol\">NDP</abbr> "
  1567. "packets."
  1568. msgstr ""
  1569. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:25
  1570. msgid "Do not send a hostname"
  1571. msgstr ""
  1572. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:766
  1573. msgid ""
  1574. "Do not send any <abbr title=\"Router Advertisement, ICMPv6 Type 134\">RA</"
  1575. "abbr> messages on this interface."
  1576. msgstr ""
  1577. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2776
  1578. msgid "Do you really want to delete \"%s\" ?"
  1579. msgstr ""
  1580. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:200
  1581. msgid "Do you really want to delete the following SSH key?"
  1582. msgstr ""
  1583. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:94
  1584. msgid "Do you really want to erase all settings?"
  1585. msgstr ""
  1586. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2774
  1587. msgid "Do you really want to recursively delete the directory \"%s\" ?"
  1588. msgstr ""
  1589. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:168
  1590. msgid "Domain required"
  1591. msgstr ""
  1592. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:307
  1593. msgid "Domain whitelist"
  1594. msgstr ""
  1595. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:83
  1596. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:88
  1597. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:67
  1598. msgid "Don't Fragment"
  1599. msgstr ""
  1600. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:169
  1601. msgid ""
  1602. "Don't forward <abbr title=\"Domain Name System\">DNS</abbr>-Requests without "
  1603. "<abbr title=\"Domain Name System\">DNS</abbr>-Name"
  1604. msgstr ""
  1605. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:152
  1606. msgid "Down"
  1607. msgstr ""
  1608. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:402
  1609. msgid "Down Delay"
  1610. msgstr ""
  1611. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:364
  1612. msgid "Download backup"
  1613. msgstr "הורד גיבוי"
  1614. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:402
  1615. msgid "Download mtdblock"
  1616. msgstr ""
  1617. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1480
  1618. msgid "Downstream SNR offset"
  1619. msgstr ""
  1620. #: modules/luci-base/htdocs/luci-static/resources/form.js:2645
  1621. msgid "Drag to reorder"
  1622. msgstr ""
  1623. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:341
  1624. msgid "Drop Duplicate Frames"
  1625. msgstr ""
  1626. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:12
  1627. msgid "Dropbear Instance"
  1628. msgstr ""
  1629. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:10
  1630. msgid ""
  1631. "Dropbear offers <abbr title=\"Secure Shell\">SSH</abbr> network shell access "
  1632. "and an integrated <abbr title=\"Secure Copy\">SCP</abbr> server"
  1633. msgstr ""
  1634. "Dropbear מאפשר גישת <abbr title=\"Secure Shell\">SSH</abbr> רשתית ושרת <abbr "
  1635. "title=\"Secure Copy\">SCP</abbr> מובנה"
  1636. #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:14
  1637. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:11
  1638. msgid "Dual-Stack Lite (RFC6333)"
  1639. msgstr ""
  1640. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:683
  1641. msgid "Dynamic <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</abbr>"
  1642. msgstr "<abbr title=\"Dynamic Host Configuration Protocol\">DHCP</abbr> דינאמי"
  1643. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:60
  1644. msgid "Dynamic tunnel"
  1645. msgstr ""
  1646. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:683
  1647. msgid ""
  1648. "Dynamically allocate DHCP addresses for clients. If disabled, only clients "
  1649. "having static leases will be served."
  1650. msgstr ""
  1651. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:67
  1652. msgid "EA-bits length"
  1653. msgstr ""
  1654. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1563
  1655. msgid "EAP-Method"
  1656. msgstr ""
  1657. #: modules/luci-base/htdocs/luci-static/resources/form.js:2665
  1658. #: modules/luci-base/htdocs/luci-static/resources/form.js:2668
  1659. #: modules/luci-base/htdocs/luci-static/resources/form.js:3042
  1660. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:154
  1661. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:160
  1662. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:495
  1663. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:901
  1664. msgid "Edit"
  1665. msgstr "ערוך"
  1666. #: modules/luci-compat/luasrc/view/cbi/error.htm:13
  1667. msgid ""
  1668. "Edit the raw configuration data above to fix any error and hit \"Save\" to "
  1669. "reload the page."
  1670. msgstr ""
  1671. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:899
  1672. msgid "Edit this network"
  1673. msgstr "ערוך רשת זו"
  1674. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:850
  1675. msgid "Edit wireless network"
  1676. msgstr ""
  1677. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:462
  1678. msgid "Egress QoS mapping"
  1679. msgstr ""
  1680. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:166
  1681. msgctxt "VLAN port state"
  1682. msgid "Egress tagged"
  1683. msgstr ""
  1684. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:162
  1685. msgctxt "VLAN port state"
  1686. msgid "Egress untagged"
  1687. msgstr ""
  1688. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:179
  1689. msgid "Emergency"
  1690. msgstr "מצב חרום"
  1691. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:896
  1692. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:936
  1693. msgid "Enable"
  1694. msgstr "אפשר"
  1695. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:538
  1696. msgid ""
  1697. "Enable <abbr title=\"Internet Group Management Protocol\">IGMP</abbr> "
  1698. "snooping"
  1699. msgstr ""
  1700. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:518
  1701. msgid "Enable <abbr title=\"Spanning Tree Protocol\">STP</abbr>"
  1702. msgstr "אפשר <abbr title=\"Spanning Tree Protocol\">STP</abbr>"
  1703. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:785
  1704. msgid "Enable <abbr title=\"Stateless Address Auto Config\">SLAAC</abbr>"
  1705. msgstr ""
  1706. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:174
  1707. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:369
  1708. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:375
  1709. msgid "Enable DNS lookups"
  1710. msgstr ""
  1711. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:292
  1712. msgid "Enable Dynamic Shuffling Of Flows"
  1713. msgstr ""
  1714. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:60
  1715. msgid "Enable HE.net dynamic endpoint update"
  1716. msgstr ""
  1717. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:665
  1718. msgid "Enable IPv6"
  1719. msgstr ""
  1720. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:90
  1721. msgid "Enable IPv6 negotiation"
  1722. msgstr ""
  1723. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:49
  1724. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:94
  1725. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:80
  1726. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:54
  1727. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:67
  1728. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:93
  1729. msgid "Enable IPv6 negotiation on the PPP link"
  1730. msgstr ""
  1731. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:192
  1732. msgid "Enable Jumbo Frame passthrough"
  1733. msgstr ""
  1734. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:696
  1735. msgid "Enable MAC address learning"
  1736. msgstr ""
  1737. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:242
  1738. msgid "Enable NTP client"
  1739. msgstr ""
  1740. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:96
  1741. msgid "Enable Single DES"
  1742. msgstr ""
  1743. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:368
  1744. msgid "Enable TFTP server"
  1745. msgstr "אפשר שרת TFTP"
  1746. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:720
  1747. msgid "Enable VLAN filtering"
  1748. msgstr ""
  1749. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:184
  1750. msgid "Enable VLAN functionality"
  1751. msgstr "אפשר תפקוד VLAN"
  1752. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1708
  1753. msgid "Enable WPS pushbutton, requires WPA(2)-PSK/WPA3-SAE"
  1754. msgstr ""
  1755. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:955
  1756. msgid ""
  1757. "Enable downstream delegation of IPv6 prefixes available on this interface"
  1758. msgstr ""
  1759. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1704
  1760. msgid "Enable key reinstallation (KRACK) countermeasures"
  1761. msgstr ""
  1762. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:187
  1763. msgid "Enable learning and aging"
  1764. msgstr "אפשר למידה והזדקנות"
  1765. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:198
  1766. msgid "Enable mirroring of incoming packets"
  1767. msgstr ""
  1768. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:199
  1769. msgid "Enable mirroring of outgoing packets"
  1770. msgstr ""
  1771. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:715
  1772. msgid "Enable multicast fast leave"
  1773. msgstr ""
  1774. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:547
  1775. msgid "Enable multicast querier"
  1776. msgstr ""
  1777. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:679
  1778. msgid "Enable multicast support"
  1779. msgstr ""
  1780. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1437
  1781. msgid ""
  1782. "Enable packet steering across all CPUs. May help or hinder network speed."
  1783. msgstr ""
  1784. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:622
  1785. msgid "Enable promiscuous mode"
  1786. msgstr ""
  1787. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:71
  1788. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:66
  1789. msgid "Enable rx checksum"
  1790. msgstr ""
  1791. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:89
  1792. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:94
  1793. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:91
  1794. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:96
  1795. msgid "Enable support for multicast traffic (optional)."
  1796. msgstr ""
  1797. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:83
  1798. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:88
  1799. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:67
  1800. msgid "Enable the DF (Don't Fragment) flag of the encapsulating packets."
  1801. msgstr ""
  1802. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:894
  1803. msgid "Enable this network"
  1804. msgstr ""
  1805. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:75
  1806. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:70
  1807. msgid "Enable tx checksum"
  1808. msgstr ""
  1809. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:699
  1810. msgid "Enable unicast flooding"
  1811. msgstr ""
  1812. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:243
  1813. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:352
  1814. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:66
  1815. msgid "Enabled"
  1816. msgstr "אפשר"
  1817. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:538
  1818. msgid "Enables IGMP snooping on this bridge"
  1819. msgstr ""
  1820. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1503
  1821. msgid ""
  1822. "Enables fast roaming among access points that belong to the same Mobility "
  1823. "Domain"
  1824. msgstr ""
  1825. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:518
  1826. msgid "Enables the Spanning Tree Protocol on this bridge"
  1827. msgstr ""
  1828. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:59
  1829. msgid "Encapsulation limit"
  1830. msgstr ""
  1831. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1470
  1832. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1528
  1833. msgid "Encapsulation mode"
  1834. msgstr ""
  1835. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:159
  1836. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:183
  1837. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1189
  1838. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1736
  1839. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:144
  1840. msgid "Encryption"
  1841. msgstr "הצפנה"
  1842. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:156
  1843. msgid "Endpoint Host"
  1844. msgstr ""
  1845. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:160
  1846. msgid "Endpoint Port"
  1847. msgstr ""
  1848. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:684
  1849. msgid "Enforce IGMPv1"
  1850. msgstr ""
  1851. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:685
  1852. msgid "Enforce IGMPv2"
  1853. msgstr ""
  1854. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:686
  1855. msgid "Enforce IGMPv3"
  1856. msgstr ""
  1857. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:691
  1858. msgid "Enforce MLD version 1"
  1859. msgstr ""
  1860. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:692
  1861. msgid "Enforce MLD version 2"
  1862. msgstr ""
  1863. #: modules/luci-compat/luasrc/view/cbi/dropdown.htm:16
  1864. msgid "Enter custom value"
  1865. msgstr ""
  1866. #: modules/luci-compat/luasrc/view/cbi/dropdown.htm:16
  1867. msgid "Enter custom values"
  1868. msgstr ""
  1869. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:97
  1870. msgid "Erasing..."
  1871. msgstr "מוחק..."
  1872. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:103
  1873. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:104
  1874. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:105
  1875. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:106
  1876. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:107
  1877. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:176
  1878. msgid "Error"
  1879. msgstr "שגיאה"
  1880. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:29
  1881. msgid "Errored seconds (ES)"
  1882. msgstr ""
  1883. #: modules/luci-base/htdocs/luci-static/resources/network.js:3004
  1884. #: modules/luci-compat/luasrc/model/network.lua:1433
  1885. msgid "Ethernet Adapter"
  1886. msgstr ""
  1887. #: modules/luci-base/htdocs/luci-static/resources/network.js:2995
  1888. #: modules/luci-compat/luasrc/model/network.lua:1423
  1889. msgid "Ethernet Switch"
  1890. msgstr ""
  1891. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:270
  1892. msgid "Every 30 seconds (slow, 0)"
  1893. msgstr ""
  1894. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:271
  1895. msgid "Every second (fast, 1)"
  1896. msgstr ""
  1897. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:406
  1898. msgid "Exclude interfaces"
  1899. msgstr ""
  1900. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:356
  1901. msgid "Existing device"
  1902. msgstr ""
  1903. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:247
  1904. msgid "Expand hosts"
  1905. msgstr ""
  1906. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:972
  1907. msgid "Expecting a hexadecimal assignment hint"
  1908. msgstr ""
  1909. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:18
  1910. msgid "Expecting a valid IPv4 address"
  1911. msgstr ""
  1912. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:18
  1913. msgid "Expecting a valid IPv6 address"
  1914. msgstr ""
  1915. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:28
  1916. msgid "Expecting two priority values separated by a colon"
  1917. msgstr ""
  1918. #: modules/luci-base/htdocs/luci-static/resources/validation.js:64
  1919. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:73
  1920. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:79
  1921. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:107
  1922. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:121
  1923. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:125
  1924. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:129
  1925. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:132
  1926. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:136
  1927. msgid "Expecting: %s"
  1928. msgstr ""
  1929. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:48
  1930. msgid "Expecting: non-empty value"
  1931. msgstr ""
  1932. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:50
  1933. msgid "Expires"
  1934. msgstr ""
  1935. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:679
  1936. msgid ""
  1937. "Expiry time of leased addresses, minimum is 2 minutes (<code>2m</code>)."
  1938. msgstr ""
  1939. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:19
  1940. msgid "External"
  1941. msgstr ""
  1942. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1554
  1943. msgid "External R0 Key Holder List"
  1944. msgstr ""
  1945. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1558
  1946. msgid "External R1 Key Holder List"
  1947. msgstr ""
  1948. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:153
  1949. msgid "External system log server"
  1950. msgstr ""
  1951. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:158
  1952. msgid "External system log server port"
  1953. msgstr ""
  1954. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:163
  1955. msgid "External system log server protocol"
  1956. msgstr ""
  1957. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:79
  1958. msgid "Extra SSH command options"
  1959. msgstr ""
  1960. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:68
  1961. msgid "Extra pppd options"
  1962. msgstr ""
  1963. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:66
  1964. msgid "Extra sstpc options"
  1965. msgstr ""
  1966. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1528
  1967. msgid "FT over DS"
  1968. msgstr ""
  1969. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1529
  1970. msgid "FT over the Air"
  1971. msgstr ""
  1972. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1526
  1973. msgid "FT protocol"
  1974. msgstr ""
  1975. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:87
  1976. msgid "Failed to change the system password."
  1977. msgstr ""
  1978. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4145
  1979. msgid "Failed to confirm apply within %ds, waiting for rollback…"
  1980. msgstr ""
  1981. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:37
  1982. msgid "Failed to execute \"/etc/init.d/%s %s\" action: %s"
  1983. msgstr ""
  1984. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2694
  1985. msgid "File"
  1986. msgstr ""
  1987. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2641
  1988. msgid "File not accessible"
  1989. msgstr ""
  1990. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2832
  1991. msgid "Filename"
  1992. msgstr ""
  1993. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:381
  1994. msgid "Filename of the boot image advertised to clients"
  1995. msgstr ""
  1996. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:191
  1997. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:314
  1998. msgid "Filesystem"
  1999. msgstr ""
  2000. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:213
  2001. msgid "Filter private"
  2002. msgstr ""
  2003. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:218
  2004. msgid "Filter useless"
  2005. msgstr ""
  2006. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:388
  2007. msgid "Filtering for all slaves, no validation"
  2008. msgstr ""
  2009. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:389
  2010. msgid "Filtering for all slaves, validation only for active slave"
  2011. msgstr ""
  2012. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:390
  2013. msgid "Filtering for all slaves, validation only for backup slaves"
  2014. msgstr ""
  2015. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:65
  2016. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:23
  2017. msgid "Finalizing failed"
  2018. msgstr ""
  2019. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:150
  2020. msgid ""
  2021. "Find all currently attached filesystems and swap and replace configuration "
  2022. "with defaults based on what was detected"
  2023. msgstr ""
  2024. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:877
  2025. msgid "Find and join network"
  2026. msgstr ""
  2027. #: modules/luci-compat/luasrc/view/cbi/delegator.htm:9
  2028. msgid "Finish"
  2029. msgstr ""
  2030. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:15
  2031. msgid "Firewall"
  2032. msgstr ""
  2033. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:97
  2034. msgid "Firewall Mark"
  2035. msgstr "סימן חומת אש"
  2036. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:482
  2037. msgid "Firewall Settings"
  2038. msgstr ""
  2039. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:326
  2040. msgid "Firewall Status"
  2041. msgstr ""
  2042. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1487
  2043. msgid "Firmware File"
  2044. msgstr ""
  2045. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:57
  2046. msgid "Firmware Version"
  2047. msgstr ""
  2048. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:327
  2049. msgid "Fixed source port for outbound DNS queries"
  2050. msgstr ""
  2051. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:281
  2052. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:419
  2053. msgid "Flash image..."
  2054. msgstr ""
  2055. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:277
  2056. msgid "Flash image?"
  2057. msgstr ""
  2058. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:409
  2059. msgid "Flash new firmware image"
  2060. msgstr ""
  2061. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:354
  2062. msgid "Flash operations"
  2063. msgstr ""
  2064. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:286
  2065. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:288
  2066. msgid "Flashing…"
  2067. msgstr ""
  2068. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:686
  2069. msgid "Force"
  2070. msgstr ""
  2071. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:970
  2072. msgid "Force 40MHz mode"
  2073. msgstr ""
  2074. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1230
  2075. msgid "Force CCMP (AES)"
  2076. msgstr ""
  2077. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:686
  2078. msgid "Force DHCP on this network even if another server is detected."
  2079. msgstr ""
  2080. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:682
  2081. msgid "Force IGMP version"
  2082. msgstr ""
  2083. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:689
  2084. msgid "Force MLD version"
  2085. msgstr ""
  2086. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1231
  2087. msgid "Force TKIP"
  2088. msgstr ""
  2089. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1232
  2090. msgid "Force TKIP and CCMP (AES)"
  2091. msgstr ""
  2092. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1215
  2093. msgid "Force link"
  2094. msgstr ""
  2095. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:255
  2096. msgid ""
  2097. "Force upgrade: Select 'Force upgrade' to flash the image even if the image "
  2098. "format check fails. Use only if you are sure that the firmware is correct "
  2099. "and meant for your device!"
  2100. msgstr ""
  2101. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:90
  2102. msgid "Force use of NAT-T"
  2103. msgstr ""
  2104. #: modules/luci-base/luasrc/view/csrftoken.htm:8
  2105. msgid "Form token mismatch"
  2106. msgstr ""
  2107. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:902
  2108. msgid ""
  2109. "Forward <abbr title=\"Neighbour Discovery Protocol\">NDP</abbr> <abbr title="
  2110. "\"Neighbour Solicitation, Type 135\">NS</abbr> and <abbr title=\"Neighbour "
  2111. "Advertisement, Type 136\">NA</abbr> messages between the designated master "
  2112. "interface and downstream interfaces."
  2113. msgstr ""
  2114. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:770
  2115. msgid ""
  2116. "Forward <abbr title=\"Router Advertisement, ICMPv6 Type 134\">RA</abbr> "
  2117. "messages received on the designated master interface to downstream "
  2118. "interfaces."
  2119. msgstr ""
  2120. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:164
  2121. msgid "Forward DHCP traffic"
  2122. msgstr ""
  2123. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:874
  2124. msgid ""
  2125. "Forward DHCPv6 messages between the designated master interface and "
  2126. "downstream interfaces."
  2127. msgstr ""
  2128. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:28
  2129. msgid "Forward Error Correction Seconds (FECS)"
  2130. msgstr ""
  2131. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:161
  2132. msgid "Forward broadcast traffic"
  2133. msgstr ""
  2134. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:527
  2135. msgid "Forward delay"
  2136. msgstr ""
  2137. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:997
  2138. msgid "Forward mesh peer traffic"
  2139. msgstr ""
  2140. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:711
  2141. msgid "Forward multicast packets as unicast packets on this device."
  2142. msgstr ""
  2143. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1535
  2144. msgid "Forwarding mode"
  2145. msgstr ""
  2146. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:962
  2147. msgid "Fragmentation Threshold"
  2148. msgstr ""
  2149. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:110
  2150. msgid ""
  2151. "Further information about WireGuard interfaces and peers at <a href='http://"
  2152. "wireguard.com'>wireguard.com</a>."
  2153. msgstr ""
  2154. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:128
  2155. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:184
  2156. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:164
  2157. msgid "GHz"
  2158. msgstr ""
  2159. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:92
  2160. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:78
  2161. msgid "GPRS only"
  2162. msgstr ""
  2163. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:10
  2164. msgid "GRE tunnel over IPv4"
  2165. msgstr ""
  2166. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:10
  2167. msgid "GRE tunnel over IPv6"
  2168. msgstr ""
  2169. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:10
  2170. msgid "GRETAP tunnel over IPv4"
  2171. msgstr ""
  2172. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:10
  2173. msgid "GRETAP tunnel over IPv6"
  2174. msgstr ""
  2175. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:44
  2176. msgid "Gateway"
  2177. msgstr ""
  2178. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:36
  2179. msgid "Gateway Ports"
  2180. msgstr ""
  2181. #: modules/luci-base/htdocs/luci-static/resources/network.js:11
  2182. #: modules/luci-compat/luasrc/model/network.lua:29
  2183. msgid "Gateway address is invalid"
  2184. msgstr ""
  2185. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:161
  2186. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:477
  2187. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:24
  2188. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:240
  2189. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:108
  2190. msgid "General Settings"
  2191. msgstr ""
  2192. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:632
  2193. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1522
  2194. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:922
  2195. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:984
  2196. msgid "General Setup"
  2197. msgstr ""
  2198. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:336
  2199. msgid "General device options"
  2200. msgstr ""
  2201. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:150
  2202. msgid "Generate Config"
  2203. msgstr ""
  2204. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:66
  2205. msgid "Generate Key"
  2206. msgstr ""
  2207. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1532
  2208. msgid "Generate PMK locally"
  2209. msgstr ""
  2210. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:366
  2211. msgid "Generate archive"
  2212. msgstr ""
  2213. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:79
  2214. msgid "Given password confirmation did not match, password not changed!"
  2215. msgstr ""
  2216. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:146
  2217. msgid "Global Settings"
  2218. msgstr ""
  2219. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1430
  2220. msgid "Global network options"
  2221. msgstr ""
  2222. #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:57
  2223. #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215
  2224. #: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:62
  2225. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:82
  2226. msgid "Go to password configuration..."
  2227. msgstr ""
  2228. #: modules/luci-base/htdocs/luci-static/resources/form.js:2587
  2229. #: modules/luci-base/htdocs/luci-static/resources/form.js:3361
  2230. #: modules/luci-compat/luasrc/view/cbi/full_valueheader.htm:4
  2231. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:58
  2232. msgid "Go to relevant configuration page"
  2233. msgstr ""
  2234. #: modules/luci-mod-network/root/usr/share/rpcd/acl.d/luci-mod-network.json:37
  2235. msgid "Grant access to DHCP configuration"
  2236. msgstr ""
  2237. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:111
  2238. msgid "Grant access to DHCP status display"
  2239. msgstr ""
  2240. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:120
  2241. msgid "Grant access to DSL status display"
  2242. msgstr ""
  2243. #: protocols/luci-proto-openconnect/root/usr/share/rpcd/acl.d/luci-openconnect.json:3
  2244. msgid "Grant access to LuCI OpenConnect procedures"
  2245. msgstr ""
  2246. #: protocols/luci-proto-wireguard/root/usr/share/rpcd/acl.d/luci-wireguard.json:3
  2247. msgid "Grant access to LuCI Wireguard procedures"
  2248. msgstr ""
  2249. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:19
  2250. msgid "Grant access to SSH configuration"
  2251. msgstr ""
  2252. #: modules/luci-base/root/usr/share/rpcd/acl.d/luci-base.json:12
  2253. msgid "Grant access to basic LuCI procedures"
  2254. msgstr ""
  2255. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:64
  2256. msgid "Grant access to crontab configuration"
  2257. msgstr ""
  2258. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:69
  2259. msgid "Grant access to firewall status"
  2260. msgstr ""
  2261. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:116
  2262. msgid "Grant access to flash operations"
  2263. msgstr ""
  2264. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:95
  2265. msgid "Grant access to main status display"
  2266. msgstr ""
  2267. #: protocols/luci-proto-modemmanager/root/usr/share/rpcd/acl.d/luci-proto-modemmanager.json:3
  2268. msgid "Grant access to mmcli"
  2269. msgstr ""
  2270. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:84
  2271. msgid "Grant access to mount configuration"
  2272. msgstr ""
  2273. #: modules/luci-mod-network/root/usr/share/rpcd/acl.d/luci-mod-network.json:3
  2274. msgid "Grant access to network configuration"
  2275. msgstr ""
  2276. #: modules/luci-mod-network/root/usr/share/rpcd/acl.d/luci-mod-network.json:50
  2277. msgid "Grant access to network diagnostic tools"
  2278. msgstr ""
  2279. #: modules/luci-base/root/usr/share/rpcd/acl.d/luci-base.json:36
  2280. msgid "Grant access to network status information"
  2281. msgstr ""
  2282. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:13
  2283. msgid "Grant access to process status"
  2284. msgstr ""
  2285. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:3
  2286. msgid "Grant access to realtime statistics"
  2287. msgstr ""
  2288. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:42
  2289. msgid "Grant access to startup configuration"
  2290. msgstr ""
  2291. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:3
  2292. msgid "Grant access to system configuration"
  2293. msgstr ""
  2294. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:30
  2295. msgid "Grant access to system logs"
  2296. msgstr ""
  2297. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:47
  2298. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:60
  2299. msgid "Grant access to the system route status"
  2300. msgstr ""
  2301. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:129
  2302. msgid "Grant access to wireless status display"
  2303. msgstr ""
  2304. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:66
  2305. msgid "Group Password"
  2306. msgstr ""
  2307. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:22
  2308. msgid "Guest"
  2309. msgstr ""
  2310. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:81
  2311. msgid "HE.net password"
  2312. msgstr ""
  2313. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:73
  2314. msgid "HE.net username"
  2315. msgstr ""
  2316. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:46
  2317. msgid "Hang Up"
  2318. msgstr ""
  2319. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:33
  2320. msgid "Header Error Code Errors (HEC)"
  2321. msgstr ""
  2322. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/heartbeat.js:5
  2323. msgid "Heartbeat interval (kernel: heartbeat)"
  2324. msgstr ""
  2325. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:522
  2326. msgid "Hello interval"
  2327. msgstr ""
  2328. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:100
  2329. msgid ""
  2330. "Here you can configure the basic aspects of your device like its hostname or "
  2331. "the timezone."
  2332. msgstr ""
  2333. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1138
  2334. msgid "Hide <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>"
  2335. msgstr ""
  2336. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:293
  2337. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:332
  2338. msgid "Hide empty chains"
  2339. msgstr ""
  2340. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:955
  2341. msgid "High"
  2342. msgstr ""
  2343. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:55
  2344. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2150
  2345. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:125
  2346. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:230
  2347. msgid "Host"
  2348. msgstr ""
  2349. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/hosts.js:22
  2350. msgid "Host entries"
  2351. msgstr ""
  2352. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:171
  2353. msgid "Host expiry timeout"
  2354. msgstr ""
  2355. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:31
  2356. msgid "Host-<abbr title=\"Internet Protocol Address\">IP</abbr> or Network"
  2357. msgstr ""
  2358. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:88
  2359. msgid "Host-Uniq tag content"
  2360. msgstr ""
  2361. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:36
  2362. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:419
  2363. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/hosts.js:27
  2364. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:54
  2365. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:86
  2366. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:121
  2367. msgid "Hostname"
  2368. msgstr ""
  2369. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:22
  2370. msgid "Hostname to send when requesting DHCP"
  2371. msgstr ""
  2372. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/hosts.js:20
  2373. #: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:63
  2374. msgid "Hostnames"
  2375. msgstr ""
  2376. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:276
  2377. msgid "Human-readable counters"
  2378. msgstr ""
  2379. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:24
  2380. msgid "Hybrid"
  2381. msgstr ""
  2382. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:53
  2383. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:48
  2384. msgid "ID used to uniquely identify the VXLAN"
  2385. msgstr ""
  2386. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:206
  2387. msgid "IEEE 802.3ad Dynamic link aggregation (802.3ad, 4)"
  2388. msgstr ""
  2389. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:75
  2390. msgid "IKE DH Group"
  2391. msgstr ""
  2392. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:83
  2393. msgid "IP Addresses"
  2394. msgstr ""
  2395. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:81
  2396. msgid "IP Protocol"
  2397. msgstr ""
  2398. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:115
  2399. msgid "IP Type"
  2400. msgstr ""
  2401. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/hosts.js:31
  2402. msgid "IP address"
  2403. msgstr ""
  2404. #: modules/luci-base/htdocs/luci-static/resources/network.js:10
  2405. #: modules/luci-compat/luasrc/model/network.lua:28
  2406. msgid "IP address is invalid"
  2407. msgstr ""
  2408. #: modules/luci-base/htdocs/luci-static/resources/network.js:13
  2409. #: modules/luci-compat/luasrc/model/network.lua:31
  2410. msgid "IP address is missing"
  2411. msgstr ""
  2412. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:79
  2413. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:102
  2414. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:86
  2415. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:87
  2416. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:88
  2417. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:89
  2418. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:90
  2419. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:83
  2420. msgid "IPv4"
  2421. msgstr ""
  2422. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:351
  2423. msgid "IPv4 Firewall"
  2424. msgstr ""
  2425. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:29
  2426. msgid "IPv4 Upstream"
  2427. msgstr ""
  2428. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:178
  2429. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:37
  2430. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:87
  2431. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:155
  2432. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:162
  2433. msgid "IPv4 address"
  2434. msgstr "כתבות IPv4"
  2435. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:29
  2436. msgid "IPv4 assignment length"
  2437. msgstr ""
  2438. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:181
  2439. msgid "IPv4 broadcast"
  2440. msgstr ""
  2441. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:180
  2442. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:165
  2443. msgid "IPv4 gateway"
  2444. msgstr ""
  2445. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:179
  2446. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:168
  2447. msgid "IPv4 netmask"
  2448. msgstr ""
  2449. #: modules/luci-base/htdocs/luci-static/resources/validation.js:294
  2450. msgid "IPv4 network in address/netmask notation"
  2451. msgstr ""
  2452. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:117
  2453. msgid "IPv4 only"
  2454. msgstr ""
  2455. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:52
  2456. msgid "IPv4 prefix"
  2457. msgstr ""
  2458. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:61
  2459. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:55
  2460. msgid "IPv4 prefix length"
  2461. msgstr ""
  2462. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:84
  2463. msgid "IPv4+IPv6"
  2464. msgstr ""
  2465. #: modules/luci-compat/luasrc/model/network/proto_ipip.lua:9
  2466. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:10
  2467. msgid "IPv4-in-IPv4 (RFC2003)"
  2468. msgstr ""
  2469. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:116
  2470. msgid "IPv4/IPv6 (both - defaults to IPv4)"
  2471. msgstr ""
  2472. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:80
  2473. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:103
  2474. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:91
  2475. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:92
  2476. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:93
  2477. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:94
  2478. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:95
  2479. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:96
  2480. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:97
  2481. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:98
  2482. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:99
  2483. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:100
  2484. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:85
  2485. msgid "IPv6"
  2486. msgstr ""
  2487. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:354
  2488. msgid "IPv6 Firewall"
  2489. msgstr ""
  2490. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:669
  2491. msgid "IPv6 MTU"
  2492. msgstr ""
  2493. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:206
  2494. msgid "IPv6 Neighbours"
  2495. msgstr ""
  2496. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:635
  2497. msgid "IPv6 RA Settings"
  2498. msgstr ""
  2499. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:634
  2500. msgid "IPv6 Settings"
  2501. msgstr ""
  2502. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1434
  2503. msgid "IPv6 ULA-Prefix"
  2504. msgstr ""
  2505. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:29
  2506. msgid "IPv6 Upstream"
  2507. msgstr ""
  2508. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:183
  2509. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:56
  2510. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:126
  2511. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:174
  2512. msgid "IPv6 address"
  2513. msgstr ""
  2514. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:963
  2515. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:27
  2516. msgid "IPv6 assignment hint"
  2517. msgstr ""
  2518. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:958
  2519. msgid "IPv6 assignment length"
  2520. msgstr ""
  2521. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:188
  2522. msgid "IPv6 gateway"
  2523. msgstr ""
  2524. #: modules/luci-base/htdocs/luci-static/resources/validation.js:299
  2525. msgid "IPv6 network in address/netmask notation"
  2526. msgstr ""
  2527. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:118
  2528. msgid "IPv6 only"
  2529. msgstr ""
  2530. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1007
  2531. msgid "IPv6 preference"
  2532. msgstr ""
  2533. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:53
  2534. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:59
  2535. msgid "IPv6 prefix"
  2536. msgstr ""
  2537. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:980
  2538. msgid "IPv6 prefix filter"
  2539. msgstr ""
  2540. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:57
  2541. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:63
  2542. msgid "IPv6 prefix length"
  2543. msgstr ""
  2544. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:192
  2545. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:57
  2546. msgid "IPv6 routed prefix"
  2547. msgstr ""
  2548. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1003
  2549. msgid "IPv6 suffix"
  2550. msgstr ""
  2551. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:51
  2552. msgid "IPv6 support"
  2553. msgstr ""
  2554. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:101
  2555. msgid "IPv6-PD"
  2556. msgstr ""
  2557. #: modules/luci-compat/luasrc/model/network/proto_6x4.lua:13
  2558. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:10
  2559. msgid "IPv6-in-IPv4 (RFC4213)"
  2560. msgstr ""
  2561. #: modules/luci-compat/luasrc/model/network/proto_6x4.lua:17
  2562. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:9
  2563. msgid "IPv6-over-IPv4 (6rd)"
  2564. msgstr ""
  2565. #: modules/luci-compat/luasrc/model/network/proto_6x4.lua:15
  2566. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6to4.js:9
  2567. msgid "IPv6-over-IPv4 (6to4)"
  2568. msgstr ""
  2569. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1665
  2570. msgid "Identity"
  2571. msgstr ""
  2572. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:96
  2573. msgid "If checked, 1DES is enabled"
  2574. msgstr ""
  2575. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:51
  2576. msgid "If checked, adds \"+ipv6\" to the pppd options"
  2577. msgstr ""
  2578. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:93
  2579. msgid "If checked, encryption is disabled"
  2580. msgstr ""
  2581. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:980
  2582. msgid ""
  2583. "If set, downstream subnets are only allocated from the given IPv6 prefix "
  2584. "classes."
  2585. msgstr ""
  2586. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:254
  2587. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:360
  2588. msgid ""
  2589. "If specified, mount the device by its UUID instead of a fixed device node"
  2590. msgstr ""
  2591. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:267
  2592. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:376
  2593. msgid ""
  2594. "If specified, mount the device by the partition label instead of a fixed "
  2595. "device node"
  2596. msgstr ""
  2597. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:919
  2598. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:64
  2599. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:111
  2600. msgid "If unchecked, no default route is configured"
  2601. msgstr ""
  2602. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:923
  2603. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:68
  2604. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:122
  2605. msgid "If unchecked, the advertised DNS server addresses are ignored"
  2606. msgstr ""
  2607. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:339
  2608. msgid ""
  2609. "If your physical memory is insufficient unused data can be temporarily "
  2610. "swapped to a swap-device resulting in a higher amount of usable <abbr title="
  2611. "\"Random Access Memory\">RAM</abbr>. Be aware that swapping data is a very "
  2612. "slow process as the swap-device cannot be accessed with the high datarates "
  2613. "of the <abbr title=\"Random Access Memory\">RAM</abbr>."
  2614. msgstr ""
  2615. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:197
  2616. msgid "Ignore <code>/etc/hosts</code>"
  2617. msgstr ""
  2618. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:666
  2619. msgid "Ignore interface"
  2620. msgstr ""
  2621. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:185
  2622. msgid "Ignore resolve file"
  2623. msgstr ""
  2624. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:417
  2625. msgid "Image"
  2626. msgstr ""
  2627. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:68
  2628. msgid "In"
  2629. msgstr ""
  2630. #: modules/luci-base/luasrc/view/csrftoken.htm:13
  2631. msgid ""
  2632. "In order to prevent unauthorized access to the system, your request has been "
  2633. "blocked. Click \"Continue »\" below to return to the previous page."
  2634. msgstr ""
  2635. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:125
  2636. msgid "In seconds"
  2637. msgstr ""
  2638. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:144
  2639. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:128
  2640. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:114
  2641. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:92
  2642. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:101
  2643. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:124
  2644. msgid "Inactivity timeout"
  2645. msgstr ""
  2646. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:267
  2647. msgid "Inbound:"
  2648. msgstr ""
  2649. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:100
  2650. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:105
  2651. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:102
  2652. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:107
  2653. msgid "Incoming checksum"
  2654. msgstr ""
  2655. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:92
  2656. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:97
  2657. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:94
  2658. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:99
  2659. msgid "Incoming key"
  2660. msgstr ""
  2661. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:102
  2662. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:107
  2663. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:104
  2664. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:109
  2665. msgid "Incoming serialization"
  2666. msgstr ""
  2667. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:173
  2668. msgid "Info"
  2669. msgstr ""
  2670. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:102
  2671. msgid "Information"
  2672. msgstr ""
  2673. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:456
  2674. msgid "Ingress QoS mapping"
  2675. msgstr ""
  2676. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:67
  2677. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:25
  2678. msgid "Initialization failure"
  2679. msgstr ""
  2680. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:77
  2681. msgid "Initscript"
  2682. msgstr ""
  2683. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:111
  2684. msgid "Initscripts"
  2685. msgstr ""
  2686. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1649
  2687. msgid "Inner certificate constraint (Domain)"
  2688. msgstr ""
  2689. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1646
  2690. msgid "Inner certificate constraint (SAN)"
  2691. msgstr ""
  2692. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1643
  2693. msgid "Inner certificate constraint (Subject)"
  2694. msgstr ""
  2695. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1652
  2696. msgid "Inner certificate constraint (Wildcard)"
  2697. msgstr ""
  2698. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:300
  2699. msgid "Install protocol extensions..."
  2700. msgstr ""
  2701. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2018
  2702. msgid ""
  2703. "Instead of joining any network with a matching SSID, only connect to the "
  2704. "BSSID <code>%h</code>."
  2705. msgstr ""
  2706. #: modules/luci-compat/luasrc/view/cbi/map.htm:43
  2707. msgid "Insufficient permissions to read UCI configuration."
  2708. msgstr ""
  2709. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:27
  2710. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:157
  2711. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:176
  2712. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:17
  2713. msgid "Interface"
  2714. msgstr "מנשק"
  2715. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:718
  2716. msgid "Interface \"%h\" is already marked as designated master."
  2717. msgstr ""
  2718. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:62
  2719. msgid "Interface %q device auto-migrated from %q to %q."
  2720. msgstr ""
  2721. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:980
  2722. msgid "Interface Configuration"
  2723. msgstr ""
  2724. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:111
  2725. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:151
  2726. msgid "Interface has %d pending changes"
  2727. msgstr ""
  2728. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:92
  2729. msgid "Interface is disabled"
  2730. msgstr ""
  2731. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:65
  2732. msgid "Interface is marked for deletion"
  2733. msgstr ""
  2734. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:210
  2735. msgid "Interface is reconnecting..."
  2736. msgstr ""
  2737. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:194
  2738. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:204
  2739. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:210
  2740. msgid "Interface is shutting down..."
  2741. msgstr ""
  2742. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:285
  2743. msgid "Interface is starting..."
  2744. msgstr ""
  2745. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:288
  2746. msgid "Interface is stopping..."
  2747. msgstr ""
  2748. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1151
  2749. msgid "Interface name"
  2750. msgstr ""
  2751. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:123
  2752. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:304
  2753. msgid "Interface not present or not connected yet."
  2754. msgstr ""
  2755. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:462
  2756. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:491
  2757. #: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:38
  2758. msgid "Interfaces"
  2759. msgstr ""
  2760. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:20
  2761. msgid "Internal"
  2762. msgstr ""
  2763. #: modules/luci-base/luasrc/view/error500.htm:8
  2764. msgid "Internal Server Error"
  2765. msgstr ""
  2766. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:283
  2767. msgid "Interval For Sending Learning Packets"
  2768. msgstr ""
  2769. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:556
  2770. msgid ""
  2771. "Interval in centiseconds between multicast general queries. By varying the "
  2772. "value, an administrator may tune the number of IGMP messages on the subnet; "
  2773. "larger values cause IGMP Queries to be sent less often"
  2774. msgstr ""
  2775. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:522
  2776. msgid "Interval in seconds for STP hello packets"
  2777. msgstr ""
  2778. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:192
  2779. #: modules/luci-compat/luasrc/view/cbi/tsection.htm:42
  2780. msgid "Invalid"
  2781. msgstr ""
  2782. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:19
  2783. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:22
  2784. msgid "Invalid Base64 key string"
  2785. msgstr ""
  2786. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:78
  2787. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:83
  2788. msgid "Invalid TOS value, expected 00..FF or inherit"
  2789. msgstr ""
  2790. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:83
  2791. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:88
  2792. msgid "Invalid Traffic Class value, expected 00..FF or inherit"
  2793. msgstr ""
  2794. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:285
  2795. msgid "Invalid VLAN ID given! Only IDs between %d and %d are allowed."
  2796. msgstr "מספר VLAN שגוי! רק ערכים בין %d לבין %d הם חוקיים."
  2797. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:294
  2798. msgid "Invalid VLAN ID given! Only unique IDs are allowed"
  2799. msgstr ""
  2800. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:403
  2801. msgid "Invalid argument"
  2802. msgstr ""
  2803. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:46
  2804. msgid ""
  2805. "Invalid bearer list. Possibly too many bearers created. This protocol "
  2806. "supports one and only one bearer."
  2807. msgstr ""
  2808. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:402
  2809. msgid "Invalid command"
  2810. msgstr ""
  2811. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:101
  2812. msgid "Invalid hexadecimal value"
  2813. msgstr ""
  2814. #: modules/luci-base/luasrc/view/sysauth.htm:12
  2815. msgid "Invalid username and/or password! Please try again."
  2816. msgstr "שם משתמש ו/או סיסמה שגויים! אנא נסה שנית."
  2817. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1147
  2818. msgid "Isolate Clients"
  2819. msgstr ""
  2820. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:231
  2821. msgid ""
  2822. "It appears that you are trying to flash an image that does not fit into the "
  2823. "flash memory, please verify the image file!"
  2824. msgstr ""
  2825. #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:64
  2826. #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:222
  2827. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:72
  2828. msgid "JavaScript required!"
  2829. msgstr ""
  2830. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1816
  2831. msgid "Join Network"
  2832. msgstr ""
  2833. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1750
  2834. msgid "Join Network: Wireless Scan"
  2835. msgstr ""
  2836. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2026
  2837. msgid "Joining Network: %q"
  2838. msgstr ""
  2839. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:223
  2840. msgid "Keep settings and retain the current configuration"
  2841. msgstr ""
  2842. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/dmesg.js:20
  2843. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:51
  2844. msgid "Kernel Log"
  2845. msgstr ""
  2846. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:58
  2847. msgid "Kernel Version"
  2848. msgstr ""
  2849. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1441
  2850. msgid "Key"
  2851. msgstr ""
  2852. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1469
  2853. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1470
  2854. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1471
  2855. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1472
  2856. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1484
  2857. msgid "Key #%d"
  2858. msgstr ""
  2859. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:92
  2860. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:97
  2861. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:94
  2862. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:99
  2863. msgid "Key for incoming packets (optional)."
  2864. msgstr ""
  2865. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:96
  2866. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:101
  2867. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:98
  2868. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:103
  2869. msgid "Key for outgoing packets (optional)."
  2870. msgstr ""
  2871. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:54
  2872. msgid "Kill"
  2873. msgstr ""
  2874. #: modules/luci-compat/luasrc/model/network/proto_ppp.lua:21
  2875. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:10
  2876. msgid "L2TP"
  2877. msgstr ""
  2878. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:40
  2879. msgid "L2TP Server"
  2880. msgstr ""
  2881. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:267
  2882. msgid "LACPDU Packets"
  2883. msgstr ""
  2884. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:118
  2885. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:102
  2886. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:88
  2887. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:62
  2888. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:75
  2889. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:98
  2890. msgid "LCP echo failure threshold"
  2891. msgstr ""
  2892. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:131
  2893. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:115
  2894. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:101
  2895. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:75
  2896. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:88
  2897. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:111
  2898. msgid "LCP echo interval"
  2899. msgstr ""
  2900. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:101
  2901. msgid "LED Configuration"
  2902. msgstr ""
  2903. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1529
  2904. msgid "LLC"
  2905. msgstr ""
  2906. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:267
  2907. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:376
  2908. msgid "Label"
  2909. msgstr ""
  2910. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:211
  2911. msgid "Language"
  2912. msgstr ""
  2913. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:111
  2914. msgid "Language and Style"
  2915. msgstr ""
  2916. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:575
  2917. msgid "Last member interval"
  2918. msgstr ""
  2919. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:23
  2920. msgid "Latency"
  2921. msgstr ""
  2922. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:21
  2923. msgid "Leaf"
  2924. msgstr ""
  2925. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:707
  2926. msgid "Learn"
  2927. msgstr ""
  2928. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:906
  2929. msgid "Learn routes"
  2930. msgstr ""
  2931. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:522
  2932. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:679
  2933. msgid "Lease time"
  2934. msgstr ""
  2935. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:39
  2936. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:58
  2937. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:89
  2938. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:128
  2939. msgid "Lease time remaining"
  2940. msgstr ""
  2941. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:181
  2942. msgid "Leasefile"
  2943. msgstr ""
  2944. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:41
  2945. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:47
  2946. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:50
  2947. msgid "Leave empty to autodetect"
  2948. msgstr ""
  2949. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:40
  2950. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:39
  2951. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6to4.js:39
  2952. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:45
  2953. msgid "Leave empty to use the current WAN address"
  2954. msgstr ""
  2955. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:943
  2956. msgid ""
  2957. "Legacy or badly behaving devices may require legacy 802.11b rates to "
  2958. "interoperate. Airtime efficiency may be significantly reduced where these "
  2959. "are used. It is recommended to not allow 802.11b rates where possible."
  2960. msgstr ""
  2961. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4053
  2962. msgid "Legend:"
  2963. msgstr ""
  2964. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:674
  2965. msgid "Limit"
  2966. msgstr ""
  2967. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:389
  2968. msgid "Limit DNS service to subnets interfaces on which we are serving DNS."
  2969. msgstr ""
  2970. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:402
  2971. msgid "Limit listening to these interfaces, and loopback."
  2972. msgstr ""
  2973. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:24
  2974. msgid "Line Attenuation (LATN)"
  2975. msgstr ""
  2976. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:18
  2977. msgid "Line Mode"
  2978. msgstr ""
  2979. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:17
  2980. msgid "Line State"
  2981. msgstr ""
  2982. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:19
  2983. msgid "Line Uptime"
  2984. msgstr ""
  2985. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:123
  2986. msgid "Link Aggregation (Channel Bonding)"
  2987. msgstr ""
  2988. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:348
  2989. msgid "Link Monitoring"
  2990. msgstr ""
  2991. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:23
  2992. msgid "Link On"
  2993. msgstr ""
  2994. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:278
  2995. msgid ""
  2996. "List of <abbr title=\"Domain Name System\">DNS</abbr> servers to forward "
  2997. "requests to"
  2998. msgstr ""
  2999. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1554
  3000. msgid ""
  3001. "List of R0KHs in the same Mobility Domain. <br />Format: MAC-address,NAS-"
  3002. "Identifier,128-bit key as hex string. <br />This list is used to map R0KH-ID "
  3003. "(NAS Identifier) to a destination MAC address when requesting PMK-R1 key "
  3004. "from the R0KH that the STA used during the Initial Mobility Domain "
  3005. "Association."
  3006. msgstr ""
  3007. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1558
  3008. msgid ""
  3009. "List of R1KHs in the same Mobility Domain. <br />Format: MAC-address,R1KH-ID "
  3010. "as 6 octets with colons,128-bit key as hex string. <br />This list is used "
  3011. "to map R1KH-ID to a destination MAC address when sending PMK-R1 key from the "
  3012. "R0KH. This is also the list of authorized R1KHs in the MD that can request "
  3013. "PMK-R1 keys."
  3014. msgstr ""
  3015. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:82
  3016. msgid "List of SSH key files for auth"
  3017. msgstr ""
  3018. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:308
  3019. msgid "List of domains to allow RFC1918 responses for"
  3020. msgstr ""
  3021. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:286
  3022. msgid "List of domains to force to an IP address."
  3023. msgstr ""
  3024. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:267
  3025. msgid "List of hosts that supply bogus NX domain results"
  3026. msgstr ""
  3027. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:401
  3028. msgid "Listen Interfaces"
  3029. msgstr ""
  3030. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:78
  3031. msgid "Listen Port"
  3032. msgstr "פתחת האזנה"
  3033. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:17
  3034. msgid "Listen only on the given interface or, if unspecified, on all"
  3035. msgstr ""
  3036. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:318
  3037. msgid "Listening port for inbound DNS queries"
  3038. msgstr ""
  3039. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:100
  3040. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:54
  3041. msgid "Load"
  3042. msgstr "עומס"
  3043. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:61
  3044. msgid "Load Average"
  3045. msgstr "עומס ממוצע"
  3046. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2959
  3047. msgid "Loading directory contents…"
  3048. msgstr ""
  3049. #: modules/luci-base/htdocs/luci-static/resources/luci.js:1949
  3050. #: modules/luci-base/luasrc/view/view.htm:4
  3051. #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:12
  3052. msgid "Loading view…"
  3053. msgstr ""
  3054. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:870
  3055. msgid "Local"
  3056. msgstr ""
  3057. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:77
  3058. msgid "Local IP address"
  3059. msgstr ""
  3060. #: modules/luci-base/htdocs/luci-static/resources/network.js:12
  3061. #: modules/luci-compat/luasrc/model/network.lua:30
  3062. msgid "Local IP address is invalid"
  3063. msgstr ""
  3064. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:86
  3065. msgid "Local IP address to assign"
  3066. msgstr ""
  3067. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:46
  3068. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:46
  3069. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:44
  3070. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:40
  3071. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:39
  3072. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6to4.js:39
  3073. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:151
  3074. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:44
  3075. msgid "Local IPv4 address"
  3076. msgstr "כתובת IPv4 מקומית"
  3077. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:884
  3078. msgid "Local IPv6 DNS server"
  3079. msgstr ""
  3080. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:46
  3081. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:53
  3082. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:54
  3083. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:45
  3084. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:44
  3085. msgid "Local IPv6 address"
  3086. msgstr "כתובת IPv6 מקומית"
  3087. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388
  3088. msgid "Local Service Only"
  3089. msgstr ""
  3090. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:115
  3091. msgid "Local Startup"
  3092. msgstr ""
  3093. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:59
  3094. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:117
  3095. msgid "Local Time"
  3096. msgstr ""
  3097. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:981
  3098. msgid "Local ULA"
  3099. msgstr ""
  3100. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:243
  3101. msgid "Local domain"
  3102. msgstr ""
  3103. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:240
  3104. msgid ""
  3105. "Local domain specification. Names matching this domain are never forwarded "
  3106. "and are resolved from DHCP or hosts files only"
  3107. msgstr ""
  3108. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:244
  3109. msgid "Local domain suffix appended to DHCP names and hosts file entries"
  3110. msgstr ""
  3111. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:239
  3112. msgid "Local server"
  3113. msgstr "שרת מקומי"
  3114. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:224
  3115. msgid ""
  3116. "Localise hostname depending on the requesting subnet if multiple IPs are "
  3117. "available"
  3118. msgstr ""
  3119. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:223
  3120. msgid "Localise queries"
  3121. msgstr ""
  3122. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2018
  3123. msgid "Lock to BSSID"
  3124. msgstr ""
  3125. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:171
  3126. msgid "Log output level"
  3127. msgstr ""
  3128. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:274
  3129. msgid "Log queries"
  3130. msgstr ""
  3131. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:109
  3132. msgid "Logging"
  3133. msgstr ""
  3134. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57
  3135. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:57
  3136. msgid ""
  3137. "Logical network from which to select the local endpoint if local IPv6 "
  3138. "address is empty and no WAN IPv6 is available (optional)."
  3139. msgstr ""
  3140. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:57
  3141. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62
  3142. msgid "Logical network to which the tunnel will be added (bridged) (optional)."
  3143. msgstr ""
  3144. #: modules/luci-base/luasrc/view/sysauth.htm:38
  3145. msgid "Login"
  3146. msgstr ""
  3147. #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:81
  3148. msgid "Logout"
  3149. msgstr ""
  3150. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:628
  3151. msgid "Loose filtering"
  3152. msgstr ""
  3153. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:31
  3154. msgid "Loss of Signal Seconds (LOSS)"
  3155. msgstr ""
  3156. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:669
  3157. msgid "Lowest leased address as offset from the network address."
  3158. msgstr ""
  3159. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:48
  3160. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:83
  3161. msgid "MAC"
  3162. msgstr ""
  3163. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1406
  3164. msgid "MAC Address"
  3165. msgstr ""
  3166. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1083
  3167. msgid "MAC Address Filter"
  3168. msgstr ""
  3169. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:251
  3170. msgid "MAC Address For The Actor"
  3171. msgstr ""
  3172. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:347
  3173. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1374
  3174. msgid "MAC VLAN"
  3175. msgstr ""
  3176. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:591
  3177. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:38
  3178. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2149
  3179. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:56
  3180. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:88
  3181. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:229
  3182. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:156
  3183. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:175
  3184. msgid "MAC address"
  3185. msgstr ""
  3186. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:986
  3187. msgid "MAC-Filter"
  3188. msgstr ""
  3189. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1090
  3190. msgid "MAC-List"
  3191. msgstr ""
  3192. #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:16
  3193. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:13
  3194. msgid "MAP / LW4over6"
  3195. msgstr ""
  3196. #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:62
  3197. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:7
  3198. msgid "MAP rule is invalid"
  3199. msgstr ""
  3200. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:218
  3201. msgid "MD5"
  3202. msgstr "MD5"
  3203. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:199
  3204. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:28
  3205. msgid "MHz"
  3206. msgstr ""
  3207. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:353
  3208. msgid "MII"
  3209. msgstr ""
  3210. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:421
  3211. msgid "MII / ETHTOOL ioctls"
  3212. msgstr ""
  3213. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:394
  3214. msgid "MII Interval"
  3215. msgstr ""
  3216. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:580
  3217. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1418
  3218. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:54
  3219. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:53
  3220. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:92
  3221. msgid "MTU"
  3222. msgstr ""
  3223. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:302
  3224. msgid ""
  3225. "Make sure to clone the root filesystem using something like the commands "
  3226. "below:"
  3227. msgstr ""
  3228. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:110
  3229. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:102
  3230. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:53
  3231. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:98
  3232. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:84
  3233. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:58
  3234. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:71
  3235. msgid "Manual"
  3236. msgstr ""
  3237. #: modules/luci-base/htdocs/luci-static/resources/network.js:3862
  3238. msgid "Master"
  3239. msgstr ""
  3240. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:811
  3241. msgid "Max <abbr title=\"Router Advertisement\">RA</abbr> interval"
  3242. msgstr ""
  3243. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:22
  3244. msgid "Max. Attainable Data Rate (ATTNDR)"
  3245. msgstr ""
  3246. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:532
  3247. msgid "Maximum age"
  3248. msgstr ""
  3249. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1179
  3250. msgid "Maximum allowed Listen Interval"
  3251. msgstr ""
  3252. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:336
  3253. msgid "Maximum allowed number of active DHCP leases"
  3254. msgstr ""
  3255. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:354
  3256. msgid "Maximum allowed number of concurrent DNS queries"
  3257. msgstr ""
  3258. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:345
  3259. msgid "Maximum allowed size of EDNS.0 UDP packets"
  3260. msgstr ""
  3261. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:114
  3262. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:106
  3263. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:95
  3264. msgid "Maximum amount of seconds to wait for the modem to become ready"
  3265. msgstr ""
  3266. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:674
  3267. msgid "Maximum number of leased addresses."
  3268. msgstr ""
  3269. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:542
  3270. msgid "Maximum snooping table size"
  3271. msgstr ""
  3272. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:811
  3273. msgid ""
  3274. "Maximum time allowed between sending unsolicited <abbr title=\"Router "
  3275. "Advertisement, ICMPv6 Type 134\">RA</abbr>. Default is 600 seconds."
  3276. msgstr ""
  3277. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:946
  3278. msgid "Maximum transmit power"
  3279. msgstr ""
  3280. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:129
  3281. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:188
  3282. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:199
  3283. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:28
  3284. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:165
  3285. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:323
  3286. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:324
  3287. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:325
  3288. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:329
  3289. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:330
  3290. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:331
  3291. msgid "Mbit/s"
  3292. msgstr ""
  3293. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:35
  3294. msgid "Medium"
  3295. msgstr ""
  3296. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:24
  3297. msgid "Memory"
  3298. msgstr ""
  3299. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:73
  3300. msgid "Memory usage (%)"
  3301. msgstr ""
  3302. #: modules/luci-base/htdocs/luci-static/resources/network.js:3865
  3303. msgid "Mesh"
  3304. msgstr ""
  3305. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:156
  3306. msgid "Mesh ID"
  3307. msgstr ""
  3308. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:994
  3309. msgid "Mesh Id"
  3310. msgstr ""
  3311. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:404
  3312. msgid "Method not found"
  3313. msgstr ""
  3314. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:349
  3315. msgid "Method of link monitoring"
  3316. msgstr ""
  3317. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:418
  3318. msgid "Method to determine link status"
  3319. msgstr ""
  3320. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:46
  3321. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:166
  3322. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:185
  3323. msgid "Metric"
  3324. msgstr ""
  3325. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:818
  3326. msgid "Min <abbr title=\"Router Advertisement\">RA</abbr> interval"
  3327. msgstr ""
  3328. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:661
  3329. msgid "Minimum ARP validity time"
  3330. msgstr ""
  3331. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:235
  3332. msgid "Minimum Number of Links"
  3333. msgstr ""
  3334. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:661
  3335. msgid ""
  3336. "Minimum required time in seconds before an ARP entry may be replaced. "
  3337. "Prevents ARP cache thrashing."
  3338. msgstr ""
  3339. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:818
  3340. msgid ""
  3341. "Minimum time allowed between sending unsolicited <abbr title=\"Router "
  3342. "Advertisement, ICMPv6 Type 134\">RA</abbr>. Default is 200 seconds."
  3343. msgstr ""
  3344. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:202
  3345. msgid "Mirror monitor port"
  3346. msgstr ""
  3347. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:201
  3348. msgid "Mirror source port"
  3349. msgstr ""
  3350. #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:9
  3351. msgid "Mobile Data"
  3352. msgstr ""
  3353. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1514
  3354. msgid "Mobility Domain"
  3355. msgstr ""
  3356. #: modules/luci-compat/luasrc/view/cbi/wireless_modefreq.htm:154
  3357. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:434
  3358. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:157
  3359. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:180
  3360. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:492
  3361. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:989
  3362. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1734
  3363. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:378
  3364. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:142
  3365. msgid "Mode"
  3366. msgstr ""
  3367. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:55
  3368. msgid "Model"
  3369. msgstr ""
  3370. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:43
  3371. msgid "Modem bearer teardown in progress."
  3372. msgstr ""
  3373. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:42
  3374. msgid ""
  3375. "Modem connection in progress. Please wait. This process will timeout after 2 "
  3376. "minutes."
  3377. msgstr ""
  3378. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:73
  3379. msgid "Modem default"
  3380. msgstr ""
  3381. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:73
  3382. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:82
  3383. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:61
  3384. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:73
  3385. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:57
  3386. msgid "Modem device"
  3387. msgstr ""
  3388. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:41
  3389. msgid "Modem disconnection in progress. Please wait."
  3390. msgstr ""
  3391. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:66
  3392. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:24
  3393. msgid "Modem information query failed"
  3394. msgstr ""
  3395. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:114
  3396. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:106
  3397. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:95
  3398. msgid "Modem init timeout"
  3399. msgstr ""
  3400. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:44
  3401. msgid "Modem is disabled."
  3402. msgstr ""
  3403. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:52
  3404. msgid "ModemManager"
  3405. msgstr ""
  3406. #: modules/luci-base/htdocs/luci-static/resources/network.js:3866
  3407. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1077
  3408. msgid "Monitor"
  3409. msgstr ""
  3410. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:31
  3411. msgid "More Characters"
  3412. msgstr ""
  3413. #: modules/luci-base/htdocs/luci-static/resources/form.js:2529
  3414. msgid "More…"
  3415. msgstr ""
  3416. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:192
  3417. msgid "Mount Point"
  3418. msgstr ""
  3419. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:144
  3420. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:228
  3421. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:88
  3422. msgid "Mount Points"
  3423. msgstr ""
  3424. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:229
  3425. msgid "Mount Points - Mount Entry"
  3426. msgstr ""
  3427. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:340
  3428. msgid "Mount Points - Swap Entry"
  3429. msgstr ""
  3430. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:228
  3431. msgid ""
  3432. "Mount Points define at which point a memory device will be attached to the "
  3433. "filesystem"
  3434. msgstr ""
  3435. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:154
  3436. msgid "Mount attached devices"
  3437. msgstr ""
  3438. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:162
  3439. msgid "Mount filesystems not specifically configured"
  3440. msgstr ""
  3441. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:331
  3442. msgid "Mount options"
  3443. msgstr ""
  3444. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:292
  3445. msgid "Mount point"
  3446. msgstr ""
  3447. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:158
  3448. msgid "Mount swap not specifically configured"
  3449. msgstr ""
  3450. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:223
  3451. msgid "Mounted file systems"
  3452. msgstr ""
  3453. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:152
  3454. msgid "Move down"
  3455. msgstr ""
  3456. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:151
  3457. msgid "Move up"
  3458. msgstr ""
  3459. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:89
  3460. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:94
  3461. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:91
  3462. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:96
  3463. msgid "Multicast"
  3464. msgstr ""
  3465. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:705
  3466. msgid "Multicast routing"
  3467. msgstr ""
  3468. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:711
  3469. msgid "Multicast to unicast"
  3470. msgstr ""
  3471. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1509
  3472. msgid "NAS ID"
  3473. msgstr ""
  3474. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:87
  3475. msgid "NAT-T Mode"
  3476. msgstr ""
  3477. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:41
  3478. msgid "NAT64 Prefix"
  3479. msgstr ""
  3480. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:26
  3481. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:31
  3482. msgid "NCM"
  3483. msgstr ""
  3484. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:911
  3485. msgid "NDP-Proxy slave"
  3486. msgstr ""
  3487. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:72
  3488. msgid "NT Domain"
  3489. msgstr ""
  3490. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:276
  3491. msgid "NTP server candidates"
  3492. msgstr ""
  3493. #: modules/luci-base/htdocs/luci-static/resources/form.js:2567
  3494. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3808
  3495. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:27
  3496. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1082
  3497. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:67
  3498. msgid "Name"
  3499. msgstr "שם"
  3500. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1996
  3501. msgid "Name of the new network"
  3502. msgstr ""
  3503. #: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:44
  3504. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:50
  3505. msgid "Navigation"
  3506. msgstr ""
  3507. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:653
  3508. msgid "Neighbour cache validity"
  3509. msgstr ""
  3510. #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:45
  3511. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1022
  3512. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2148
  3513. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:383
  3514. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:63
  3515. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:228
  3516. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:163
  3517. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:182
  3518. msgid "Network"
  3519. msgstr ""
  3520. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1990
  3521. msgid "Network SSID"
  3522. msgstr ""
  3523. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:68
  3524. msgid "Network Utilities"
  3525. msgstr ""
  3526. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:380
  3527. msgid "Network boot image"
  3528. msgstr ""
  3529. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:392
  3530. msgid "Network bridge configuration migration"
  3531. msgstr ""
  3532. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:343
  3533. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1380
  3534. msgid "Network device"
  3535. msgstr ""
  3536. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:7
  3537. msgid "Network device activity (kernel: netdev)"
  3538. msgstr ""
  3539. #: modules/luci-base/htdocs/luci-static/resources/network.js:15
  3540. #: modules/luci-compat/luasrc/model/network.lua:33
  3541. msgid "Network device is not present"
  3542. msgstr ""
  3543. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:426
  3544. msgid "Network ifname configuration migration"
  3545. msgstr ""
  3546. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:57
  3547. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62
  3548. msgid "Network interface"
  3549. msgstr ""
  3550. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:706
  3551. msgid "Never"
  3552. msgstr ""
  3553. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1134
  3554. msgid "New interface for \"%s\" can not be created: %s"
  3555. msgstr ""
  3556. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1085
  3557. msgid "New interface name…"
  3558. msgstr ""
  3559. #: modules/luci-compat/luasrc/view/cbi/delegator.htm:11
  3560. msgid "Next »"
  3561. msgstr ""
  3562. #: modules/luci-base/htdocs/luci-static/resources/form.js:3702
  3563. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:296
  3564. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:345
  3565. msgid "No"
  3566. msgstr ""
  3567. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:643
  3568. msgid "No DHCP Server configured for this interface"
  3569. msgstr ""
  3570. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:196
  3571. msgid "No Data"
  3572. msgstr ""
  3573. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1382
  3574. msgid "No Encryption"
  3575. msgstr ""
  3576. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:87
  3577. msgid "No Host Routes"
  3578. msgstr ""
  3579. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:89
  3580. msgid "No NAT-T"
  3581. msgstr ""
  3582. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:79
  3583. msgid "No RX signal"
  3584. msgstr ""
  3585. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69
  3586. msgid "No client associated"
  3587. msgstr ""
  3588. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:406
  3589. msgid "No data received"
  3590. msgstr ""
  3591. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:683
  3592. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:690
  3593. msgid "No enforcement"
  3594. msgstr ""
  3595. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2899
  3596. msgid "No entries in this directory"
  3597. msgstr ""
  3598. #: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:82
  3599. msgid "No files found"
  3600. msgstr ""
  3601. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:86
  3602. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:91
  3603. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:88
  3604. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:93
  3605. msgid "No host route"
  3606. msgstr ""
  3607. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:731
  3608. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:142
  3609. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:358
  3610. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:59
  3611. msgid "No information available"
  3612. msgstr "אין פרטים זמינים"
  3613. #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:63
  3614. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:8
  3615. msgid "No matching prefix delegation"
  3616. msgstr ""
  3617. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:140
  3618. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:143
  3619. msgid "No more slaves available"
  3620. msgstr ""
  3621. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:187
  3622. msgid "No more slaves available, can not save interface"
  3623. msgstr ""
  3624. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:251
  3625. msgid "No negative cache"
  3626. msgstr ""
  3627. #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:54
  3628. #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:212
  3629. #: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:59
  3630. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:79
  3631. msgid "No password set!"
  3632. msgstr "לא הוגדרה סיסמה!"
  3633. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:125
  3634. msgid "No peers defined yet"
  3635. msgstr ""
  3636. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:140
  3637. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:277
  3638. msgid "No public keys present yet."
  3639. msgstr ""
  3640. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:91
  3641. msgid "No rules in this chain."
  3642. msgstr ""
  3643. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:384
  3644. msgid "No validation or filtering"
  3645. msgstr ""
  3646. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:153
  3647. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1176
  3648. msgid "No zone assigned"
  3649. msgstr ""
  3650. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:58
  3651. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:84
  3652. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:187
  3653. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:231
  3654. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:275
  3655. msgid "Noise"
  3656. msgstr ""
  3657. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:26
  3658. msgid "Noise Margin (SNR)"
  3659. msgstr ""
  3660. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:272
  3661. msgid "Noise:"
  3662. msgstr ""
  3663. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:34
  3664. msgid "Non Pre-emptive CRC errors (CRC_P)"
  3665. msgstr ""
  3666. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:394
  3667. msgid "Non-wildcard"
  3668. msgstr ""
  3669. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:159
  3670. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:183
  3671. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:101
  3672. msgid "None"
  3673. msgstr ""
  3674. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:954
  3675. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:184
  3676. msgid "Normal"
  3677. msgstr ""
  3678. #: modules/luci-base/luasrc/view/error404.htm:8
  3679. msgid "Not Found"
  3680. msgstr ""
  3681. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:75
  3682. msgid "Not associated"
  3683. msgstr ""
  3684. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:32
  3685. msgid "Not connected"
  3686. msgstr "לא מחובר"
  3687. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:46
  3688. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:81
  3689. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:121
  3690. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:147
  3691. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:312
  3692. msgid "Not present"
  3693. msgstr ""
  3694. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:102
  3695. msgid "Not started on boot"
  3696. msgstr ""
  3697. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:409
  3698. msgid "Not supported"
  3699. msgstr ""
  3700. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1678
  3701. msgid ""
  3702. "Note: Some wireless drivers do not fully support 802.11w. E.g. mwlwifi may "
  3703. "have problems"
  3704. msgstr ""
  3705. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:128
  3706. msgid "Notes"
  3707. msgstr ""
  3708. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:174
  3709. msgid "Notice"
  3710. msgstr ""
  3711. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:127
  3712. msgid "Nslookup"
  3713. msgstr ""
  3714. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:332
  3715. msgid "Number of IGMP membership reports"
  3716. msgstr ""
  3717. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:362
  3718. msgid "Number of cached DNS entries (max is 10000, 0 is no caching)"
  3719. msgstr ""
  3720. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:309
  3721. msgid "Number of peer notifications after failover event"
  3722. msgstr ""
  3723. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:69
  3724. msgid "Obfuscated Group Password"
  3725. msgstr ""
  3726. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:61
  3727. msgid "Obfuscated Password"
  3728. msgstr ""
  3729. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:106
  3730. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:98
  3731. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:49
  3732. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:94
  3733. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:80
  3734. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:54
  3735. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:67
  3736. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:93
  3737. msgid "Obtain IPv6 address"
  3738. msgstr ""
  3739. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/default-on.js:18
  3740. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:351
  3741. msgid "Off"
  3742. msgstr ""
  3743. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/timer.js:15
  3744. msgid "Off-State Delay"
  3745. msgstr ""
  3746. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/default-on.js:18
  3747. msgid "On"
  3748. msgstr ""
  3749. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:96
  3750. msgid "On-Link route"
  3751. msgstr ""
  3752. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/timer.js:11
  3753. msgid "On-State Delay"
  3754. msgstr ""
  3755. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:504
  3756. msgid "One of hostname or mac address must be specified!"
  3757. msgstr ""
  3758. #: modules/luci-base/htdocs/luci-static/resources/validation.js:469
  3759. msgid "One of the following: %s"
  3760. msgstr ""
  3761. #: modules/luci-compat/luasrc/view/cbi/nullsection.htm:17
  3762. #: modules/luci-compat/luasrc/view/cbi/ucisection.htm:22
  3763. msgid "One or more fields contain invalid values!"
  3764. msgstr "ישנם שדות המכילים ערכים בלתי חוקיים!"
  3765. #: modules/luci-compat/luasrc/view/cbi/map.htm:32
  3766. msgid "One or more invalid/required values on tab"
  3767. msgstr ""
  3768. #: modules/luci-compat/luasrc/view/cbi/nullsection.htm:19
  3769. #: modules/luci-compat/luasrc/view/cbi/ucisection.htm:24
  3770. msgid "One or more required fields have no value!"
  3771. msgstr ""
  3772. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:702
  3773. msgid "Only allow communication with non-isolated bridge ports when enabled"
  3774. msgstr ""
  3775. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:229
  3776. msgid ""
  3777. "Only if current active slave fails and the primary slave is up (failure, 2)"
  3778. msgstr ""
  3779. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:442
  3780. #: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:19
  3781. msgid "Open list..."
  3782. msgstr ""
  3783. #: modules/luci-compat/luasrc/model/network/proto_openconnect.lua:9
  3784. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:64
  3785. msgid "OpenConnect (CISCO AnyConnect)"
  3786. msgstr ""
  3787. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:12
  3788. msgid "OpenFortivpn"
  3789. msgstr ""
  3790. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:724
  3791. msgid ""
  3792. "Operate in <em>relay mode</em> if a designated master interface is "
  3793. "configured and active, otherwise disable <abbr title=\"Neighbour Discovery "
  3794. "Protocol\">NDP</abbr> proxying."
  3795. msgstr ""
  3796. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:723
  3797. msgid ""
  3798. "Operate in <em>relay mode</em> if a designated master interface is "
  3799. "configured and active, otherwise fall back to <em>server mode</em>."
  3800. msgstr ""
  3801. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:725
  3802. msgid ""
  3803. "Operate in <em>relay mode</em> if an upstream IPv6 prefix is present, "
  3804. "otherwise disable service."
  3805. msgstr ""
  3806. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:939
  3807. msgid "Operating frequency"
  3808. msgstr ""
  3809. #: modules/luci-base/htdocs/luci-static/resources/form.js:1974
  3810. #: modules/luci-base/htdocs/luci-static/resources/form.js:3712
  3811. msgid "Option \"%s\" contains an invalid input value."
  3812. msgstr ""
  3813. #: modules/luci-base/htdocs/luci-static/resources/form.js:1987
  3814. msgid "Option \"%s\" must not be empty."
  3815. msgstr ""
  3816. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4060
  3817. msgid "Option changed"
  3818. msgstr ""
  3819. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4062
  3820. msgid "Option removed"
  3821. msgstr ""
  3822. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1680
  3823. msgid "Optional"
  3824. msgstr ""
  3825. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:128
  3826. msgid "Optional, free-form notes about this device"
  3827. msgstr ""
  3828. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:97
  3829. msgid ""
  3830. "Optional. 32-bit mark for outgoing encrypted packets. Enter value in hex, "
  3831. "starting with <code>0x</code>."
  3832. msgstr ""
  3833. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1003
  3834. msgid ""
  3835. "Optional. Allowed values: 'eui64', 'random', fixed value like '::1' or "
  3836. "'::1:2'. When IPv6 prefix (like 'a:b:c:d::') is received from a delegating "
  3837. "server, use the suffix (like '::1') to form the IPv6 address ('a:b:c:d::1') "
  3838. "for the interface."
  3839. msgstr ""
  3840. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:138
  3841. msgid ""
  3842. "Optional. Base64-encoded preshared key. Adds in an additional layer of "
  3843. "symmetric-key cryptography for post-quantum resistance."
  3844. msgstr ""
  3845. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
  3846. msgid "Optional. Create routes for Allowed IPs for this peer."
  3847. msgstr ""
  3848. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:129
  3849. msgid "Optional. Description of peer."
  3850. msgstr ""
  3851. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:87
  3852. msgid "Optional. Do not create host routes to peers."
  3853. msgstr ""
  3854. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:156
  3855. msgid ""
  3856. "Optional. Host of peer. Names are resolved prior to bringing up the "
  3857. "interface."
  3858. msgstr ""
  3859. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:92
  3860. msgid "Optional. Maximum Transmission Unit of tunnel interface."
  3861. msgstr ""
  3862. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:160
  3863. msgid "Optional. Port of peer."
  3864. msgstr ""
  3865. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:164
  3866. msgid ""
  3867. "Optional. Seconds between keep alive messages. Default is 0 (disabled). "
  3868. "Recommended value if this device is behind a NAT is 25."
  3869. msgstr ""
  3870. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:78
  3871. msgid "Optional. UDP port used for outgoing and incoming packets."
  3872. msgstr ""
  3873. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:72
  3874. msgid "Options"
  3875. msgstr ""
  3876. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:119
  3877. msgid "Options:"
  3878. msgstr ""
  3879. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:348
  3880. msgid "Other:"
  3881. msgstr ""
  3882. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:69
  3883. msgid "Out"
  3884. msgstr ""
  3885. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:277
  3886. msgid "Outbound:"
  3887. msgstr ""
  3888. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:101
  3889. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:106
  3890. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:103
  3891. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:108
  3892. msgid "Outgoing checksum"
  3893. msgstr ""
  3894. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:96
  3895. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:101
  3896. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:98
  3897. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:103
  3898. msgid "Outgoing key"
  3899. msgstr ""
  3900. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:103
  3901. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:108
  3902. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:105
  3903. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:110
  3904. msgid "Outgoing serialization"
  3905. msgstr ""
  3906. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:50
  3907. msgid "Output Interface"
  3908. msgstr ""
  3909. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:59
  3910. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:165
  3911. msgid "Output zone"
  3912. msgstr ""
  3913. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:16
  3914. msgid "Overlap"
  3915. msgstr ""
  3916. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:945
  3917. msgid "Override IPv4 routing table"
  3918. msgstr ""
  3919. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:950
  3920. msgid "Override IPv6 routing table"
  3921. msgstr ""
  3922. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:64
  3923. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:69
  3924. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:69
  3925. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:74
  3926. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:53
  3927. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:121
  3928. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:156
  3929. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:57
  3930. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:132
  3931. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:118
  3932. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:96
  3933. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:105
  3934. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:99
  3935. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:62
  3936. msgid "Override MTU"
  3937. msgstr ""
  3938. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:74
  3939. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:79
  3940. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:63
  3941. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:67
  3942. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:62
  3943. msgid "Override TOS"
  3944. msgstr ""
  3945. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:69
  3946. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:74
  3947. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:74
  3948. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:79
  3949. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:58
  3950. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:62
  3951. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:57
  3952. msgid "Override TTL"
  3953. msgstr ""
  3954. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1151
  3955. msgid "Override default interface name"
  3956. msgstr ""
  3957. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:167
  3958. msgid "Override the gateway in DHCP responses"
  3959. msgstr ""
  3960. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:691
  3961. msgid ""
  3962. "Override the netmask sent to clients. Normally it is calculated from the "
  3963. "subnet that is served."
  3964. msgstr ""
  3965. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:179
  3966. msgid "Override the table used for internal routes"
  3967. msgstr ""
  3968. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:3
  3969. msgid "Overview"
  3970. msgstr ""
  3971. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2742
  3972. msgid "Overwrite existing file \"%s\" ?"
  3973. msgstr ""
  3974. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:70
  3975. msgid "Owner"
  3976. msgstr ""
  3977. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:98
  3978. msgid "PAP/CHAP (both)"
  3979. msgstr ""
  3980. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:99
  3981. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:109
  3982. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:91
  3983. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:45
  3984. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:90
  3985. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:76
  3986. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:44
  3987. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:63
  3988. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:83
  3989. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:46
  3990. msgid "PAP/CHAP password"
  3991. msgstr ""
  3992. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:97
  3993. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:104
  3994. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:89
  3995. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:43
  3996. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:88
  3997. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:74
  3998. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:42
  3999. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:61
  4000. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:78
  4001. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:44
  4002. msgid "PAP/CHAP username"
  4003. msgstr ""
  4004. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:103
  4005. msgid "PDP Type"
  4006. msgstr ""
  4007. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:69
  4008. msgid "PID"
  4009. msgstr ""
  4010. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:96
  4011. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:95
  4012. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:88
  4013. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:69
  4014. msgid "PIN"
  4015. msgstr ""
  4016. #: modules/luci-base/htdocs/luci-static/resources/network.js:21
  4017. #: modules/luci-compat/luasrc/model/network.lua:39
  4018. msgid "PIN code rejected"
  4019. msgstr ""
  4020. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1549
  4021. msgid "PMK R1 Push"
  4022. msgstr ""
  4023. #: modules/luci-compat/luasrc/model/network/proto_ppp.lua:13
  4024. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:43
  4025. msgid "PPP"
  4026. msgstr ""
  4027. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:58
  4028. msgid "PPPoA Encapsulation"
  4029. msgstr ""
  4030. #: modules/luci-compat/luasrc/model/network/proto_ppp.lua:19
  4031. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:28
  4032. msgid "PPPoATM"
  4033. msgstr ""
  4034. #: modules/luci-compat/luasrc/model/network/proto_ppp.lua:17
  4035. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:28
  4036. msgid "PPPoE"
  4037. msgstr ""
  4038. #: modules/luci-compat/luasrc/model/network/proto_pppossh.lua:9
  4039. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:28
  4040. msgid "PPPoSSH"
  4041. msgstr ""
  4042. #: modules/luci-compat/luasrc/model/network/proto_ppp.lua:15
  4043. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:28
  4044. msgid "PPtP"
  4045. msgstr ""
  4046. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:73
  4047. msgid "PSID offset"
  4048. msgstr ""
  4049. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:70
  4050. msgid "PSID-bits length"
  4051. msgstr ""
  4052. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1473
  4053. msgid "PTM/EFM (Packet Transfer Mode)"
  4054. msgstr ""
  4055. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1437
  4056. msgid "Packet Steering"
  4057. msgstr ""
  4058. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:54
  4059. msgid "Packets"
  4060. msgstr ""
  4061. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:275
  4062. msgid "Packets To Transmit Before Moving To Next Slave"
  4063. msgstr ""
  4064. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:153
  4065. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1176
  4066. msgid "Part of zone %q"
  4067. msgstr ""
  4068. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:438
  4069. msgctxt "MACVLAN mode"
  4070. msgid "Pass-through (Mirror physical device to single MAC VLAN)"
  4071. msgstr ""
  4072. #: modules/luci-base/luasrc/view/sysauth.htm:29
  4073. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1671
  4074. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:51
  4075. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:114
  4076. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:52
  4077. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:58
  4078. msgid "Password"
  4079. msgstr ""
  4080. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:25
  4081. msgid "Password authentication"
  4082. msgstr ""
  4083. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1603
  4084. msgid "Password of Private Key"
  4085. msgstr ""
  4086. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1661
  4087. msgid "Password of inner Private Key"
  4088. msgstr ""
  4089. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:31
  4090. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:33
  4091. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:35
  4092. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:37
  4093. msgid "Password strength"
  4094. msgstr ""
  4095. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:117
  4096. msgid "Password2"
  4097. msgstr ""
  4098. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:260
  4099. msgid "Paste or drag SSH key file…"
  4100. msgstr ""
  4101. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1582
  4102. msgid "Path to CA-Certificate"
  4103. msgstr ""
  4104. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1597
  4105. msgid "Path to Client-Certificate"
  4106. msgstr ""
  4107. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1600
  4108. msgid "Path to Private Key"
  4109. msgstr "נתיב למפתח הפרטי"
  4110. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1640
  4111. msgid "Path to inner CA-Certificate"
  4112. msgstr ""
  4113. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1655
  4114. msgid "Path to inner Client-Certificate"
  4115. msgstr ""
  4116. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1658
  4117. msgid "Path to inner Private Key"
  4118. msgstr ""
  4119. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2732
  4120. msgid "Paused"
  4121. msgstr ""
  4122. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:273
  4123. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:283
  4124. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:334
  4125. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:344
  4126. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:354
  4127. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:239
  4128. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:249
  4129. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:259
  4130. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:268
  4131. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:278
  4132. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:296
  4133. msgid "Peak:"
  4134. msgstr ""
  4135. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:89
  4136. msgid "Peer IP address to assign"
  4137. msgstr ""
  4138. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:613
  4139. msgid "Peer MAC address"
  4140. msgstr ""
  4141. #: modules/luci-base/htdocs/luci-static/resources/network.js:14
  4142. #: modules/luci-compat/luasrc/model/network.lua:32
  4143. msgid "Peer address is missing"
  4144. msgstr ""
  4145. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:594
  4146. msgid "Peer device name"
  4147. msgstr ""
  4148. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:110
  4149. msgid "Peers"
  4150. msgstr ""
  4151. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:80
  4152. msgid "Perfect Forward Secrecy"
  4153. msgstr ""
  4154. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:103
  4155. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:108
  4156. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:105
  4157. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:110
  4158. msgid "Perform outgoing packets serialization (optional)."
  4159. msgstr ""
  4160. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:34
  4161. msgid "Perform reboot"
  4162. msgstr ""
  4163. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:376
  4164. msgid "Perform reset"
  4165. msgstr ""
  4166. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:407
  4167. msgid "Permission denied"
  4168. msgstr ""
  4169. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:164
  4170. msgid "Persistent Keep Alive"
  4171. msgstr ""
  4172. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:290
  4173. msgid "Phy Rate:"
  4174. msgstr ""
  4175. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:479
  4176. msgid "Physical Settings"
  4177. msgstr ""
  4178. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:79
  4179. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:80
  4180. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:90
  4181. msgid "Ping"
  4182. msgstr ""
  4183. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:49
  4184. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:50
  4185. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:84
  4186. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:85
  4187. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:138
  4188. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:64
  4189. msgid "Pkts."
  4190. msgstr ""
  4191. #: modules/luci-base/luasrc/view/sysauth.htm:19
  4192. msgid "Please enter your username and password."
  4193. msgstr "אנא הזן את שם המשתמש והסיסמה שלך:"
  4194. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3791
  4195. msgid "Please select the file to upload."
  4196. msgstr ""
  4197. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:54
  4198. msgid "Policy"
  4199. msgstr ""
  4200. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:21
  4201. msgid "Port"
  4202. msgstr "פתחה"
  4203. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:702
  4204. msgid "Port isolation"
  4205. msgstr ""
  4206. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:278
  4207. msgid "Port status:"
  4208. msgstr ""
  4209. #: modules/luci-base/htdocs/luci-static/resources/validation.js:495
  4210. msgid "Potential negation of: %s"
  4211. msgstr ""
  4212. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:37
  4213. msgid "Power Management Mode"
  4214. msgstr ""
  4215. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:35
  4216. msgid "Pre-emptive CRC errors (CRCP_P)"
  4217. msgstr ""
  4218. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:74
  4219. msgid "Prefer LTE"
  4220. msgstr ""
  4221. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:75
  4222. msgid "Prefer UMTS"
  4223. msgstr ""
  4224. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:33
  4225. msgid "Prefix Delegated"
  4226. msgstr ""
  4227. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:138
  4228. msgid "Preshared Key"
  4229. msgstr ""
  4230. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:118
  4231. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:102
  4232. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:88
  4233. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:62
  4234. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:75
  4235. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:98
  4236. msgid ""
  4237. "Presume peer to be dead after given amount of LCP echo failures, use 0 to "
  4238. "ignore failures"
  4239. msgstr ""
  4240. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:407
  4241. msgid "Prevent listening on these interfaces."
  4242. msgstr ""
  4243. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1147
  4244. msgid "Prevents client-to-client communication"
  4245. msgstr ""
  4246. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:211
  4247. msgid "Primary Slave"
  4248. msgstr ""
  4249. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:170
  4250. msgctxt "VLAN port state"
  4251. msgid "Primary VLAN ID"
  4252. msgstr ""
  4253. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:228
  4254. msgid ""
  4255. "Primary becomes active slave when it comes back up if speed and duplex "
  4256. "better than current slave (better, 1)"
  4257. msgstr ""
  4258. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:227
  4259. msgid "Primary becomes active slave whenever it comes back up (always, 0)"
  4260. msgstr ""
  4261. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:508
  4262. msgid "Priority"
  4263. msgstr ""
  4264. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:436
  4265. msgctxt "MACVLAN mode"
  4266. msgid "Private (Prevent communication between MAC VLANs)"
  4267. msgstr ""
  4268. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:61
  4269. msgid "Private Key"
  4270. msgstr ""
  4271. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:64
  4272. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:63
  4273. msgid "Processes"
  4274. msgstr ""
  4275. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:67
  4276. msgid "Prot."
  4277. msgstr ""
  4278. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:80
  4279. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:554
  4280. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1099
  4281. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:384
  4282. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:32
  4283. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:168
  4284. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:187
  4285. msgid "Protocol"
  4286. msgstr ""
  4287. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:267
  4288. msgid "Provide NTP server"
  4289. msgstr ""
  4290. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:872
  4291. msgid ""
  4292. "Provide a DHCPv6 server on this interface and reply to DHCPv6 solicitations "
  4293. "and requests."
  4294. msgstr ""
  4295. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:882
  4296. msgid "Provide new network"
  4297. msgstr ""
  4298. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1076
  4299. msgid "Pseudo Ad-Hoc (ahdemo)"
  4300. msgstr ""
  4301. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:134
  4302. msgid "Public Key"
  4303. msgstr "מפתח ציבורי"
  4304. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:284
  4305. msgid ""
  4306. "Public keys allow for the passwordless SSH logins with a higher security "
  4307. "compared to the use of plain passwords. In order to upload a new key to the "
  4308. "device, paste an OpenSSH compatible public key line or drag a <code>.pub</"
  4309. "code> file into the input field."
  4310. msgstr ""
  4311. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:192
  4312. msgid "Public prefix routed to this device for distribution to clients."
  4313. msgstr ""
  4314. #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:9
  4315. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:27
  4316. msgid "QMI Cellular"
  4317. msgstr ""
  4318. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:140
  4319. msgid "Quality"
  4320. msgstr ""
  4321. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:264
  4322. msgid ""
  4323. "Query all available upstream <abbr title=\"Domain Name System\">DNS</abbr> "
  4324. "servers"
  4325. msgstr ""
  4326. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:556
  4327. msgid "Query interval"
  4328. msgstr ""
  4329. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:561
  4330. msgid "Query response interval"
  4331. msgstr ""
  4332. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1537
  4333. msgid "R0 Key Lifetime"
  4334. msgstr ""
  4335. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1543
  4336. msgid "R1 Key Holder"
  4337. msgstr ""
  4338. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:88
  4339. msgid "RFC3947 NAT-T mode"
  4340. msgstr ""
  4341. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1002
  4342. msgid "RSSI threshold for joining"
  4343. msgstr ""
  4344. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:966
  4345. msgid "RTS/CTS Threshold"
  4346. msgstr ""
  4347. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:49
  4348. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:84
  4349. msgid "RX"
  4350. msgstr ""
  4351. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:232
  4352. msgid "RX Rate"
  4353. msgstr "קצב קליטה"
  4354. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2152
  4355. msgid "RX Rate / TX Rate"
  4356. msgstr ""
  4357. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1415
  4358. msgid "Radius-Accounting-Port"
  4359. msgstr ""
  4360. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1420
  4361. msgid "Radius-Accounting-Secret"
  4362. msgstr ""
  4363. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1410
  4364. msgid "Radius-Accounting-Server"
  4365. msgstr ""
  4366. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1400
  4367. msgid "Radius-Authentication-Port"
  4368. msgstr ""
  4369. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1405
  4370. msgid "Radius-Authentication-Secret"
  4371. msgstr ""
  4372. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1395
  4373. msgid "Radius-Authentication-Server"
  4374. msgstr ""
  4375. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:88
  4376. msgid "Raw hex-encoded bytes. Leave empty unless your ISP require this"
  4377. msgstr ""
  4378. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:178
  4379. msgid ""
  4380. "Read <code>/etc/ethers</code> to configure the <abbr title=\"Dynamic Host "
  4381. "Configuration Protocol\">DHCP</abbr>-Server"
  4382. msgstr ""
  4383. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:559
  4384. msgid "Really switch protocol?"
  4385. msgstr ""
  4386. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:88
  4387. msgid "Realtime Graphs"
  4388. msgstr ""
  4389. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1520
  4390. msgid "Reassociation Deadline"
  4391. msgstr ""
  4392. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:293
  4393. msgid "Rebind protection"
  4394. msgstr ""
  4395. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:20
  4396. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:126
  4397. msgid "Reboot"
  4398. msgstr ""
  4399. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:153
  4400. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:162
  4401. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:46
  4402. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:51
  4403. msgid "Rebooting…"
  4404. msgstr ""
  4405. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:21
  4406. msgid "Reboots the operating system of your device"
  4407. msgstr ""
  4408. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:25
  4409. msgid "Receive"
  4410. msgstr ""
  4411. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:83
  4412. msgid "Recommended. IP addresses of the WireGuard interface."
  4413. msgstr ""
  4414. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:504
  4415. msgid "Reconnect this interface"
  4416. msgstr ""
  4417. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:57
  4418. msgid "References"
  4419. msgstr ""
  4420. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2726
  4421. msgid "Refreshing"
  4422. msgstr ""
  4423. #: modules/luci-compat/luasrc/model/network/proto_relay.lua:153
  4424. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:39
  4425. msgid "Relay"
  4426. msgstr ""
  4427. #: modules/luci-compat/luasrc/model/network/proto_relay.lua:157
  4428. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:36
  4429. msgid "Relay Bridge"
  4430. msgstr ""
  4431. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:154
  4432. msgid "Relay between networks"
  4433. msgstr ""
  4434. #: modules/luci-compat/luasrc/model/network/proto_relay.lua:12
  4435. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:64
  4436. msgid "Relay bridge"
  4437. msgstr ""
  4438. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:50
  4439. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:49
  4440. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:40
  4441. msgid "Remote IPv4 address"
  4442. msgstr ""
  4443. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:42
  4444. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:42
  4445. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:40
  4446. msgid "Remote IPv4 address or FQDN"
  4447. msgstr ""
  4448. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:40
  4449. msgid "Remote IPv6 address"
  4450. msgstr ""
  4451. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:42
  4452. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:42
  4453. msgid "Remote IPv6 address or FQDN"
  4454. msgstr ""
  4455. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:906
  4456. msgid "Remove"
  4457. msgstr ""
  4458. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1277
  4459. msgid "Remove related device settings from the configuration"
  4460. msgstr ""
  4461. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1994
  4462. msgid "Replace wireless configuration"
  4463. msgstr ""
  4464. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:17
  4465. msgid "Request IPv6-address"
  4466. msgstr ""
  4467. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:23
  4468. msgid "Request IPv6-prefix of length"
  4469. msgstr ""
  4470. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:408
  4471. msgid "Request timeout"
  4472. msgstr ""
  4473. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:100
  4474. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:105
  4475. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:102
  4476. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:107
  4477. msgid "Require incoming checksum (optional)."
  4478. msgstr ""
  4479. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:102
  4480. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:107
  4481. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:104
  4482. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:109
  4483. msgid "Require incoming packets serialization (optional)."
  4484. msgstr ""
  4485. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1681
  4486. msgid "Required"
  4487. msgstr ""
  4488. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34
  4489. msgid "Required for certain ISPs, e.g. Charter with DOCSIS 3"
  4490. msgstr ""
  4491. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:61
  4492. msgid "Required. Base64-encoded private key for this interface."
  4493. msgstr ""
  4494. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:134
  4495. msgid "Required. Base64-encoded public key of peer."
  4496. msgstr ""
  4497. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:143
  4498. msgid ""
  4499. "Required. IP addresses and prefixes that this peer is allowed to use inside "
  4500. "the tunnel. Usually the peer's tunnel IP addresses and the networks the peer "
  4501. "routes through the tunnel."
  4502. msgstr ""
  4503. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1311
  4504. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1312
  4505. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1313
  4506. msgid "Requires hostapd"
  4507. msgstr ""
  4508. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1318
  4509. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1319
  4510. msgid "Requires hostapd with EAP Suite-B support"
  4511. msgstr ""
  4512. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1316
  4513. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1317
  4514. msgid "Requires hostapd with EAP support"
  4515. msgstr ""
  4516. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1320
  4517. msgid "Requires hostapd with OWE support"
  4518. msgstr ""
  4519. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1314
  4520. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1315
  4521. msgid "Requires hostapd with SAE support"
  4522. msgstr ""
  4523. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1309
  4524. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1310
  4525. msgid "Requires hostapd with WEP support"
  4526. msgstr ""
  4527. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:233
  4528. msgid ""
  4529. "Requires upstream supports DNSSEC; verify unsigned domain responses really "
  4530. "come from unsigned domains"
  4531. msgstr ""
  4532. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1325
  4533. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1326
  4534. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1327
  4535. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1339
  4536. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1340
  4537. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1341
  4538. msgid "Requires wpa-supplicant"
  4539. msgstr ""
  4540. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1332
  4541. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1333
  4542. msgid "Requires wpa-supplicant with EAP Suite-B support"
  4543. msgstr ""
  4544. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1330
  4545. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1331
  4546. msgid "Requires wpa-supplicant with EAP support"
  4547. msgstr ""
  4548. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1334
  4549. msgid "Requires wpa-supplicant with OWE support"
  4550. msgstr ""
  4551. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1328
  4552. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1329
  4553. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1344
  4554. msgid "Requires wpa-supplicant with SAE support"
  4555. msgstr ""
  4556. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1323
  4557. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1324
  4558. msgid "Requires wpa-supplicant with WEP support"
  4559. msgstr ""
  4560. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:224
  4561. msgid "Reselection policy for primary slave"
  4562. msgstr ""
  4563. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2204
  4564. #: modules/luci-base/luasrc/view/sysauth.htm:39
  4565. #: modules/luci-compat/luasrc/view/cbi/delegator.htm:17
  4566. #: modules/luci-compat/luasrc/view/cbi/footer.htm:30
  4567. #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:66
  4568. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1276
  4569. msgid "Reset"
  4570. msgstr ""
  4571. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:343
  4572. msgid "Reset Counters"
  4573. msgstr ""
  4574. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:374
  4575. msgid "Reset to defaults"
  4576. msgstr ""
  4577. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:162
  4578. msgid "Resolv and Hosts Files"
  4579. msgstr ""
  4580. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:188
  4581. msgid "Resolve file"
  4582. msgstr ""
  4583. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:405
  4584. msgid "Resource not found"
  4585. msgstr ""
  4586. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:506
  4587. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:874
  4588. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:100
  4589. msgid "Restart"
  4590. msgstr ""
  4591. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:348
  4592. msgid "Restart Firewall"
  4593. msgstr ""
  4594. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:872
  4595. msgid "Restart radio interface"
  4596. msgstr ""
  4597. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:370
  4598. msgid "Restore"
  4599. msgstr "שחזור"
  4600. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:380
  4601. msgid "Restore backup"
  4602. msgstr ""
  4603. #: modules/luci-base/htdocs/luci-static/resources/ui.js:371
  4604. #: modules/luci-base/htdocs/luci-static/resources/ui.js:372
  4605. msgid "Reveal/hide password"
  4606. msgstr ""
  4607. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:625
  4608. msgid "Reverse path filter"
  4609. msgstr ""
  4610. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4076
  4611. msgid "Revert"
  4612. msgstr ""
  4613. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4161
  4614. msgid "Revert changes"
  4615. msgstr ""
  4616. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4343
  4617. msgid "Revert request failed with status <code>%h</code>"
  4618. msgstr ""
  4619. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4323
  4620. msgid "Reverting configuration…"
  4621. msgstr ""
  4622. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:551
  4623. msgid "Robustness"
  4624. msgstr ""
  4625. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:372
  4626. msgid "Root directory for files served via TFTP"
  4627. msgstr ""
  4628. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:297
  4629. msgid "Root preparation"
  4630. msgstr ""
  4631. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:202
  4632. msgid "Round-Robin policy (balance-rr, 0)"
  4633. msgstr ""
  4634. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
  4635. msgid "Route Allowed IPs"
  4636. msgstr ""
  4637. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:73
  4638. msgid "Route table"
  4639. msgstr ""
  4640. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:60
  4641. msgid "Route type"
  4642. msgstr ""
  4643. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:825
  4644. msgid ""
  4645. "Router Lifetime published in <abbr title=\"Router Advertisement, ICMPv6 Type "
  4646. "134\">RA</abbr> messages. Maximum is 9000 seconds."
  4647. msgstr ""
  4648. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:46
  4649. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:26
  4650. msgid "Router Password"
  4651. msgstr ""
  4652. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:15
  4653. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:197
  4654. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:27
  4655. msgid "Routes"
  4656. msgstr ""
  4657. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:15
  4658. msgid ""
  4659. "Routes specify over which interface and gateway a certain host or network "
  4660. "can be reached."
  4661. msgstr ""
  4662. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:218
  4663. msgid "Rule"
  4664. msgstr ""
  4665. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:335
  4666. msgid "Run a filesystem check before mounting the device"
  4667. msgstr ""
  4668. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:335
  4669. msgid "Run filesystem check"
  4670. msgstr "הרץ בדיקת מערכת קבצים"
  4671. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2365
  4672. msgid "Runtime error"
  4673. msgstr ""
  4674. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:219
  4675. msgid "SHA256"
  4676. msgstr ""
  4677. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:59
  4678. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:276
  4679. msgid "SNR"
  4680. msgstr ""
  4681. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:10
  4682. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:38
  4683. msgid "SSH Access"
  4684. msgstr ""
  4685. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:70
  4686. msgid "SSH server address"
  4687. msgstr ""
  4688. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:74
  4689. msgid "SSH server port"
  4690. msgstr ""
  4691. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:58
  4692. msgid "SSH username"
  4693. msgstr ""
  4694. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:283
  4695. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:51
  4696. msgid "SSH-Keys"
  4697. msgstr ""
  4698. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:156
  4699. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:181
  4700. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1732
  4701. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:375
  4702. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:141
  4703. msgid "SSID"
  4704. msgstr ""
  4705. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:9
  4706. msgid "SSTP"
  4707. msgstr ""
  4708. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:41
  4709. msgid "SSTP Server"
  4710. msgstr ""
  4711. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:339
  4712. msgid "SWAP"
  4713. msgstr ""
  4714. #: modules/luci-base/htdocs/luci-static/resources/form.js:2891
  4715. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2199
  4716. #: modules/luci-compat/luasrc/view/cbi/error.htm:17
  4717. #: modules/luci-compat/luasrc/view/cbi/footer.htm:26
  4718. #: modules/luci-compat/luasrc/view/cbi/header.htm:20
  4719. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:433
  4720. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:123
  4721. msgid "Save"
  4722. msgstr ""
  4723. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2181
  4724. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4072
  4725. #: modules/luci-compat/luasrc/view/cbi/footer.htm:22
  4726. msgid "Save & Apply"
  4727. msgstr ""
  4728. #: modules/luci-base/htdocs/luci-static/resources/form.js:602
  4729. msgid "Save error"
  4730. msgstr ""
  4731. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:404
  4732. msgid "Save mtdblock"
  4733. msgstr ""
  4734. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:394
  4735. msgid "Save mtdblock contents"
  4736. msgstr ""
  4737. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:879
  4738. msgid "Scan"
  4739. msgstr ""
  4740. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/crontab.js:26
  4741. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:76
  4742. msgid "Scheduled Tasks"
  4743. msgstr ""
  4744. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4056
  4745. msgid "Section added"
  4746. msgstr ""
  4747. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4058
  4748. msgid "Section removed"
  4749. msgstr ""
  4750. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:331
  4751. msgid "See \"mount\" manpage for details"
  4752. msgstr ""
  4753. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2643
  4754. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2783
  4755. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2948
  4756. msgid "Select file…"
  4757. msgstr ""
  4758. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:318
  4759. msgid "Selects the transmit hash policy to use for slave selection"
  4760. msgstr ""
  4761. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:768
  4762. msgid ""
  4763. "Send <abbr title=\"Router Advertisement, ICMPv6 Type 134\">RA</abbr> "
  4764. "messages advertising this device as IPv6 router."
  4765. msgstr ""
  4766. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:650
  4767. msgid "Send ICMP redirects"
  4768. msgstr ""
  4769. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:131
  4770. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:115
  4771. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:101
  4772. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:75
  4773. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:88
  4774. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:111
  4775. msgid ""
  4776. "Send LCP echo requests at the given interval in seconds, only effective in "
  4777. "conjunction with failure threshold"
  4778. msgstr ""
  4779. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:24
  4780. msgid "Send the hostname of this device"
  4781. msgstr ""
  4782. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:157
  4783. msgid "Server Settings"
  4784. msgstr ""
  4785. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:50
  4786. msgid "Service Name"
  4787. msgstr ""
  4788. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:88
  4789. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:72
  4790. msgid "Service Type"
  4791. msgstr ""
  4792. #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:36
  4793. msgid "Services"
  4794. msgstr "שירותים"
  4795. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2669
  4796. msgid "Session expired"
  4797. msgstr ""
  4798. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:117
  4799. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:166
  4800. msgid "Set Static"
  4801. msgstr ""
  4802. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:911
  4803. msgid "Set interface as NDP-Proxy external slave. Default is off."
  4804. msgstr ""
  4805. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1215
  4806. msgid ""
  4807. "Set interface properties regardless of the link carrier (If set, carrier "
  4808. "sense events do not invoke hotplug handlers)."
  4809. msgstr ""
  4810. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:300
  4811. msgid "Set same MAC Address to all slaves"
  4812. msgstr ""
  4813. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:786
  4814. msgid ""
  4815. "Set the autonomous address-configuration flag in the prefix information "
  4816. "options of sent <abbr title=\"Router Advertisement\">RA</abbr> messages. "
  4817. "When enabled, clients will perform stateless IPv6 address autoconfiguration."
  4818. msgstr ""
  4819. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:719
  4820. msgid ""
  4821. "Set this interface as master for RA and DHCPv6 relaying as well as NDP "
  4822. "proxying."
  4823. msgstr ""
  4824. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:304
  4825. msgid "Set to currently active slave (active, 1)"
  4826. msgstr ""
  4827. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:305
  4828. msgid "Set to first slave added to the bond (follow, 2)"
  4829. msgstr ""
  4830. #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:55
  4831. #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:55
  4832. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:23
  4833. msgid "Setting PLMN failed"
  4834. msgstr ""
  4835. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:68
  4836. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:26
  4837. msgid "Setting operation mode failed"
  4838. msgstr ""
  4839. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:646
  4840. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:662
  4841. msgid "Setup DHCP Server"
  4842. msgstr ""
  4843. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:906
  4844. msgid "Setup routes for proxied IPv6 neighbours."
  4845. msgstr ""
  4846. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:30
  4847. msgid "Severely Errored Seconds (SES)"
  4848. msgstr ""
  4849. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:210
  4850. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:37
  4851. msgid "Short GI"
  4852. msgstr ""
  4853. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1157
  4854. msgid "Short Preamble"
  4855. msgstr ""
  4856. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:440
  4857. #: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:18
  4858. msgid "Show current backup file list"
  4859. msgstr ""
  4860. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:293
  4861. msgid "Show empty chains"
  4862. msgstr ""
  4863. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:276
  4864. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:338
  4865. msgid "Show raw counters"
  4866. msgstr ""
  4867. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:510
  4868. msgid "Shutdown this interface"
  4869. msgstr ""
  4870. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:57
  4871. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:63
  4872. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:186
  4873. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1731
  4874. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:42
  4875. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:374
  4876. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:140
  4877. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:231
  4878. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:274
  4879. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:280
  4880. msgid "Signal"
  4881. msgstr ""
  4882. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2151
  4883. msgid "Signal / Noise"
  4884. msgstr ""
  4885. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:25
  4886. msgid "Signal Attenuation (SATN)"
  4887. msgstr ""
  4888. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:125
  4889. msgid "Signal Refresh Rate"
  4890. msgstr ""
  4891. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:262
  4892. msgid "Signal:"
  4893. msgstr ""
  4894. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3809
  4895. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:217
  4896. msgid "Size"
  4897. msgstr ""
  4898. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:361
  4899. msgid "Size of DNS query cache"
  4900. msgstr ""
  4901. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:194
  4902. msgid "Size of the ZRam device in megabytes"
  4903. msgstr ""
  4904. #: modules/luci-compat/luasrc/view/cbi/footer.htm:18
  4905. #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:57
  4906. msgid "Skip"
  4907. msgstr ""
  4908. #: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:40
  4909. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:46
  4910. msgid "Skip to content"
  4911. msgstr "דלג אל התוכן"
  4912. #: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:39
  4913. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:45
  4914. msgid "Skip to navigation"
  4915. msgstr "דלג אל הניווט"
  4916. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:178
  4917. msgid "Slave Interfaces"
  4918. msgstr ""
  4919. #: modules/luci-base/htdocs/luci-static/resources/network.js:2998
  4920. #: modules/luci-compat/luasrc/model/network.lua:1428
  4921. msgid "Software VLAN"
  4922. msgstr ""
  4923. #: modules/luci-compat/luasrc/view/cbi/header.htm:5
  4924. msgid "Some fields are invalid, cannot save values!"
  4925. msgstr "חלק מהשדות אינם תקינים, אין אפשרות לשמור את הערכים!"
  4926. #: modules/luci-base/luasrc/view/error404.htm:9
  4927. msgid "Sorry, the object you requested was not found."
  4928. msgstr "סליחה, אך האובייקט שביקשת אינו נמצא."
  4929. #: modules/luci-base/luasrc/view/error500.htm:9
  4930. msgid "Sorry, the server encountered an unexpected error."
  4931. msgstr "סליחה, השרת נתקל בשגיאה לא צפויה."
  4932. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:412
  4933. msgid ""
  4934. "Sorry, there is no sysupgrade support present; a new firmware image must be "
  4935. "flashed manually. Please refer to the wiki for device specific install "
  4936. "instructions."
  4937. msgstr ""
  4938. "סליחה, אין תמיכה בעדכון מערכת, ולכן קושחה חדשה חייבת להיצרב ידנית. אנא פנה "
  4939. "אל ה-wiki של OpenWrt עבור הוראות ספציפיות למכשיר שלך."
  4940. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:385
  4941. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:70
  4942. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:184
  4943. msgid "Source"
  4944. msgstr "מקור"
  4945. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:84
  4946. msgid "Source Address"
  4947. msgstr ""
  4948. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57
  4949. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:57
  4950. msgid "Source interface"
  4951. msgstr ""
  4952. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:891
  4953. msgid ""
  4954. "Specifies a fixed list of DNS search domains to announce via DHCPv6. If left "
  4955. "unspecified, the local device DNS search domain will be announced."
  4956. msgstr ""
  4957. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:879
  4958. msgid ""
  4959. "Specifies a fixed list of IPv6 DNS server addresses to announce via DHCPv6. "
  4960. "If left unspecified, the device will announce itself as IPv6 DNS server "
  4961. "unless the <em>Local IPv6 DNS server</em> option is disabled."
  4962. msgstr ""
  4963. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:342
  4964. msgid ""
  4965. "Specifies that duplicate frames (received on inactive ports) should be "
  4966. "dropped or delivered"
  4967. msgstr ""
  4968. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:358
  4969. msgid "Specifies the ARP link monitoring frequency in milliseconds"
  4970. msgstr ""
  4971. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:366
  4972. msgid "Specifies the IP addresses to use for ARP monitoring"
  4973. msgstr ""
  4974. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:395
  4975. msgid "Specifies the MII link monitoring frequency in milliseconds"
  4976. msgstr ""
  4977. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:259
  4978. msgid "Specifies the aggregation selection logic to use"
  4979. msgstr ""
  4980. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:292
  4981. msgid "Specifies the directory the device is attached to"
  4982. msgstr ""
  4983. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:792
  4984. msgid ""
  4985. "Specifies the flags sent in <abbr title=\"Router Advertisement\">RA</abbr> "
  4986. "messages, for example to instruct clients to request further information via "
  4987. "stateful DHCPv6."
  4988. msgstr ""
  4989. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:252
  4990. msgid ""
  4991. "Specifies the mac-address for the actor in protocol packet exchanges "
  4992. "(LACPDUs). If empty, masters' mac address defaults to system default"
  4993. msgstr ""
  4994. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:175
  4995. msgid ""
  4996. "Specifies the maximum amount of failed ARP requests until hosts are presumed "
  4997. "to be dead"
  4998. msgstr ""
  4999. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:171
  5000. msgid ""
  5001. "Specifies the maximum amount of seconds after which hosts are presumed to be "
  5002. "dead"
  5003. msgstr ""
  5004. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:946
  5005. msgid ""
  5006. "Specifies the maximum transmit power the wireless radio may use. Depending "
  5007. "on regulatory requirements and wireless usage, the actual transmit power may "
  5008. "be reduced by the driver."
  5009. msgstr ""
  5010. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:236
  5011. msgid ""
  5012. "Specifies the minimum number of links that must be active before asserting "
  5013. "carrier"
  5014. msgstr ""
  5015. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:200
  5016. msgid "Specifies the mode to be used for this bonding interface"
  5017. msgstr ""
  5018. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:333
  5019. msgid ""
  5020. "Specifies the number of IGMP membership reports to be issued after a "
  5021. "failover event in 200ms intervals"
  5022. msgstr ""
  5023. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:276
  5024. msgid ""
  5025. "Specifies the number of packets to transmit through a slave before moving to "
  5026. "the next one"
  5027. msgstr ""
  5028. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:310
  5029. msgid ""
  5030. "Specifies the number of peer notifications (gratuitous ARPs and unsolicited "
  5031. "IPv6 Neighbor Advertisements) to be issued after a failover event"
  5032. msgstr ""
  5033. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:284
  5034. msgid ""
  5035. "Specifies the number of seconds between instances where the bonding driver "
  5036. "sends learning packets to each slaves peer switch"
  5037. msgstr ""
  5038. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:374
  5039. msgid "Specifies the quantity of ARP IP targets that must be reachable"
  5040. msgstr ""
  5041. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:268
  5042. msgid ""
  5043. "Specifies the rate in which the link partner will be asked to transmit "
  5044. "LACPDU packets"
  5045. msgstr ""
  5046. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:225
  5047. msgid ""
  5048. "Specifies the reselection policy for the primary slave when failure of the "
  5049. "active slave or recovery of the primary slave occurs"
  5050. msgstr ""
  5051. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:244
  5052. msgid "Specifies the system priority"
  5053. msgstr ""
  5054. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:403
  5055. msgid ""
  5056. "Specifies the time in milliseconds to wait before disabling a slave after a "
  5057. "link failure detection"
  5058. msgstr ""
  5059. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:411
  5060. msgid ""
  5061. "Specifies the time in milliseconds to wait before enabling a slave after a "
  5062. "link recovery detection"
  5063. msgstr ""
  5064. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:494
  5065. msgid ""
  5066. "Specifies the wired ports to attach to this bridge. In order to attach "
  5067. "wireless networks, choose the associated interface as network in the "
  5068. "wireless settings."
  5069. msgstr ""
  5070. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:382
  5071. msgid ""
  5072. "Specifies whether ARP probes and replies should be validated or non-ARP "
  5073. "traffic should be filtered for link monitoring"
  5074. msgstr ""
  5075. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:301
  5076. msgid ""
  5077. "Specifies whether active-backup mode should set all slaves to the same MAC "
  5078. "address at enslavement"
  5079. msgstr ""
  5080. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:419
  5081. msgid ""
  5082. "Specifies whether or not miimon should use MII or ETHTOOL ioctls vs. "
  5083. "netif_carrier_ok()"
  5084. msgstr ""
  5085. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:293
  5086. msgid ""
  5087. "Specifies whether to shuffle active flows across slaves based on the load"
  5088. msgstr ""
  5089. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:179
  5090. msgid ""
  5091. "Specifies which slave interfaces should be attached to this bonding interface"
  5092. msgstr ""
  5093. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:212
  5094. msgid ""
  5095. "Specifies which slave is the primary device. It will always be the active "
  5096. "slave while it is available"
  5097. msgstr ""
  5098. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:63
  5099. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:67
  5100. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:62
  5101. msgid "Specify a TOS (Type of Service)."
  5102. msgstr ""
  5103. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:74
  5104. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:79
  5105. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:79
  5106. msgid ""
  5107. "Specify a TOS (Type of Service). Can be <code>inherit</code> (the outer "
  5108. "header inherits the value of the inner header) or an hexadecimal value "
  5109. "<code>00..FF</code> (optional)."
  5110. msgstr ""
  5111. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:74
  5112. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:74
  5113. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:79
  5114. msgid ""
  5115. "Specify a TTL (Time to Live) for the encapsulating packet other than the "
  5116. "default (64) (optional)."
  5117. msgstr ""
  5118. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:69
  5119. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:58
  5120. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:62
  5121. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:57
  5122. msgid ""
  5123. "Specify a TTL (Time to Live) for the encapsulating packet other than the "
  5124. "default (64)."
  5125. msgstr ""
  5126. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:84
  5127. msgid ""
  5128. "Specify a Traffic Class. Can be <code>inherit</code> (the outer header "
  5129. "inherits the value of the inner header) or an hexadecimal value <code>00.."
  5130. "FF</code> (optional)."
  5131. msgstr ""
  5132. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:64
  5133. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:69
  5134. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:69
  5135. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:74
  5136. msgid ""
  5137. "Specify an MTU (Maximum Transmission Unit) other than the default (1280 "
  5138. "bytes) (optional)."
  5139. msgstr ""
  5140. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:53
  5141. msgid ""
  5142. "Specify an MTU (Maximum Transmission Unit) other than the default (1280 "
  5143. "bytes)."
  5144. msgstr ""
  5145. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2011
  5146. msgid "Specify the secret encryption key here."
  5147. msgstr ""
  5148. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:657
  5149. msgid "Stale neighbour cache timeout"
  5150. msgstr ""
  5151. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:669
  5152. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:99
  5153. msgid "Start"
  5154. msgstr ""
  5155. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:134
  5156. msgid "Start WPS"
  5157. msgstr ""
  5158. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:76
  5159. msgid "Start priority"
  5160. msgstr ""
  5161. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1835
  5162. msgid "Start refresh"
  5163. msgstr ""
  5164. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4276
  5165. msgid "Starting configuration apply…"
  5166. msgstr ""
  5167. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1748
  5168. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:398
  5169. msgid "Starting wireless scan..."
  5170. msgstr ""
  5171. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:109
  5172. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:64
  5173. msgid "Startup"
  5174. msgstr "אתחול"
  5175. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:19
  5176. msgid "Static IPv4 Routes"
  5177. msgstr "ניתובי IPv4 סטטיים"
  5178. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:19
  5179. msgid "Static IPv6 Routes"
  5180. msgstr "ניתובי IPv6 סטטיים"
  5181. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:90
  5182. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:129
  5183. msgid "Static Lease"
  5184. msgstr ""
  5185. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:165
  5186. msgid "Static Leases"
  5187. msgstr "הקצאות סטטיות"
  5188. #: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:76
  5189. msgid "Static Routes"
  5190. msgstr "ניתובים סטטיים"
  5191. #: modules/luci-base/htdocs/luci-static/resources/network.js:2099
  5192. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:172
  5193. #: modules/luci-compat/luasrc/model/network.lua:967
  5194. msgid "Static address"
  5195. msgstr "כתובת סטטית"
  5196. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:411
  5197. msgid ""
  5198. "Static leases are used to assign fixed IP addresses and symbolic hostnames "
  5199. "to DHCP clients. They are also required for non-dynamic interface "
  5200. "configurations where only hosts with a corresponding lease are served."
  5201. msgstr ""
  5202. "הקצאות סטטיות נועדו להקצות כתובות IP קבועות ואת שם הרשת שלהן ללקוחות DHCP. "
  5203. "הן נחוצות גם עבור הגדרות ממשק שאינן דינאמיות, בהן מטופלות רק ישויות בעלות "
  5204. "הקצאה מתאימה."
  5205. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1174
  5206. msgid "Station inactivity limit"
  5207. msgstr ""
  5208. #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:16
  5209. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:541
  5210. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:928
  5211. #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:9
  5212. msgid "Status"
  5213. msgstr "מצב"
  5214. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:512
  5215. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:101
  5216. msgid "Stop"
  5217. msgstr "עצור"
  5218. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:129
  5219. msgid "Stop WPS"
  5220. msgstr ""
  5221. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1746
  5222. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1840
  5223. msgid "Stop refresh"
  5224. msgstr ""
  5225. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:629
  5226. msgid "Strict filtering"
  5227. msgstr ""
  5228. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:259
  5229. msgid "Strict order"
  5230. msgstr ""
  5231. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:33
  5232. msgid "Strong"
  5233. msgstr ""
  5234. #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:61
  5235. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2036
  5236. msgid "Submit"
  5237. msgstr "שלח"
  5238. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:203
  5239. msgid "Suppress logging"
  5240. msgstr ""
  5241. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:204
  5242. msgid "Suppress logging of the routine operation of these protocols"
  5243. msgstr ""
  5244. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:44
  5245. msgid "Swap free"
  5246. msgstr ""
  5247. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:139
  5248. #: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:3
  5249. msgid "Switch"
  5250. msgstr ""
  5251. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:172
  5252. msgid "Switch %q"
  5253. msgstr ""
  5254. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:150
  5255. msgid ""
  5256. "Switch %q has an unknown topology - the VLAN settings might not be accurate."
  5257. msgstr ""
  5258. #: modules/luci-base/htdocs/luci-static/resources/network.js:2998
  5259. #: modules/luci-compat/luasrc/model/network.lua:1426
  5260. msgid "Switch VLAN"
  5261. msgstr ""
  5262. #: modules/luci-base/htdocs/luci-static/resources/network.js:2995
  5263. msgid "Switch port"
  5264. msgstr ""
  5265. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:560
  5266. msgid "Switch protocol"
  5267. msgstr ""
  5268. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:103
  5269. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:104
  5270. #: modules/luci-compat/luasrc/view/cbi/ipaddr.htm:26
  5271. msgid "Switch to CIDR list notation"
  5272. msgstr ""
  5273. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2678
  5274. msgid "Symbolic link"
  5275. msgstr ""
  5276. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:75
  5277. msgid "Sync with NTP-Server"
  5278. msgstr ""
  5279. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:67
  5280. msgid "Sync with browser"
  5281. msgstr ""
  5282. #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:26
  5283. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:17
  5284. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:99
  5285. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:3
  5286. msgid "System"
  5287. msgstr ""
  5288. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/syslog.js:25
  5289. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:39
  5290. msgid "System Log"
  5291. msgstr ""
  5292. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:243
  5293. msgid "System Priority"
  5294. msgstr ""
  5295. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:104
  5296. msgid "System Properties"
  5297. msgstr ""
  5298. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:148
  5299. msgid "System log buffer size"
  5300. msgstr ""
  5301. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:338
  5302. msgid "TCP:"
  5303. msgstr "TCP:"
  5304. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:163
  5305. msgid "TFTP Settings"
  5306. msgstr "הגדרות TFTP"
  5307. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:371
  5308. msgid "TFTP server root"
  5309. msgstr ""
  5310. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:50
  5311. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:85
  5312. msgid "TX"
  5313. msgstr "שידור"
  5314. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:232
  5315. msgid "TX Rate"
  5316. msgstr "קצב שידור"
  5317. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:618
  5318. msgid "TX queue length"
  5319. msgstr ""
  5320. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:18
  5321. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:167
  5322. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:186
  5323. msgid "Table"
  5324. msgstr "טבלה"
  5325. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:31
  5326. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:66
  5327. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:164
  5328. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:183
  5329. msgid "Target"
  5330. msgstr "יעד"
  5331. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:103
  5332. msgid "Target network"
  5333. msgstr ""
  5334. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:50
  5335. msgid "Terminate"
  5336. msgstr ""
  5337. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:832
  5338. msgid ""
  5339. "The <abbr title=\"Maximum Transmission Unit\">MTU</abbr> to be published in "
  5340. "<abbr title=\"Router Advertisement, ICMPv6 Type 134\">RA</abbr> messages. "
  5341. "Minimum is 1280 bytes."
  5342. msgstr ""
  5343. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:794
  5344. msgid ""
  5345. "The <em>Managed address configuration</em> (M) flag indicates that IPv6 "
  5346. "addresses are available via DHCPv6."
  5347. msgstr ""
  5348. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:798
  5349. msgid ""
  5350. "The <em>Mobile IPv6 Home Agent</em> (H) flag indicates that the device is "
  5351. "also acting as Mobile IPv6 home agent on this link."
  5352. msgstr ""
  5353. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:796
  5354. msgid ""
  5355. "The <em>Other configuration</em> (O) flag indicates that other information, "
  5356. "such as DNS servers, is available via DHCPv6."
  5357. msgstr ""
  5358. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:84
  5359. msgid "The <em>block mount</em> command failed with code %d"
  5360. msgstr ""
  5361. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:937
  5362. msgid ""
  5363. "The DNS server entries in the local resolv.conf are primarily sorted by the "
  5364. "weight specified here"
  5365. msgstr ""
  5366. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:77
  5367. msgid ""
  5368. "The HE.net endpoint update configuration changed, you must now use the plain "
  5369. "username instead of the user ID!"
  5370. msgstr ""
  5371. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:40
  5372. msgid "The IPv4 address or the fully-qualified domain name of the remote end."
  5373. msgstr ""
  5374. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:42
  5375. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:42
  5376. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:40
  5377. msgid ""
  5378. "The IPv4 address or the fully-qualified domain name of the remote tunnel end."
  5379. msgstr ""
  5380. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:40
  5381. msgid "The IPv6 address or the fully-qualified domain name of the remote end."
  5382. msgstr ""
  5383. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:42
  5384. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:42
  5385. msgid ""
  5386. "The IPv6 address or the fully-qualified domain name of the remote tunnel end."
  5387. msgstr ""
  5388. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:53
  5389. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:59
  5390. msgid ""
  5391. "The IPv6 prefix assigned to the provider, usually ends with <code>::</code>"
  5392. msgstr ""
  5393. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:586
  5394. msgid "The MTU must not exceed the parent device MTU of %d bytes"
  5395. msgstr ""
  5396. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:864
  5397. msgid "The VLAN ID must be unique"
  5398. msgstr ""
  5399. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1996
  5400. msgid ""
  5401. "The allowed characters are: <code>A-Z</code>, <code>a-z</code>, <code>0-9</"
  5402. "code> and <code>_</code>"
  5403. msgstr ""
  5404. #: modules/luci-compat/luasrc/view/cbi/error.htm:6
  5405. msgid "The configuration file could not be loaded due to the following error:"
  5406. msgstr ""
  5407. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1990
  5408. msgid ""
  5409. "The correct SSID must be manually specified when joining a hidden wireless "
  5410. "network"
  5411. msgstr ""
  5412. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4152
  5413. msgid ""
  5414. "The device could not be reached within %d seconds after applying the pending "
  5415. "changes, which caused the configuration to be rolled back for safety "
  5416. "reasons. If you believe that the configuration changes are correct "
  5417. "nonetheless, perform an unchecked configuration apply. Alternatively, you "
  5418. "can dismiss this warning and edit changes before attempting to apply again, "
  5419. "or revert all pending changes to keep the currently working configuration "
  5420. "state."
  5421. msgstr ""
  5422. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:280
  5423. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:392
  5424. msgid ""
  5425. "The device file of the memory or partition (<abbr title=\"for example\">e.g."
  5426. "</abbr> <code>/dev/sda1</code>)"
  5427. msgstr ""
  5428. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:450
  5429. msgid "The device name \"%s\" is already taken"
  5430. msgstr ""
  5431. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:393
  5432. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:427
  5433. msgid ""
  5434. "The existing network configuration needs to be changed for LuCI to function "
  5435. "properly."
  5436. msgstr ""
  5437. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:793
  5438. msgid ""
  5439. "The existing wireless configuration needs to be changed for LuCI to function "
  5440. "properly."
  5441. msgstr ""
  5442. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:215
  5443. msgid ""
  5444. "The flash image was uploaded. Below is the checksum and file size listed, "
  5445. "compare them with the original file to ensure data integrity. <br /> Click "
  5446. "'Continue' below to start the flash procedure."
  5447. msgstr ""
  5448. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:198
  5449. msgid "The following rules are currently active on this system."
  5450. msgstr "החוקים הבאים מאופשרים כרגע במערכת זו."
  5451. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:154
  5452. msgid "The gateway address must not be a local IP address"
  5453. msgstr ""
  5454. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:166
  5455. msgid "The given SSH public key has already been added."
  5456. msgstr ""
  5457. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:172
  5458. msgid ""
  5459. "The given SSH public key is invalid. Please supply proper public RSA or "
  5460. "ECDSA keys."
  5461. msgstr ""
  5462. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1088
  5463. msgid "The interface name is already used"
  5464. msgstr ""
  5465. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1094
  5466. msgid "The interface name is too long"
  5467. msgstr ""
  5468. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:61
  5469. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:55
  5470. msgid ""
  5471. "The length of the IPv4 prefix in bits, the remainder is used in the IPv6 "
  5472. "addresses."
  5473. msgstr ""
  5474. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:57
  5475. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:63
  5476. msgid "The length of the IPv6 prefix in bits"
  5477. msgstr ""
  5478. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:163
  5479. msgid "The local IPv4 address"
  5480. msgstr ""
  5481. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:46
  5482. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:46
  5483. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:44
  5484. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:44
  5485. msgid "The local IPv4 address over which the tunnel is created (optional)."
  5486. msgstr ""
  5487. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:169
  5488. msgid "The local IPv4 netmask"
  5489. msgstr ""
  5490. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:46
  5491. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:53
  5492. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:44
  5493. msgid "The local IPv6 address over which the tunnel is created (optional)."
  5494. msgstr ""
  5495. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:575
  5496. msgid ""
  5497. "The max response time in centiseconds inserted into group-specific queries "
  5498. "sent in response to leave group messages. It is also the amount of time "
  5499. "between group-specific query messages. This value may be tuned to modify the "
  5500. "\"leave latency\" of the network. A reduced value results in reduced time to "
  5501. "detect the loss of the last member of a group"
  5502. msgstr ""
  5503. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:561
  5504. msgid ""
  5505. "The max response time in centiseconds inserted into the periodic general "
  5506. "queries. By varying the value, an administrator may tune the burstiness of "
  5507. "IGMP messages on the subnet; larger values make the traffic less bursty, as "
  5508. "host responses are spread out over a larger interval"
  5509. msgstr ""
  5510. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:849
  5511. msgid ""
  5512. "The maximum hops to be published in <abbr title=\"Router Advertisement\">RA</"
  5513. "abbr> messages. Maximum is 255 hops."
  5514. msgstr ""
  5515. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2002
  5516. msgid "The network name is already used"
  5517. msgstr ""
  5518. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:139
  5519. msgid ""
  5520. "The network ports on this device can be combined to several <abbr title="
  5521. "\"Virtual Local Area Network\">VLAN</abbr>s in which computers can "
  5522. "communicate directly with each other. <abbr title=\"Virtual Local Area "
  5523. "Network\">VLAN</abbr>s are often used to separate different network "
  5524. "segments. Often there is by default one Uplink port for a connection to the "
  5525. "next greater network like the internet and other ports for a local network."
  5526. msgstr ""
  5527. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:569
  5528. msgid "The query response interval must be lower than the query interval value"
  5529. msgstr ""
  5530. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:158
  5531. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:42
  5532. msgid "The reboot command failed with code %d"
  5533. msgstr ""
  5534. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:147
  5535. msgid "The restore command failed with code %d"
  5536. msgstr ""
  5537. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:551
  5538. msgid ""
  5539. "The robustness value allows tuning for the expected packet loss on the "
  5540. "network. If a network is expected to be lossy, the robustness value may be "
  5541. "increased. IGMP is robust to (Robustness-1) packet losses"
  5542. msgstr ""
  5543. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1369
  5544. msgid "The selected %s mode is incompatible with %s encryption"
  5545. msgstr ""
  5546. #: modules/luci-base/luasrc/view/csrftoken.htm:11
  5547. msgid "The submitted security token is invalid or already expired!"
  5548. msgstr ""
  5549. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:98
  5550. msgid ""
  5551. "The system is erasing the configuration partition now and will reboot itself "
  5552. "when finished."
  5553. msgstr ""
  5554. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:289
  5555. msgid ""
  5556. "The system is flashing now.<br /> DO NOT POWER OFF THE DEVICE!<br /> Wait a "
  5557. "few minutes before you try to reconnect. It might be necessary to renew the "
  5558. "address of your computer to reach the device again, depending on your "
  5559. "settings."
  5560. msgstr ""
  5561. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:163
  5562. msgid ""
  5563. "The system is rebooting now. If the restored configuration changed the "
  5564. "current LAN IP address, you might need to reconnect manually."
  5565. msgstr ""
  5566. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:85
  5567. msgid "The system password has been successfully changed."
  5568. msgstr ""
  5569. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:315
  5570. msgid "The sysupgrade command failed with code %d"
  5571. msgstr ""
  5572. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:120
  5573. msgid ""
  5574. "The uploaded backup archive appears to be valid and contains the files "
  5575. "listed below. Press \"Continue\" to restore the backup and reboot, or "
  5576. "\"Cancel\" to abort the operation."
  5577. msgstr ""
  5578. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:115
  5579. msgid "The uploaded backup archive is not readable"
  5580. msgstr ""
  5581. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:244
  5582. msgid "The uploaded firmware does not allow keeping current configuration."
  5583. msgstr ""
  5584. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:239
  5585. msgid ""
  5586. "The uploaded image file does not contain a supported format. Make sure that "
  5587. "you choose the generic image format for your platform."
  5588. msgstr ""
  5589. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1414
  5590. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1426
  5591. msgid "The value is overridden by configuration. Original: %s"
  5592. msgstr ""
  5593. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:562
  5594. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:594
  5595. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:121
  5596. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:170
  5597. msgid "There are no active leases"
  5598. msgstr ""
  5599. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4291
  5600. msgid "There are no changes to apply"
  5601. msgstr ""
  5602. #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:55
  5603. #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:213
  5604. #: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:60
  5605. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:80
  5606. msgid ""
  5607. "There is no password set on this router. Please configure a root password to "
  5608. "protect the web interface."
  5609. msgstr ""
  5610. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:49
  5611. msgid "This IPv4 address of the relay"
  5612. msgstr ""
  5613. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1623
  5614. msgid "This authentication type is not applicable to the selected EAP method."
  5615. msgstr ""
  5616. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:57
  5617. msgid "This does not look like a valid PEM file"
  5618. msgstr ""
  5619. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:256
  5620. msgid ""
  5621. "This file may contain lines like 'server=/domain/1.2.3.4' or "
  5622. "'server=1.2.3.4' for domain-specific or full upstream <abbr title=\"Domain "
  5623. "Name System\">DNS</abbr> servers."
  5624. msgstr ""
  5625. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:424
  5626. #: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:16
  5627. msgid ""
  5628. "This is a list of shell glob patterns for matching files and directories to "
  5629. "include during sysupgrade. Modified files in /etc/config/ and certain other "
  5630. "configurations are automatically preserved."
  5631. msgstr ""
  5632. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:81
  5633. msgid ""
  5634. "This is either the \"Update Key\" configured for the tunnel or the account "
  5635. "password if no update key has been configured"
  5636. msgstr ""
  5637. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:116
  5638. msgid ""
  5639. "This is the content of /etc/rc.local. Insert your own commands here (in "
  5640. "front of 'exit 0') to execute them at the end of the boot process."
  5641. msgstr ""
  5642. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:54
  5643. msgid ""
  5644. "This is the local endpoint address assigned by the tunnel broker, it usually "
  5645. "ends with <code>...:2/64</code>"
  5646. msgstr ""
  5647. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:173
  5648. msgid ""
  5649. "This is the only <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</"
  5650. "abbr> in the local network"
  5651. msgstr ""
  5652. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:73
  5653. msgid "This is the plain username for logging into the account"
  5654. msgstr ""
  5655. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:57
  5656. msgid ""
  5657. "This is the prefix routed to you by the tunnel broker for use by clients"
  5658. msgstr ""
  5659. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/crontab.js:28
  5660. msgid "This is the system crontab in which scheduled tasks can be defined."
  5661. msgstr ""
  5662. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:50
  5663. msgid ""
  5664. "This is usually the address of the nearest PoP operated by the tunnel broker"
  5665. msgstr ""
  5666. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:65
  5667. msgid ""
  5668. "This list gives an overview over currently running system processes and "
  5669. "their status."
  5670. msgstr "רשימה זו מציגה סקירה של תהליכי המערכת הרצים כרגע ואת מצבם."
  5671. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1577
  5672. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1635
  5673. msgid ""
  5674. "This option cannot be used because the ca-bundle package is not installed."
  5675. msgstr ""
  5676. #: modules/luci-base/htdocs/luci-static/resources/form.js:2230
  5677. #: modules/luci-base/htdocs/luci-static/resources/form.js:2536
  5678. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:172
  5679. #: modules/luci-compat/luasrc/view/cbi/tsection.htm:32
  5680. msgid "This section contains no values yet"
  5681. msgstr "סעיף זה לא מכיל ערכים עדיין"
  5682. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:110
  5683. msgid "Time Synchronization"
  5684. msgstr "סנכרון זמן"
  5685. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:653
  5686. msgid "Time in milliseconds"
  5687. msgstr ""
  5688. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:527
  5689. msgid "Time in seconds to spend in listening and learning states"
  5690. msgstr ""
  5691. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1165
  5692. msgid "Time interval for rekeying GTK"
  5693. msgstr ""
  5694. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:15
  5695. msgid "Timed-out"
  5696. msgstr ""
  5697. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:657
  5698. msgid "Timeout in seconds"
  5699. msgstr ""
  5700. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:513
  5701. msgid "Timeout in seconds for learned MAC addresses in the forwarding database"
  5702. msgstr ""
  5703. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:532
  5704. msgid "Timeout in seconds until topology updates on link loss"
  5705. msgstr ""
  5706. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:131
  5707. msgid "Timezone"
  5708. msgstr "אזור זמן"
  5709. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2679
  5710. msgid "To login…"
  5711. msgstr ""
  5712. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:370
  5713. msgid ""
  5714. "To restore configuration files, you can upload a previously generated backup "
  5715. "archive here. To reset the firmware to its initial state, click \"Perform "
  5716. "reset\" (only possible with squashfs images)."
  5717. msgstr ""
  5718. "על מנת לשחזר את קבצי ההגדרות, באפשרותך להעלות ארכיון גיבוי שנוצר לפני כן."
  5719. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1462
  5720. msgid "Tone"
  5721. msgstr ""
  5722. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:35
  5723. msgid "Total Available"
  5724. msgstr "סה\"כ פנוי"
  5725. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:102
  5726. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:103
  5727. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:113
  5728. msgid "Traceroute"
  5729. msgstr ""
  5730. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:54
  5731. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:65
  5732. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:109
  5733. msgid "Traffic"
  5734. msgstr "תעבורה"
  5735. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:79
  5736. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:84
  5737. msgid "Traffic Class"
  5738. msgstr ""
  5739. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:387
  5740. msgid "Transfer"
  5741. msgstr "העברה"
  5742. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:24
  5743. msgid "Transmit"
  5744. msgstr "שידור"
  5745. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:317
  5746. msgid "Transmit Hash Policy"
  5747. msgstr ""
  5748. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:74
  5749. msgid "Trigger"
  5750. msgstr ""
  5751. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:19
  5752. msgid "Trigger Mode"
  5753. msgstr ""
  5754. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:69
  5755. msgid "Tunnel ID"
  5756. msgstr ""
  5757. #: modules/luci-base/htdocs/luci-static/resources/network.js:3001
  5758. #: modules/luci-compat/luasrc/model/network.lua:1431
  5759. msgid "Tunnel Interface"
  5760. msgstr ""
  5761. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:44
  5762. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:55
  5763. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:76
  5764. msgid "Tunnel Link"
  5765. msgstr ""
  5766. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1371
  5767. msgid "Tunnel device"
  5768. msgstr ""
  5769. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:185
  5770. msgid "Tx-Power"
  5771. msgstr "עוצמת שידור"
  5772. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:45
  5773. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1402
  5774. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:163
  5775. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:43
  5776. msgid "Type"
  5777. msgstr ""
  5778. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:328
  5779. msgid "UDP:"
  5780. msgstr "UDP:"
  5781. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:91
  5782. msgid "UMTS only"
  5783. msgstr ""
  5784. #: modules/luci-compat/luasrc/model/network/proto_3g.lua:10
  5785. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:43
  5786. msgid "UMTS/GPRS/EV-DO"
  5787. msgstr ""
  5788. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:254
  5789. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:360
  5790. msgid "UUID"
  5791. msgstr ""
  5792. #: modules/luci-base/htdocs/luci-static/resources/network.js:16
  5793. #: modules/luci-base/htdocs/luci-static/resources/network.js:17
  5794. #: modules/luci-compat/luasrc/model/network.lua:34
  5795. #: modules/luci-compat/luasrc/model/network.lua:35
  5796. msgid "Unable to determine device name"
  5797. msgstr ""
  5798. #: modules/luci-base/htdocs/luci-static/resources/network.js:18
  5799. #: modules/luci-compat/luasrc/model/network.lua:36
  5800. msgid "Unable to determine external IP address"
  5801. msgstr ""
  5802. #: modules/luci-base/htdocs/luci-static/resources/network.js:19
  5803. #: modules/luci-compat/luasrc/model/network.lua:37
  5804. msgid "Unable to determine upstream interface"
  5805. msgstr ""
  5806. #: modules/luci-base/luasrc/view/error404.htm:11
  5807. msgid "Unable to dispatch"
  5808. msgstr ""
  5809. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/dmesg.js:9
  5810. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/syslog.js:15
  5811. msgid "Unable to load log data:"
  5812. msgstr ""
  5813. #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:54
  5814. #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:54
  5815. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:22
  5816. msgid "Unable to obtain client ID"
  5817. msgstr ""
  5818. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:221
  5819. msgid "Unable to obtain mount information"
  5820. msgstr ""
  5821. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:307
  5822. msgid "Unable to reset ip6tables counters: %s"
  5823. msgstr ""
  5824. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:305
  5825. msgid "Unable to reset iptables counters: %s"
  5826. msgstr ""
  5827. #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:61
  5828. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:7
  5829. msgid "Unable to resolve AFTR host name"
  5830. msgstr ""
  5831. #: modules/luci-base/htdocs/luci-static/resources/network.js:20
  5832. #: modules/luci-compat/luasrc/model/network.lua:38
  5833. msgid "Unable to resolve peer host name"
  5834. msgstr ""
  5835. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:313
  5836. msgid "Unable to restart firewall: %s"
  5837. msgstr ""
  5838. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/crontab.js:20
  5839. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:340
  5840. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:57
  5841. msgid "Unable to save contents: %s"
  5842. msgstr ""
  5843. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:32
  5844. msgid "Unavailable Seconds (UAS)"
  5845. msgstr ""
  5846. #: modules/luci-base/htdocs/luci-static/resources/fs.js:102
  5847. msgid "Unexpected reply data format"
  5848. msgstr ""
  5849. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1434
  5850. msgid ""
  5851. "Unique Local Address - in the range <code>fc00::/7</code>. Typically only "
  5852. "within the &#8216;local&#8217; half <code>fd00::/8</code>. ULA for IPv6 is "
  5853. "analogous to IPv4 private network addressing. This prefix is randomly "
  5854. "generated at first install."
  5855. msgstr ""
  5856. #: modules/luci-base/htdocs/luci-static/resources/network.js:2101
  5857. #: modules/luci-compat/luasrc/model/network.lua:971
  5858. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:17
  5859. msgid "Unknown"
  5860. msgstr ""
  5861. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:47
  5862. msgid "Unknown and unsupported connection method."
  5863. msgstr ""
  5864. #: modules/luci-base/htdocs/luci-static/resources/network.js:2410
  5865. #: modules/luci-compat/luasrc/model/network.lua:1138
  5866. msgid "Unknown error (%s)"
  5867. msgstr ""
  5868. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:412
  5869. msgid "Unknown error code"
  5870. msgstr ""
  5871. #: modules/luci-base/htdocs/luci-static/resources/network.js:2098
  5872. #: modules/luci-base/htdocs/luci-static/resources/protocol/none.js:6
  5873. #: modules/luci-compat/luasrc/model/network.lua:965
  5874. msgid "Unmanaged"
  5875. msgstr ""
  5876. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:195
  5877. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:217
  5878. msgid "Unmount"
  5879. msgstr ""
  5880. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:115
  5881. msgid "Unnamed key"
  5882. msgstr ""
  5883. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3996
  5884. msgid "Unsaved Changes"
  5885. msgstr ""
  5886. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:410
  5887. msgid "Unspecified error"
  5888. msgstr ""
  5889. #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:64
  5890. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:9
  5891. msgid "Unsupported MAP type"
  5892. msgstr ""
  5893. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:69
  5894. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:27
  5895. msgid "Unsupported modem"
  5896. msgstr ""
  5897. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:299
  5898. msgid "Unsupported protocol type."
  5899. msgstr ""
  5900. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:151
  5901. msgid "Up"
  5902. msgstr ""
  5903. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:410
  5904. msgid "Up Delay"
  5905. msgstr ""
  5906. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3883
  5907. msgid "Upload"
  5908. msgstr ""
  5909. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:411
  5910. msgid ""
  5911. "Upload a sysupgrade-compatible image here to replace the running firmware."
  5912. msgstr ""
  5913. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:138
  5914. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:169
  5915. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:382
  5916. msgid "Upload archive..."
  5917. msgstr ""
  5918. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2837
  5919. msgid "Upload file"
  5920. msgstr ""
  5921. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2812
  5922. msgid "Upload file…"
  5923. msgstr ""
  5924. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2759
  5925. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3871
  5926. msgid "Upload request failed: %s"
  5927. msgstr ""
  5928. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3790
  5929. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3844
  5930. msgid "Uploading file…"
  5931. msgstr ""
  5932. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:794
  5933. msgid ""
  5934. "Upon pressing \"Continue\", anonymous \"wifi-iface\" sections will be "
  5935. "assigned with a name in the form <em>wifinet#</em> and the network will be "
  5936. "restarted to apply the updated configuration."
  5937. msgstr ""
  5938. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:394
  5939. msgid ""
  5940. "Upon pressing \"Continue\", bridges configuration will be updated and the "
  5941. "network will be restarted to apply the updated configuration."
  5942. msgstr ""
  5943. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:428
  5944. msgid ""
  5945. "Upon pressing \"Continue\", ifname options will get renamed and the network "
  5946. "will be restarted to apply the updated configuration."
  5947. msgstr ""
  5948. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:82
  5949. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:60
  5950. msgid "Uptime"
  5951. msgstr ""
  5952. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:177
  5953. msgid "Use <code>/etc/ethers</code>"
  5954. msgstr ""
  5955. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:271
  5956. msgid "Use DHCP advertised servers"
  5957. msgstr ""
  5958. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:167
  5959. msgid "Use DHCP gateway"
  5960. msgstr ""
  5961. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:923
  5962. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:68
  5963. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:121
  5964. msgid "Use DNS servers advertised by peer"
  5965. msgstr ""
  5966. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:622
  5967. msgid "Use ISO/IEC 3166 alpha2 country codes."
  5968. msgstr ""
  5969. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:48
  5970. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:89
  5971. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:69
  5972. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6to4.js:53
  5973. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:67
  5974. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:84
  5975. msgid "Use MTU on tunnel interface"
  5976. msgstr ""
  5977. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:85
  5978. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:65
  5979. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6to4.js:49
  5980. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:80
  5981. msgid "Use TTL on tunnel interface"
  5982. msgstr ""
  5983. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:320
  5984. msgid "Use XOR of hardware MAC addresses (layer2)"
  5985. msgstr ""
  5986. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:321
  5987. msgid "Use XOR of hardware MAC addresses and IP addresses (layer2+3)"
  5988. msgstr ""
  5989. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:323
  5990. msgid ""
  5991. "Use XOR of hardware MAC addresses and IP addresses, rely on skb_flow_dissect "
  5992. "(encap2+3)"
  5993. msgstr ""
  5994. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:294
  5995. msgid "Use as external overlay (/overlay)"
  5996. msgstr ""
  5997. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:293
  5998. msgid "Use as root filesystem (/)"
  5999. msgstr ""
  6000. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34
  6001. msgid "Use broadcast flag"
  6002. msgstr "השתמש בדגל broadcast"
  6003. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1211
  6004. msgid "Use builtin IPv6-management"
  6005. msgstr ""
  6006. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:927
  6007. msgid "Use custom DNS servers"
  6008. msgstr "השתמש בשרתי DNS מותאמים אישית"
  6009. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:919
  6010. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:64
  6011. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:110
  6012. msgid "Use default gateway"
  6013. msgstr ""
  6014. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:941
  6015. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:72
  6016. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:115
  6017. msgid "Use gateway metric"
  6018. msgstr ""
  6019. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:88
  6020. msgid "Use legacy MAP"
  6021. msgstr ""
  6022. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:88
  6023. msgid ""
  6024. "Use legacy MAP interface identifier format (draft-ietf-softwire-map-00) "
  6025. "instead of RFC7597"
  6026. msgstr ""
  6027. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:179
  6028. msgid "Use routing table"
  6029. msgstr "השתמש בטבלת ניתוב"
  6030. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1570
  6031. msgid "Use system certificates"
  6032. msgstr ""
  6033. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1628
  6034. msgid "Use system certificates for inner-tunnel"
  6035. msgstr ""
  6036. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:412
  6037. msgid ""
  6038. "Use the <em>Add</em> Button to add a new lease entry. The <em>MAC address</"
  6039. "em> identifies the host, the <em>IPv4 address</em> specifies the fixed "
  6040. "address to use, and the <em>Hostname</em> is assigned as a symbolic name to "
  6041. "the requesting host. The optional <em>Lease time</em> can be used to set non-"
  6042. "standard host-specific lease time, e.g. 12h, 3d or infinite."
  6043. msgstr ""
  6044. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:322
  6045. msgid "Use upper layer protocol information (layer3+4)"
  6046. msgstr ""
  6047. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:324
  6048. msgid ""
  6049. "Use upper layer protocol information, rely on skb_flow_dissect (encap3+4)"
  6050. msgstr ""
  6051. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:36
  6052. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:194
  6053. msgid "Used"
  6054. msgstr ""
  6055. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1466
  6056. msgid "Used Key Slot"
  6057. msgstr ""
  6058. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1509
  6059. msgid ""
  6060. "Used for two different purposes: RADIUS NAS ID and 802.11r R0KH-ID. Not "
  6061. "needed with normal WPA(2)-PSK."
  6062. msgstr ""
  6063. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:111
  6064. msgid "User Group"
  6065. msgstr ""
  6066. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:120
  6067. msgid "User certificate (PEM encoded)"
  6068. msgstr ""
  6069. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:132
  6070. msgid "User key (PEM encoded)"
  6071. msgstr ""
  6072. #: modules/luci-base/luasrc/view/sysauth.htm:23
  6073. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:112
  6074. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:50
  6075. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:56
  6076. msgid "Username"
  6077. msgstr "שם משתמש"
  6078. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1530
  6079. msgid "VC-Mux"
  6080. msgstr ""
  6081. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1478
  6082. msgid "VDSL"
  6083. msgstr ""
  6084. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:435
  6085. msgctxt "MACVLAN mode"
  6086. msgid "VEPA (Virtual Ethernet Port Aggregator)"
  6087. msgstr ""
  6088. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:346
  6089. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1365
  6090. msgid "VLAN (802.1ad)"
  6091. msgstr ""
  6092. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:345
  6093. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1362
  6094. msgid "VLAN (802.1q)"
  6095. msgstr ""
  6096. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:414
  6097. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:845
  6098. msgid "VLAN ID"
  6099. msgstr ""
  6100. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:173
  6101. msgid "VLANs on %q"
  6102. msgstr ""
  6103. #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:54
  6104. msgid "VPN"
  6105. msgstr ""
  6106. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:42
  6107. msgid "VPN Local address"
  6108. msgstr ""
  6109. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:46
  6110. msgid "VPN Local port"
  6111. msgstr ""
  6112. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:96
  6113. msgid "VPN Protocol"
  6114. msgstr ""
  6115. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:102
  6116. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:42
  6117. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:58
  6118. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:39
  6119. msgid "VPN Server"
  6120. msgstr "שרת VPN"
  6121. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:105
  6122. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:45
  6123. msgid "VPN Server port"
  6124. msgstr ""
  6125. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:109
  6126. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:60
  6127. msgid "VPN Server's certificate SHA1 hash"
  6128. msgstr ""
  6129. #: modules/luci-compat/luasrc/model/network/proto_vpnc.lua:9
  6130. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:9
  6131. msgid "VPNC (CISCO 3000 (and others) VPN)"
  6132. msgstr ""
  6133. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:10
  6134. msgid "VXLAN (RFC7348)"
  6135. msgstr ""
  6136. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:53
  6137. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:48
  6138. msgid "VXLAN network identifier"
  6139. msgstr ""
  6140. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:10
  6141. msgid "VXLANv6 (RFC7348)"
  6142. msgstr ""
  6143. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1570
  6144. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1628
  6145. msgid ""
  6146. "Validate server certificate using built-in system CA bundle,<br />requires "
  6147. "the \"ca-bundle\" package"
  6148. msgstr ""
  6149. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:387
  6150. msgid "Validation for all slaves"
  6151. msgstr ""
  6152. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:385
  6153. msgid "Validation only for active slave"
  6154. msgstr ""
  6155. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:386
  6156. msgid "Validation only for backup slaves"
  6157. msgstr ""
  6158. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:149
  6159. msgid "Value must not be empty"
  6160. msgstr ""
  6161. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:73
  6162. msgid "Vendor"
  6163. msgstr ""
  6164. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:40
  6165. msgid "Vendor Class to send when requesting DHCP"
  6166. msgstr ""
  6167. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:196
  6168. msgid "Verifying the uploaded image file."
  6169. msgstr ""
  6170. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:956
  6171. msgid "Very High"
  6172. msgstr ""
  6173. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:348
  6174. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1377
  6175. msgid "Virtual Ethernet"
  6176. msgstr ""
  6177. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:60
  6178. msgid "Virtual dynamic interface"
  6179. msgstr ""
  6180. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1104
  6181. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1105
  6182. msgid "WDS"
  6183. msgstr ""
  6184. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1289
  6185. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1378
  6186. msgid "WEP Open System"
  6187. msgstr ""
  6188. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1290
  6189. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1379
  6190. msgid "WEP Shared Key"
  6191. msgstr ""
  6192. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2011
  6193. msgid "WEP passphrase"
  6194. msgstr "סיסמת WEP"
  6195. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1142
  6196. msgid "WMM Mode"
  6197. msgstr ""
  6198. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2011
  6199. msgid "WPA passphrase"
  6200. msgstr "סיסמת WPA"
  6201. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1280
  6202. msgid ""
  6203. "WPA-Encryption requires wpa_supplicant (for client mode) or hostapd (for AP "
  6204. "and ad-hoc mode) to be installed."
  6205. msgstr ""
  6206. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:147
  6207. msgid "WPS status"
  6208. msgstr ""
  6209. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:47
  6210. msgid "Waiting for device..."
  6211. msgstr ""
  6212. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:175
  6213. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:185
  6214. msgid "Warning"
  6215. msgstr "אזהרה"
  6216. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:26
  6217. msgid "Warning: There are unsaved changes that will get lost on reboot!"
  6218. msgstr ""
  6219. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:37
  6220. msgid "Weak"
  6221. msgstr ""
  6222. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1007
  6223. msgid ""
  6224. "When delegating prefixes to multiple downstreams, interfaces with a higher "
  6225. "preference value are considered first when allocating subnets."
  6226. msgstr ""
  6227. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1532
  6228. msgid ""
  6229. "When using a PSK, the PMK can be automatically generated. When enabled, the "
  6230. "R0/R1 key options below are not applied. Disable this to use the R0 and R1 "
  6231. "key options."
  6232. msgstr ""
  6233. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1142
  6234. msgid ""
  6235. "Where Wi-Fi Multimedia (WMM) Mode QoS is disabled, clients may be limited to "
  6236. "802.11a/802.11g rates."
  6237. msgstr ""
  6238. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1138
  6239. msgid ""
  6240. "Where the ESSID is hidden, clients may fail to roam and airtime efficiency "
  6241. "may be significantly reduced."
  6242. msgstr ""
  6243. #: modules/luci-compat/luasrc/view/cbi/wireless_modefreq.htm:166
  6244. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:519
  6245. msgid "Width"
  6246. msgstr ""
  6247. #: modules/luci-compat/luasrc/model/network/proto_wireguard.lua:9
  6248. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:29
  6249. msgid "WireGuard VPN"
  6250. msgstr ""
  6251. #: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:17
  6252. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:10
  6253. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:118
  6254. msgid "Wireless"
  6255. msgstr ""
  6256. #: modules/luci-base/htdocs/luci-static/resources/network.js:2988
  6257. #: modules/luci-compat/luasrc/model/network.lua:1419
  6258. msgid "Wireless Adapter"
  6259. msgstr ""
  6260. #: modules/luci-base/htdocs/luci-static/resources/network.js:2967
  6261. #: modules/luci-base/htdocs/luci-static/resources/network.js:4274
  6262. #: modules/luci-compat/luasrc/model/network.lua:1405
  6263. #: modules/luci-compat/luasrc/model/network.lua:1868
  6264. msgid "Wireless Network"
  6265. msgstr ""
  6266. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:810
  6267. msgid "Wireless Overview"
  6268. msgstr ""
  6269. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:985
  6270. msgid "Wireless Security"
  6271. msgstr ""
  6272. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:792
  6273. msgid "Wireless configuration migration"
  6274. msgstr ""
  6275. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:153
  6276. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:193
  6277. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:146
  6278. msgid "Wireless is disabled"
  6279. msgstr ""
  6280. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:153
  6281. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:193
  6282. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:146
  6283. msgid "Wireless is not associated"
  6284. msgstr ""
  6285. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:934
  6286. msgid "Wireless network is disabled"
  6287. msgstr "רשת אלחוטית מנוטרלת"
  6288. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:934
  6289. msgid "Wireless network is enabled"
  6290. msgstr "רשת אלחוטית מאופשרת"
  6291. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:275
  6292. msgid "Write received DNS requests to syslog"
  6293. msgstr ""
  6294. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:167
  6295. msgid "Write system log to file"
  6296. msgstr ""
  6297. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:204
  6298. msgid "XOR policy (balance-xor, 2)"
  6299. msgstr ""
  6300. #: modules/luci-base/htdocs/luci-static/resources/form.js:3702
  6301. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:295
  6302. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:344
  6303. msgid "Yes"
  6304. msgstr ""
  6305. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:303
  6306. msgid "Yes (none, 0)"
  6307. msgstr ""
  6308. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:177
  6309. msgid ""
  6310. "You appear to be currently connected to the device via the \"%h\" interface. "
  6311. "Do you really want to shut down the interface?"
  6312. msgstr ""
  6313. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:112
  6314. msgid ""
  6315. "You can enable or disable installed init scripts here. Changes will applied "
  6316. "after a device reboot.<br /><strong>Warning: If you disable essential init "
  6317. "scripts like \"network\", your device might become inaccessible!</strong>"
  6318. msgstr ""
  6319. #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:65
  6320. #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:223
  6321. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:73
  6322. msgid ""
  6323. "You must enable JavaScript in your browser or LuCI will not work properly."
  6324. msgstr "אתה חייב להפעיל את JavaScript בדפדפן שלך; אחרת, LuCI לא יפעל כראוי."
  6325. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:115
  6326. msgid ""
  6327. "You must select a primary interface which is included in selected slave "
  6328. "interfaces!"
  6329. msgstr ""
  6330. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:96
  6331. msgid ""
  6332. "You must select at least one ARP IP target if ARP monitoring is selected!"
  6333. msgstr ""
  6334. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:199
  6335. msgid "ZRam Compression Algorithm"
  6336. msgstr ""
  6337. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:192
  6338. msgid "ZRam Settings"
  6339. msgstr ""
  6340. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:194
  6341. msgid "ZRam Size"
  6342. msgstr ""
  6343. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:331
  6344. msgid "any"
  6345. msgstr "כלשהו"
  6346. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1463
  6347. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1471
  6348. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1476
  6349. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1229
  6350. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:79
  6351. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:48
  6352. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:51
  6353. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:89
  6354. msgid "auto"
  6355. msgstr "אוטומטי"
  6356. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:776
  6357. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:85
  6358. msgid "automatic"
  6359. msgstr ""
  6360. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:82
  6361. msgid "baseT"
  6362. msgstr ""
  6363. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1536
  6364. msgid "bridged"
  6365. msgstr ""
  6366. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:146
  6367. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:402
  6368. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:35
  6369. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:99
  6370. #: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:31
  6371. msgid "create"
  6372. msgstr ""
  6373. #: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:69
  6374. msgid "create:"
  6375. msgstr ""
  6376. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:55
  6377. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:57
  6378. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:58
  6379. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:62
  6380. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:63
  6381. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:83
  6382. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:84
  6383. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:87
  6384. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:185
  6385. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:186
  6386. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:187
  6387. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:41
  6388. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:42
  6389. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:272
  6390. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:274
  6391. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:275
  6392. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:279
  6393. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:280
  6394. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:263
  6395. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:266
  6396. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:269
  6397. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:273
  6398. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:276
  6399. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:279
  6400. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:305
  6401. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:306
  6402. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:307
  6403. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:311
  6404. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:312
  6405. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:313
  6406. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:315
  6407. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:316
  6408. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:317
  6409. msgid "dBm"
  6410. msgstr ""
  6411. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1086
  6412. msgid "disable"
  6413. msgstr "בטל"
  6414. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:627
  6415. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:765
  6416. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:869
  6417. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:899
  6418. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:959
  6419. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:91
  6420. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:25
  6421. msgid "disabled"
  6422. msgstr ""
  6423. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:576
  6424. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:610
  6425. msgid "driver default"
  6426. msgstr ""
  6427. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:66
  6428. msgid "e.g: --proxy 10.10.10.10"
  6429. msgstr ""
  6430. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:68
  6431. msgid "e.g: dump"
  6432. msgstr ""
  6433. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:551
  6434. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:572
  6435. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:100
  6436. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:139
  6437. msgid "expired"
  6438. msgstr ""
  6439. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:182
  6440. msgid ""
  6441. "file where given <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</"
  6442. "abbr>-leases will be stored"
  6443. msgstr ""
  6444. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:780
  6445. msgid "forced"
  6446. msgstr ""
  6447. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:85
  6448. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:195
  6449. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:61
  6450. msgid "forward"
  6451. msgstr "קדימה"
  6452. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:97
  6453. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:84
  6454. msgid "full-duplex"
  6455. msgstr ""
  6456. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:97
  6457. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:84
  6458. msgid "half-duplex"
  6459. msgstr ""
  6460. #: modules/luci-base/htdocs/luci-static/resources/validation.js:572
  6461. msgid "hexadecimal encoded value"
  6462. msgstr ""
  6463. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1808
  6464. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:297
  6465. msgid "hidden"
  6466. msgstr ""
  6467. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:771
  6468. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:875
  6469. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:903
  6470. msgid "hybrid mode"
  6471. msgstr ""
  6472. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:36
  6473. msgid "if target is a network"
  6474. msgstr "אם היעד הוא רשת"
  6475. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:63
  6476. msgid "ignore"
  6477. msgstr ""
  6478. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:69
  6479. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:191
  6480. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:46
  6481. msgid "input"
  6482. msgstr "קלט"
  6483. #: modules/luci-base/htdocs/luci-static/resources/validation.js:398
  6484. msgid "key between 8 and 63 characters"
  6485. msgstr ""
  6486. #: modules/luci-base/htdocs/luci-static/resources/validation.js:410
  6487. msgid "key with either 5 or 13 characters"
  6488. msgstr ""
  6489. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:189
  6490. msgid "local <abbr title=\"Domain Name System\">DNS</abbr> file"
  6491. msgstr ""
  6492. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:793
  6493. msgid "managed config (M)"
  6494. msgstr ""
  6495. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1388
  6496. msgid "medium security"
  6497. msgstr ""
  6498. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1537
  6499. msgid "minutes"
  6500. msgstr ""
  6501. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:797
  6502. msgid "mobile home agent (H)"
  6503. msgstr ""
  6504. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:422
  6505. msgid "netif_carrier_ok()"
  6506. msgstr ""
  6507. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:47
  6508. msgid "no"
  6509. msgstr "לא"
  6510. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:103
  6511. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:76
  6512. msgid "no link"
  6513. msgstr ""
  6514. #: modules/luci-base/htdocs/luci-static/resources/validation.js:59
  6515. msgid "non-empty value"
  6516. msgstr ""
  6517. #: modules/luci-base/htdocs/luci-static/resources/form.js:3032
  6518. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:800
  6519. msgid "none"
  6520. msgstr "ללא"
  6521. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:41
  6522. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:55
  6523. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:69
  6524. msgid "not present"
  6525. msgstr ""
  6526. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:347
  6527. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:964
  6528. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:968
  6529. #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:197
  6530. msgid "off"
  6531. msgstr "כבוי"
  6532. #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:196
  6533. msgid "on"
  6534. msgstr "פועל"
  6535. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:778
  6536. msgid "on available prefix"
  6537. msgstr ""
  6538. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1389
  6539. msgid "open network"
  6540. msgstr ""
  6541. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:795
  6542. msgid "other config (O)"
  6543. msgstr ""
  6544. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:69
  6545. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:46
  6546. msgid "output"
  6547. msgstr ""
  6548. #: modules/luci-base/htdocs/luci-static/resources/validation.js:241
  6549. msgid "positive decimal value"
  6550. msgstr ""
  6551. #: modules/luci-base/htdocs/luci-static/resources/validation.js:233
  6552. msgid "positive integer value"
  6553. msgstr ""
  6554. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:80
  6555. msgid "random"
  6556. msgstr ""
  6557. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:769
  6558. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:873
  6559. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:901
  6560. msgid "relay mode"
  6561. msgstr ""
  6562. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1537
  6563. msgid "routed"
  6564. msgstr "מנותב"
  6565. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1165
  6566. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1174
  6567. msgid "sec"
  6568. msgstr ""
  6569. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:767
  6570. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:871
  6571. msgid "server mode"
  6572. msgstr ""
  6573. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:54
  6574. msgid "sstpc Log-level"
  6575. msgstr ""
  6576. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1387
  6577. msgid "strong security"
  6578. msgstr ""
  6579. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:352
  6580. msgid "tagged"
  6581. msgstr "מתויג"
  6582. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1520
  6583. msgid "time units (TUs / 1.024 ms) [1000-65535]"
  6584. msgstr ""
  6585. #: modules/luci-base/htdocs/luci-static/resources/validation.js:562
  6586. msgid "unique value"
  6587. msgstr ""
  6588. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1414
  6589. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1426
  6590. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:591
  6591. msgid "unknown"
  6592. msgstr ""
  6593. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:340
  6594. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:549
  6595. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:570
  6596. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:98
  6597. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:137
  6598. msgid "unlimited"
  6599. msgstr "ללא הגבלה"
  6600. #: modules/luci-base/htdocs/luci-static/resources/form.js:3397
  6601. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:76
  6602. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:138
  6603. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:369
  6604. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:393
  6605. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:429
  6606. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:466
  6607. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:562
  6608. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:53
  6609. #: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:38
  6610. msgid "unspecified"
  6611. msgstr "לא מוגדר"
  6612. #: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:71
  6613. msgid "unspecified -or- create:"
  6614. msgstr "לא מוגדר -או- יצר"
  6615. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:350
  6616. msgid "untagged"
  6617. msgstr "לא מתויג"
  6618. #: modules/luci-base/htdocs/luci-static/resources/validation.js:246
  6619. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:121
  6620. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:132
  6621. msgid "valid IP address"
  6622. msgstr ""
  6623. #: modules/luci-base/htdocs/luci-static/resources/validation.js:246
  6624. msgid "valid IP address or prefix"
  6625. msgstr ""
  6626. #: modules/luci-base/htdocs/luci-static/resources/validation.js:283
  6627. msgid "valid IPv4 CIDR"
  6628. msgstr ""
  6629. #: modules/luci-base/htdocs/luci-static/resources/validation.js:254
  6630. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:125
  6631. msgid "valid IPv4 address"
  6632. msgstr ""
  6633. #: modules/luci-base/htdocs/luci-static/resources/validation.js:254
  6634. msgid "valid IPv4 address or network"
  6635. msgstr ""
  6636. #: modules/luci-base/htdocs/luci-static/resources/validation.js:377
  6637. msgid "valid IPv4 address:port"
  6638. msgstr ""
  6639. #: modules/luci-base/htdocs/luci-static/resources/validation.js:317
  6640. msgid "valid IPv4 network"
  6641. msgstr ""
  6642. #: modules/luci-base/htdocs/luci-static/resources/validation.js:277
  6643. msgid "valid IPv4 or IPv6 CIDR"
  6644. msgstr ""
  6645. #: modules/luci-base/htdocs/luci-static/resources/validation.js:267
  6646. msgid "valid IPv4 prefix value (0-32)"
  6647. msgstr ""
  6648. #: modules/luci-base/htdocs/luci-static/resources/validation.js:289
  6649. msgid "valid IPv6 CIDR"
  6650. msgstr ""
  6651. #: modules/luci-base/htdocs/luci-static/resources/validation.js:262
  6652. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:129
  6653. msgid "valid IPv6 address"
  6654. msgstr ""
  6655. #: modules/luci-base/htdocs/luci-static/resources/validation.js:262
  6656. msgid "valid IPv6 address or prefix"
  6657. msgstr ""
  6658. #: modules/luci-base/htdocs/luci-static/resources/validation.js:307
  6659. msgid "valid IPv6 host id"
  6660. msgstr ""
  6661. #: modules/luci-base/htdocs/luci-static/resources/validation.js:322
  6662. msgid "valid IPv6 network"
  6663. msgstr ""
  6664. #: modules/luci-base/htdocs/luci-static/resources/validation.js:272
  6665. msgid "valid IPv6 prefix value (0-128)"
  6666. msgstr ""
  6667. #: modules/luci-base/htdocs/luci-static/resources/validation.js:343
  6668. msgid "valid MAC address"
  6669. msgstr ""
  6670. #: modules/luci-base/htdocs/luci-static/resources/validation.js:414
  6671. msgid "valid UCI identifier"
  6672. msgstr ""
  6673. #: modules/luci-base/htdocs/luci-static/resources/validation.js:365
  6674. msgid "valid UCI identifier, hostname or IP address range"
  6675. msgstr ""
  6676. #: modules/luci-base/htdocs/luci-static/resources/validation.js:386
  6677. #: modules/luci-base/htdocs/luci-static/resources/validation.js:389
  6678. msgid "valid address:port"
  6679. msgstr ""
  6680. #: modules/luci-base/htdocs/luci-static/resources/validation.js:536
  6681. #: modules/luci-base/htdocs/luci-static/resources/validation.js:540
  6682. msgid "valid date (YYYY-MM-DD)"
  6683. msgstr ""
  6684. #: modules/luci-base/htdocs/luci-static/resources/validation.js:237
  6685. msgid "valid decimal value"
  6686. msgstr ""
  6687. #: modules/luci-base/htdocs/luci-static/resources/validation.js:408
  6688. msgid "valid hexadecimal WEP key"
  6689. msgstr ""
  6690. #: modules/luci-base/htdocs/luci-static/resources/validation.js:396
  6691. msgid "valid hexadecimal WPA key"
  6692. msgstr ""
  6693. #: modules/luci-base/htdocs/luci-static/resources/validation.js:371
  6694. msgid "valid host:port"
  6695. msgstr ""
  6696. #: modules/luci-base/htdocs/luci-static/resources/validation.js:358
  6697. #: modules/luci-base/htdocs/luci-static/resources/validation.js:360
  6698. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:73
  6699. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:79
  6700. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:107
  6701. msgid "valid hostname"
  6702. msgstr ""
  6703. #: modules/luci-base/htdocs/luci-static/resources/validation.js:348
  6704. msgid "valid hostname or IP address"
  6705. msgstr ""
  6706. #: modules/luci-base/htdocs/luci-static/resources/validation.js:229
  6707. msgid "valid integer value"
  6708. msgstr ""
  6709. #: modules/luci-base/htdocs/luci-static/resources/validation.js:312
  6710. msgid "valid network in address/netmask notation"
  6711. msgstr ""
  6712. #: modules/luci-base/htdocs/luci-static/resources/validation.js:511
  6713. msgid "valid phone digit (0-9, \"*\", \"#\", \"!\" or \".\")"
  6714. msgstr ""
  6715. #: modules/luci-base/htdocs/luci-static/resources/validation.js:335
  6716. #: modules/luci-base/htdocs/luci-static/resources/validation.js:338
  6717. msgid "valid port or port range (port1-port2)"
  6718. msgstr ""
  6719. #: modules/luci-base/htdocs/luci-static/resources/validation.js:327
  6720. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:136
  6721. msgid "valid port value"
  6722. msgstr ""
  6723. #: modules/luci-base/htdocs/luci-static/resources/validation.js:516
  6724. msgid "valid time (HH:MM:SS)"
  6725. msgstr ""
  6726. #: modules/luci-base/htdocs/luci-static/resources/validation.js:438
  6727. msgid "value between %d and %d characters"
  6728. msgstr ""
  6729. #: modules/luci-base/htdocs/luci-static/resources/validation.js:419
  6730. msgid "value between %f and %f"
  6731. msgstr ""
  6732. #: modules/luci-base/htdocs/luci-static/resources/validation.js:423
  6733. msgid "value greater or equal to %f"
  6734. msgstr ""
  6735. #: modules/luci-base/htdocs/luci-static/resources/validation.js:427
  6736. msgid "value smaller or equal to %f"
  6737. msgstr ""
  6738. #: modules/luci-base/htdocs/luci-static/resources/validation.js:432
  6739. msgid "value with %d characters"
  6740. msgstr ""
  6741. #: modules/luci-base/htdocs/luci-static/resources/validation.js:443
  6742. msgid "value with at least %d characters"
  6743. msgstr ""
  6744. #: modules/luci-base/htdocs/luci-static/resources/validation.js:448
  6745. msgid "value with at most %d characters"
  6746. msgstr ""
  6747. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1389
  6748. msgid "weak security"
  6749. msgstr ""
  6750. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:47
  6751. msgid "yes"
  6752. msgstr "כן"
  6753. #: modules/luci-compat/luasrc/view/cbi/delegator.htm:20
  6754. msgid "« Back"
  6755. msgstr "<< אחורה"
  6756. #~ msgid "Bridge interfaces"
  6757. #~ msgstr "ממשקי גשר"
  6758. #~ msgid "Define a name for this network."
  6759. #~ msgstr "הגדר שם לרשת זו"
  6760. #~ msgid "Bad address specified!"
  6761. #~ msgstr "פורטה כתובת לא תקינה"
  6762. #~ msgid "Loading"
  6763. #~ msgstr "טוען"
  6764. #~ msgid "Assign interfaces..."
  6765. #~ msgstr "הקצה ממשקים"
  6766. #~ msgid ""
  6767. #~ "This page gives an overview over currently active network connections."
  6768. #~ msgstr "דף זה מציג סקירה של חיבורי הרשת הפעילים כרגע."
  6769. #~ msgid "Changes applied."
  6770. #~ msgstr "השינויים הוחלו"
  6771. #~ msgid "(%s available)"
  6772. #~ msgstr "(%s פנוי)"
  6773. #~ msgid "Check"
  6774. #~ msgstr "לבדוק"
  6775. #~ msgid "Antenna 1"
  6776. #~ msgstr "אנטנה 1"
  6777. #~ msgid "Antenna 2"
  6778. #~ msgstr "אנטנה 2"
  6779. #~ msgid "Antenna Configuration"
  6780. #~ msgstr "הגדרות אנטנה"
  6781. #~ msgid "Back to overview"
  6782. #~ msgstr "חזרה לסקירה"
  6783. #~ msgid "Back to scan results"
  6784. #~ msgstr "חזרה לתוצאות סריקה"
  6785. #~ msgid "Broadcom 802.11%s Wireless Controller"
  6786. #~ msgstr "שלט אלחוטי Broadcom 802.11%s"
  6787. #~ msgid "Broadcom BCM%04x 802.11 Wireless Controller"
  6788. #~ msgstr "שלט אלחוטי Broadcom BCM%04x 802.11"
  6789. #~ msgid "Common Configuration"
  6790. #~ msgstr "הגדרות נפוצות"
  6791. #~ msgid "Connect"
  6792. #~ msgstr "התחבר"
  6793. #~ msgid "Connection Limit"
  6794. #~ msgstr "מגבלת חיבורים"
  6795. #~ msgid "Cover the following interface"
  6796. #~ msgstr "כסה את הממשק הבא"
  6797. #~ msgid "Cover the following interfaces"
  6798. #~ msgstr "כסה את הממשקים הבאים"
  6799. #~ msgid "Create Interface"
  6800. #~ msgstr "צור ממשק"
  6801. #~ msgid "Create a bridge over multiple interfaces"
  6802. #~ msgstr "צור גשר בין מספר ממשקים"
  6803. #~ msgid "Diversity"
  6804. #~ msgstr "גיוון"
  6805. #~ msgid "Edit this interface"
  6806. #~ msgstr "ערוך ממשק זה"
  6807. #~ msgid "The given network name is not unique"
  6808. #~ msgstr "השם שניתן לרשת איננו ייחודי"
  6809. #, fuzzy
  6810. #~ msgid ""
  6811. #~ "The hardware is not multi-SSID capable and the existing configuration "
  6812. #~ "will be replaced if you proceed."
  6813. #~ msgstr ""
  6814. #~ "החומרה אינה תומכת בריבוי SSID ולכן ההגדרות הנוכחיות יוחלפו אם תמשיך."
  6815. #~ msgid "Transmission Rate"
  6816. #~ msgstr "קצב שידור"
  6817. #~ msgid "Transmit Power"
  6818. #~ msgstr "עוצמת שידור"
  6819. #~ msgid "Transmitter Antenna"
  6820. #~ msgstr "אנטנת שידור"
  6821. #~ msgid "Back"
  6822. #~ msgstr "חזרה"
  6823. #, fuzzy
  6824. #~ msgid "Set up Time Synchronization"
  6825. #~ msgstr "סנכרון זמן"
  6826. #~ msgid "Theme"
  6827. #~ msgstr "עיצוב"
  6828. #~ msgid "Time Synchronization is not configured yet."
  6829. #~ msgstr "סנכרון זמן עדיין לא הוגדר."
  6830. #~ msgid "Available packages"
  6831. #~ msgstr "חבילות זמינות"
  6832. #~ msgid "Displaying only packages containing"
  6833. #~ msgstr "מציג רק חבילות המכילות"
  6834. #~ msgid "Download and install package"
  6835. #~ msgstr "הורד והתקן חבילות"
  6836. #~ msgid "No package lists available"
  6837. #~ msgstr "אין רשימת חבילות זמינה"
  6838. #~ msgid "Package name"
  6839. #~ msgstr "שם החבילה"
  6840. #~ msgid "Software"
  6841. #~ msgstr "תוכנה"
  6842. #~ msgid "Version"
  6843. #~ msgstr "גרסה"
  6844. #~ msgid "IPv4 and IPv6"
  6845. #~ msgstr "IPv4 ו-IPv6"
  6846. #~ msgid "Configuration files will be kept."
  6847. #~ msgstr "קבצי ההגדרות ישמרו."
  6848. #~ msgid "Activate this network"
  6849. #~ msgstr "הפעל רשת זו"
  6850. #~ msgid "DHCP Leases"
  6851. #~ msgstr "הרשאות DHCP"
  6852. #~ msgid "DHCPv6 Leases"
  6853. #~ msgstr "הרשאות DHCPv6"
  6854. #, fuzzy
  6855. #~ msgid ""
  6856. #~ "Really shut down network? You might lose access to this device if you are "
  6857. #~ "connected via this interface."
  6858. #~ msgstr ""
  6859. #~ "האם למחוק את הרשת האלחוטית הזו? המחיקה אינה ניתנת לביטול!\n"
  6860. #~ "ייתכן ותאבד גישה לנתב הזה אם אתה מחובר דרך השרת הזו."
  6861. #~ msgid "Sort"
  6862. #~ msgstr "מיין"
  6863. #~ msgid "help"
  6864. #~ msgstr "עזרה"
  6865. #~ msgid "Apply"
  6866. #~ msgstr "החל"
  6867. #~ msgid "Applying changes"
  6868. #~ msgstr "מחיל הגדרות"
  6869. #~ msgid "Configuration applied."
  6870. #~ msgstr "הגדרות הוחלו"
  6871. #~ msgid "Action"
  6872. #~ msgstr "פעולה"
  6873. #~ msgid "Buttons"
  6874. #~ msgstr "כפתורים"
  6875. #~ msgid "This page allows the configuration of custom button actions"
  6876. #~ msgstr "דף זה מאפשר להגדיר פעולות מיוחדות עבור הלחצנים."
  6877. #~ msgid "AR Support"
  6878. #~ msgstr "תמיכת AR"
  6879. #~ msgid "Atheros 802.11%s Wireless Controller"
  6880. #~ msgstr "שלט אלחוטי Atheros 802.11%s"
  6881. #~ msgid "Background Scan"
  6882. #~ msgstr "סריקת רקע"
  6883. #~ msgid "Compression"
  6884. #~ msgstr "דחיסה"
  6885. #~ msgid "Static WDS"
  6886. #~ msgstr "WDS סטטי"
  6887. #, fuzzy
  6888. #~ msgid "An additional network will be created if you leave this unchecked."
  6889. #~ msgstr "רשת נוספת תווצר אם תשאיר את זה לא מסומן"
  6890. #~ msgid "CPU"
  6891. #~ msgstr "מעבד"