base.po 444 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086
  1. msgid ""
  2. msgstr ""
  3. "Project-Id-Version: PACKAGE VERSION\n"
  4. "PO-Revision-Date: 2023-10-30 06:43+0000\n"
  5. "Last-Translator: Džiugas J <dziugas1959@hotmail.com>\n"
  6. "Language-Team: Lithuanian <https://hosted.weblate.org/projects/librecmc/luci/"
  7. "lt/>\n"
  8. "Language: lt\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=3; plural=(n % 10 == 1 && (n % 100 < 11 || n % 100 > "
  13. "19)) ? 0 : ((n % 10 >= 2 && n % 10 <= 9 && (n % 100 < 11 || n % 100 > 19)) ? "
  14. "1 : 2);\n"
  15. "X-Generator: Weblate 5.2-dev\n"
  16. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:925
  17. msgid "!known (not known)"
  18. msgstr "!žinoma (nežinoma)"
  19. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:649
  20. msgctxt "Yet unknown nftables table family (\"family\" table \"name\")"
  21. msgid "\"%h\" table \"%h\""
  22. msgstr "\"%h\" sąrašas \"%h\""
  23. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1591
  24. msgid "%.1f dB"
  25. msgstr "%.1f dB"
  26. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:123
  27. msgid "%d Bit"
  28. msgstr "%d Bit'as"
  29. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4097
  30. msgid "%d invalid field(s)"
  31. msgstr "%d netinkamas/-i įvedimas/-ai"
  32. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:26
  33. msgid "%dh ago"
  34. msgstr "prieš %dh"
  35. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:24
  36. msgid "%dm ago"
  37. msgstr "prieš %dm"
  38. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:22
  39. msgid "%ds ago"
  40. msgstr "prieš %ds"
  41. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:35
  42. msgid "%s is untagged in multiple VLANs!"
  43. msgstr "%s yra nepažymėti keliuose „VLAN'uose“!"
  44. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:296
  45. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:405
  46. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:272
  47. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:309
  48. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:327
  49. msgid "(%d minute window, %d second interval)"
  50. msgstr "(%d minutės langas, %d sekundės intervalas)"
  51. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:118
  52. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:124
  53. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:259
  54. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:283
  55. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:88
  56. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:91
  57. msgid "(empty)"
  58. msgstr "(tuščia)"
  59. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:352
  60. #: modules/luci-compat/luasrc/view/cbi/network_netinfo.htm:23
  61. #: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:58
  62. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:271
  63. msgid "(no interfaces attached)"
  64. msgstr "(nėra prijungta sąsajų ir sietuvų)"
  65. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:635
  66. msgctxt "Label indicating further amount of allowed ips"
  67. msgid "+ %d more"
  68. msgstr "+ %d daugiau"
  69. #: modules/luci-compat/luasrc/view/cbi/ucisection.htm:48
  70. msgid "-- Additional Field --"
  71. msgstr "-- Papildomas Laukas --"
  72. #: modules/luci-base/htdocs/luci-static/resources/cbi.js:275
  73. #: modules/luci-base/htdocs/luci-static/resources/form.js:3789
  74. #: modules/luci-base/htdocs/luci-static/resources/form.js:4157
  75. #: modules/luci-base/htdocs/luci-static/resources/ui.js:799
  76. #: modules/luci-base/htdocs/luci-static/resources/ui.js:1037
  77. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2033
  78. #: modules/luci-compat/luasrc/view/cbi/header.htm:8
  79. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:89
  80. msgid "-- Please choose --"
  81. msgstr "-- Prašome pasirinkti --"
  82. #: modules/luci-base/htdocs/luci-static/resources/cbi.js:276
  83. #: modules/luci-base/htdocs/luci-static/resources/ui.js:1038
  84. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2034
  85. #: modules/luci-compat/luasrc/view/cbi/header.htm:9
  86. msgid "-- custom --"
  87. msgstr "-- pasirinktinis --"
  88. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:271
  89. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:380
  90. msgid "-- match by label --"
  91. msgstr "-- Suderinti pagal etiketę --"
  92. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:257
  93. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:363
  94. msgid "-- match by uuid --"
  95. msgstr "-- Suderinti pagal „uuid“ --"
  96. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:27
  97. #: modules/luci-compat/luasrc/view/cbi/network_ifacelist.htm:44
  98. #: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:23
  99. msgid "-- please select --"
  100. msgstr "-- Prašome pažymėti --"
  101. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:55
  102. msgctxt "sstp log level value"
  103. msgid "0"
  104. msgstr "0"
  105. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:998
  106. msgid "0 = not using RSSI threshold, 1 = do not change driver default"
  107. msgstr "0 = nenaudojama „RSSI“ lenksčio, 1 = Nepakeiskite numatytą tvarkyklę"
  108. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:56
  109. msgctxt "sstp log level value"
  110. msgid "1"
  111. msgstr "1"
  112. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:233
  113. msgid "1 Minute Load:"
  114. msgstr "1 minutes apkrovą:"
  115. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:323
  116. msgctxt "nft amount of flags"
  117. msgid "1 flag"
  118. msgid_plural "%d flags"
  119. msgstr[0] "Viena (1) vėliava"
  120. msgstr[1] "Kelios vėliavos"
  121. msgstr[2] "%d vėliavos"
  122. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:898
  123. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:984
  124. msgid "12h (12 hours - default)"
  125. msgstr "12val. (12 valandų formatas – numatytas)"
  126. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:253
  127. msgid "15 Minute Load:"
  128. msgstr "15 minučių apkrovą:"
  129. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:57
  130. msgctxt "sstp log level value"
  131. msgid "2"
  132. msgstr "2"
  133. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:58
  134. msgctxt "sstp log level value"
  135. msgid "3"
  136. msgstr "3"
  137. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:897
  138. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:983
  139. msgid "3h (3 hours)"
  140. msgstr "3val. (3 valandos)"
  141. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:59
  142. msgctxt "sstp log level value"
  143. msgid "4"
  144. msgstr "4"
  145. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1562
  146. msgid "4-character hexadecimal ID"
  147. msgstr "4 simbolių šešioliktainis ID"
  148. #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:18
  149. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:11
  150. msgid "464XLAT (CLAT)"
  151. msgstr "„464XLAT (CLAT)“"
  152. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:243
  153. msgid "5 Minute Load:"
  154. msgstr "5 minučių apkrovą:"
  155. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:896
  156. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:982
  157. msgid "5m (5 minutes)"
  158. msgstr "5min. (5-ios minutės)"
  159. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1591
  160. msgid "6-octet identifier as a hex string - no colons"
  161. msgstr "6 oktetų identifikatorius kaip šešioliktainė eilutė – be dvitaškių"
  162. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:899
  163. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:985
  164. msgid "7d (7 days)"
  165. msgstr "7d. (7-ios dienos)"
  166. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1614
  167. msgid "802.11k RRM"
  168. msgstr "„802.11k RRM“"
  169. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1623
  170. msgid "802.11k: Enable beacon report via radio measurements."
  171. msgstr "„802.11k“: Įgalinti signalo ataskaitą naudojant radijo matavimus."
  172. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1619
  173. msgid "802.11k: Enable neighbor report via radio measurements."
  174. msgstr "„802.11k“: įgalinti kaimyno ataskaitą radijo matavimais."
  175. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1551
  176. msgid "802.11r Fast Transition"
  177. msgstr "„802.11r“ Greitas keitimas"
  178. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1183
  179. msgid "802.11v: BSS Max Idle. Units: seconds."
  180. msgstr "„802.11v“: „BSS“ maks. tuščioji eiga. Vienetai: sekundės."
  181. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1649
  182. msgid "802.11v: Basic Service Set (BSS) transition management."
  183. msgstr ""
  184. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1638
  185. msgid "802.11v: Local Time Zone Advertisement in management frames."
  186. msgstr ""
  187. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1653
  188. msgid ""
  189. "802.11v: Proxy ARP enables non-AP STA to remain in power-save for longer."
  190. msgstr ""
  191. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1629
  192. msgid "802.11v: Time Advertisement in management frames."
  193. msgstr ""
  194. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1642
  195. msgid ""
  196. "802.11v: Wireless Network Management (WNM) Sleep Mode (extended sleep mode "
  197. "for stations)."
  198. msgstr ""
  199. "„802.11v“: Belaidžio tinklo valdymo (WNM) miego režimas (išplėstinis stočių "
  200. "miego režimas)."
  201. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1646
  202. msgid ""
  203. "802.11v: Wireless Network Management (WNM) Sleep Mode Fixes: Prevents "
  204. "reinstallation attacks."
  205. msgstr ""
  206. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1796
  207. msgid "802.11w Association SA Query maximum timeout"
  208. msgstr ""
  209. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1803
  210. msgid "802.11w Association SA Query retry timeout"
  211. msgstr ""
  212. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1777
  213. msgid "802.11w Management Frame Protection"
  214. msgstr "„802.11w“ valdymo kadrų apsauga"
  215. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1796
  216. msgid "802.11w maximum timeout"
  217. msgstr "„802.11w“ maksimalus laukimo laikas"
  218. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1803
  219. msgid "802.11w retry timeout"
  220. msgstr "„802.11w“ pakartojimo laukimo laikas"
  221. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1015
  222. msgid "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>"
  223. msgstr "<abbr title=\"Basic Service Set Identifier\">„BSSID“</abbr>"
  224. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1004
  225. msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>"
  226. msgstr "<abbr title=\"Extended Service Set Identifier\">„ESSID“</abbr>"
  227. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:708
  228. msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Netmask"
  229. msgstr "<abbr title=\"Internet Protocol Version 4\">„IPv4“</abbr>-Tinklo kaukė"
  230. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:58
  231. msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Configuration"
  232. msgstr "<abbr title=\"Light Emitting Diode\">„LED“</abbr> Konfigūracija"
  233. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:70
  234. msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Name"
  235. msgstr "<abbr title=\"Light Emitting Diode\">„LED“</abbr> Pavadinimas"
  236. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:961
  237. msgid "<abbr title=\"Neighbour Discovery Protocol\">NDP</abbr>-Proxy"
  238. msgstr ""
  239. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:831
  240. msgid "<abbr title=\"Router Advertisement\">RA</abbr> Flags"
  241. msgstr "<abbr title=\"Router Advertisement\">„RA“</abbr> Vėliavos"
  242. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:905
  243. msgid "<abbr title=\"Router Advertisement\">RA</abbr> Hop Limit"
  244. msgstr "<abbr title=\"Router Advertisement\">„RA“</abbr> Šuolių limitas"
  245. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:879
  246. msgid "<abbr title=\"Router Advertisement\">RA</abbr> Lifetime"
  247. msgstr "<abbr title=\"Router Advertisement\">„RA“</abbr> Gyvavimo trukmė"
  248. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:886
  249. msgid "<abbr title=\"Router Advertisement\">RA</abbr> MTU"
  250. msgstr "<abbr title=\"Router Advertisement\">„RA“</abbr> „MTU“"
  251. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:803
  252. msgid "<abbr title=\"Router Advertisement\">RA</abbr>-Service"
  253. msgstr "<abbr title=\"Router Advertisement\">„RA“</abbr>-Tarnyba"
  254. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:300
  255. msgid ""
  256. "<code>/#/</code> matches any domain. <code>/example.com/</code> returns "
  257. "NXDOMAIN."
  258. msgstr ""
  259. "<code>/#/</code> atitinka bet kurį domeną. <code>/example.com/</code> "
  260. "grąžina „NXDOMAIN“."
  261. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301
  262. msgid ""
  263. "<code>/example.com/#</code> returns NULL addresses (<code>0.0.0.0</code> and "
  264. "<code>::</code>) for example.com and its subdomains."
  265. msgstr ""
  266. "<code>/example.com/#</code> pateikia „NULL“ adresus (<code>0.0.0.0</code> ir "
  267. "<code>::</code>), pvz., „example.com“ ir jo subdomenus."
  268. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:87
  269. msgctxt "nft relational \">\" operator expression"
  270. msgid "<var>%s</var> greater than <strong>%s</strong>"
  271. msgstr "<var>%s</var> daugiau nei <strong>%s</strong>"
  272. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:85
  273. msgctxt "nft relational \">=\" operator expression"
  274. msgid "<var>%s</var> greater than or equal to <strong>%s</strong>"
  275. msgstr "<var>%s</var> daugiau nei, arba lygus <strong>%s</strong>"
  276. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:90
  277. msgctxt "nft set match expression"
  278. msgid "<var>%s</var> in set <strong>%s</strong>"
  279. msgstr "<var>%s</var> rinkinyje <strong>%s</strong>"
  280. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:83
  281. msgctxt "nft relational \"==\" operator expression"
  282. msgid "<var>%s</var> is <strong>%s</strong>"
  283. msgstr "<var>%s</var> yra <strong>%s</strong>"
  284. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:89
  285. msgctxt "nft relational \"in\" operator expression"
  286. msgid "<var>%s</var> is one of <strong>%s</strong>"
  287. msgstr "<var>%s</var> yra vienas iš <strong>%s</strong>"
  288. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:88
  289. msgctxt "nft relational \"<\" operator expression"
  290. msgid "<var>%s</var> lower than <strong>%s</strong>"
  291. msgstr "<var>%s</var> mažiau nei <strong>%s</strong>"
  292. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:86
  293. msgctxt "nft relational \"<=\" operator expression"
  294. msgid "<var>%s</var> lower than or equal to <strong>%s</strong>"
  295. msgstr "<var>%s</var> mažiau nei, arba lygus <strong>%s</strong>"
  296. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:84
  297. msgctxt "nft relational \"!=\" operator expression"
  298. msgid "<var>%s</var> not <strong>%s</strong>"
  299. msgstr "<var>%s</var> nėra <strong>%s</strong>"
  300. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:91
  301. msgctxt "nft not in set match expression"
  302. msgid "<var>%s</var> not in set <strong>%s</strong>"
  303. msgstr "<var>%s</var> nėra rinkinyje <strong>%s</strong>"
  304. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:86
  305. msgid ""
  306. "A batman-adv node can either run in server mode (sharing its internet "
  307. "connection with the mesh) or in client mode (searching for the most suitable "
  308. "internet connection in the mesh) or having the gateway support turned off "
  309. "entirely (which is the default setting)."
  310. msgstr ""
  311. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:424
  312. msgid "A configuration for the device \"%s\" already exists"
  313. msgstr "Įrenginio „%s“ konfigūracija jau egzistuoja"
  314. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2779
  315. msgid "A directory with the same name already exists."
  316. msgstr "Tokio paties pavadinimo katalogas jau egzistuoja."
  317. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2666
  318. msgid "A new login is required since the authentication session expired."
  319. msgstr "Reikalingas naujas prisijungimas, nes autentifikavimo sesija baigėsi."
  320. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1571
  321. msgid "A43C + J43 + A43"
  322. msgstr "„A43C + J43 + A43“"
  323. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1572
  324. msgid "A43C + J43 + A43 + V43"
  325. msgstr "„A43C + J43 + A43 + V43“"
  326. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1584
  327. msgid "ADSL"
  328. msgstr "„ADSL“"
  329. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1558
  330. msgid "ADSL (G.992.1) Annex A"
  331. msgstr "„ADSL (G.992.1) Annex A“"
  332. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1559
  333. msgid "ADSL (G.992.1) Annex B"
  334. msgstr "„ADSL (G.992.1) Annex B“"
  335. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1552
  336. msgid "ADSL (all variants) Annex A/L/M"
  337. msgstr "„ADSL (visi variantai) Annex A/L/M“"
  338. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1548
  339. msgid "ADSL (all variants) Annex A/L/M + VDSL2 Annex A/B/C"
  340. msgstr "„ADSL (visi variantai) Annex A/L/M + VDSL2 Annex A/B/C“"
  341. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1553
  342. msgid "ADSL (all variants) Annex B"
  343. msgstr "„ADSL (visi variantai) Annex B“"
  344. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1549
  345. msgid "ADSL (all variants) Annex B + VDSL2 Annex A/B/C"
  346. msgstr "„ADSL (visi variantai) Annex B + VDSL2 Annex A/B/C“"
  347. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1554
  348. msgid "ADSL (all variants) Annex B/J"
  349. msgstr "„ADSL (visi variantai) Annex B/J“"
  350. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1550
  351. msgid "ADSL (all variants) Annex B/J + VDSL2 Annex A/B/C"
  352. msgstr "„ADSL (visi variantai) Annex B/J + VDSL2 Annex A/B/C“"
  353. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1556
  354. msgid "ADSL (all variants) Annex M"
  355. msgstr "„ADSL (visi variantai) Annex M“"
  356. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1561
  357. msgid "ADSL2 (G.992.3) Annex A"
  358. msgstr "„ADSL2 (G.992.3) Annex A“"
  359. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1562
  360. msgid "ADSL2 (G.992.3) Annex B"
  361. msgstr "„ADSL2 (G.992.3) Annex B“"
  362. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1563
  363. msgid "ADSL2 (G.992.3) Annex L"
  364. msgstr "„ADSL2 (G.992.3) Annex L“"
  365. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1564
  366. msgid "ADSL2 (G.992.3) Annex M"
  367. msgstr "„ADSL2 (G.992.3) Annex M“"
  368. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1565
  369. msgid "ADSL2+ (G.992.5) Annex A"
  370. msgstr "„ADSL2+ (G.992.5) Annex A“"
  371. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1566
  372. msgid "ADSL2+ (G.992.5) Annex B"
  373. msgstr "„ADSL2+ (G.992.5) Annex B“"
  374. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1567
  375. msgid "ADSL2+ (G.992.5) Annex M"
  376. msgstr "„ADSL2+ (G.992.5) Annex M“"
  377. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1557
  378. msgid "ANSI T1.413"
  379. msgstr "„ANSI T1.413“"
  380. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:95
  381. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:65
  382. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:65
  383. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:91
  384. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:68
  385. msgid "APN"
  386. msgstr "„APN“"
  387. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:353
  388. msgid "ARP"
  389. msgstr "„ARP“"
  390. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:366
  391. msgid "ARP IP Targets"
  392. msgstr "„ARP IP Taikiniai“"
  393. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:358
  394. msgid "ARP Interval"
  395. msgstr "„ARP“ intervalas"
  396. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:382
  397. msgid "ARP Validation"
  398. msgstr "„ARP“ Patikrinimas"
  399. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:374
  400. #, fuzzy
  401. msgid "ARP mode to consider a slave as being up"
  402. msgstr "„ARP“ režimas, kuriuo valdomasis kompiuteris laikomas veikiančiu"
  403. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:79
  404. msgid "ARP monitoring is not supported for the selected policy!"
  405. msgstr "„ARP“ stebėjimas nepalaikomas pasirinktoje politikoje!"
  406. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:175
  407. msgid "ARP retry threshold"
  408. msgstr "„ARP“ pakartojimo slenkstis"
  409. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:637
  410. msgid "ARP traffic table \"%h\""
  411. msgstr "„ARP“ srauto lentelė „%h“"
  412. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1146
  413. msgid ""
  414. "ARP, IPv4 and IPv6 (even 802.1Q) with multicast destination MACs are unicast "
  415. "to the STA MAC address. Note: This is not Directed Multicast Service (DMS) "
  416. "in 802.11v. Note: might break receiver STA multicast expectations."
  417. msgstr ""
  418. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1579
  419. msgid "ATM (Asynchronous Transfer Mode)"
  420. msgstr "„ATM“ (Asinchroninis perdavimas režimas)"
  421. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1600
  422. msgid "ATM Bridges"
  423. msgstr "„ATM“ Tiltai"
  424. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1632
  425. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:66
  426. msgid "ATM Virtual Channel Identifier (VCI)"
  427. msgstr "„ATM“ virtualaus kanalo identifikatorius („VCI“)"
  428. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1633
  429. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:70
  430. msgid "ATM Virtual Path Identifier (VPI)"
  431. msgstr "„ATM“ virtualaus kelio identifikatorius („VPI“)"
  432. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1600
  433. msgid ""
  434. "ATM bridges expose encapsulated ethernet in AAL5 connections as virtual "
  435. "Linux network interfaces which can be used in conjunction with DHCP or PPP "
  436. "to dial into the provider network."
  437. msgstr ""
  438. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1639
  439. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:62
  440. msgid "ATM device number"
  441. msgstr "„ATM“ įrenginio numeris"
  442. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:266
  443. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:548
  444. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:552
  445. msgid "Absent Interface"
  446. msgstr "Nėra sąsajos"
  447. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:331
  448. msgid "Accept DNS queries only from hosts whose address is on a local subnet."
  449. msgstr ""
  450. "Priimti „DNS“ užklausas tik iš pagrindinių kompiuterių, kurių adresas yra "
  451. "vietiniame potinklyje."
  452. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:701
  453. msgid "Accept local"
  454. msgstr "Priimti vietini"
  455. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:95
  456. msgctxt "nft accept action"
  457. msgid "Accept packet"
  458. msgstr "Priimti paketą"
  459. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:701
  460. msgid "Accept packets with local source addresses"
  461. msgstr "Priimti paketus su vietiniais šaltinio adresais"
  462. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:47
  463. msgid "Access Concentrator"
  464. msgstr "Prieigos telktuvas"
  465. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:986
  466. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1101
  467. msgid "Access Point"
  468. msgstr "Prieigos taškas"
  469. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:60
  470. msgid "Access Point Isolation"
  471. msgstr "Prieigos taško izoliavimas"
  472. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:99
  473. msgid "Access Technologies"
  474. msgstr "Prieigos technologijos"
  475. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:388
  476. msgid "Actions"
  477. msgstr "Veiksmai"
  478. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:14
  479. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:134
  480. msgid "Active"
  481. msgstr "Aktyvu"
  482. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:81
  483. msgid "Active Connections"
  484. msgstr "Aktyvūs prisijungimai"
  485. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:35
  486. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:182
  487. msgid "Active DHCP Leases"
  488. msgstr "Aktyvūs „DHCP Leases“"
  489. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:54
  490. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:184
  491. msgid "Active DHCPv6 Leases"
  492. msgstr "Aktyvūs „DHCPv6 Leases“"
  493. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:255
  494. msgid "Active IPv4 Routes"
  495. msgstr "Aktyvūs „IPv4“ maršrutai"
  496. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:258
  497. msgid "Active IPv4 Rules"
  498. msgstr "Aktyvūs „IPv4“ taisyklės"
  499. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:265
  500. msgid "Active IPv6 Routes"
  501. msgstr "Aktyvūs „IPv6“ maršrutai"
  502. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:268
  503. msgid "Active IPv6 Rules"
  504. msgstr "Aktyvūs „IPv6“ taisyklės"
  505. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:205
  506. msgid "Active-Backup policy (active-backup, 1)"
  507. msgstr ""
  508. #: modules/luci-base/htdocs/luci-static/resources/network.js:3866
  509. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:988
  510. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:23
  511. msgid "Ad-Hoc"
  512. msgstr "„Ad-Hoc“"
  513. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:210
  514. msgid "Adaptive load balancing (balance-alb, 6)"
  515. msgstr ""
  516. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:209
  517. msgid "Adaptive transmit load balancing (balance-tlb, 5)"
  518. msgstr ""
  519. #: modules/luci-base/htdocs/luci-static/resources/form.js:2233
  520. #: modules/luci-base/htdocs/luci-static/resources/form.js:2236
  521. #: modules/luci-base/htdocs/luci-static/resources/form.js:2249
  522. #: modules/luci-base/htdocs/luci-static/resources/form.js:2257
  523. #: modules/luci-base/htdocs/luci-static/resources/form.js:3587
  524. #: modules/luci-compat/luasrc/view/cbi/nsection.htm:25
  525. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:189
  526. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:197
  527. #: modules/luci-compat/luasrc/view/cbi/tsection.htm:39
  528. #: modules/luci-compat/luasrc/view/cbi/tsection.htm:47
  529. #: modules/luci-compat/luasrc/view/cbi/ucisection.htm:54
  530. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:879
  531. msgid "Add"
  532. msgstr "Pridėti"
  533. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1604
  534. msgid "Add ATM Bridge"
  535. msgstr "Pridėti „ATM Bridge“"
  536. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:92
  537. msgid "Add IPv4 address…"
  538. msgstr "Pridėti „IPv4“ adresą…"
  539. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:185
  540. msgid "Add IPv6 address…"
  541. msgstr "Pridėti „IPv6“ adresą…"
  542. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:65
  543. msgid "Add LED action"
  544. msgstr "Pridėti „LED“ (Lemputės) veiksmą"
  545. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:221
  546. msgid "Add VLAN"
  547. msgstr "Pridėti „VLAN“"
  548. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1371
  549. msgid "Add device configuration"
  550. msgstr "Pridėti įrenginio konfigūravimą"
  551. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1311
  552. msgid "Add device configuration…"
  553. msgstr "Pridėti įrenginio konfigūravimą…"
  554. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:15
  555. msgid "Add instance"
  556. msgstr "Pridėti egzempliorių"
  557. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:171
  558. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:177
  559. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:274
  560. msgid "Add key"
  561. msgstr "Pridėti raktą"
  562. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:496
  563. msgid "Add local domain suffix to names served from hosts files."
  564. msgstr ""
  565. "Pridėti vietinio domeno-srities priesagą į vardus, pateikiamų iš skleidėjo/p."
  566. "k – vedėjo failų."
  567. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:482
  568. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1195
  569. msgid "Add new interface..."
  570. msgstr "Pridėti naują sąsają ir/arba sietuvą..."
  571. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:224
  572. msgid "Add peer"
  573. msgstr "Pridėti lygiarangį"
  574. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:945
  575. msgid "Add static forward and reverse DNS entries for this host."
  576. msgstr ""
  577. "Pridėti statinius persiuntimo ir atvirkštinio „DNS“ įrašus šiam skleidėjui/p."
  578. "k – vedėjui."
  579. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:335
  580. msgid "Add to Blacklist"
  581. msgstr "Pridėti į juodąjį sąrašą"
  582. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:335
  583. msgid "Add to Whitelist"
  584. msgstr "Pridėti į baltąjį sąrašą"
  585. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:442
  586. msgid "Additional hosts files"
  587. msgstr "Papildomi skleidėjo/p.k – vedėjo/-ų failai"
  588. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:503
  589. msgid "Additional servers file"
  590. msgstr "Papildomas serverių failas"
  591. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:34
  592. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:35
  593. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:36
  594. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:37
  595. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:38
  596. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:39
  597. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:40
  598. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:41
  599. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:42
  600. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:43
  601. msgid "Address"
  602. msgstr "Adresas"
  603. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:410
  604. msgid "Address families of \"Relay from\" and \"Relay to address\" must match."
  605. msgstr ""
  606. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:21
  607. msgctxt "nft meta nfproto"
  608. msgid "Address family"
  609. msgstr "Adreso šeima"
  610. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:284
  611. msgid "Address setting is invalid"
  612. msgstr "Adreso nustatymas yra neteisingas"
  613. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:151
  614. msgid "Address to access local relay bridge"
  615. msgstr ""
  616. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:297
  617. msgid "Addresses"
  618. msgstr "Adresai"
  619. #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:3
  620. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:15
  621. msgid "Administration"
  622. msgstr "Administravimas"
  623. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:257
  624. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:495
  625. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:650
  626. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1630
  627. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:39
  628. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:128
  629. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:918
  630. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:982
  631. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:241
  632. msgid "Advanced Settings"
  633. msgstr "Pažangūs nustatymai"
  634. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:391
  635. msgid "Advanced device options"
  636. msgstr "Pažangūs įrenginio parinktys"
  637. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:567
  638. msgid "Ageing time"
  639. msgstr "Senėjimo laikas"
  640. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:50
  641. msgid "Aggregate Originator Messages"
  642. msgstr "Agreguoti siuntėjo pranešimus"
  643. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:260
  644. msgid "Aggregation Selection Logic"
  645. msgstr ""
  646. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:263
  647. msgid "Aggregator: All slaves down or has no slaves (stable, 0)"
  648. msgstr ""
  649. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:265
  650. msgid ""
  651. "Aggregator: Chosen by the largest number of ports + slave added/removed or "
  652. "state changes (count, 2)"
  653. msgstr ""
  654. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:264
  655. msgid "Aggregator: Slave added/removed or state changes (bandwidth, 1)"
  656. msgstr ""
  657. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:192
  658. msgid "Alert"
  659. msgstr "Įspėti"
  660. #: modules/luci-base/htdocs/luci-static/resources/network.js:2989
  661. #: modules/luci-compat/luasrc/model/network.lua:1417
  662. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:62
  663. msgid "Alias Interface"
  664. msgstr "Slapyvardžio Sąveiką"
  665. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:146
  666. msgid "Alias of \"%s\""
  667. msgstr ""
  668. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:513
  669. msgid "All servers"
  670. msgstr "Visi serveriai"
  671. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:453
  672. msgid ""
  673. "Allocate IP addresses sequentially, starting from the lowest available "
  674. "address."
  675. msgstr ""
  676. "Paskirstyti IP adresus nuosekliai, pradedant nuo žemiausio galimo adreso."
  677. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:452
  678. msgid "Allocate IPs sequentially"
  679. msgstr "Paskirstyti „IP“ nuosekliai"
  680. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:25
  681. msgid "Allow <abbr title=\"Secure Shell\">SSH</abbr> password authentication"
  682. msgstr ""
  683. "Leisti <abbr title=\"Secure Shell\">„SSH“</abbr> slaptažodžio autentifikavimą"
  684. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1193
  685. msgid "Allow AP mode to disconnect STAs based on low ACK condition"
  686. msgstr ""
  687. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1084
  688. msgid "Allow all except listed"
  689. msgstr "Leisti visus, išskyrus išvardytus"
  690. #: modules/luci-compat/root/usr/share/rpcd/acl.d/luci-compat.json:3
  691. msgid "Allow full UCI access for legacy applications"
  692. msgstr "Leisti pasenusiom aplikacijoms naudoti/-s visą „UCI“ prieigą"
  693. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:938
  694. msgid "Allow legacy 802.11b rates"
  695. msgstr ""
  696. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1083
  697. msgid "Allow listed only"
  698. msgstr "Leisti tik išvardytus"
  699. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:317
  700. msgid "Allow localhost"
  701. msgstr "Leisti „localhost“"
  702. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:179
  703. msgid "Allow rebooting the device"
  704. msgstr "Leisti iš naujo paleisti įrenginį"
  705. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:36
  706. msgid "Allow remote hosts to connect to local SSH forwarded ports"
  707. msgstr ""
  708. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:31
  709. msgid "Allow root logins with password"
  710. msgstr ""
  711. #: modules/luci-base/root/usr/share/rpcd/acl.d/luci-base.json:3
  712. msgid "Allow system feature probing"
  713. msgstr ""
  714. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:31
  715. msgid "Allow the <em>root</em> user to log in with password"
  716. msgstr "Leisti <em>„root“</em> vartotojui prisijungti naudojant slaptažodį"
  717. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:624
  718. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:781
  719. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:56
  720. msgid "Allowed IPs"
  721. msgstr "Leidžiami „IP“ (dgs.)"
  722. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:86
  723. msgid "Allowed network technology"
  724. msgstr "Leidžiama/-os tinklo technologija/-os"
  725. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:315
  726. msgid "AllowedIPs setting is invalid"
  727. msgstr "„LeidžiamiIPs“ nustatymas yra netinkamas"
  728. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:776
  729. msgid "Always"
  730. msgstr "Visada"
  731. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/none.js:6
  732. msgid "Always off (kernel: none)"
  733. msgstr ""
  734. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/default-on.js:5
  735. msgid "Always on (kernel: default-on)"
  736. msgstr ""
  737. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:624
  738. msgid "Always send DHCP Options. Sometimes needed, with e.g. PXELinux."
  739. msgstr ""
  740. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:965
  741. msgid ""
  742. "Always use 40MHz channels even if the secondary channel overlaps. Using this "
  743. "option does not comply with IEEE 802.11n-2009!"
  744. msgstr ""
  745. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:741
  746. msgid "Amount of Duplicate Address Detection probes to send"
  747. msgstr ""
  748. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:119
  749. msgid "Amount of seconds to wait for the modem to become ready"
  750. msgstr ""
  751. #: modules/luci-base/htdocs/luci-static/resources/form.js:608
  752. msgid "An error occurred while saving the form:"
  753. msgstr ""
  754. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:139
  755. msgid "An optional, short description for this device"
  756. msgstr ""
  757. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1546
  758. msgid "Annex"
  759. msgstr "Aneksija"
  760. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:858
  761. msgid ""
  762. "Announce NAT64 prefix in <abbr title=\"Router Advertisement\">RA</abbr> "
  763. "messages."
  764. msgstr ""
  765. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:945
  766. msgid "Announce this device as IPv6 DNS server."
  767. msgstr ""
  768. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:817
  769. msgid ""
  770. "Announce this device as default router if a local IPv6 default route is "
  771. "present."
  772. msgstr ""
  773. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:819
  774. msgid ""
  775. "Announce this device as default router if a public IPv6 prefix is available, "
  776. "regardless of local default route availability."
  777. msgstr ""
  778. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:821
  779. msgid ""
  780. "Announce this device as default router regardless of whether a prefix or "
  781. "default route is present."
  782. msgstr ""
  783. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:952
  784. msgid "Announced DNS domains"
  785. msgstr ""
  786. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:936
  787. msgid "Announced IPv6 DNS servers"
  788. msgstr ""
  789. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1767
  790. msgid "Anonymous Identity"
  791. msgstr "Anonimiška tapatybė"
  792. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:162
  793. msgid "Anonymous Mount"
  794. msgstr ""
  795. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:158
  796. msgid "Anonymous Swap"
  797. msgstr ""
  798. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:518
  799. msgctxt "nft match any traffic"
  800. msgid "Any packet"
  801. msgstr "Bet koks paketas"
  802. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:84
  803. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:174
  804. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:196
  805. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:60
  806. msgid "Any zone"
  807. msgstr "Bet kokia zona"
  808. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:618
  809. msgid "Apply DHCP Options to this net. (Empty = all clients)."
  810. msgstr ""
  811. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4713
  812. msgid "Apply and keep settings"
  813. msgstr ""
  814. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:119
  815. msgid "Apply backup?"
  816. msgstr "Įgalinti atkūrimą?"
  817. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4739
  818. msgid "Apply request failed with status <code>%h</code>"
  819. msgstr ""
  820. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2175
  821. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4456
  822. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4576
  823. msgid "Apply unchecked"
  824. msgstr "Įgalinti nepažymėtus"
  825. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4709
  826. msgid "Apply with revert after connectivity loss"
  827. msgstr ""
  828. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4649
  829. msgid "Applying configuration changes… %ds"
  830. msgstr "Įgalinami konfigūracijos pakeitimai... %ds"
  831. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:57
  832. msgid "Architecture"
  833. msgstr "Architektūra"
  834. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:152
  835. msgid "Arp-scan"
  836. msgstr "„Arp-skenavimas“"
  837. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1039
  838. msgid ""
  839. "Assign a part of given length of every public IPv6-prefix to this interface"
  840. msgstr ""
  841. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:917
  842. msgid "Assign new, freeform tags to this entry."
  843. msgstr ""
  844. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1044
  845. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:27
  846. msgid ""
  847. "Assign prefix parts using this hexadecimal subprefix ID for this interface."
  848. msgstr ""
  849. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2266
  850. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:366
  851. msgid "Associated Stations"
  852. msgstr ""
  853. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:151
  854. msgid "Associations"
  855. msgstr ""
  856. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:126
  857. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:127
  858. msgid ""
  859. "At least <strong>%h</strong> per <strong>%h</strong>, burst of <strong>%h</"
  860. "strong>"
  861. msgstr ""
  862. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:124
  863. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:125
  864. msgid ""
  865. "At most <strong>%h</strong> per <strong>%h</strong>, burst of <strong>%h</"
  866. "strong>"
  867. msgstr ""
  868. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:154
  869. msgid "Attempt to enable configured mount points for attached devices"
  870. msgstr ""
  871. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:145
  872. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:64
  873. msgid "Auth Group"
  874. msgstr "Autentifikavimo grupė"
  875. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1706
  876. msgid "Authentication"
  877. msgstr "Autentifikavimas"
  878. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:76
  879. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:79
  880. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:82
  881. msgid "Authentication Type"
  882. msgstr "Autentifikavimo tipas"
  883. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:273
  884. msgid "Authoritative"
  885. msgstr "Autoritetas"
  886. #: modules/luci-base/ucode/template/sysauth.ut:17
  887. #: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:11
  888. msgid "Authorization Required"
  889. msgstr "Autoritetas reikalingas"
  890. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:120
  891. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:18
  892. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:24
  893. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:107
  894. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:116
  895. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:113
  896. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:51
  897. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:96
  898. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:82
  899. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:56
  900. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:69
  901. msgid "Automatic"
  902. msgstr "Automatinis"
  903. #: modules/luci-compat/luasrc/model/network/proto_hnet.lua:7
  904. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:7
  905. msgid "Automatic Homenet (HNCP)"
  906. msgstr ""
  907. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:174
  908. msgid "Automatically check filesystem for errors before mounting"
  909. msgstr ""
  910. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1032
  911. msgid ""
  912. "Automatically handle multiple uplink interfaces using source-based policy "
  913. "routing."
  914. msgstr ""
  915. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:170
  916. msgid "Automatically mount filesystems on hotplug"
  917. msgstr ""
  918. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:166
  919. msgid "Automatically mount swap on hotplug"
  920. msgstr ""
  921. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:170
  922. msgid "Automount Filesystem"
  923. msgstr ""
  924. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:166
  925. msgid "Automount Swap"
  926. msgstr ""
  927. #: protocols/luci-proto-autoip/htdocs/luci-static/resources/protocol/autoip.js:6
  928. msgid "Avahi IPv4LL"
  929. msgstr "„Avahi IPv4LL“"
  930. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:193
  931. msgid "Available"
  932. msgstr "Pasiekiamas"
  933. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:270
  934. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:280
  935. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:331
  936. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:341
  937. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:351
  938. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:236
  939. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:246
  940. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:256
  941. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:265
  942. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:275
  943. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:293
  944. msgid "Average:"
  945. msgstr "Vidurkis:"
  946. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:70
  947. msgid "Avoid Bridge Loops"
  948. msgstr ""
  949. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1573
  950. msgid "B43 + B43C"
  951. msgstr "„B43 + B43C“"
  952. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1574
  953. msgid "B43 + B43C + V43"
  954. msgstr "„B43 + B43C + V43“"
  955. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:48
  956. msgid "BR / DMR / AFTR"
  957. msgstr "„BR / DMR / AFTR“"
  958. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1649
  959. msgid "BSS Transition"
  960. msgstr "„BSS“ perėjimas"
  961. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:158
  962. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:182
  963. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1841
  964. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:405
  965. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:149
  966. msgid "BSSID"
  967. msgstr "„BSSID“"
  968. #: modules/luci-base/htdocs/luci-static/resources/form.js:3255
  969. msgid "Back"
  970. msgstr "Atgal"
  971. #: modules/luci-compat/luasrc/view/cbi/footer.htm:14
  972. #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:48
  973. msgid "Back to Overview"
  974. msgstr "Atgal į apžiūrą"
  975. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:839
  976. msgid "Back to peer configuration"
  977. msgstr ""
  978. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:391
  979. msgid "Backup"
  980. msgstr "Atkūrimas/Sukurti atsarginę kopiją"
  981. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:128
  982. msgid "Backup / Flash Firmware"
  983. msgstr ""
  984. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:351
  985. msgid "Backup file list"
  986. msgstr ""
  987. #: modules/luci-compat/luasrc/view/cbi/wireless_modefreq.htm:158
  988. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:495
  989. msgid "Band"
  990. msgstr ""
  991. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:431
  992. msgid "Base device"
  993. msgstr "Pagrindo įrenginys"
  994. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:158
  995. msgid "Base64-encoded public key of this interface for sharing."
  996. msgstr ""
  997. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:10
  998. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv_hardif.js:41
  999. msgid "Batman Device"
  1000. msgstr "„Batman“ įrenginys"
  1001. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv_hardif.js:10
  1002. msgid "Batman Interface"
  1003. msgstr "„Batman“ sąsajas ir/arba sietuvas"
  1004. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:81
  1005. msgid ""
  1006. "Batman-adv has a built-in layer 2 fragmentation for unicast data flowing "
  1007. "through the mesh which will allow to run batman-adv over interfaces / "
  1008. "connections that don't allow to increase the MTU beyond the standard "
  1009. "Ethernet packet size of 1500 bytes. When the fragmentation is enabled batman-"
  1010. "adv will automatically fragment over-sized packets and defragment them on "
  1011. "the other end. Per default fragmentation is enabled and inactive if the "
  1012. "packet fits but it is possible to deactivate the fragmentation entirely."
  1013. msgstr ""
  1014. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:968
  1015. msgid "Beacon Interval"
  1016. msgstr "Švyturio intervalas"
  1017. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1623
  1018. msgid "Beacon Report"
  1019. msgstr ""
  1020. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:352
  1021. msgid ""
  1022. "Below is the determined list of files to backup. It consists of changed "
  1023. "configuration files marked by opkg, essential base files and the user "
  1024. "defined backup patterns."
  1025. msgstr ""
  1026. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:287
  1027. msgid "Bind NTP server"
  1028. msgstr ""
  1029. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:337
  1030. msgid "Bind dynamically to interfaces rather than wildcard address."
  1031. msgstr ""
  1032. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:59
  1033. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64
  1034. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64
  1035. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:69
  1036. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:48
  1037. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:142
  1038. #: protocols/luci-proto-vti/htdocs/luci-static/resources/protocol/vti.js:59
  1039. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:57
  1040. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:52
  1041. msgid "Bind interface"
  1042. msgstr "Pririšti sąsają/-as ir/arba sietuvą/-us"
  1043. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:676
  1044. msgid ""
  1045. "Bind service records to a domain name: specify the location of services."
  1046. msgstr ""
  1047. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:637
  1048. msgid ""
  1049. "Bind service records to a domain name: specify the location of services. See "
  1050. "<a href=\"%s\">RFC2782</a>."
  1051. msgstr ""
  1052. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:59
  1053. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64
  1054. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64
  1055. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:69
  1056. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:48
  1057. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:142
  1058. #: protocols/luci-proto-vti/htdocs/luci-static/resources/protocol/vti.js:59
  1059. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:57
  1060. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:52
  1061. msgid "Bind the tunnel to this interface (optional)."
  1062. msgstr ""
  1063. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:129
  1064. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:188
  1065. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:171
  1066. msgid "Bitrate"
  1067. msgstr "Pralaidumas (bitų)"
  1068. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:65
  1069. msgid "Bonding Mode"
  1070. msgstr "Pririšimo režimas"
  1071. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:201
  1072. msgid "Bonding Policy"
  1073. msgstr "Pririšimo politika"
  1074. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:404
  1075. msgid "Both \"Relay from\" and \"Relay to address\" must be specified."
  1076. msgstr ""
  1077. #: modules/luci-base/htdocs/luci-static/resources/network.js:2995
  1078. #: modules/luci-compat/luasrc/model/network.lua:1421
  1079. msgid "Bridge"
  1080. msgstr "„Bridge/Tinklo Tiltas“ – Jungimas/-iamasis"
  1081. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:491
  1082. msgctxt "MACVLAN mode"
  1083. msgid "Bridge (Support direct communication between MAC VLANs)"
  1084. msgstr "Jungimas (Palaiko tiesioginę komunikaciją tarp „MAC VLAN'ų“)"
  1085. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:393
  1086. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:498
  1087. msgid "Bridge VLAN filtering"
  1088. msgstr ""
  1089. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:398
  1090. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1469
  1091. msgid "Bridge device"
  1092. msgstr "Jungimo įrenginys"
  1093. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:392
  1094. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:497
  1095. msgid "Bridge port specific options"
  1096. msgstr "Jungimo prievado tiksliniai pasirinkimai"
  1097. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:522
  1098. msgid "Bridge ports"
  1099. msgstr "Jungimo prievadai"
  1100. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:641
  1101. msgid "Bridge traffic table \"%h\""
  1102. msgstr ""
  1103. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1640
  1104. msgid "Bridge unit number"
  1105. msgstr "Jungimo vieneto numeris"
  1106. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:558
  1107. msgid "Bring up empty bridge"
  1108. msgstr ""
  1109. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:592
  1110. msgid "Bring up on boot"
  1111. msgstr ""
  1112. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:558
  1113. msgid "Bring up the bridge interface even if no ports are attached"
  1114. msgstr ""
  1115. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:940
  1116. msgid "Broadcast"
  1117. msgstr ""
  1118. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:207
  1119. msgid "Broadcast policy (broadcast, 3)"
  1120. msgstr ""
  1121. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2869
  1122. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4207
  1123. msgid "Browse…"
  1124. msgstr "Naršyti…"
  1125. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:40
  1126. msgid "Buffered"
  1127. msgstr ""
  1128. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:130
  1129. msgid ""
  1130. "CA certificate (PEM encoded; Use instead of system-wide store to verify the "
  1131. "gateway certificate."
  1132. msgstr ""
  1133. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:182
  1134. msgid "CA certificate; if empty it will be saved after the first connection."
  1135. msgstr ""
  1136. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:79
  1137. msgid "CHAP"
  1138. msgstr "„CHAP“"
  1139. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:7
  1140. msgid "CLAT configuration failed"
  1141. msgstr "„CLAT“ konfigūracija nepavyko"
  1142. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:265
  1143. msgid "CNAME"
  1144. msgstr "„CNAME“"
  1145. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:655
  1146. msgid "CNAME or fqdn"
  1147. msgstr "„CNAME“ arba „fqdn“"
  1148. #: protocols/luci-proto-cni/htdocs/luci-static/resources/protocol/cni.js:6
  1149. msgid "CNI (Externally managed interface)"
  1150. msgstr ""
  1151. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:72
  1152. msgid "CPU usage (%)"
  1153. msgstr "„CPU“ vartojimas/naudojimas (%)"
  1154. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:43
  1155. msgid "Cached"
  1156. msgstr "Talpykloje"
  1157. #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:53
  1158. #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:53
  1159. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:21
  1160. msgid "Call failed"
  1161. msgstr "Skambinimas nepavyko"
  1162. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:469
  1163. msgid ""
  1164. "Can be useful if ISP has IPv6 nameservers but does not provide IPv6 routing."
  1165. msgstr ""
  1166. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2957
  1167. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4216
  1168. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4705
  1169. #: modules/luci-compat/luasrc/view/cbi/delegator.htm:14
  1170. #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:52
  1171. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:188
  1172. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1201
  1173. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2140
  1174. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:128
  1175. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:295
  1176. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:209
  1177. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:485
  1178. msgid "Cancel"
  1179. msgstr "Atšaukti"
  1180. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:347
  1181. msgid "Cannot parse configuration: %s"
  1182. msgstr ""
  1183. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:568
  1184. msgctxt "Chain hook: forward"
  1185. msgid "Capture incoming packets addressed to other hosts"
  1186. msgstr ""
  1187. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:560
  1188. msgctxt "Chain hook: prerouting"
  1189. msgid "Capture incoming packets before any routing decision"
  1190. msgstr ""
  1191. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:564
  1192. msgctxt "Chain hook: input"
  1193. msgid "Capture incoming packets routed to the local system"
  1194. msgstr ""
  1195. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:576
  1196. msgctxt "Chain hook: postrouting"
  1197. msgid "Capture outgoing packets after any routing decision"
  1198. msgstr ""
  1199. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:572
  1200. msgctxt "Chain hook: output"
  1201. msgid "Capture outgoing packets originating from the local system"
  1202. msgstr ""
  1203. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:556
  1204. msgctxt "Chain hook: ingress"
  1205. msgid "Capture packets directly after the NIC received them"
  1206. msgstr ""
  1207. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:17
  1208. msgid "Category"
  1209. msgstr "Kategorija"
  1210. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:114
  1211. msgid "Cell ID"
  1212. msgstr "„Cell ID“"
  1213. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:113
  1214. msgid "Cell Location"
  1215. msgstr ""
  1216. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1690
  1217. msgid "Certificate constraint (Domain)"
  1218. msgstr "Sertifikato suvaržymas (Domenas-Sritis)"
  1219. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1687
  1220. msgid "Certificate constraint (SAN)"
  1221. msgstr "Sertifikato suvaržymas („SAN“)"
  1222. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1684
  1223. msgid "Certificate constraint (Subject)"
  1224. msgstr ""
  1225. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1693
  1226. msgid "Certificate constraint (Wildcard)"
  1227. msgstr ""
  1228. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1684
  1229. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1742
  1230. msgid ""
  1231. "Certificate constraint substring - e.g. /CN=wifi.mycompany.com<br />See "
  1232. "`logread -f` during handshake for actual values"
  1233. msgstr ""
  1234. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1690
  1235. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1748
  1236. msgid ""
  1237. "Certificate constraint(s) against DNS SAN values (if available)<br />or "
  1238. "Subject CN (exact match)"
  1239. msgstr ""
  1240. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1693
  1241. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1751
  1242. msgid ""
  1243. "Certificate constraint(s) against DNS SAN values (if available)<br />or "
  1244. "Subject CN (suffix match)"
  1245. msgstr ""
  1246. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1687
  1247. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1745
  1248. msgid ""
  1249. "Certificate constraint(s) via Subject Alternate Name values<br />(supported "
  1250. "attributes: EMAIL, DNS, URI) - e.g. DNS:wifi.mycompany.com"
  1251. msgstr ""
  1252. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:54
  1253. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:57
  1254. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:212
  1255. msgid "Chain"
  1256. msgstr "Grandinė"
  1257. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:580
  1258. msgctxt "Yet unknown nftables chain hook"
  1259. msgid "Chain hook \"%h\""
  1260. msgstr "Grandinės pririšimas \"%h\""
  1261. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4436
  1262. msgid "Changes"
  1263. msgstr "Pakeitimai"
  1264. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4775
  1265. msgid "Changes have been reverted."
  1266. msgstr ""
  1267. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:46
  1268. msgid "Changes the administrator password for accessing the device"
  1269. msgstr ""
  1270. #: modules/luci-compat/luasrc/view/cbi/wireless_modefreq.htm:162
  1271. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:128
  1272. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:184
  1273. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:504
  1274. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1839
  1275. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:402
  1276. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:170
  1277. msgid "Channel"
  1278. msgstr "Kanalas"
  1279. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:368
  1280. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:105
  1281. msgid "Channel Analysis"
  1282. msgstr "Kanalų analizė"
  1283. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:403
  1284. msgid "Channel Width"
  1285. msgstr "Kanalo plotis"
  1286. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:174
  1287. msgid "Check filesystems before mount"
  1288. msgstr ""
  1289. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2102
  1290. msgid "Check this option to delete the existing networks from this radio."
  1291. msgstr ""
  1292. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:110
  1293. msgid "Checking archive…"
  1294. msgstr "Tikrinamas archyvas…"
  1295. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:193
  1296. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:195
  1297. msgid "Checking image…"
  1298. msgstr "Tikrinama laikmena…"
  1299. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:427
  1300. msgid "Choose mtdblock"
  1301. msgstr "Pasirinkti „mtdblock“"
  1302. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:597
  1303. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2130
  1304. msgid ""
  1305. "Choose the firewall zone you want to assign to this interface. Select "
  1306. "<em>unspecified</em> to remove the interface from the associated zone or "
  1307. "fill out the <em>custom</em> field to define a new zone and attach the "
  1308. "interface to it."
  1309. msgstr ""
  1310. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1018
  1311. msgid ""
  1312. "Choose the network(s) you want to attach to this wireless interface or fill "
  1313. "out the <em>custom</em> field to define a new network."
  1314. msgstr ""
  1315. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1229
  1316. msgid "Cipher"
  1317. msgstr "Šifras"
  1318. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:91
  1319. msgid "Cisco UDP encapsulation"
  1320. msgstr ""
  1321. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:391
  1322. msgid ""
  1323. "Click \"Generate archive\" to download a tar archive of the current "
  1324. "configuration files."
  1325. msgstr ""
  1326. "Spauskite – „Sugeneruoti archyvą“, kad atsisiųstumėte „*.tar“ failo archyvą "
  1327. "dabartinės konfigūracijos. Šį „libreCMC“ ir įvairius „LuCI“ komponentų "
  1328. "vertimus į lietuvių kalbą išvertė Džiugas Januševičius (Virš 30 tūks. "
  1329. "žodžių)."
  1330. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:424
  1331. msgid ""
  1332. "Click \"Save mtdblock\" to download specified mtdblock file. (NOTE: THIS "
  1333. "FEATURE IS FOR PROFESSIONALS! )"
  1334. msgstr ""
  1335. "Spauskite – „Išsaugoti „mtdblock““, kad atsisiųstumėte specifikuotą "
  1336. "„mtdblock“ failą. (Pastaba: Ši funkcija tik profesionalams!)"
  1337. #: modules/luci-base/htdocs/luci-static/resources/network.js:3865
  1338. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:987
  1339. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1102
  1340. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:88
  1341. msgid "Client"
  1342. msgstr "Klientas"
  1343. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37
  1344. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:33
  1345. msgid "Client ID to send when requesting DHCP"
  1346. msgstr ""
  1347. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4453
  1348. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:173
  1349. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:179
  1350. msgid "Close"
  1351. msgstr "Uždaryti"
  1352. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:156
  1353. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:128
  1354. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:114
  1355. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:92
  1356. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:101
  1357. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:124
  1358. msgid ""
  1359. "Close inactive connection after the given amount of seconds, use 0 to "
  1360. "persist connection"
  1361. msgstr ""
  1362. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:44
  1363. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:63
  1364. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2264
  1365. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:391
  1366. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:352
  1367. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:355
  1368. #: themes/luci-theme-material/ucode/template/themes/material/header.ut:66
  1369. msgid "Collecting data..."
  1370. msgstr "Renkama informacija (data)..."
  1371. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:250
  1372. msgid "Collisions seen"
  1373. msgstr ""
  1374. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:71
  1375. msgid "Command"
  1376. msgstr "Komanda"
  1377. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:401
  1378. msgid "Command OK"
  1379. msgstr "Komanda – Gerai"
  1380. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:33
  1381. msgid "Command failed"
  1382. msgstr "Komanda nesėkminga"
  1383. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:73
  1384. msgid "Comment"
  1385. msgstr "Komentuoti"
  1386. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1810
  1387. msgid ""
  1388. "Complicates key reinstallation attacks on the client side by disabling "
  1389. "retransmission of EAPOL-Key frames that are used to install keys. This "
  1390. "workaround might cause interoperability issues and reduced robustness of key "
  1391. "negotiation especially in environments with heavy traffic load."
  1392. msgstr ""
  1393. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:101
  1394. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:106
  1395. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:103
  1396. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:108
  1397. msgid "Compute outgoing checksum (optional)."
  1398. msgstr ""
  1399. #: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:40
  1400. msgid "Config File"
  1401. msgstr "Konfigūracijos failas"
  1402. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4436
  1403. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:454
  1404. msgid "Configuration"
  1405. msgstr "Konfigūravimas"
  1406. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:690
  1407. msgid "Configuration Export"
  1408. msgstr "Konfigūravimo eksportas"
  1409. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4624
  1410. msgid "Configuration changes applied."
  1411. msgstr "Konfigūravimo pakeitimai įgalinti."
  1412. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4562
  1413. msgid "Configuration changes have been rolled back!"
  1414. msgstr ""
  1415. "Konfigūravimo pakeitimai buvo atšaukti ir sugrąžinti į pradinę būsena "
  1416. "(Anuliuoti)!"
  1417. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:63
  1418. msgid "Configuration failed"
  1419. msgstr "Konfigūravimas nepavyko"
  1420. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:947
  1421. msgid ""
  1422. "Configures data rates based on the coverage cell density. Normal configures "
  1423. "basic rates to 6, 12, 24 Mbps if legacy 802.11b rates are not used else to "
  1424. "5.5, 11 Mbps. High configures basic rates to 12, 24 Mbps if legacy 802.11b "
  1425. "rates are not used else to the 11 Mbps rate. Very High configures 24 Mbps as "
  1426. "the basic rate. Supported rates lower than the minimum basic rate are not "
  1427. "offered."
  1428. msgstr ""
  1429. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:815
  1430. msgid ""
  1431. "Configures the default router advertisement in <abbr title=\"Router "
  1432. "Advertisement\">RA</abbr> messages."
  1433. msgstr ""
  1434. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:804
  1435. msgid ""
  1436. "Configures the operation mode of the <abbr title=\"Router "
  1437. "Advertisement\">RA</abbr> service on this interface."
  1438. msgstr ""
  1439. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:926
  1440. msgid "Configures the operation mode of the DHCPv6 service on this interface."
  1441. msgstr ""
  1442. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:962
  1443. msgid ""
  1444. "Configures the operation mode of the NDP proxy service on this interface."
  1445. msgstr ""
  1446. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1357
  1447. msgid "Configure…"
  1448. msgstr "Konfigūruoti…"
  1449. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:176
  1450. msgid "Confirm disconnect"
  1451. msgstr "Patvirtinti atjungimą"
  1452. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:55
  1453. msgid "Confirmation"
  1454. msgstr "Patvirtinimas"
  1455. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:98
  1456. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:101
  1457. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:47
  1458. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:232
  1459. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:51
  1460. msgid "Connected"
  1461. msgstr "Prisijungta"
  1462. #: modules/luci-base/htdocs/luci-static/resources/network.js:9
  1463. #: modules/luci-compat/luasrc/model/network.lua:27
  1464. msgid "Connection attempt failed"
  1465. msgstr "Bandymas prisijungti nepavyko"
  1466. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:8
  1467. msgid "Connection attempt failed."
  1468. msgstr "Bandymas prisijungti nepavyko."
  1469. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:776
  1470. msgid "Connection endpoint"
  1471. msgstr ""
  1472. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:411
  1473. msgid "Connection lost"
  1474. msgstr ""
  1475. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:160
  1476. msgid "Connections"
  1477. msgstr "Prisijungimai"
  1478. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4698
  1479. msgid "Connectivity change"
  1480. msgstr ""
  1481. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:31
  1482. msgctxt "nft ct state"
  1483. msgid "Conntrack state"
  1484. msgstr ""
  1485. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:33
  1486. msgctxt "nft ct status"
  1487. msgid "Conntrack status"
  1488. msgstr ""
  1489. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:378
  1490. msgid "Consider the slave up when all ARP IP targets are reachable (all, 1)"
  1491. msgstr ""
  1492. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:377
  1493. msgid "Consider the slave up when any ARP IP target is reachable (any, 0)"
  1494. msgstr ""
  1495. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/crontab.js:18
  1496. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:368
  1497. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:55
  1498. msgid "Contents have been saved."
  1499. msgstr "Turinys buvo išsaugotas."
  1500. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:416
  1501. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:450
  1502. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:794
  1503. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:132
  1504. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:269
  1505. msgid "Continue"
  1506. msgstr "Tęsti"
  1507. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:97
  1508. msgctxt "nft jump action"
  1509. msgid "Continue in <strong><a href=\"#%q.%q\">%h</a></strong>"
  1510. msgstr "Tęsti po <strong><a href=\"#%q.%q\">%h</a></strong>"
  1511. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:129
  1512. msgid "Continue in calling chain"
  1513. msgstr ""
  1514. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:550
  1515. msgctxt "Chain policy: accept"
  1516. msgid "Continue processing unmatched packets"
  1517. msgstr ""
  1518. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4598
  1519. msgid ""
  1520. "Could not regain access to the device after applying the configuration "
  1521. "changes. You might need to reconnect if you modified network related "
  1522. "settings such as the IP address or wireless security credentials."
  1523. msgstr ""
  1524. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:189
  1525. msgid "Country"
  1526. msgstr "Šalis"
  1527. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:944
  1528. msgid "Country Code"
  1529. msgstr "Šalies kodas"
  1530. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:947
  1531. msgid "Coverage cell density"
  1532. msgstr ""
  1533. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:597
  1534. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2130
  1535. msgid "Create / Assign firewall-zone"
  1536. msgstr "Sukurti / Priskirti užkardos-zoną"
  1537. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1233
  1538. msgid "Create interface"
  1539. msgstr "Sukurti sąsają ir/arba sietuvą"
  1540. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:191
  1541. msgid "Critical"
  1542. msgstr "Kritinė/-is"
  1543. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:195
  1544. msgid "Cron Log Level"
  1545. msgstr ""
  1546. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:584
  1547. msgid "Current power"
  1548. msgstr "Dabartinė galia"
  1549. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:28
  1550. msgctxt "nft meta hour"
  1551. msgid "Current time"
  1552. msgstr "Dabartinis laikas"
  1553. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:29
  1554. msgctxt "nft meta day"
  1555. msgid "Current weekday"
  1556. msgstr "Dabartinė savaitės diena"
  1557. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:573
  1558. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:575
  1559. #: modules/luci-compat/luasrc/view/cbi/network_ifacelist.htm:51
  1560. #: modules/luci-compat/luasrc/view/cbi/network_ifacelist.htm:53
  1561. #: modules/luci-compat/luasrc/view/cbi/network_ifacelist.htm:82
  1562. #: modules/luci-compat/luasrc/view/cbi/network_ifacelist.htm:83
  1563. msgid "Custom Interface"
  1564. msgstr "Pasirinktinė/-is sąsają ir/arba sietuvas"
  1565. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:410
  1566. msgid ""
  1567. "Custom files (certificates, scripts) may remain on the system. To prevent "
  1568. "this, perform a factory-reset first."
  1569. msgstr ""
  1570. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/timer.js:6
  1571. msgid "Custom flash interval (kernel: timer)"
  1572. msgstr ""
  1573. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:59
  1574. msgid ""
  1575. "Customizes the behaviour of the device <abbr title=\"Light Emitting "
  1576. "Diode\">LED</abbr>s if possible."
  1577. msgstr ""
  1578. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:741
  1579. msgid "DAD transmits"
  1580. msgstr ""
  1581. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1468
  1582. msgid "DAE-Client"
  1583. msgstr "„DAE-Klientas“"
  1584. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1473
  1585. msgid "DAE-Port"
  1586. msgstr "„DAE-Prievadas“"
  1587. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1479
  1588. msgid "DAE-Secret"
  1589. msgstr "„DAE-Paslaptis“"
  1590. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:611
  1591. msgid "DHCP Options"
  1592. msgstr "„DHCP“ nustatymai/pasirinkimai"
  1593. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:500
  1594. msgid "DHCP Server"
  1595. msgstr "„DHCP“ serveris"
  1596. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:249
  1597. #: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:62
  1598. msgid "DHCP and DNS"
  1599. msgstr "„DHCP“ ir „DNS“"
  1600. #: modules/luci-base/htdocs/luci-static/resources/network.js:2091
  1601. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:16
  1602. #: modules/luci-compat/luasrc/model/network.lua:969
  1603. msgid "DHCP client"
  1604. msgstr "„DHCP“ klientas"
  1605. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:724
  1606. msgid "DHCP-Options"
  1607. msgstr "„DHCP“-Nustatymai/pasirinkimai"
  1608. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:988
  1609. msgid ""
  1610. "DHCPv4 <code>leasetime</code> is used as limit and preferred lifetime of the "
  1611. "IPv6 prefix."
  1612. msgstr ""
  1613. #: modules/luci-compat/luasrc/model/network/proto_dhcpv6.lua:7
  1614. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:7
  1615. msgid "DHCPv6 client"
  1616. msgstr "„DHCPv6“ klientas"
  1617. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:925
  1618. msgid "DHCPv6-Service"
  1619. msgstr "„DHCPv6“-Tarnyba"
  1620. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:45
  1621. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:46
  1622. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:47
  1623. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:48
  1624. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:49
  1625. msgid "DNS"
  1626. msgstr "„DNS“"
  1627. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:290
  1628. msgid "DNS forwardings"
  1629. msgstr "„DNS“ perleidimai"
  1630. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:531
  1631. msgid "DNS query port"
  1632. msgstr ""
  1633. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1008
  1634. msgid "DNS search domains"
  1635. msgstr ""
  1636. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:524
  1637. msgid "DNS server port"
  1638. msgstr "„DNS“ serverio prievadas"
  1639. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:292
  1640. msgid "DNS setting is invalid"
  1641. msgstr "„DNS“ nustatymas yra negalimas"
  1642. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1013
  1643. msgid "DNS weight"
  1644. msgstr "„DNS“ svoris"
  1645. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:33
  1646. msgid "DNS-Label / FQDN"
  1647. msgstr "„DNS-Žymė“ / „FQDN“"
  1648. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:483
  1649. msgid "DNSSEC"
  1650. msgstr "„DNSSEC“"
  1651. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:488
  1652. msgid "DNSSEC check unsigned"
  1653. msgstr "„DNSSEC“ patikrinimas nepasirašytas"
  1654. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:99
  1655. msgid "DPD Idle Timeout"
  1656. msgstr ""
  1657. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:41
  1658. msgid "DS-Lite AFTR address"
  1659. msgstr "„DS-Lite AFTR“ adresas"
  1660. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1543
  1661. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:37
  1662. msgid "DSL"
  1663. msgstr "„DSL“"
  1664. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:21
  1665. msgid "DSL Status"
  1666. msgstr "„DSL“ būsena"
  1667. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1582
  1668. msgid "DSL line mode"
  1669. msgstr "„DSL“ linijos režimas"
  1670. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1169
  1671. msgid "DTIM Interval"
  1672. msgstr "„DTIM“ intervalas"
  1673. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:59
  1674. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:903
  1675. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:136
  1676. msgid "DUID"
  1677. msgstr "„DUID“"
  1678. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:29
  1679. msgid "Data Rate"
  1680. msgstr "Duomenų dažnis"
  1681. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:76
  1682. msgid "Data Received"
  1683. msgstr "Gauta duomenų"
  1684. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:77
  1685. msgid "Data Transmitted"
  1686. msgstr "Duomenų nusiųsta"
  1687. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:186
  1688. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:197
  1689. msgid "Debug"
  1690. msgstr ""
  1691. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:814
  1692. msgid "Default router"
  1693. msgstr "Numatytas maršrutizatorius"
  1694. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/none.js:12
  1695. msgid "Default state"
  1696. msgstr "Numatyta būsena"
  1697. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:724
  1698. msgid ""
  1699. "Define additional DHCP options, for example "
  1700. "\"<code>6,192.168.2.1,192.168.2.2</code>\" which advertises different DNS "
  1701. "servers to clients."
  1702. msgstr ""
  1703. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:516
  1704. msgid ""
  1705. "Defines a mapping of Linux internal packet priority to VLAN header priority "
  1706. "but for outgoing frames"
  1707. msgstr ""
  1708. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:510
  1709. msgid ""
  1710. "Defines a mapping of VLAN header priority to the Linux internal packet "
  1711. "priority on incoming frames"
  1712. msgstr ""
  1713. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:87
  1714. msgid "Defines a specific MTU for this route"
  1715. msgstr ""
  1716. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1036
  1717. msgid "Delegate IPv6 prefixes"
  1718. msgstr ""
  1719. #: modules/luci-base/htdocs/luci-static/resources/form.js:2310
  1720. #: modules/luci-base/htdocs/luci-static/resources/form.js:2740
  1721. #: modules/luci-base/htdocs/luci-static/resources/form.js:2744
  1722. #: modules/luci-base/htdocs/luci-static/resources/form.js:3571
  1723. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2926
  1724. #: modules/luci-compat/luasrc/view/cbi/nsection.htm:11
  1725. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:162
  1726. #: modules/luci-compat/luasrc/view/cbi/tsection.htm:16
  1727. msgid "Delete"
  1728. msgstr "Ištrinti"
  1729. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:205
  1730. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:211
  1731. msgid "Delete key"
  1732. msgstr "Ištrinti raktą"
  1733. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2828
  1734. msgid "Delete request failed: %s"
  1735. msgstr "Ištrinimo prašymas nepavyko: %s"
  1736. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:899
  1737. msgid "Delete this network"
  1738. msgstr "Ištrinti šį tinklą"
  1739. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1169
  1740. msgid "Delivery Traffic Indication Message Interval"
  1741. msgstr ""
  1742. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:342
  1743. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:139
  1744. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:517
  1745. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:53
  1746. msgid "Description"
  1747. msgstr "Aprašymas"
  1748. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2922
  1749. msgid "Deselect"
  1750. msgstr "Atžymėti"
  1751. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:237
  1752. msgid "Design"
  1753. msgstr "Dizainas"
  1754. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:732
  1755. msgid "Designated master"
  1756. msgstr ""
  1757. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:160
  1758. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:386
  1759. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:71
  1760. msgid "Destination"
  1761. msgstr "Paskirties/Kelionės tikslo vieta"
  1762. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:44
  1763. msgctxt "nft ip daddr"
  1764. msgid "Destination IP"
  1765. msgstr "Paskirties/Kelionės tikslo „IP“"
  1766. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:48
  1767. msgctxt "nft ip6 daddr"
  1768. msgid "Destination IPv6"
  1769. msgstr "Paskirties/Kelionės tikslo „IPv6“"
  1770. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:48
  1771. msgid "Destination port"
  1772. msgstr "Paskirties/Kelionės tikslo prievadas"
  1773. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:46
  1774. msgctxt "nft ip dport"
  1775. msgid "Destination port"
  1776. msgstr "Galutinio tikslo/įrenginio prievadas"
  1777. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:59
  1778. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:165
  1779. msgid "Destination zone"
  1780. msgstr "Paskirties/Kelionės tikslo zona"
  1781. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:67
  1782. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:192
  1783. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:43
  1784. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:46
  1785. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:81
  1786. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:586
  1787. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1183
  1788. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1485
  1789. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:55
  1790. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:13
  1791. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:248
  1792. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:281
  1793. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:357
  1794. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:393
  1795. msgid "Device"
  1796. msgstr "Įrenginys"
  1797. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:913
  1798. msgid "Device Configuration"
  1799. msgstr "Įrenginio konfigūracija"
  1800. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:88
  1801. msgid "Device Identifier"
  1802. msgstr ""
  1803. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:132
  1804. msgid "Device is not active"
  1805. msgstr "Įrenginys nėra aktyvus"
  1806. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:233
  1807. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:650
  1808. msgid "Device is restarting…"
  1809. msgstr "Įrenginys pasileidžia iš naujo…"
  1810. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:495
  1811. msgid "Device name"
  1812. msgstr "Įrenginio vardas"
  1813. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:10
  1814. msgid "Device not managed by ModemManager."
  1815. msgstr ""
  1816. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1460
  1817. msgid "Device not present"
  1818. msgstr "Įrenginys nėra pasiekiamas"
  1819. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:395
  1820. msgid "Device type"
  1821. msgstr "Įrenginio tipas"
  1822. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4597
  1823. msgid "Device unreachable!"
  1824. msgstr "Įrenginys nepasiekiamas!"
  1825. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:53
  1826. msgid "Device unreachable! Still waiting for device..."
  1827. msgstr "Įrenginys nepasiekiamas! Vis dar laukiama įrenginio..."
  1828. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1308
  1829. msgid "Devices"
  1830. msgstr "Įrenginiai"
  1831. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:159
  1832. #: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:76
  1833. msgid "Diagnostics"
  1834. msgstr "Diagnostika"
  1835. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:114
  1836. msgid "Dial number"
  1837. msgstr "Surinkti numerį"
  1838. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2724
  1839. msgid "Directory"
  1840. msgstr "Katalogas"
  1841. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:114
  1842. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:201
  1843. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:891
  1844. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:931
  1845. msgid "Disable"
  1846. msgstr "Išjungti"
  1847. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:683
  1848. msgid ""
  1849. "Disable <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</abbr> for "
  1850. "this interface."
  1851. msgstr ""
  1852. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:174
  1853. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:375
  1854. msgid "Disable DNS lookups"
  1855. msgstr ""
  1856. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:93
  1857. msgid "Disable Encryption"
  1858. msgstr "Išjungti šifravimas"
  1859. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1179
  1860. msgid "Disable Inactivity Polling"
  1861. msgstr ""
  1862. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:889
  1863. msgid "Disable this network"
  1864. msgstr ""
  1865. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:948
  1866. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1439
  1867. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1630
  1868. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1778
  1869. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:13
  1870. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:66
  1871. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:121
  1872. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:108
  1873. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:117
  1874. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:114
  1875. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:52
  1876. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:97
  1877. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:83
  1878. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:57
  1879. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:70
  1880. msgid "Disabled"
  1881. msgstr "Išjungtas/-i"
  1882. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:541
  1883. msgctxt "Label indicating that WireGuard peer is disabled"
  1884. msgid "Disabled"
  1885. msgstr "Išjungtas/-i"
  1886. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1193
  1887. msgid "Disassociate On Low Acknowledgement"
  1888. msgstr ""
  1889. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:313
  1890. msgid ""
  1891. "Discard upstream responses containing <a href=\"%s\">RFC1918</a> addresses."
  1892. msgstr ""
  1893. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:198
  1894. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:716
  1895. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:336
  1896. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:351
  1897. msgid "Disconnect"
  1898. msgstr "Atsijungti"
  1899. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:64
  1900. msgid "Disconnection attempt failed"
  1901. msgstr ""
  1902. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:13
  1903. msgid "Disconnection attempt failed."
  1904. msgstr ""
  1905. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:35
  1906. msgid "Disk space"
  1907. msgstr "Disko talpa"
  1908. #: modules/luci-base/htdocs/luci-static/resources/form.js:611
  1909. #: modules/luci-base/htdocs/luci-static/resources/form.js:3022
  1910. #: modules/luci-base/htdocs/luci-static/resources/form.js:3269
  1911. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3715
  1912. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4568
  1913. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1864
  1914. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:358
  1915. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:45
  1916. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:66
  1917. msgid "Dismiss"
  1918. msgstr "Nepaisyti"
  1919. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:953
  1920. msgid "Distance Optimization"
  1921. msgstr "Atstumo optimizacija"
  1922. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:953
  1923. msgid "Distance to farthest network member in meters."
  1924. msgstr ""
  1925. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:75
  1926. msgid "Distributed ARP Table"
  1927. msgstr ""
  1928. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:931
  1929. msgid ""
  1930. "Dnsmasq instance to which this DHCP host section is bound. If unspecified, "
  1931. "the section is valid for all dnsmasq instances."
  1932. msgstr ""
  1933. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:629
  1934. msgid ""
  1935. "Dnsmasq instance to which this boot section is bound. If unspecified, the "
  1936. "section is valid for all dnsmasq instances."
  1937. msgstr ""
  1938. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:250
  1939. msgid ""
  1940. "Dnsmasq is a lightweight <abbr title=\"Dynamic Host Configuration "
  1941. "Protocol\">DHCP</abbr> server and <abbr title=\"Domain Name System\">DNS</"
  1942. "abbr> forwarder."
  1943. msgstr ""
  1944. "„Dnsmasq“ yra lengvai vežamas <abbr title=\"Dynamic Host Configuration "
  1945. "Protocol\">„DHCP“</abbr> serveris ir <abbr title=\"Domain Name "
  1946. "System\">„DNS“</abbr> persiuntėjas..."
  1947. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:500
  1948. msgid "Do not cache negative replies, e.g. for non-existent domains."
  1949. msgstr ""
  1950. "Nesaugoti talpykloje neigiamų atsakų, pvz: neegzistuojantys domenai-sritys."
  1951. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:86
  1952. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:91
  1953. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:88
  1954. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:93
  1955. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:70
  1956. msgid "Do not create host route to peer (optional)."
  1957. msgstr ""
  1958. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:270
  1959. msgid "Do not forward DNS queries without dots or domain parts."
  1960. msgstr ""
  1961. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:458
  1962. msgid "Do not forward reverse lookups for local networks."
  1963. msgstr ""
  1964. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:350
  1965. msgid "Do not listen on the specified interfaces."
  1966. msgstr ""
  1967. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:928
  1968. msgid "Do not offer DHCPv6 service on this interface."
  1969. msgstr ""
  1970. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:964
  1971. msgid ""
  1972. "Do not proxy any <abbr title=\"Neighbour Discovery Protocol\">NDP</abbr> "
  1973. "packets."
  1974. msgstr ""
  1975. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:25
  1976. msgid "Do not send a hostname"
  1977. msgstr ""
  1978. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:806
  1979. msgid ""
  1980. "Do not send any <abbr title=\"Router Advertisement, ICMPv6 Type 134\">RA</"
  1981. "abbr> messages on this interface."
  1982. msgstr ""
  1983. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2814
  1984. msgid "Do you really want to delete \"%s\" ?"
  1985. msgstr ""
  1986. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:206
  1987. msgid "Do you really want to delete the following SSH key?"
  1988. msgstr ""
  1989. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:94
  1990. msgid "Do you really want to erase all settings?"
  1991. msgstr ""
  1992. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2812
  1993. msgid "Do you really want to recursively delete the directory \"%s\" ?"
  1994. msgstr ""
  1995. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:613
  1996. msgid "Do you want to replace the current PSK?"
  1997. msgstr ""
  1998. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:100
  1999. msgid "Do you want to replace the current keys?"
  2000. msgstr ""
  2001. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:687
  2002. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:713
  2003. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:766
  2004. msgid "Domain"
  2005. msgstr "Domenas-Sritis"
  2006. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:269
  2007. msgid "Domain required"
  2008. msgstr "Reikalingas domenas-sritis"
  2009. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:322
  2010. msgid "Domain whitelist"
  2011. msgstr ""
  2012. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:83
  2013. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:88
  2014. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:67
  2015. msgid "Don't Fragment"
  2016. msgstr ""
  2017. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:152
  2018. msgid "Down"
  2019. msgstr "Žemyn"
  2020. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:403
  2021. msgid "Down Delay"
  2022. msgstr ""
  2023. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:394
  2024. msgid "Download backup"
  2025. msgstr ""
  2026. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:432
  2027. msgid "Download mtdblock"
  2028. msgstr "Atsisiųsti „mtdblock“"
  2029. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1587
  2030. msgid "Downstream SNR offset"
  2031. msgstr ""
  2032. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:435
  2033. msgid ""
  2034. "Drag or paste a valid <em>*.conf</em> file below to configure the local "
  2035. "WireGuard interface."
  2036. msgstr ""
  2037. #: modules/luci-base/htdocs/luci-static/resources/form.js:2698
  2038. msgid "Drag to reorder"
  2039. msgstr ""
  2040. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:342
  2041. msgid "Drop Duplicate Frames"
  2042. msgstr ""
  2043. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:710
  2044. msgid ""
  2045. "Drop all gratuitous ARP frames, for example if there’s a known good ARP "
  2046. "proxy on the network and such frames need not be used or in the case of "
  2047. "802.11, must not be used to prevent attacks."
  2048. msgstr ""
  2049. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:733
  2050. msgid ""
  2051. "Drop all unsolicited neighbor advertisements, for example if there’s a known "
  2052. "good NA proxy on the network and such frames need not be used or in the case "
  2053. "of 802.11, must not be used to prevent attacks."
  2054. msgstr ""
  2055. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:710
  2056. msgid "Drop gratuitous ARP"
  2057. msgstr ""
  2058. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:787
  2059. msgid "Drop layer 2 multicast frames containing IPv4 unicast packets."
  2060. msgstr ""
  2061. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:791
  2062. msgid "Drop layer 2 multicast frames containing IPv6 unicast packets."
  2063. msgstr ""
  2064. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:787
  2065. msgid "Drop nested IPv4 unicast"
  2066. msgstr ""
  2067. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:791
  2068. msgid "Drop nested IPv6 unicast"
  2069. msgstr ""
  2070. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:96
  2071. msgctxt "nft drop action"
  2072. msgid "Drop packet"
  2073. msgstr ""
  2074. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:546
  2075. msgctxt "Chain policy: drop"
  2076. msgid "Drop unmatched packets"
  2077. msgstr ""
  2078. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:733
  2079. msgid "Drop unsolicited NA"
  2080. msgstr ""
  2081. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:12
  2082. msgid "Dropbear Instance"
  2083. msgstr ""
  2084. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:10
  2085. msgid ""
  2086. "Dropbear offers <abbr title=\"Secure Shell\">SSH</abbr> network shell access "
  2087. "and an integrated <abbr title=\"Secure Copy\">SCP</abbr> server"
  2088. msgstr ""
  2089. #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:14
  2090. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:11
  2091. msgid "Dual-Stack Lite (RFC6333)"
  2092. msgstr ""
  2093. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:700
  2094. msgid "Dynamic <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</abbr>"
  2095. msgstr ""
  2096. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1468
  2097. msgid "Dynamic Authorization Extension client."
  2098. msgstr ""
  2099. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1473
  2100. msgid "Dynamic Authorization Extension port."
  2101. msgstr ""
  2102. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1479
  2103. msgid "Dynamic Authorization Extension secret."
  2104. msgstr ""
  2105. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:60
  2106. msgid "Dynamic tunnel"
  2107. msgstr ""
  2108. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:700
  2109. msgid ""
  2110. "Dynamically allocate DHCP addresses for clients. If disabled, only clients "
  2111. "having static leases will be served."
  2112. msgstr ""
  2113. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1463
  2114. msgid "E.g. <code>br-vlan</code> or <code>brvlan</code>."
  2115. msgstr "Pvz: <code>br-vlan</code> arba <code>brvlan</code>."
  2116. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1453
  2117. msgid "E.g. eth0, eth1"
  2118. msgstr "Pvz: „eth01“, „eth2“"
  2119. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:67
  2120. msgid "EA-bits length"
  2121. msgstr "„EA-bit'ų“ ilgis"
  2122. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1662
  2123. msgid "EAP-Method"
  2124. msgstr "„EAP-Metodas“"
  2125. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1446
  2126. msgid "Each STA is assigned its own AP_VLAN interface."
  2127. msgstr ""
  2128. #: modules/luci-base/htdocs/luci-static/resources/form.js:2718
  2129. #: modules/luci-base/htdocs/luci-static/resources/form.js:2721
  2130. #: modules/luci-base/htdocs/luci-static/resources/form.js:3434
  2131. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:154
  2132. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:160
  2133. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:512
  2134. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:896
  2135. msgid "Edit"
  2136. msgstr "Redaguoti"
  2137. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:226
  2138. msgid "Edit peer"
  2139. msgstr "Redaguoti lygiarangį"
  2140. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:782
  2141. msgid "Edit static lease"
  2142. msgstr ""
  2143. #: modules/luci-compat/luasrc/view/cbi/error.htm:13
  2144. msgid ""
  2145. "Edit the raw configuration data above to fix any error and hit \"Save\" to "
  2146. "reload the page."
  2147. msgstr ""
  2148. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:894
  2149. msgid "Edit this network"
  2150. msgstr "Redaguoti šį tinklą"
  2151. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:845
  2152. msgid "Edit wireless network"
  2153. msgstr "Redaguoti šį belaidį tinklą"
  2154. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:65
  2155. msgctxt "nft rt mtu"
  2156. msgid "Effective route MTU"
  2157. msgstr ""
  2158. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:516
  2159. msgid "Egress QoS mapping"
  2160. msgstr ""
  2161. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:12
  2162. msgctxt "nft meta oif"
  2163. msgid "Egress device id"
  2164. msgstr ""
  2165. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:10
  2166. msgctxt "nft meta oifname"
  2167. msgid "Egress device name"
  2168. msgstr ""
  2169. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:193
  2170. msgid "Emergency"
  2171. msgstr "Kritinė situacija"
  2172. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:891
  2173. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:931
  2174. msgid "Enable"
  2175. msgstr "Įjungti"
  2176. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:513
  2177. msgid "Enable / Disable peer. Restart wireguard interface to apply changes."
  2178. msgstr ""
  2179. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:592
  2180. msgid ""
  2181. "Enable <abbr title=\"Internet Group Management Protocol\">IGMP</abbr> "
  2182. "snooping"
  2183. msgstr ""
  2184. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:572
  2185. msgid "Enable <abbr title=\"Spanning Tree Protocol\">STP</abbr>"
  2186. msgstr "Įjungti <abbr title=\"Spanning Tree Protocol\">„STP“</abbr>"
  2187. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:825
  2188. msgid "Enable <abbr title=\"Stateless Address Auto Config\">SLAAC</abbr>"
  2189. msgstr "Įjungti <abbr title=\"Stateless Address Auto Config\">„SLAAC“</abbr>"
  2190. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:174
  2191. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:369
  2192. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:375
  2193. msgid "Enable DNS lookups"
  2194. msgstr ""
  2195. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:294
  2196. msgid "Enable Dynamic Shuffling Of Flows"
  2197. msgstr ""
  2198. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:60
  2199. msgid "Enable HE.net dynamic endpoint update"
  2200. msgstr ""
  2201. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:725
  2202. msgid "Enable IPv6"
  2203. msgstr "Įgalinti „IPv6“"
  2204. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:101
  2205. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:101
  2206. msgid "Enable IPv6 negotiation"
  2207. msgstr ""
  2208. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:49
  2209. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:94
  2210. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:80
  2211. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:54
  2212. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:67
  2213. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:93
  2214. msgid "Enable IPv6 negotiation on the PPP link"
  2215. msgstr ""
  2216. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:729
  2217. msgid "Enable IPv6 segment routing"
  2218. msgstr ""
  2219. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:194
  2220. msgid "Enable Jumbo Frame passthrough"
  2221. msgstr ""
  2222. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:764
  2223. msgid "Enable MAC address learning"
  2224. msgstr "Įgalinti „MAC“ adreso mokymą"
  2225. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:257
  2226. msgid "Enable NTP client"
  2227. msgstr "Įjungti „NTP“ klientą"
  2228. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:96
  2229. msgid "Enable Single DES"
  2230. msgstr "Įjungti vienetinį „DES“"
  2231. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:566
  2232. msgid "Enable TFTP server"
  2233. msgstr "Įjungti „TFTP“ serverį"
  2234. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:796
  2235. msgid "Enable VLAN filtering"
  2236. msgstr "Įjungti „VLAN“ filtravimą"
  2237. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:184
  2238. msgid "Enable VLAN functionality"
  2239. msgstr "Įjungti/Įgalinti „VLAN“ funkcija/veiksmumą"
  2240. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1814
  2241. msgid "Enable WPS pushbutton, requires WPA(2)-PSK/WPA3-SAE"
  2242. msgstr "Įjungti „WPS“ mygtuko paspaudimą, reikalaują „WPA(2)-PSK“/„WPA3-SAE“"
  2243. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/uhttpd.js:14
  2244. msgid ""
  2245. "Enable automatic redirection of <abbr title=\"Hypertext Transfer "
  2246. "Protocol\">HTTP</abbr> requests to <abbr title=\"Hypertext Transfer Protocol "
  2247. "Secure\">HTTPS</abbr> port."
  2248. msgstr ""
  2249. "Įgalinti automatinį persiuntimą <abbr title=\"Hypertext Transfer "
  2250. "Protocol\">„HTTP“</abbr> užklausas į <abbr title=\"Hypertext Transfer "
  2251. "Protocol Secure\">„HTTPS“</abbr> prievadą."
  2252. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1036
  2253. msgid ""
  2254. "Enable downstream delegation of IPv6 prefixes available on this interface"
  2255. msgstr ""
  2256. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1810
  2257. msgid "Enable key reinstallation (KRACK) countermeasures"
  2258. msgstr ""
  2259. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:189
  2260. msgid "Enable learning and aging"
  2261. msgstr "Įjungti pamokymą ir senstelėjimą"
  2262. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:200
  2263. msgid "Enable mirroring of incoming packets"
  2264. msgstr ""
  2265. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:201
  2266. msgid "Enable mirroring of outgoing packets"
  2267. msgstr ""
  2268. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:783
  2269. msgid "Enable multicast fast leave"
  2270. msgstr ""
  2271. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:601
  2272. msgid "Enable multicast querier"
  2273. msgstr ""
  2274. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:747
  2275. msgid "Enable multicast support"
  2276. msgstr ""
  2277. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1538
  2278. msgid ""
  2279. "Enable packet steering across all CPUs. May help or hinder network speed."
  2280. msgstr ""
  2281. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:676
  2282. msgid "Enable promiscuous mode"
  2283. msgstr ""
  2284. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:71
  2285. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:66
  2286. msgid "Enable rx checksum"
  2287. msgstr ""
  2288. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:89
  2289. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:94
  2290. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:91
  2291. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:96
  2292. msgid "Enable support for multicast traffic (optional)."
  2293. msgstr ""
  2294. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:83
  2295. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:88
  2296. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:67
  2297. msgid "Enable the DF (Don't Fragment) flag of the encapsulating packets."
  2298. msgstr ""
  2299. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:567
  2300. msgid "Enable the built-in single-instance TFTP server."
  2301. msgstr ""
  2302. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:889
  2303. msgid "Enable this network"
  2304. msgstr "Įjungti šį tinklą"
  2305. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:75
  2306. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:70
  2307. msgid "Enable tx checksum"
  2308. msgstr ""
  2309. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:767
  2310. msgid "Enable unicast flooding"
  2311. msgstr ""
  2312. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1631
  2313. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:243
  2314. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:353
  2315. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:66
  2316. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:109
  2317. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:118
  2318. msgid "Enabled"
  2319. msgstr "Įjungta"
  2320. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:592
  2321. msgid "Enables IGMP snooping on this bridge"
  2322. msgstr ""
  2323. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1551
  2324. msgid ""
  2325. "Enables fast roaming among access points that belong to the same Mobility "
  2326. "Domain"
  2327. msgstr ""
  2328. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:100
  2329. msgid ""
  2330. "Enables more efficient, group aware multicast forwarding infrastructure in "
  2331. "batman-adv."
  2332. msgstr ""
  2333. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:572
  2334. msgid "Enables the Spanning Tree Protocol on this bridge"
  2335. msgstr ""
  2336. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:59
  2337. msgid "Encapsulation limit"
  2338. msgstr ""
  2339. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1577
  2340. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1635
  2341. msgid "Encapsulation mode"
  2342. msgstr ""
  2343. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:159
  2344. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:183
  2345. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1198
  2346. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1842
  2347. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:150
  2348. msgid "Encryption"
  2349. msgstr "Šifravimas"
  2350. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:55
  2351. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:75
  2352. msgid "Endpoint"
  2353. msgstr "Galutinis taškas"
  2354. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:662
  2355. msgid "Endpoint Host"
  2356. msgstr "Galūtinio taško p.k – vedėjas"
  2357. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:678
  2358. msgid "Endpoint Port"
  2359. msgstr "Galūtinio taško prievadas"
  2360. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:325
  2361. msgid "Endpoint setting is invalid"
  2362. msgstr "Galūtinio taško nustatymas yra negalimas"
  2363. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:752
  2364. msgid "Enforce IGMPv1"
  2365. msgstr "Įsteigti „IGMPv1“"
  2366. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:753
  2367. msgid "Enforce IGMPv2"
  2368. msgstr "Įsteigti „IGMPv2“"
  2369. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:754
  2370. msgid "Enforce IGMPv3"
  2371. msgstr "Įsteigti „IGMPv3“"
  2372. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:759
  2373. msgid "Enforce MLD version 1"
  2374. msgstr "Įsteigti „MLD versija 1“"
  2375. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:760
  2376. msgid "Enforce MLD version 2"
  2377. msgstr "Įsteigti „MLD versija 2“"
  2378. #: modules/luci-compat/luasrc/view/cbi/dropdown.htm:16
  2379. msgid "Enter custom value"
  2380. msgstr "Įvesti pasirinktinę reikšmę"
  2381. #: modules/luci-compat/luasrc/view/cbi/dropdown.htm:16
  2382. msgid "Enter custom values"
  2383. msgstr "Įvesti pasirinktines reikšmes"
  2384. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:97
  2385. msgid "Erasing..."
  2386. msgstr "Šalinama..."
  2387. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:103
  2388. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:104
  2389. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:105
  2390. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:106
  2391. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:107
  2392. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:190
  2393. msgid "Error"
  2394. msgstr "Klaida"
  2395. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:170
  2396. msgid "Error getting PublicKey"
  2397. msgstr "Klaida gaunant „Viešasis Raktas“"
  2398. #: modules/luci-base/htdocs/luci-static/resources/network.js:3008
  2399. #: modules/luci-compat/luasrc/model/network.lua:1433
  2400. msgid "Ethernet Adapter"
  2401. msgstr "Eterneto tinklo plokštė"
  2402. #: modules/luci-base/htdocs/luci-static/resources/network.js:2999
  2403. #: modules/luci-compat/luasrc/model/network.lua:1423
  2404. msgid "Ethernet Switch"
  2405. msgstr "Eterneto tinklo komutatorius"
  2406. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:272
  2407. msgid "Every 30 seconds (slow, 0)"
  2408. msgstr "Kas trisdešimt (30) sekundžių (lėtai, 0)"
  2409. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:273
  2410. msgid "Every second (fast, 1)"
  2411. msgstr "Kas sekundę (greitai, 1)"
  2412. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:349
  2413. msgid "Exclude interfaces"
  2414. msgstr "Neįtraukti sąsajų ir sietuvų"
  2415. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:160
  2416. msgid ""
  2417. "Execution of various network commands to check the connection and name "
  2418. "resolution to other systems."
  2419. msgstr ""
  2420. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:318
  2421. msgid ""
  2422. "Exempt <code>127.0.0.0/8</code> and <code>::1</code> from rebinding checks, "
  2423. "e.g. for RBL services."
  2424. msgstr ""
  2425. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:410
  2426. msgid "Existing device"
  2427. msgstr "Egzistuojantis įrenginys"
  2428. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:495
  2429. msgid "Expand hosts"
  2430. msgstr "Papildyti skleidėjų/p.k – vedėjų"
  2431. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:399
  2432. msgid "Expected port number."
  2433. msgstr "Tikėtinas prievado skaičius."
  2434. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1053
  2435. msgid "Expecting a hexadecimal assignment hint"
  2436. msgstr ""
  2437. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:19
  2438. msgid "Expecting a valid IPv4 address"
  2439. msgstr ""
  2440. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:19
  2441. msgid "Expecting a valid IPv6 address"
  2442. msgstr ""
  2443. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:808
  2444. msgid "Expecting a valid MAC address, optionally including wildcards"
  2445. msgstr ""
  2446. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:29
  2447. msgid "Expecting two priority values separated by a colon"
  2448. msgstr ""
  2449. #: modules/luci-base/htdocs/luci-static/resources/form.js:2269
  2450. #: modules/luci-base/htdocs/luci-static/resources/validation.js:64
  2451. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:127
  2452. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:133
  2453. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:161
  2454. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:177
  2455. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:181
  2456. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:185
  2457. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:188
  2458. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:192
  2459. msgid "Expecting: %s"
  2460. msgstr ""
  2461. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:50
  2462. msgid "Expecting: non-empty value"
  2463. msgstr ""
  2464. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:50
  2465. msgid "Expires"
  2466. msgstr "Baigia galioti"
  2467. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:696
  2468. msgid ""
  2469. "Expiry time of leased addresses, minimum is 2 minutes (<code>2m</code>)."
  2470. msgstr ""
  2471. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:19
  2472. msgid "External"
  2473. msgstr "Išorinis"
  2474. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1602
  2475. msgid "External R0 Key Holder List"
  2476. msgstr "Išorinio „R0“ rakto laikytojo sąrašas"
  2477. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1606
  2478. msgid "External R1 Key Holder List"
  2479. msgstr "Išorinio „R1“ rakto laikytojo sąrašas"
  2480. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:167
  2481. msgid "External system log server"
  2482. msgstr "Išorinės sistemos žurnalo serveris"
  2483. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:172
  2484. msgid "External system log server port"
  2485. msgstr "Išorinės sistemos žurnalo serverio prievadas"
  2486. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:177
  2487. msgid "External system log server protocol"
  2488. msgstr "Išorinės sistemos žurnalo serverio protokolas"
  2489. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:79
  2490. msgid "Extra SSH command options"
  2491. msgstr "Papildomi „SSH“ komandos pasirinkimai"
  2492. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:68
  2493. msgid "Extra pppd options"
  2494. msgstr "Papildomi „pppd“ pasirinkimai"
  2495. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:66
  2496. msgid "Extra sstpc options"
  2497. msgstr "Papildomi „sstpc“ pasirinkimai"
  2498. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1577
  2499. msgid "FT over DS"
  2500. msgstr "„FT per DS“"
  2501. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1576
  2502. msgid "FT over the Air"
  2503. msgstr "„FT per orą“"
  2504. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1574
  2505. msgid "FT protocol"
  2506. msgstr "„FT“ protokolas"
  2507. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:91
  2508. msgid "Failed Reason"
  2509. msgstr "Priežastis, kodėl nepavyko"
  2510. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:87
  2511. msgid "Failed to change the system password."
  2512. msgstr "Nepavyko pakeisti sistemos slaptažodžio."
  2513. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:21
  2514. msgid "Failed to configure modem"
  2515. msgstr "Nepavyko konfigūruoti modemą"
  2516. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4556
  2517. msgid "Failed to confirm apply within %ds, waiting for rollback…"
  2518. msgstr ""
  2519. "Nepavyko patvirtinti įgalimą vidun/per %ds, laukiama, kol bus sugrąžintą…"
  2520. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:22
  2521. msgid "Failed to connect"
  2522. msgstr "Nepavyko prisijungti"
  2523. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:23
  2524. msgid "Failed to disconnect"
  2525. msgstr "Nepavyko atsijungti"
  2526. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:37
  2527. msgid "Failed to execute \"/etc/init.d/%s %s\" action: %s"
  2528. msgstr "Nepavyko vykdyti „/etc/init.d/%s %s“ veiksmą: %s"
  2529. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:25
  2530. msgid "Failed to get modem information"
  2531. msgstr "Nepavyko gauti modemo informacijos"
  2532. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:26
  2533. msgid "Failed to initialize modem"
  2534. msgstr "Nepavyko paleisti modemo"
  2535. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:30
  2536. msgid "Failed to set operating mode"
  2537. msgstr "Nepavyko nustatyti operavimo režimo"
  2538. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2732
  2539. msgid "File"
  2540. msgstr "Failas"
  2541. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:504
  2542. msgid ""
  2543. "File listing upstream resolvers, optionally domain-specific, e.g. "
  2544. "<code>server=1.2.3.4</code>, <code>server=/domain/1.2.3.4</code>."
  2545. msgstr ""
  2546. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2679
  2547. msgid "File not accessible"
  2548. msgstr "Failas nepasiekiamas"
  2549. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:424
  2550. msgid "File to store DHCP lease information."
  2551. msgstr "Failas, skirtas laikyti „DHCP“ nuomos informaciją."
  2552. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:432
  2553. msgid "File with upstream resolvers."
  2554. msgstr ""
  2555. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2870
  2556. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:593
  2557. msgid "Filename"
  2558. msgstr "Failo pavadinimas"
  2559. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:579
  2560. msgid "Filename of the boot image advertised to clients."
  2561. msgstr ""
  2562. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:191
  2563. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:315
  2564. msgid "Filesystem"
  2565. msgstr "Failų sistema"
  2566. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:473
  2567. msgid "Filter IPv4 A records"
  2568. msgstr "Filtruoti „IPv4 A“ įrašus"
  2569. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:467
  2570. msgid "Filter IPv6 AAAA records"
  2571. msgstr "Filtruoti „IPv6 AAAA“ įrašus"
  2572. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:462
  2573. msgid "Filter SRV/SOA service discovery"
  2574. msgstr "Filtruoti „SRV/SOA“ tarnybos atradimą"
  2575. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:457
  2576. msgid "Filter private"
  2577. msgstr "Filtruoti privatūs"
  2578. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:389
  2579. msgid "Filtering for all slaves, no validation"
  2580. msgstr ""
  2581. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:390
  2582. msgid "Filtering for all slaves, validation only for active slave"
  2583. msgstr ""
  2584. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:391
  2585. msgid "Filtering for all slaves, validation only for backup slaves"
  2586. msgstr ""
  2587. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:463
  2588. msgid ""
  2589. "Filters SRV/SOA service discovery, to avoid triggering dial-on-demand links."
  2590. msgstr ""
  2591. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:65
  2592. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:24
  2593. msgid "Finalizing failed"
  2594. msgstr ""
  2595. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:150
  2596. msgid ""
  2597. "Find all currently attached filesystems and swap and replace configuration "
  2598. "with defaults based on what was detected"
  2599. msgstr ""
  2600. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:872
  2601. msgid "Find and join network"
  2602. msgstr "Surasti ir prisijungti prie tinklo"
  2603. #: modules/luci-compat/luasrc/view/cbi/delegator.htm:9
  2604. msgid "Finish"
  2605. msgstr "Baigti"
  2606. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:27
  2607. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:43
  2608. msgid "Firewall"
  2609. msgstr "Užkarda"
  2610. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:201
  2611. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:39
  2612. msgid "Firewall Mark"
  2613. msgstr "Užkardos Žymė"
  2614. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:499
  2615. msgid "Firewall Settings"
  2616. msgstr "Užkardos nustatymai"
  2617. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:326
  2618. msgid "Firewall Status"
  2619. msgstr "Užkardos būklė/būsena"
  2620. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:177
  2621. msgid "Firewall mark"
  2622. msgstr "Užkardos žymė"
  2623. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1594
  2624. msgid "Firmware File"
  2625. msgstr "Programinės įrangos failas"
  2626. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:59
  2627. msgid "Firmware Version"
  2628. msgstr "Programinės įrangos versija"
  2629. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:532
  2630. msgid "Fixed source port for outbound DNS queries."
  2631. msgstr ""
  2632. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:312
  2633. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:449
  2634. msgid "Flash image..."
  2635. msgstr ""
  2636. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:308
  2637. msgid "Flash image?"
  2638. msgstr ""
  2639. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:439
  2640. msgid "Flash new firmware image"
  2641. msgstr ""
  2642. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:384
  2643. msgid "Flash operations"
  2644. msgstr ""
  2645. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:317
  2646. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:319
  2647. msgid "Flashing…"
  2648. msgstr "Įrašoma laikmeną…"
  2649. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:988
  2650. msgid "Follow IPv4 Lifetime"
  2651. msgstr ""
  2652. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:623
  2653. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:703
  2654. msgid "Force"
  2655. msgstr "Priversti"
  2656. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:965
  2657. msgid "Force 40MHz mode"
  2658. msgstr "Priversti 40Mhz režimą"
  2659. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1239
  2660. msgid "Force CCMP (AES)"
  2661. msgstr "Priversti „CCMP („AES“)“"
  2662. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:703
  2663. msgid "Force DHCP on this network even if another server is detected."
  2664. msgstr ""
  2665. "Priversti „DHCP“ naudojimą šiame tinkle, net jeigu kitas serveris yra "
  2666. "aptiktas."
  2667. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:750
  2668. msgid "Force IGMP version"
  2669. msgstr "Priversti „IGMP“ versiją"
  2670. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:757
  2671. msgid "Force MLD version"
  2672. msgstr "Priversti „MLD“ versiją"
  2673. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1240
  2674. msgid "Force TKIP"
  2675. msgstr "Priversti „TKIP“"
  2676. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1241
  2677. msgid "Force TKIP and CCMP (AES)"
  2678. msgstr "Priversti „TKIP“ ir „CCMP („AES“)“"
  2679. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:941
  2680. msgid "Force broadcast DHCP response."
  2681. msgstr "Priversti, kad „DHCP“ transliuotu atsaką."
  2682. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1299
  2683. msgid "Force link"
  2684. msgstr "Priversti pririšimą"
  2685. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:281
  2686. msgid "Force upgrade"
  2687. msgstr "Priversti aukštutinį atnaujinimą"
  2688. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:90
  2689. msgid "Force use of NAT-T"
  2690. msgstr "Priversti „NAT-T“ naudojimą"
  2691. #: modules/luci-base/ucode/template/csrftoken.ut:8
  2692. msgid "Form token mismatch"
  2693. msgstr ""
  2694. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:966
  2695. msgid ""
  2696. "Forward <abbr title=\"Neighbour Discovery Protocol\">NDP</abbr> <abbr "
  2697. "title=\"Neighbour Solicitation, Type 135\">NS</abbr> and <abbr "
  2698. "title=\"Neighbour Advertisement, Type 136\">NA</abbr> messages between the "
  2699. "designated master interface and downstream interfaces."
  2700. msgstr ""
  2701. "Persiųsti <abbr title=\"Neighbour Discovery Protocol\">„NDP“</abbr> <abbr "
  2702. "title=\"Neighbour Solicitation, Type 135\">„NS“</abbr> ir <abbr "
  2703. "title=\"Neighbour Advertisement, Type 136\">„NA“</abbr> pranešimus tarp "
  2704. "nustatytos aukštumos sąsajos ir/arba sietuvų, bei atsiuntimo srautu."
  2705. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:810
  2706. msgid ""
  2707. "Forward <abbr title=\"Router Advertisement, ICMPv6 Type 134\">RA</abbr> "
  2708. "messages received on the designated master interface to downstream "
  2709. "interfaces."
  2710. msgstr ""
  2711. "Persiųsti <abbr title=\"Router Advertisement, ICMPv6 Type 134\">„RA“</abbr> "
  2712. "gautus pranešimus nustatytame aukštumos sąsajos ir/arba sietuvų, bei "
  2713. "atsiuntimo srautu."
  2714. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:164
  2715. msgid "Forward DHCP traffic"
  2716. msgstr "Persiųsti „DHCP“ srautą"
  2717. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:932
  2718. msgid ""
  2719. "Forward DHCPv6 messages between the designated master interface and "
  2720. "downstream interfaces."
  2721. msgstr ""
  2722. "Persiųsti „DHCPv6“ pranešimus tarp nustatytų aukštumos sąsajos ir/arba "
  2723. "sietuvų, bei atsiuntimo srautų."
  2724. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:161
  2725. msgid "Forward broadcast traffic"
  2726. msgstr ""
  2727. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:581
  2728. msgid "Forward delay"
  2729. msgstr ""
  2730. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:993
  2731. msgid "Forward mesh peer traffic"
  2732. msgstr ""
  2733. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:779
  2734. msgid "Forward multicast packets as unicast packets on this device."
  2735. msgstr ""
  2736. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:944
  2737. msgid "Forward/reverse DNS"
  2738. msgstr ""
  2739. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1642
  2740. msgid "Forwarding mode"
  2741. msgstr ""
  2742. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:80
  2743. msgid "Fragmentation"
  2744. msgstr "Fragmentavimas/-cija"
  2745. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:957
  2746. msgid "Fragmentation Threshold"
  2747. msgstr "Fragmentacijos/-vimo slenkstis"
  2748. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:62
  2749. msgctxt "nft nat flag fully-random"
  2750. msgid "Full port randomization"
  2751. msgstr "Viso/Pilno prievado atsitiktinių imčių nustatymas"
  2752. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:214
  2753. msgid ""
  2754. "Further information about WireGuard interfaces and peers at <a href='http://"
  2755. "wireguard.com'>wireguard.com</a>."
  2756. msgstr ""
  2757. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:128
  2758. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:184
  2759. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:170
  2760. msgid "GHz"
  2761. msgstr "GHz"
  2762. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:92
  2763. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:82
  2764. msgid "GPRS only"
  2765. msgstr "Tik „GPRS“"
  2766. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:10
  2767. msgid "GRE tunnel over IPv4"
  2768. msgstr "„GRE“ tunelis per „IPv4“"
  2769. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:10
  2770. msgid "GRE tunnel over IPv6"
  2771. msgstr "„GRE“ tunelis per „IPv6“"
  2772. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:10
  2773. msgid "GRETAP tunnel over IPv4"
  2774. msgstr "„GRETAP“ tunelis per „IPv4“"
  2775. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:10
  2776. msgid "GRETAP tunnel over IPv6"
  2777. msgstr "„GRETAP“ tunelis per „IPv6“"
  2778. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:76
  2779. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:44
  2780. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:188
  2781. msgid "Gateway"
  2782. msgstr "Tinklo tarpuvartė"
  2783. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:85
  2784. msgid "Gateway Mode"
  2785. msgstr "Tinklo tarpuvartės režimas"
  2786. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:36
  2787. msgid "Gateway Ports"
  2788. msgstr "Tinklo tarpuvartės prievadai"
  2789. #: modules/luci-base/htdocs/luci-static/resources/network.js:11
  2790. #: modules/luci-compat/luasrc/model/network.lua:29
  2791. msgid "Gateway address is invalid"
  2792. msgstr "Tinklo tarpuvartės adresas yra negalimas"
  2793. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:256
  2794. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:494
  2795. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:38
  2796. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:127
  2797. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:240
  2798. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:122
  2799. msgid "General Settings"
  2800. msgstr "Bendri nustatymai"
  2801. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:649
  2802. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1629
  2803. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:917
  2804. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:979
  2805. msgid "General Setup"
  2806. msgstr "Bendra sąranka"
  2807. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:390
  2808. msgid "General device options"
  2809. msgstr "Bendri įrenginio pasirinkimai"
  2810. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:150
  2811. msgid "Generate Config"
  2812. msgstr "Sukurti konfigūravimą"
  2813. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1580
  2814. msgid "Generate PMK locally"
  2815. msgstr "Sukurti vietinį „PMK“"
  2816. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:396
  2817. msgid "Generate archive"
  2818. msgstr "Sukurti archyvą"
  2819. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:824
  2820. msgid "Generate configuration"
  2821. msgstr "Sukurti konfigūraciją"
  2822. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:864
  2823. msgid "Generate configuration…"
  2824. msgstr "Sukurti konfigūraciją…"
  2825. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:109
  2826. msgid "Generate new key pair"
  2827. msgstr "Sukurti naują raktų porą"
  2828. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:621
  2829. msgid "Generate preshared key"
  2830. msgstr "Sukurti „jau bendrintą“ raktą"
  2831. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:691
  2832. msgid "Generates a configuration suitable for import on a WireGuard peer"
  2833. msgstr "Sukuria konfigūracija tinkama importuoti į „WireGuard“ lygiarangį"
  2834. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:798
  2835. msgid "Generating QR code…"
  2836. msgstr "Sukuriamas „QR kodas“…"
  2837. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:79
  2838. msgid "Given password confirmation did not match, password not changed!"
  2839. msgstr "Duotas slaptažodžio patvirtinimas, nesutapo, slaptažodis nepakeistas!"
  2840. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:146
  2841. msgid "Global Settings"
  2842. msgstr "Pagrindiniai/Vieši nustatymai"
  2843. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1531
  2844. msgid "Global network options"
  2845. msgstr ""
  2846. #: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:70
  2847. #: themes/luci-theme-material/ucode/template/themes/material/header.ut:90
  2848. #: themes/luci-theme-librecmc-2020/ucode/template/themes/librecmc2020/header.ut:67
  2849. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:92
  2850. msgid "Go to firmware upgrade..."
  2851. msgstr "Eiti į programinės įrangos aukštutinį atnaujinimą..."
  2852. #: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:60
  2853. #: themes/luci-theme-material/ucode/template/themes/material/header.ut:80
  2854. #: themes/luci-theme-librecmc-2020/ucode/template/themes/librecmc2020/header.ut:57
  2855. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:82
  2856. msgid "Go to password configuration..."
  2857. msgstr "Eiti į slaptažodžio konfigūravimą..."
  2858. #: modules/luci-base/htdocs/luci-static/resources/form.js:2640
  2859. #: modules/luci-base/htdocs/luci-static/resources/form.js:3753
  2860. #: modules/luci-compat/luasrc/view/cbi/full_valueheader.htm:4
  2861. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:58
  2862. msgid "Go to relevant configuration page"
  2863. msgstr "Eiti į atitinkamą konfigūracijos puslapį"
  2864. #: modules/luci-mod-network/root/usr/share/rpcd/acl.d/luci-mod-network.json:39
  2865. msgid "Grant access to DHCP configuration"
  2866. msgstr "Duoti prieigą prie „DHCP“ konfigūracijos"
  2867. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status-index.json:23
  2868. msgid "Grant access to DHCP status display"
  2869. msgstr "Duoti/Suteikti prieigą prie „DHCP“ būsenos rodymo"
  2870. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status-index.json:32
  2871. msgid "Grant access to DSL status display"
  2872. msgstr "Duoti prieigą prie „DSL“ būsenos rodymo"
  2873. #: protocols/luci-proto-openconnect/root/usr/share/rpcd/acl.d/luci-openconnect.json:3
  2874. msgid "Grant access to LuCI OpenConnect procedures"
  2875. msgstr "Duoti prieigą prie „LuCI OpenConnect procedures“"
  2876. #: protocols/luci-proto-wireguard/root/usr/share/rpcd/acl.d/luci-wireguard.json:3
  2877. msgid "Grant access to LuCI Wireguard procedures"
  2878. msgstr "Duoti prieigą prie „LuCI Wireguard procedures“"
  2879. #: protocols/luci-proto-openfortivpn/root/usr/share/rpcd/acl.d/luci-openfortivpn.json:3
  2880. msgid "Grant access to LuCI openfortivpn procedures"
  2881. msgstr "Duoti prieigą prie „LuCI openfortivpn procedures“"
  2882. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:20
  2883. msgid "Grant access to SSH configuration"
  2884. msgstr "Duoti prieigą prie „SSH“ konfigūracijos"
  2885. #: modules/luci-base/root/usr/share/rpcd/acl.d/luci-base.json:12
  2886. msgid "Grant access to basic LuCI procedures"
  2887. msgstr "Duoti prieigą prie paprastų „LuCI procedures“"
  2888. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:79
  2889. msgid "Grant access to crontab configuration"
  2890. msgstr "Duoti prieigą prie „crontab“ konfigūracijos"
  2891. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:70
  2892. msgid "Grant access to firewall status"
  2893. msgstr "Duoti prieigą prie užkardos būsenos"
  2894. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:132
  2895. msgid "Grant access to flash operations"
  2896. msgstr ""
  2897. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status-index.json:3
  2898. msgid "Grant access to main status display"
  2899. msgstr "Duoti/Suteikti prieigą pagrindiniui statuso rodymui"
  2900. #: protocols/luci-proto-modemmanager/root/usr/share/rpcd/acl.d/luci-proto-modemmanager.json:3
  2901. msgid "Grant access to mmcli"
  2902. msgstr "Duoti prieigą prie „mmcli“"
  2903. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:100
  2904. msgid "Grant access to mount configuration"
  2905. msgstr ""
  2906. #: modules/luci-mod-network/root/usr/share/rpcd/acl.d/luci-mod-network.json:3
  2907. msgid "Grant access to network configuration"
  2908. msgstr "Duoti prieigą prie tinklo konfigūracijos"
  2909. #: modules/luci-mod-network/root/usr/share/rpcd/acl.d/luci-mod-network.json:52
  2910. msgid "Grant access to network diagnostic tools"
  2911. msgstr "Duoti prieigą prie tinklo diagnostinių įrankių"
  2912. #: modules/luci-base/root/usr/share/rpcd/acl.d/luci-base.json:36
  2913. msgid "Grant access to network status information"
  2914. msgstr "Duoti prieigą prie tinklo būklės ir būsenos informacijos"
  2915. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status-index.json:41
  2916. msgid "Grant access to port status display"
  2917. msgstr ""
  2918. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:13
  2919. msgid "Grant access to process status"
  2920. msgstr "Duoti prieigą prie proceso būsenos"
  2921. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:3
  2922. msgid "Grant access to realtime statistics"
  2923. msgstr "Duoti prieigą prie realaus laiko statistikos"
  2924. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:47
  2925. msgid "Grant access to routing status"
  2926. msgstr "Duoti prieigą prie kelvados būklės ir būsenos"
  2927. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:57
  2928. msgid "Grant access to startup configuration"
  2929. msgstr "Duoti prieigą prie paleidimo konfigūracijos"
  2930. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:3
  2931. msgid "Grant access to system configuration"
  2932. msgstr "Duoti prieigą prie sistemos konfigūracijos"
  2933. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:30
  2934. msgid "Grant access to system logs"
  2935. msgstr "Duoti prieigą prie sistemos žurnalų"
  2936. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:43
  2937. msgid "Grant access to uHTTPd configuration"
  2938. msgstr "Duoti prieigą prie „uHTTPd“ konfigūracijos"
  2939. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:61
  2940. msgid "Grant access to wireless channel status"
  2941. msgstr "Duoti prieigą prie belaidžių kanalų būsenos ir būklės"
  2942. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status-index.json:50
  2943. msgid "Grant access to wireless status display"
  2944. msgstr "Duoti/Suteikti prieigą į belaidžio statuso rodymą"
  2945. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:66
  2946. msgid "Group Password"
  2947. msgstr "Grupės slaptažodis"
  2948. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:22
  2949. msgid "Guest"
  2950. msgstr "Svečias"
  2951. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:81
  2952. msgid "HE.net password"
  2953. msgstr "„HE.net“ slaptažodis"
  2954. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:73
  2955. msgid "HE.net username"
  2956. msgstr "„HE.net“ slapyvardis/vartotojo vardas"
  2957. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/uhttpd.js:9
  2958. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:64
  2959. msgid "HTTP(S) Access"
  2960. msgstr "„HTTP(S)“ Prieiga/Prieinamumas"
  2961. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:46
  2962. msgid "Hang Up"
  2963. msgstr ""
  2964. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/heartbeat.js:6
  2965. msgid "Heartbeat interval (kernel: heartbeat)"
  2966. msgstr "Širdies dūžio intervalas („kernel: heartbeat“)"
  2967. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:576
  2968. msgid "Hello interval"
  2969. msgstr "„Labas“ intervalas"
  2970. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:114
  2971. msgid ""
  2972. "Here you can configure the basic aspects of your device like its hostname or "
  2973. "the timezone."
  2974. msgstr ""
  2975. "Čia galite konfigūruoti paprastus įrenginio nuožiūras kaip jo pavadinimą ir "
  2976. "laiko zoną."
  2977. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1135
  2978. msgid "Hide <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>"
  2979. msgstr "Slėpti <abbr title=\"Extended Service Set Identifier\">„ESSID“</abbr>"
  2980. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:293
  2981. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:332
  2982. msgid "Hide empty chains"
  2983. msgstr "Slėpti tuščias grandines"
  2984. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:950
  2985. msgid "High"
  2986. msgstr "Aukštas"
  2987. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:707
  2988. msgid "Honor gratuitous ARP"
  2989. msgstr "Gerbti „neatlyginamą/be pagrindo – ARP“"
  2990. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:593
  2991. msgctxt "Chain hook description"
  2992. msgid "Hook: <strong>%h</strong> (%h), Priority: <strong>%d</strong>"
  2993. msgstr "Pririšti: <strong>%h</strong> (%h), Prioritetas: <strong>%d</strong>"
  2994. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:92
  2995. msgid "Hop Penalty"
  2996. msgstr "Peršokimo nuobauda"
  2997. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:57
  2998. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2258
  2999. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:134
  3000. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:234
  3001. msgid "Host"
  3002. msgstr "Skleidėjas/P.k – vedėjas"
  3003. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:171
  3004. msgid "Host expiry timeout"
  3005. msgstr "Skleidėjo/P.k – vedėjo atjungimo laikas"
  3006. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:594
  3007. msgid "Host requests this filename from the boot server."
  3008. msgstr ""
  3009. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:88
  3010. msgid "Host-Uniq tag content"
  3011. msgstr ""
  3012. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:894
  3013. msgid ""
  3014. "Host-specific lease time, e.g. <code>5m</code>, <code>3h</code>, <code>7d</"
  3015. "code>."
  3016. msgstr ""
  3017. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:38
  3018. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:732
  3019. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:785
  3020. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:55
  3021. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:87
  3022. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:135
  3023. msgid "Hostname"
  3024. msgstr "Įrenginio pavadinimas"
  3025. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:22
  3026. msgid "Hostname to send when requesting DHCP"
  3027. msgstr "Kokį įrenginio pavadinimą siųsti, kai prašoma „DHCP“"
  3028. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:260
  3029. msgid "Hostnames"
  3030. msgstr "Įrenginio pavadinimai"
  3031. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:724
  3032. msgid ""
  3033. "Hostnames are used to bind a domain name to an IP address. This setting is "
  3034. "redundant for hostnames already configured with static leases, but it can be "
  3035. "useful to rebind an FQDN."
  3036. msgstr ""
  3037. "Įrenginio pavadinimas yra naudojami pririšti domeno-srities vardą prie „IP“ "
  3038. "adreso. Šis nustatymas yra beprasmis, jeigu jo pavadinimai jau yra "
  3039. "nustatyti, bet gali būti naudingas perrišant „FQDN“."
  3040. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/timer.js:19
  3041. msgid "How long (in milliseconds) the LED should be off"
  3042. msgstr "Kokios trukmės (milisekundėmis) „LED“ lemputė turėtų būti išjungta"
  3043. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/timer.js:13
  3044. msgid "How long (in milliseconds) the LED should be on"
  3045. msgstr "Kokios trukmės (milisekundėmis) „LED“ lemputė turėtų būti įjungta"
  3046. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:276
  3047. msgid "Human-readable counters"
  3048. msgstr "Žmogui perskaitomi rodikliai"
  3049. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:24
  3050. msgid "Hybrid"
  3051. msgstr "Hibridas"
  3052. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:49
  3053. msgctxt "nft icmp code"
  3054. msgid "ICMP code"
  3055. msgstr "„ICMP“ kodas"
  3056. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:50
  3057. msgctxt "nft icmp type"
  3058. msgid "ICMP type"
  3059. msgstr "„ICMP“ tipas"
  3060. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:51
  3061. msgctxt "nft icmpv6 code"
  3062. msgid "ICMPv6 code"
  3063. msgstr "„ICMPv6“ kodas"
  3064. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:52
  3065. msgctxt "nft icmpv6 type"
  3066. msgid "ICMPv6 type"
  3067. msgstr "„ICMPv6“ tipas"
  3068. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:53
  3069. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:48
  3070. msgid "ID used to uniquely identify the VXLAN"
  3071. msgstr "ID yra naudojamas unikaliai identifikuoti „VXLAN“"
  3072. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:208
  3073. msgid "IEEE 802.3ad Dynamic link aggregation (802.3ad, 4)"
  3074. msgstr "Dinaminis sujungimo agregatorius „IEEE 802.3ad (802.3ad, 4)“"
  3075. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:75
  3076. msgid "IKE DH Group"
  3077. msgstr "„IKE DH Group“"
  3078. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:86
  3079. msgid "IMEI"
  3080. msgstr "„IMEI“"
  3081. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:181
  3082. msgid "IP Addresses"
  3083. msgstr "„IP“ adresai"
  3084. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:85
  3085. msgid "IP Protocol"
  3086. msgstr "„IP“ protokolas"
  3087. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:261
  3088. msgid "IP Sets"
  3089. msgstr "„IP“ rinkiniai"
  3090. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:136
  3091. msgid "IP Type"
  3092. msgstr "„IP“ tipas"
  3093. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:736
  3094. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:178
  3095. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:204
  3096. msgid "IP address"
  3097. msgstr "„IP“ adresas"
  3098. #: modules/luci-base/htdocs/luci-static/resources/network.js:10
  3099. #: modules/luci-compat/luasrc/model/network.lua:28
  3100. msgid "IP address is invalid"
  3101. msgstr "„IP“ adresas yra neteisingas/netinkamas"
  3102. #: modules/luci-base/htdocs/luci-static/resources/network.js:13
  3103. #: modules/luci-compat/luasrc/model/network.lua:31
  3104. msgid "IP address is missing"
  3105. msgstr "Nėra „IP“ adreso"
  3106. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:781
  3107. msgid ""
  3108. "IP addresses that are allowed inside the tunnel. The peer will accept "
  3109. "tunnelled packets with source IP addresses matching this list and route back "
  3110. "packets with matching destination IP."
  3111. msgstr ""
  3112. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:36
  3113. msgctxt "nft ip protocol"
  3114. msgid "IP protocol"
  3115. msgstr "„IP“ protokolas"
  3116. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:14
  3117. msgctxt "nft meta l4proto"
  3118. msgid "IP protocol"
  3119. msgstr "„IP“ protokolas"
  3120. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:762
  3121. msgid "IP set"
  3122. msgstr "„IP“ rinkinys"
  3123. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:306
  3124. msgid "IP sets"
  3125. msgstr "„IP“ rinkiniai"
  3126. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:518
  3127. msgid "IPs to override with NXDOMAIN"
  3128. msgstr "Perrašyti/Perkeisti „IP's“ (Dgs.) su „NXDOMAIN“"
  3129. #: protocols/luci-proto-xfrm/htdocs/luci-static/resources/protocol/xfrm.js:9
  3130. msgid "IPsec XFRM"
  3131. msgstr "„IPsec XFRM“"
  3132. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:87
  3133. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:110
  3134. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:86
  3135. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:87
  3136. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:88
  3137. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:89
  3138. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:90
  3139. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:96
  3140. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:87
  3141. msgid "IPv4"
  3142. msgstr "„IPv4“"
  3143. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:351
  3144. msgid "IPv4 Firewall"
  3145. msgstr "„IPv4“ užkarda"
  3146. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:252
  3147. msgid "IPv4 Neighbours"
  3148. msgstr "„IPv4 kaimynai“"
  3149. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:251
  3150. msgid "IPv4 Routing"
  3151. msgstr "„IPv4“ maršrutizavimas"
  3152. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:121
  3153. msgid "IPv4 Rules"
  3154. msgstr "„IPv4“ taisyklės"
  3155. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:29
  3156. msgid "IPv4 Upstream"
  3157. msgstr ""
  3158. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:178
  3159. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:39
  3160. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:859
  3161. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:88
  3162. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:164
  3163. msgid "IPv4 address"
  3164. msgstr "„IPv4“ adresas"
  3165. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:29
  3166. msgid "IPv4 assignment length"
  3167. msgstr ""
  3168. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:181
  3169. msgid "IPv4 broadcast"
  3170. msgstr ""
  3171. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:180
  3172. msgid "IPv4 gateway"
  3173. msgstr "„IPv4“ tinklo tarpuvartė"
  3174. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:179
  3175. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:170
  3176. msgid "IPv4 netmask"
  3177. msgstr ""
  3178. #: modules/luci-base/htdocs/luci-static/resources/validation.js:305
  3179. msgid "IPv4 network in address/netmask notation"
  3180. msgstr ""
  3181. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:138
  3182. msgid "IPv4 only"
  3183. msgstr "Tik „IPv4“"
  3184. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:52
  3185. msgid "IPv4 prefix"
  3186. msgstr "„IPv4“ prielinksnis"
  3187. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:61
  3188. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:55
  3189. msgid "IPv4 prefix length"
  3190. msgstr "„IPv4“ prielinksnio ilgis"
  3191. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:625
  3192. msgid "IPv4 traffic table \"%h\""
  3193. msgstr ""
  3194. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:88
  3195. msgid "IPv4+IPv6"
  3196. msgstr "„IPv4+IPv6“"
  3197. #: modules/luci-compat/luasrc/model/network/proto_ipip.lua:9
  3198. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:10
  3199. msgid "IPv4-in-IPv4 (RFC2003)"
  3200. msgstr "„IPv4-in-IPv4 (RFC2003)“"
  3201. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:95
  3202. msgid "IPv4/IPv6"
  3203. msgstr "„IPv4/IPv6“"
  3204. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:137
  3205. msgid "IPv4/IPv6 (both - defaults to IPv4)"
  3206. msgstr "„IPv4/IPv6 (abu - numatyti į „IPv4“)“"
  3207. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:633
  3208. msgid "IPv4/IPv6 traffic table \"%h\""
  3209. msgstr ""
  3210. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:88
  3211. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:111
  3212. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:91
  3213. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:92
  3214. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:93
  3215. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:94
  3216. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:95
  3217. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:96
  3218. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:97
  3219. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:98
  3220. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:99
  3221. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:100
  3222. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:97
  3223. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:89
  3224. msgid "IPv6"
  3225. msgstr "„IPv6“"
  3226. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:354
  3227. msgid "IPv6 Firewall"
  3228. msgstr "„IPv6“ užkarda"
  3229. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:737
  3230. msgid "IPv6 MTU"
  3231. msgstr "„IPv6 MTU“"
  3232. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:262
  3233. msgid "IPv6 Neighbours"
  3234. msgstr "„IPv6 kaimynai“"
  3235. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:979
  3236. msgid "IPv6 Prefix Lifetime"
  3237. msgstr ""
  3238. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:652
  3239. msgid "IPv6 RA Settings"
  3240. msgstr "„IPv6 RA“ nustatymai"
  3241. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:261
  3242. msgid "IPv6 Routing"
  3243. msgstr "„IPv6“ maršrutizavimas"
  3244. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:121
  3245. msgid "IPv6 Rules"
  3246. msgstr "„IPv6“ taisyklės"
  3247. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:651
  3248. msgid "IPv6 Settings"
  3249. msgstr "„IPv6“ nustatymai"
  3250. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1535
  3251. msgid "IPv6 ULA-Prefix"
  3252. msgstr "„IPv6 ULA“ prielinksnis"
  3253. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:29
  3254. msgid "IPv6 Upstream"
  3255. msgstr ""
  3256. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:183
  3257. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:58
  3258. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:135
  3259. msgid "IPv6 address"
  3260. msgstr "„IPv6“ adresas"
  3261. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1044
  3262. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:27
  3263. msgid "IPv6 assignment hint"
  3264. msgstr ""
  3265. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1039
  3266. msgid "IPv6 assignment length"
  3267. msgstr ""
  3268. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:188
  3269. msgid "IPv6 gateway"
  3270. msgstr "„IPv6“ tinklo tarpuvartė"
  3271. #: modules/luci-base/htdocs/luci-static/resources/validation.js:310
  3272. msgid "IPv6 network in address/netmask notation"
  3273. msgstr ""
  3274. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:139
  3275. msgid "IPv6 only"
  3276. msgstr "Tik „IPv6“"
  3277. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1088
  3278. msgid "IPv6 preference"
  3279. msgstr ""
  3280. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:53
  3281. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:59
  3282. msgid "IPv6 prefix"
  3283. msgstr "„IPv6“ prielinksnis"
  3284. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1061
  3285. msgid "IPv6 prefix filter"
  3286. msgstr "„IPv6“ prielinksnio filtras"
  3287. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:57
  3288. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:63
  3289. msgid "IPv6 prefix length"
  3290. msgstr "„IPv6“ prielinksnio ilgis"
  3291. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:192
  3292. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:57
  3293. msgid "IPv6 routed prefix"
  3294. msgstr ""
  3295. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1032
  3296. msgid "IPv6 source routing"
  3297. msgstr ""
  3298. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1084
  3299. msgid "IPv6 suffix"
  3300. msgstr ""
  3301. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:51
  3302. msgid "IPv6 support"
  3303. msgstr "„IPv6“ palaikymas"
  3304. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:629
  3305. msgid "IPv6 traffic table \"%h\""
  3306. msgstr ""
  3307. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:101
  3308. msgid "IPv6-PD"
  3309. msgstr "„IPv6-PD“"
  3310. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:911
  3311. msgid "IPv6-Suffix (hex)"
  3312. msgstr ""
  3313. #: modules/luci-compat/luasrc/model/network/proto_6x4.lua:13
  3314. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:10
  3315. msgid "IPv6-in-IPv4 (RFC4213)"
  3316. msgstr "„IPv6-in-IPv4 (RFC4213)“"
  3317. #: modules/luci-compat/luasrc/model/network/proto_6x4.lua:17
  3318. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:9
  3319. msgid "IPv6-over-IPv4 (6rd)"
  3320. msgstr "„IPv6-over-IPv4 (6rd)“"
  3321. #: modules/luci-compat/luasrc/model/network/proto_6x4.lua:15
  3322. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6to4.js:9
  3323. msgid "IPv6-over-IPv4 (6to4)"
  3324. msgstr "„IPv6-over-IPv4 (6to4)“"
  3325. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1764
  3326. msgid "Identity"
  3327. msgstr "Tapatybė"
  3328. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:923
  3329. msgid ""
  3330. "If a host matches an entry which cannot be used because it specifies an "
  3331. "address on a different subnet, the tag <em>known-othernet</em> is set."
  3332. msgstr ""
  3333. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:96
  3334. msgid "If checked, 1DES is enabled"
  3335. msgstr "Jei pažymėtą, „1DES“ yra įjungtas"
  3336. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:51
  3337. msgid "If checked, adds \"+ipv6\" to the pppd options"
  3338. msgstr ""
  3339. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:93
  3340. msgid "If checked, encryption is disabled"
  3341. msgstr "Jeigu pažymėtą, šifravimas bus/yra atjungtas/neįjungtas/neįgalintas"
  3342. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1061
  3343. msgid ""
  3344. "If set, downstream subnets are only allocated from the given IPv6 prefix "
  3345. "classes."
  3346. msgstr ""
  3347. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:197
  3348. msgid "If set, the meaning of the match options is inverted"
  3349. msgstr ""
  3350. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:255
  3351. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:361
  3352. msgid ""
  3353. "If specified, mount the device by its UUID instead of a fixed device node"
  3354. msgstr ""
  3355. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:268
  3356. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:377
  3357. msgid ""
  3358. "If specified, mount the device by the partition label instead of a fixed "
  3359. "device node"
  3360. msgstr ""
  3361. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4700
  3362. msgid ""
  3363. "If the IP address used to access LuCI changes, a <strong>manual reconnect to "
  3364. "the new IP</strong> is required within %d seconds to confirm the settings, "
  3365. "otherwise modifications will be reverted."
  3366. msgstr ""
  3367. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:995
  3368. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:134
  3369. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:156
  3370. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:122
  3371. msgid "If unchecked, no default route is configured"
  3372. msgstr ""
  3373. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:999
  3374. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:145
  3375. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:160
  3376. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:133
  3377. msgid "If unchecked, the advertised DNS server addresses are ignored"
  3378. msgstr ""
  3379. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:340
  3380. msgid ""
  3381. "If your physical memory is insufficient unused data can be temporarily "
  3382. "swapped to a swap-device resulting in a higher amount of usable <abbr "
  3383. "title=\"Random Access Memory\">RAM</abbr>. Be aware that swapping data is a "
  3384. "very slow process as the swap-device cannot be accessed with the high "
  3385. "datarates of the <abbr title=\"Random Access Memory\">RAM</abbr>."
  3386. msgstr ""
  3387. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:860
  3388. msgid "Ignore"
  3389. msgstr "Ignoruoti"
  3390. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:438
  3391. msgid "Ignore <code>/etc/hosts</code>"
  3392. msgstr "Ignoruoti <code>/etc/hosts</code>"
  3393. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:683
  3394. msgid "Ignore interface"
  3395. msgstr "Ignoruoti sąsaja ir/arba sietuvą"
  3396. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:922
  3397. msgid "Ignore requests from unknown machines using <em>!known</em>."
  3398. msgstr ""
  3399. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:427
  3400. msgid "Ignore resolv file"
  3401. msgstr "Ignoruoti „resolv“ failą"
  3402. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:447
  3403. msgid "Image"
  3404. msgstr "Laikmena"
  3405. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:273
  3406. msgid "Image check failed:"
  3407. msgstr ""
  3408. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:476
  3409. msgid "Import as peer"
  3410. msgstr "Importuoti kaip lygiarangis"
  3411. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:188
  3412. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:476
  3413. msgid "Import configuration"
  3414. msgstr "Importuoti konfigūracija"
  3415. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:504
  3416. msgid "Import configuration as peer…"
  3417. msgstr "Importuoti konfigūracija kaip lygiarangis…"
  3418. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:490
  3419. msgid "Import settings"
  3420. msgstr "Importuoti nustatymus"
  3421. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:376
  3422. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:403
  3423. msgid "Imported peer configuration"
  3424. msgstr "Importuoti lygiarangio konfigūracija"
  3425. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:188
  3426. msgid "Imports settings from an existing WireGuard configuration file"
  3427. msgstr ""
  3428. "Importuoja nustatymus iš egzistuojančio „WireGuard“ konfigūracijos failo"
  3429. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:68
  3430. msgid "In"
  3431. msgstr ""
  3432. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:801
  3433. msgid ""
  3434. "In DHCPv4, it is possible to include more than one mac address. This allows "
  3435. "an IP address to be associated with multiple macaddrs, and dnsmasq abandons "
  3436. "a DHCP lease to one of the macaddrs when another asks for a lease. It only "
  3437. "works reliably if only one of the macaddrs is active at any time."
  3438. msgstr ""
  3439. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:71
  3440. msgid ""
  3441. "In bridged LAN setups it is advisable to enable the bridge loop avoidance in "
  3442. "order to avoid broadcast loops that can bring the entire LAN to a standstill."
  3443. msgstr ""
  3444. #: modules/luci-base/ucode/template/csrftoken.ut:13
  3445. msgid ""
  3446. "In order to prevent unauthorized access to the system, your request has been "
  3447. "blocked. Click \"Continue »\" below to return to the previous page."
  3448. msgstr ""
  3449. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:146
  3450. msgid "In seconds"
  3451. msgstr "Sekundėmis"
  3452. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:156
  3453. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:128
  3454. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:114
  3455. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:92
  3456. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:101
  3457. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:124
  3458. msgid "Inactivity timeout"
  3459. msgstr "Neaktyvumo užklausos laikas"
  3460. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:267
  3461. msgid "Inbound:"
  3462. msgstr "Įeinantis:"
  3463. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:262
  3464. msgid ""
  3465. "Include in backup a list of current installed packages at /etc/backup/"
  3466. "installed_packages.txt"
  3467. msgstr ""
  3468. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:100
  3469. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:105
  3470. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:102
  3471. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:107
  3472. msgid "Incoming checksum"
  3473. msgstr ""
  3474. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:145
  3475. msgid "Incoming interface"
  3476. msgstr ""
  3477. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:92
  3478. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:97
  3479. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:94
  3480. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:99
  3481. #: protocols/luci-proto-vti/htdocs/luci-static/resources/protocol/vti.js:64
  3482. msgid "Incoming key"
  3483. msgstr ""
  3484. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:102
  3485. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:107
  3486. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:104
  3487. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:109
  3488. msgid "Incoming serialization"
  3489. msgstr ""
  3490. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:187
  3491. msgid "Info"
  3492. msgstr "Info"
  3493. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:102
  3494. msgid "Information"
  3495. msgstr "Informacija"
  3496. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:510
  3497. msgid "Ingress QoS mapping"
  3498. msgstr ""
  3499. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:11
  3500. msgctxt "nft meta iif"
  3501. msgid "Ingress device id"
  3502. msgstr ""
  3503. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:9
  3504. msgctxt "nft meta iifname"
  3505. msgid "Ingress device name"
  3506. msgstr ""
  3507. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:67
  3508. msgid "Initialization failure"
  3509. msgstr ""
  3510. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:77
  3511. msgid "Initscript"
  3512. msgstr "„Initscript“"
  3513. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:111
  3514. msgid "Initscripts"
  3515. msgstr "„Initscripts“"
  3516. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1748
  3517. msgid "Inner certificate constraint (Domain)"
  3518. msgstr ""
  3519. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1745
  3520. msgid "Inner certificate constraint (SAN)"
  3521. msgstr ""
  3522. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1742
  3523. msgid "Inner certificate constraint (Subject)"
  3524. msgstr ""
  3525. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1751
  3526. msgid "Inner certificate constraint (Wildcard)"
  3527. msgstr ""
  3528. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:317
  3529. msgid "Install protocol extensions..."
  3530. msgstr ""
  3531. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:628
  3532. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:930
  3533. msgid "Instance"
  3534. msgstr "Egzempliorius"
  3535. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:125
  3536. msgctxt "WireGuard instance heading"
  3537. msgid "Instance \"%h\""
  3538. msgstr ""
  3539. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:34
  3540. msgid "Instance Details"
  3541. msgstr ""
  3542. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2126
  3543. msgid ""
  3544. "Instead of joining any network with a matching SSID, only connect to the "
  3545. "BSSID <code>%h</code>."
  3546. msgstr ""
  3547. #: modules/luci-compat/luasrc/view/cbi/map.htm:43
  3548. msgid "Insufficient permissions to read UCI configuration."
  3549. msgstr ""
  3550. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:136
  3551. msgid "Integrated Circuit Card Identifier"
  3552. msgstr ""
  3553. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:41
  3554. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:180
  3555. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:206
  3556. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:17
  3557. msgid "Interface"
  3558. msgstr "Sąsaja ir Sietuvas"
  3559. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:735
  3560. msgid "Interface \"%h\" is already marked as designated master."
  3561. msgstr ""
  3562. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:62
  3563. msgid "Interface %q device auto-migrated from %q to %q."
  3564. msgstr ""
  3565. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:975
  3566. msgid "Interface Configuration"
  3567. msgstr ""
  3568. #: protocols/luci-proto-xfrm/htdocs/luci-static/resources/protocol/xfrm.js:39
  3569. msgid "Interface ID"
  3570. msgstr "Sąsajos ir Sietuvo ID"
  3571. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:111
  3572. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:151
  3573. msgid "Interface has %d pending changes"
  3574. msgstr "Sąsaja ir/arba Sietuvas turi %d laukiamus pakeitimus"
  3575. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:92
  3576. msgid "Interface is disabled"
  3577. msgstr "Sąsaja ir/arba Sietuvas yra išjungtas"
  3578. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:65
  3579. msgid "Interface is marked for deletion"
  3580. msgstr "Sąsaja ir/arba Sietuvas yra pažymėtas ištrynimui"
  3581. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:210
  3582. msgid "Interface is reconnecting..."
  3583. msgstr "Sąsaja ir/arba Sietuvas persijungia..."
  3584. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:194
  3585. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:204
  3586. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:210
  3587. msgid "Interface is shutting down..."
  3588. msgstr "Sąsaja ir/arba Sietuvas išsijungia..."
  3589. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:302
  3590. msgid "Interface is starting..."
  3591. msgstr "Sąsaja ir/arba Sietuvas pasileidžia..."
  3592. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:305
  3593. msgid "Interface is stopping..."
  3594. msgstr "Sąsaja ir/arba Sietuvas sustoja..."
  3595. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1153
  3596. msgid "Interface name"
  3597. msgstr "Sąsajos ir/arba Sietuvo pavadinimas"
  3598. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:123
  3599. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:321
  3600. msgid "Interface not present or not connected yet."
  3601. msgstr "Sąsaja ir/arba Sietuvas nėra pasiekiamas arba nėra prijungtas."
  3602. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:479
  3603. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:508
  3604. #: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:38
  3605. msgid "Interfaces"
  3606. msgstr "Sąsajos ir Sietuvai"
  3607. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:20
  3608. msgid "Internal"
  3609. msgstr "Vidinis"
  3610. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:85
  3611. msgid "International Mobile Station Equipment Identity"
  3612. msgstr ""
  3613. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:139
  3614. msgid "International Mobile Subscriber Identity"
  3615. msgstr ""
  3616. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:285
  3617. msgid "Interval For Sending Learning Packets"
  3618. msgstr ""
  3619. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:610
  3620. msgid ""
  3621. "Interval in centiseconds between multicast general queries. By varying the "
  3622. "value, an administrator may tune the number of IGMP messages on the subnet; "
  3623. "larger values cause IGMP Queries to be sent less often"
  3624. msgstr ""
  3625. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:576
  3626. msgid "Interval in seconds for STP hello packets"
  3627. msgstr ""
  3628. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:192
  3629. #: modules/luci-compat/luasrc/view/cbi/tsection.htm:42
  3630. msgid "Invalid"
  3631. msgstr "Negalimas"
  3632. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:101
  3633. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:68
  3634. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:71
  3635. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:97
  3636. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:74
  3637. msgid "Invalid APN provided"
  3638. msgstr "Negalimas pateiktas „APN“"
  3639. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:37
  3640. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:40
  3641. msgid "Invalid Base64 key string"
  3642. msgstr "Negalimas „Base64“ rakto įvestis"
  3643. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:117
  3644. msgid "Invalid IPv6 address"
  3645. msgstr "Negalimas „IPv6“ adresas"
  3646. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:78
  3647. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:83
  3648. msgid "Invalid TOS value, expected 00..FF or inherit"
  3649. msgstr ""
  3650. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:83
  3651. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:88
  3652. msgid "Invalid Traffic Class value, expected 00..FF or inherit"
  3653. msgstr ""
  3654. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:285
  3655. msgid "Invalid VLAN ID given! Only IDs between %d and %d are allowed."
  3656. msgstr ""
  3657. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:294
  3658. msgid "Invalid VLAN ID given! Only unique IDs are allowed"
  3659. msgstr ""
  3660. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:403
  3661. msgid "Invalid argument"
  3662. msgstr "Negalimas argumentas"
  3663. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:11
  3664. msgid ""
  3665. "Invalid bearer list. Possibly too many bearers created. This protocol "
  3666. "supports one and only one bearer."
  3667. msgstr ""
  3668. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:402
  3669. msgid "Invalid command"
  3670. msgstr "Negalima komanda"
  3671. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:205
  3672. msgid "Invalid hexadecimal value"
  3673. msgstr ""
  3674. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:126
  3675. msgid "Invalid hostname or IPv4 address"
  3676. msgstr "Negalimas įrenginio pavadinimas arba „IPv4“ adresas"
  3677. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:134
  3678. msgid "Invalid port"
  3679. msgstr "Negalimas prievadas"
  3680. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:108
  3681. msgid "Invalid server URL"
  3682. msgstr "Negalimas serverio „URL“"
  3683. #: modules/luci-base/ucode/template/sysauth.ut:12
  3684. #: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:32
  3685. msgid "Invalid username and/or password! Please try again."
  3686. msgstr ""
  3687. "Neteisingas vartotojo vardas ir/arba slaptažodis! Prašome pamėginti dar "
  3688. "kartą."
  3689. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/heartbeat.js:13
  3690. msgid "Invert blinking"
  3691. msgstr ""
  3692. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:197
  3693. msgid "Invert match"
  3694. msgstr ""
  3695. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:223
  3696. msgctxt "VLAN port state"
  3697. msgid "Is Primary VLAN"
  3698. msgstr "Yra pagrindinis „VLAN“"
  3699. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1149
  3700. msgid "Isolate Clients"
  3701. msgstr ""
  3702. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:236
  3703. msgid ""
  3704. "It appears that you are trying to flash an image that does not fit into the "
  3705. "flash memory, please verify the image file!"
  3706. msgstr ""
  3707. #: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:77
  3708. #: themes/luci-theme-material/ucode/template/themes/material/header.ut:97
  3709. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:72
  3710. msgid "JavaScript required!"
  3711. msgstr "Reikalingas „JavaScript“!"
  3712. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1922
  3713. msgid "Join Network"
  3714. msgstr "Prisijungti prie tinklo"
  3715. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1856
  3716. msgid "Join Network: Wireless Scan"
  3717. msgstr "Prisijungti prie tinklo: Belaidis skenavimas"
  3718. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2134
  3719. msgid "Joining Network: %q"
  3720. msgstr "Prisijungiamas prie tinklo: %q"
  3721. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:172
  3722. msgid "Jump to rule"
  3723. msgstr "Eiti prie taisyklės"
  3724. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:228
  3725. msgid "Keep settings and retain the current configuration"
  3726. msgstr "Laikyti nustatymus ir dabartinį konfigūravimą"
  3727. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:60
  3728. msgid "Keep-Alive"
  3729. msgstr "„Laikyti-gyvą“"
  3730. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/dmesg.js:20
  3731. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:84
  3732. msgid "Kernel Log"
  3733. msgstr "„Kernel“ žurnalas"
  3734. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:60
  3735. msgid "Kernel Version"
  3736. msgstr "„Kernel“ versija"
  3737. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1489
  3738. msgid "Key"
  3739. msgstr "Raktas"
  3740. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1517
  3741. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1518
  3742. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1519
  3743. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1520
  3744. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1532
  3745. msgid "Key #%d"
  3746. msgstr "Raktas #%d"
  3747. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:92
  3748. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:97
  3749. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:94
  3750. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:99
  3751. #: protocols/luci-proto-vti/htdocs/luci-static/resources/protocol/vti.js:64
  3752. msgid "Key for incoming packets (optional)."
  3753. msgstr ""
  3754. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:96
  3755. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:101
  3756. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:98
  3757. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:103
  3758. #: protocols/luci-proto-vti/htdocs/luci-static/resources/protocol/vti.js:68
  3759. msgid "Key for outgoing packets (optional)."
  3760. msgstr ""
  3761. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:549
  3762. msgctxt "Label indicating that WireGuard peer lacks public key"
  3763. msgid "Key missing"
  3764. msgstr ""
  3765. #: protocols/luci-proto-unet/htdocs/luci-static/resources/protocol/unet.js:44
  3766. msgid "Key used to sign network config"
  3767. msgstr ""
  3768. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:71
  3769. msgctxt "nft unit"
  3770. msgid "KiB"
  3771. msgstr "KiB"
  3772. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:54
  3773. msgid "Kill"
  3774. msgstr "Nužudyti"
  3775. #: modules/luci-compat/luasrc/model/network/proto_ppp.lua:21
  3776. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:10
  3777. msgid "L2TP"
  3778. msgstr "„L2TP“"
  3779. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:40
  3780. msgid "L2TP Server"
  3781. msgstr "„L2TP“ serveris"
  3782. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:269
  3783. msgid "LACPDU Packets"
  3784. msgstr "„LACPDU“ paketai"
  3785. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:130
  3786. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:102
  3787. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:88
  3788. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:62
  3789. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:75
  3790. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:98
  3791. msgid "LCP echo failure threshold"
  3792. msgstr ""
  3793. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:143
  3794. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:115
  3795. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:101
  3796. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:75
  3797. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:88
  3798. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:111
  3799. msgid "LCP echo interval"
  3800. msgstr ""
  3801. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:115
  3802. msgid "LED Configuration"
  3803. msgstr "„LED“ (Lemputės) Konfigūracija"
  3804. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1636
  3805. msgid "LLC"
  3806. msgstr "„LLC“"
  3807. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:268
  3808. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:377
  3809. msgid "Label"
  3810. msgstr "Etiketė"
  3811. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:225
  3812. msgid "Language"
  3813. msgstr "Kalba"
  3814. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:125
  3815. msgid "Language and Style"
  3816. msgstr "Kalba ir stilius"
  3817. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:641
  3818. msgid ""
  3819. "Larger weights (of the same prio) are given a proportionately higher "
  3820. "probability of being selected."
  3821. msgstr ""
  3822. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:629
  3823. msgid "Last member interval"
  3824. msgstr ""
  3825. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:59
  3826. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:78
  3827. msgid "Latest Handshake"
  3828. msgstr ""
  3829. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:21
  3830. msgid "Leaf"
  3831. msgstr "„Lapas“"
  3832. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:775
  3833. msgid "Learn"
  3834. msgstr "Sužinoti"
  3835. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:970
  3836. msgid "Learn routes"
  3837. msgstr ""
  3838. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:423
  3839. msgid "Lease file"
  3840. msgstr ""
  3841. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:893
  3842. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:696
  3843. msgid "Lease time"
  3844. msgstr ""
  3845. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:41
  3846. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:60
  3847. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:90
  3848. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:137
  3849. msgid "Lease time remaining"
  3850. msgstr ""
  3851. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:41
  3852. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:47
  3853. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:50
  3854. msgid "Leave empty to autodetect"
  3855. msgstr ""
  3856. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:40
  3857. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:39
  3858. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6to4.js:39
  3859. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:45
  3860. msgid "Leave empty to use the current WAN address"
  3861. msgstr ""
  3862. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:938
  3863. msgid ""
  3864. "Legacy or badly behaving devices may require legacy 802.11b rates to "
  3865. "interoperate. Airtime efficiency may be significantly reduced where these "
  3866. "are used. It is recommended to not allow 802.11b rates where possible."
  3867. msgstr ""
  3868. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:677
  3869. msgid "Legacy rules detected"
  3870. msgstr ""
  3871. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4438
  3872. msgid "Legend:"
  3873. msgstr "Legenda (už.):"
  3874. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:691
  3875. msgid "Limit"
  3876. msgstr "Limitas"
  3877. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:25
  3878. msgid "Line Mode"
  3879. msgstr "Linijos režimas"
  3880. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:24
  3881. msgid "Line State"
  3882. msgstr "Linijos būsena"
  3883. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:26
  3884. msgid "Line Uptime"
  3885. msgstr "Linijos aktyvumo laikas"
  3886. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:125
  3887. msgid "Link Aggregation (Channel Bonding)"
  3888. msgstr ""
  3889. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:349
  3890. msgid "Link Monitoring"
  3891. msgstr ""
  3892. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:24
  3893. msgid "Link On"
  3894. msgstr ""
  3895. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:77
  3896. msgctxt "nft @ll,off,len"
  3897. msgid "Link layer header bits %d-%d"
  3898. msgstr ""
  3899. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519
  3900. msgid "List of IP addresses to convert into NXDOMAIN responses."
  3901. msgstr ""
  3902. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:307
  3903. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:754
  3904. msgid ""
  3905. "List of IP sets to populate with the IPs of DNS lookup results of the FQDNs "
  3906. "also specified here."
  3907. msgstr ""
  3908. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1602
  3909. msgid ""
  3910. "List of R0KHs in the same Mobility Domain. <br />Format: MAC-address,NAS-"
  3911. "Identifier,128-bit key as hex string. <br />This list is used to map R0KH-ID "
  3912. "(NAS Identifier) to a destination MAC address when requesting PMK-R1 key "
  3913. "from the R0KH that the STA used during the Initial Mobility Domain "
  3914. "Association."
  3915. msgstr ""
  3916. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1606
  3917. msgid ""
  3918. "List of R1KHs in the same Mobility Domain. <br />Format: MAC-address,R1KH-ID "
  3919. "as 6 octets with colons,128-bit key as hex string. <br />This list is used "
  3920. "to map R1KH-ID to a destination MAC address when sending PMK-R1 key from the "
  3921. "R0KH. This is also the list of authorized R1KHs in the MD that can request "
  3922. "PMK-R1 keys."
  3923. msgstr ""
  3924. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:82
  3925. msgid "List of SSH key files for auth"
  3926. msgstr ""
  3927. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:323
  3928. msgid "List of domains to allow RFC1918 responses for."
  3929. msgstr ""
  3930. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:291
  3931. msgid "List of upstream resolvers to forward queries to."
  3932. msgstr ""
  3933. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:176
  3934. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:38
  3935. msgid "Listen Port"
  3936. msgstr ""
  3937. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:343
  3938. msgid "Listen interfaces"
  3939. msgstr ""
  3940. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:17
  3941. msgid "Listen only on the given interface or, if unspecified, on all"
  3942. msgstr ""
  3943. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:344
  3944. msgid ""
  3945. "Listen only on the specified interfaces, and loopback if not excluded "
  3946. "explicitly."
  3947. msgstr ""
  3948. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:299
  3949. msgid "ListenPort setting is invalid"
  3950. msgstr ""
  3951. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:525
  3952. msgid "Listening port for inbound DNS queries."
  3953. msgstr ""
  3954. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:130
  3955. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:54
  3956. msgid "Load"
  3957. msgstr "Įkelti/Krauti"
  3958. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:63
  3959. msgid "Load Average"
  3960. msgstr "Įkėlimo/Krovimo vidurkis"
  3961. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:189
  3962. msgid "Load configuration…"
  3963. msgstr "Įkelti konfigūracija…"
  3964. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1229
  3965. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2065
  3966. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:167
  3967. msgid "Loading data…"
  3968. msgstr "Kraunama duomenis…"
  3969. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2992
  3970. msgid "Loading directory contents…"
  3971. msgstr "Kraunama vietovės turinį…"
  3972. #: modules/luci-base/htdocs/luci-static/resources/luci.js:1942
  3973. #: modules/luci-base/ucode/template/view.ut:4
  3974. #: modules/luci-mod-status/ucode/template/admin_status/index.ut:12
  3975. #: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:40
  3976. msgid "Loading view…"
  3977. msgstr "Kraunamas vaizdas…"
  3978. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:948
  3979. msgid "Local"
  3980. msgstr "Vietinis"
  3981. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:169
  3982. msgid "Local IP address"
  3983. msgstr "Vietinis „IP“ adresas"
  3984. #: modules/luci-base/htdocs/luci-static/resources/network.js:12
  3985. #: modules/luci-compat/luasrc/model/network.lua:30
  3986. msgid "Local IP address is invalid"
  3987. msgstr "Vietinis „IP“ adresas yra negalimas"
  3988. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:86
  3989. msgid "Local IP address to assign"
  3990. msgstr "Prisegti vietini „IP“ adresą"
  3991. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:46
  3992. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:46
  3993. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:44
  3994. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:40
  3995. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:39
  3996. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6to4.js:39
  3997. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:151
  3998. #: protocols/luci-proto-vti/htdocs/luci-static/resources/protocol/vti.js:44
  3999. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:44
  4000. msgid "Local IPv4 address"
  4001. msgstr "Vietinis „IPv4“ adresas"
  4002. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:944
  4003. msgid "Local IPv6 DNS server"
  4004. msgstr "Vietinis „IPv6 DNS“ serveris"
  4005. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:46
  4006. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:53
  4007. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:54
  4008. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:45
  4009. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:44
  4010. msgid "Local IPv6 address"
  4011. msgstr "Vietinis „IPv6“ adresas"
  4012. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:115
  4013. msgid "Local Startup"
  4014. msgstr "Vietinis paleidimas"
  4015. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:61
  4016. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:131
  4017. msgid "Local Time"
  4018. msgstr "Vietinis laikas"
  4019. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1062
  4020. msgid "Local ULA"
  4021. msgstr "Vietinis „ULA“"
  4022. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:281
  4023. msgid "Local domain"
  4024. msgstr "Vietinis domenas-sritis"
  4025. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:282
  4026. msgid "Local domain suffix appended to DHCP names and hosts file entries."
  4027. msgstr ""
  4028. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:277
  4029. msgid "Local server"
  4030. msgstr "Vietinis serveris"
  4031. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:330
  4032. msgid "Local service only"
  4033. msgstr "Tik vietinė tarnyba"
  4034. #: protocols/luci-proto-unet/htdocs/luci-static/resources/protocol/unet.js:41
  4035. msgid "Local wireguard key"
  4036. msgstr "Vietinis „wireguard“ raktas"
  4037. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:478
  4038. msgid "Localise queries"
  4039. msgstr ""
  4040. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:117
  4041. msgid "Location Area Code"
  4042. msgstr ""
  4043. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2126
  4044. msgid "Lock to BSSID"
  4045. msgstr "Užrakinti prie „BSSID“"
  4046. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:98
  4047. msgctxt "nft log action"
  4048. msgid "Log event \"<strong>%h</strong>…\""
  4049. msgstr "Žurnalo įvykis „<strong>%h</strong>...“"
  4050. #: modules/luci-base/ucode/template/sysauth.ut:38
  4051. #: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:36
  4052. msgid "Log in"
  4053. msgstr "Prisijungti"
  4054. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2674
  4055. msgid "Log in…"
  4056. msgstr "Prisijungti…"
  4057. #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:81
  4058. msgid "Log out"
  4059. msgstr "Atsijungti"
  4060. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:185
  4061. msgid "Log output level"
  4062. msgstr ""
  4063. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:285
  4064. msgid "Log queries"
  4065. msgstr ""
  4066. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:123
  4067. msgid "Logging"
  4068. msgstr "Žurnalininimas"
  4069. #: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:23
  4070. msgid "Logging in…"
  4071. msgstr "Prisijungiama…"
  4072. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57
  4073. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:57
  4074. msgid ""
  4075. "Logical network from which to select the local endpoint if local IPv6 "
  4076. "address is empty and no WAN IPv6 is available (optional)."
  4077. msgstr ""
  4078. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:57
  4079. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62
  4080. msgid "Logical network to which the tunnel will be added (bridged) (optional)."
  4081. msgstr ""
  4082. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:682
  4083. msgid "Loose filtering"
  4084. msgstr ""
  4085. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:686
  4086. msgid "Lowest leased address as offset from the network address."
  4087. msgstr ""
  4088. #: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/footer.ut:12
  4089. msgid "Lua compatibility mode active"
  4090. msgstr ""
  4091. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:48
  4092. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:83
  4093. msgid "MAC"
  4094. msgstr "„MAC“"
  4095. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1507
  4096. msgid "MAC Address"
  4097. msgstr "„MAC“ adresas"
  4098. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1079
  4099. msgid "MAC Address Filter"
  4100. msgstr "„MAC“ adreso filtras"
  4101. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:253
  4102. msgid "MAC Address For The Actor"
  4103. msgstr "„MAC“ adresas „For The Actor“"
  4104. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:401
  4105. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1475
  4106. msgid "MAC VLAN"
  4107. msgstr "„MAC VLAN“"
  4108. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:645
  4109. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:40
  4110. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1161
  4111. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2257
  4112. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:56
  4113. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:89
  4114. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:233
  4115. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:179
  4116. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:205
  4117. msgid "MAC address"
  4118. msgstr "„MAC“ adresas"
  4119. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:799
  4120. msgid "MAC address(es)"
  4121. msgstr "„MAC“ adresas/-ai"
  4122. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:981
  4123. msgid "MAC-Filter"
  4124. msgstr "„MAC-Filtras“"
  4125. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1086
  4126. msgid "MAC-List"
  4127. msgstr "„MAC-Sąrašas“"
  4128. #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:16
  4129. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:13
  4130. msgid "MAP / LW4over6"
  4131. msgstr "„MAP / LW4over6“"
  4132. #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:62
  4133. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:7
  4134. msgid "MAP rule is invalid"
  4135. msgstr "„MAP“ taisyklė yra negalima"
  4136. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:24
  4137. msgid "MBIM Cellular"
  4138. msgstr "„MBIM Mobilusis“"
  4139. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:223
  4140. msgid "MD5"
  4141. msgstr "„MD5“"
  4142. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:199
  4143. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:28
  4144. msgid "MHz"
  4145. msgstr "MHz"
  4146. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:354
  4147. msgid "MII"
  4148. msgstr "„MII“"
  4149. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:422
  4150. msgid "MII / ETHTOOL ioctls"
  4151. msgstr "„MII / ETHTOOL ioctls“"
  4152. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:395
  4153. msgid "MII Interval"
  4154. msgstr "„MII“ Intervalas"
  4155. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:634
  4156. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1519
  4157. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:87
  4158. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:53
  4159. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:196
  4160. #: protocols/luci-proto-xfrm/htdocs/luci-static/resources/protocol/xfrm.js:46
  4161. msgid "MTU"
  4162. msgstr "„MTU“"
  4163. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:264
  4164. msgid "MX"
  4165. msgstr "„MX“"
  4166. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:303
  4167. msgid ""
  4168. "Make sure to clone the root filesystem using something like the commands "
  4169. "below:"
  4170. msgstr ""
  4171. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:122
  4172. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:115
  4173. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:53
  4174. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:98
  4175. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:84
  4176. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:58
  4177. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:71
  4178. msgid "Manual"
  4179. msgstr "Rankinis"
  4180. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:82
  4181. msgid "Manufacturer"
  4182. msgstr "Gamintojas"
  4183. #: modules/luci-base/htdocs/luci-static/resources/network.js:3864
  4184. msgid "Master"
  4185. msgstr ""
  4186. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:920
  4187. msgid "Match Tag"
  4188. msgstr ""
  4189. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:865
  4190. msgid "Max <abbr title=\"Router Advertisement\">RA</abbr> interval"
  4191. msgstr "Maksimalus <abbr title=\"Router Advertisement\">„RA“</abbr> intervalas"
  4192. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:538
  4193. msgid "Max. DHCP leases"
  4194. msgstr "Maks. „DHCP leases“"
  4195. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:545
  4196. msgid "Max. EDNS0 packet size"
  4197. msgstr "Maks. „EDNS0“ paketo dydis"
  4198. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:552
  4199. msgid "Max. concurrent queries"
  4200. msgstr ""
  4201. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:586
  4202. msgid "Maximum age"
  4203. msgstr "Maksimalus amžius"
  4204. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1188
  4205. msgid "Maximum allowed Listen Interval"
  4206. msgstr ""
  4207. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:539
  4208. msgid "Maximum allowed number of active DHCP leases."
  4209. msgstr ""
  4210. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:553
  4211. msgid "Maximum allowed number of concurrent DNS queries."
  4212. msgstr ""
  4213. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:546
  4214. msgid "Maximum allowed size of EDNS0 UDP packets."
  4215. msgstr ""
  4216. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:126
  4217. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:124
  4218. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:106
  4219. msgid "Maximum amount of seconds to wait for the modem to become ready"
  4220. msgstr ""
  4221. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:691
  4222. msgid "Maximum number of leased addresses."
  4223. msgstr ""
  4224. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:596
  4225. msgid "Maximum snooping table size"
  4226. msgstr ""
  4227. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:865
  4228. msgid ""
  4229. "Maximum time allowed between sending unsolicited <abbr title=\"Router "
  4230. "Advertisement, ICMPv6 Type 134\">RA</abbr>. Default is 600 seconds."
  4231. msgstr ""
  4232. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:941
  4233. msgid "Maximum transmit power"
  4234. msgstr "Maksimalus energijos perdavimas"
  4235. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:464
  4236. msgid "May prevent VoIP or other services from working."
  4237. msgstr "Gali sustabdyti „VoIP“ ar kitas tarnybas nuo veikimo."
  4238. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:129
  4239. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:188
  4240. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:199
  4241. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:28
  4242. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:171
  4243. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:323
  4244. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:324
  4245. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:325
  4246. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:329
  4247. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:330
  4248. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:331
  4249. msgid "Mbit/s"
  4250. msgstr "Mbit/s"
  4251. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:35
  4252. msgid "Medium"
  4253. msgstr "Vidutinis"
  4254. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:24
  4255. msgid "Memory"
  4256. msgstr "Atmintis"
  4257. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:73
  4258. msgid "Memory usage (%)"
  4259. msgstr "Atminties naudojimas (%)"
  4260. #: modules/luci-base/htdocs/luci-static/resources/network.js:3867
  4261. msgid "Mesh"
  4262. msgstr ""
  4263. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:156
  4264. msgid "Mesh ID"
  4265. msgstr ""
  4266. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:990
  4267. msgid "Mesh Id"
  4268. msgstr ""
  4269. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:41
  4270. msgid "Mesh Routing"
  4271. msgstr ""
  4272. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:41
  4273. msgid "Mesh and routing related options"
  4274. msgstr ""
  4275. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:404
  4276. msgid "Method not found"
  4277. msgstr "Būdas nerastas"
  4278. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:350
  4279. msgid "Method of link monitoring"
  4280. msgstr ""
  4281. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:419
  4282. msgid "Method to determine link status"
  4283. msgstr ""
  4284. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:80
  4285. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:189
  4286. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:215
  4287. msgid "Metric"
  4288. msgstr "Metrinė"
  4289. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:70
  4290. msgctxt "nft unit"
  4291. msgid "MiB"
  4292. msgstr "MiB"
  4293. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:872
  4294. msgid "Min <abbr title=\"Router Advertisement\">RA</abbr> interval"
  4295. msgstr "Minimalus <abbr title=\"Router Advertisement\">„RA“</abbr> intervalas"
  4296. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:721
  4297. msgid "Minimum ARP validity time"
  4298. msgstr ""
  4299. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:237
  4300. msgid "Minimum Number of Links"
  4301. msgstr ""
  4302. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:721
  4303. msgid ""
  4304. "Minimum required time in seconds before an ARP entry may be replaced. "
  4305. "Prevents ARP cache thrashing."
  4306. msgstr ""
  4307. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:872
  4308. msgid ""
  4309. "Minimum time allowed between sending unsolicited <abbr title=\"Router "
  4310. "Advertisement, ICMPv6 Type 134\">RA</abbr>. Default is 200 seconds."
  4311. msgstr ""
  4312. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:204
  4313. msgid "Mirror monitor port"
  4314. msgstr ""
  4315. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:203
  4316. msgid "Mirror source port"
  4317. msgstr ""
  4318. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:120
  4319. msgid "Mobile Country Code"
  4320. msgstr "Mobilus šalies kodas"
  4321. #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:9
  4322. msgid "Mobile Data"
  4323. msgstr "Mobilusis ryšys"
  4324. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:123
  4325. msgid "Mobile Network Code"
  4326. msgstr "Mobilausk tinklo kodas"
  4327. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:167
  4328. #: protocols/luci-proto-modemmanager/root/usr/share/luci/menu.d/luci-proto-modemmanager.json:3
  4329. msgid "Mobile Service"
  4330. msgstr "Mobiliojo ryšio paslauga"
  4331. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1562
  4332. msgid "Mobility Domain"
  4333. msgstr ""
  4334. #: modules/luci-compat/luasrc/view/cbi/wireless_modefreq.htm:154
  4335. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:488
  4336. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:157
  4337. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:180
  4338. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:486
  4339. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:985
  4340. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1840
  4341. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:404
  4342. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:148
  4343. msgid "Mode"
  4344. msgstr "Režimas"
  4345. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:56
  4346. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:83
  4347. msgid "Model"
  4348. msgstr "Modelis"
  4349. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:81
  4350. msgid "Modem Info"
  4351. msgstr "Modemo informacija"
  4352. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:9
  4353. msgid ""
  4354. "Modem connection in progress. Please wait. This process will timeout after 2 "
  4355. "minutes."
  4356. msgstr ""
  4357. "Modemas jungiasi. Prašome palaukti. Šis procesas pabaigs užklausos laiką po "
  4358. "dviejų (2) minučių."
  4359. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:77
  4360. msgid "Modem default"
  4361. msgstr "Modemo numatytas"
  4362. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:73
  4363. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:54
  4364. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:51
  4365. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:65
  4366. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:73
  4367. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:57
  4368. msgid "Modem device"
  4369. msgstr "Modemo įrenginys"
  4370. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:66
  4371. msgid "Modem information query failed"
  4372. msgstr ""
  4373. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:126
  4374. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:124
  4375. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:119
  4376. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:106
  4377. msgid "Modem init timeout"
  4378. msgstr "Modemo „init“ užklausos laikas"
  4379. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:21
  4380. msgid "ModemManager"
  4381. msgstr "„Modemo Tvarkytuvas“"
  4382. #: modules/luci-base/htdocs/luci-static/resources/network.js:3868
  4383. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1073
  4384. msgid "Monitor"
  4385. msgstr "Monitorius"
  4386. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:31
  4387. msgid "More Characters"
  4388. msgstr "Daugiau charakterių"
  4389. #: modules/luci-base/htdocs/luci-static/resources/form.js:2581
  4390. msgid "More…"
  4391. msgstr "Daugiau…"
  4392. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:192
  4393. msgid "Mount Point"
  4394. msgstr "Prijungimo taškas"
  4395. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:144
  4396. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:228
  4397. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:102
  4398. msgid "Mount Points"
  4399. msgstr "Prijungimo taškai"
  4400. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:229
  4401. msgid "Mount Points - Mount Entry"
  4402. msgstr "Prijungimo taškai – Prijungimo įvadas"
  4403. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:341
  4404. msgid "Mount Points - Swap Entry"
  4405. msgstr "Prijungimo taškai – Sukeitimo įvadas"
  4406. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:228
  4407. msgid ""
  4408. "Mount Points define at which point a memory device will be attached to the "
  4409. "filesystem"
  4410. msgstr ""
  4411. "Prijungimo taškai nustato, į kurį atminties įrenginį bus prijungta failų "
  4412. "sistema"
  4413. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:154
  4414. msgid "Mount attached devices"
  4415. msgstr "Prijungti įrenginiai"
  4416. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:162
  4417. msgid "Mount filesystems not specifically configured"
  4418. msgstr "Prijungimo failų sistemos nėra specifiškai konfigūruotos"
  4419. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:332
  4420. msgid "Mount options"
  4421. msgstr "Prijungimo pasirinkimai"
  4422. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:293
  4423. msgid "Mount point"
  4424. msgstr "Prijungimo taškas"
  4425. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:158
  4426. msgid "Mount swap not specifically configured"
  4427. msgstr "Prijungimo sukeitimas nėra specifiškai konfigūruotos"
  4428. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:223
  4429. msgid "Mounted file systems"
  4430. msgstr "Prijungtos failų sistemos"
  4431. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:152
  4432. msgid "Move down"
  4433. msgstr "Judinti žemyn"
  4434. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:151
  4435. msgid "Move up"
  4436. msgstr "Judinti aukštyn"
  4437. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1146
  4438. msgid "Multi To Unicast"
  4439. msgstr ""
  4440. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:89
  4441. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:94
  4442. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:91
  4443. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:96
  4444. msgid "Multicast"
  4445. msgstr ""
  4446. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:99
  4447. msgid "Multicast Mode"
  4448. msgstr ""
  4449. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:773
  4450. msgid "Multicast routing"
  4451. msgstr ""
  4452. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:779
  4453. msgid "Multicast to unicast"
  4454. msgstr ""
  4455. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1557
  4456. msgid "NAS ID"
  4457. msgstr "„NAS ID“"
  4458. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:536
  4459. msgid "NAT action chain \"%h\""
  4460. msgstr "„NAT“ veiksmo grandinė \"%h\""
  4461. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:87
  4462. msgid "NAT-T Mode"
  4463. msgstr "„NAT-T“ režimas"
  4464. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:41
  4465. msgid "NAT64 Prefix"
  4466. msgstr "„NAT64“ Prielinksnis"
  4467. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:858
  4468. msgid "NAT64 prefix"
  4469. msgstr "„NAT64“ prielinksnis"
  4470. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:26
  4471. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:35
  4472. msgid "NCM"
  4473. msgstr "„NCM“"
  4474. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:975
  4475. msgid "NDP-Proxy slave"
  4476. msgstr ""
  4477. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:72
  4478. msgid "NT Domain"
  4479. msgstr "„NT“ domenas-sritis"
  4480. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:300
  4481. msgid "NTP server candidates"
  4482. msgstr "„NTP“ serverio kandidatai"
  4483. #: modules/luci-base/htdocs/luci-static/resources/form.js:2618
  4484. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4193
  4485. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:27
  4486. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1163
  4487. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:68
  4488. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:36
  4489. msgid "Name"
  4490. msgstr "Vardas/Pavadinimas"
  4491. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2104
  4492. msgid "Name of the new network"
  4493. msgstr "Naujo tinklo pavadinimas"
  4494. #: protocols/luci-proto-unet/htdocs/luci-static/resources/protocol/unet.js:38
  4495. msgid "Name of the tunnel device"
  4496. msgstr "Tunelio įrenginio pavadinimas"
  4497. #: themes/luci-theme-librecmc-2020/ucode/template/themes/librecmc2020/header.ut:39
  4498. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:50
  4499. msgid "Navigation"
  4500. msgstr "Navigacija"
  4501. #: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:10
  4502. msgid "Nebula Network"
  4503. msgstr "„Nebula“ tinklas"
  4504. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1619
  4505. msgid "Neighbour Report"
  4506. msgstr "Kaimynų apžvalga"
  4507. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:713
  4508. msgid "Neighbour cache validity"
  4509. msgstr ""
  4510. #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:45
  4511. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1018
  4512. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2256
  4513. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:383
  4514. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:63
  4515. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:232
  4516. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:186
  4517. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:212
  4518. msgid "Network"
  4519. msgstr "Tinklas"
  4520. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:104
  4521. msgid "Network Coding"
  4522. msgstr "Tinklo kodavimas"
  4523. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:76
  4524. msgid "Network Mode"
  4525. msgstr "Tinklo režimas"
  4526. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:97
  4527. msgid "Network Registration"
  4528. msgstr "Tinklo registravimas"
  4529. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2098
  4530. msgid "Network SSID"
  4531. msgstr "Tinklo „SSID“"
  4532. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:57
  4533. msgid "Network address"
  4534. msgstr "Tinklo adresas"
  4535. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:578
  4536. msgid "Network boot image"
  4537. msgstr "Tinklo įjungimo failas"
  4538. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:409
  4539. msgid "Network bridge configuration migration"
  4540. msgstr ""
  4541. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:397
  4542. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1481
  4543. msgid "Network device"
  4544. msgstr "Tinklo įrenginys"
  4545. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:7
  4546. msgid "Network device activity (kernel: netdev)"
  4547. msgstr "Tinklo įrenginio aktyvumas („kernel: netdev“)"
  4548. #: modules/luci-base/htdocs/luci-static/resources/network.js:15
  4549. #: modules/luci-compat/luasrc/model/network.lua:33
  4550. msgid "Network device is not present"
  4551. msgstr "Tinklo įrenginys nėra pasiekiamas"
  4552. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:645
  4553. msgid "Network device table \"%h\""
  4554. msgstr "Tinklo įrenginio lentelė „%h“"
  4555. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:78
  4556. msgctxt "nft @nh,off,len"
  4557. msgid "Network header bits %d-%d"
  4558. msgstr ""
  4559. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:443
  4560. msgid "Network ifname configuration migration"
  4561. msgstr ""
  4562. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:57
  4563. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62
  4564. msgid "Network interface"
  4565. msgstr "Tinklo sąsaja ir sietuvai"
  4566. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:617
  4567. msgid "Network-ID"
  4568. msgstr "Tinklo-ID"
  4569. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:774
  4570. msgid "Never"
  4571. msgstr "Niekada"
  4572. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:16
  4573. msgctxt "No WireGuard peer handshake yet"
  4574. msgid "Never"
  4575. msgstr "Niekada"
  4576. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:278
  4577. msgid ""
  4578. "Never forward matching domains and subdomains, resolve from DHCP or hosts "
  4579. "files only."
  4580. msgstr ""
  4581. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1215
  4582. msgid "New interface for \"%s\" can not be created: %s"
  4583. msgstr ""
  4584. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1166
  4585. msgid "New interface name…"
  4586. msgstr "Naujas sąsajos ir sietuvo pavadinimas…"
  4587. #: modules/luci-compat/luasrc/view/cbi/delegator.htm:11
  4588. msgid "Next »"
  4589. msgstr "Tolyn »"
  4590. #: modules/luci-base/htdocs/luci-static/resources/form.js:4094
  4591. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:298
  4592. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:346
  4593. msgid "No"
  4594. msgstr "Ne"
  4595. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:660
  4596. msgid "No DHCP Server configured for this interface"
  4597. msgstr "Nėra „DHCP“ serverio konfigūravimo šiai sąsajai ir/ar sietuvui"
  4598. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:202
  4599. msgid "No Data"
  4600. msgstr "Nėra duomenų"
  4601. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1391
  4602. msgid "No Encryption"
  4603. msgstr "Nėra šifravimo"
  4604. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:185
  4605. msgid "No Host Routes"
  4606. msgstr ""
  4607. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:89
  4608. msgid "No NAT-T"
  4609. msgstr "Nėra „NAT-T“"
  4610. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:79
  4611. msgid "No RX signal"
  4612. msgstr ""
  4613. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:148
  4614. msgid "No WireGuard interfaces configured."
  4615. msgstr ""
  4616. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:16
  4617. msgid "No allowed mode configuration found."
  4618. msgstr ""
  4619. #: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:68
  4620. #: themes/luci-theme-material/ucode/template/themes/material/header.ut:88
  4621. #: themes/luci-theme-librecmc-2020/ucode/template/themes/librecmc2020/header.ut:65
  4622. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:90
  4623. msgid ""
  4624. "No changes to settings will be stored and are lost after rebooting. This "
  4625. "mode should only be used to install a firmware upgrade"
  4626. msgstr ""
  4627. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69
  4628. msgid "No client associated"
  4629. msgstr ""
  4630. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:27
  4631. msgid "No control device specified"
  4632. msgstr ""
  4633. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3230
  4634. msgctxt "empty table placeholder"
  4635. msgid "No data"
  4636. msgstr "Nėra duomenų"
  4637. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:406
  4638. msgid "No data received"
  4639. msgstr "Duomenų negauta"
  4640. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:751
  4641. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:758
  4642. msgid "No enforcement"
  4643. msgstr "Jokio įgalinimo"
  4644. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:229
  4645. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:232
  4646. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:235
  4647. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:238
  4648. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:241
  4649. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:244
  4650. msgid "No entries available"
  4651. msgstr ""
  4652. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2932
  4653. msgid "No entries in this directory"
  4654. msgstr ""
  4655. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:846
  4656. msgid ""
  4657. "No fixed interface listening port defined, peers might not be able to "
  4658. "initiate connections to this WireGuard instance!"
  4659. msgstr ""
  4660. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:86
  4661. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:91
  4662. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:88
  4663. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:93
  4664. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:70
  4665. msgid "No host route"
  4666. msgstr ""
  4667. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:725
  4668. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:142
  4669. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:362
  4670. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:59
  4671. msgid "No information available"
  4672. msgstr "Nėra informacijos"
  4673. #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:63
  4674. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:8
  4675. msgid "No matching prefix delegation"
  4676. msgstr ""
  4677. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:142
  4678. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:145
  4679. msgid "No more slaves available"
  4680. msgstr ""
  4681. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:189
  4682. msgid "No more slaves available, can not save interface"
  4683. msgstr ""
  4684. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:499
  4685. msgid "No negative cache"
  4686. msgstr ""
  4687. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:696
  4688. msgid "No nftables ruleset loaded."
  4689. msgstr ""
  4690. #: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:57
  4691. #: themes/luci-theme-material/ucode/template/themes/material/header.ut:77
  4692. #: themes/luci-theme-librecmc-2020/ucode/template/themes/librecmc2020/header.ut:54
  4693. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:79
  4694. msgid "No password set!"
  4695. msgstr "Nėra nustatyto slaptažodžio!"
  4696. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:84
  4697. msgid "No peers connected"
  4698. msgstr ""
  4699. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:510
  4700. msgid "No peers defined yet."
  4701. msgstr ""
  4702. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:15
  4703. msgid "No preferred mode configuration found."
  4704. msgstr ""
  4705. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:146
  4706. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:283
  4707. msgid "No public keys present yet."
  4708. msgstr ""
  4709. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:613
  4710. msgctxt "nft chain is empty"
  4711. msgid "No rules in this chain"
  4712. msgstr "Nėra taisyklių šioje grandinėje"
  4713. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:91
  4714. msgid "No rules in this chain."
  4715. msgstr "Nėra taisyklių šioje grandinėje."
  4716. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:385
  4717. msgid "No validation or filtering"
  4718. msgstr "Nėra patikrinimo ar filtravimo"
  4719. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:153
  4720. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1260
  4721. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:259
  4722. msgid "No zone assigned"
  4723. msgstr "Nepriskirta jokia zona"
  4724. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:58
  4725. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:84
  4726. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:187
  4727. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:235
  4728. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:279
  4729. msgid "Noise"
  4730. msgstr "Triukšmas"
  4731. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:30
  4732. msgid "Noise Margin"
  4733. msgstr "Triukšmo riba"
  4734. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:272
  4735. msgid "Noise:"
  4736. msgstr "Triukšmas:"
  4737. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:336
  4738. msgid "Non-wildcard"
  4739. msgstr ""
  4740. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:159
  4741. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:183
  4742. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:80
  4743. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:83
  4744. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:112
  4745. msgid "None"
  4746. msgstr "Joks"
  4747. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:949
  4748. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:198
  4749. msgid "Normal"
  4750. msgstr "Normaliai"
  4751. #: modules/luci-base/ucode/template/error404.ut:9
  4752. msgid "Not Found"
  4753. msgstr "Nerasta"
  4754. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:211
  4755. msgctxt "VLAN port state"
  4756. msgid "Not Member"
  4757. msgstr "Ne narys"
  4758. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:75
  4759. msgid "Not associated"
  4760. msgstr "Nėra susietas"
  4761. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:32
  4762. msgid "Not connected"
  4763. msgstr "Neprisijungta"
  4764. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:46
  4765. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:81
  4766. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:121
  4767. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:147
  4768. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:329
  4769. msgid "Not present"
  4770. msgstr "Nėra"
  4771. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:102
  4772. msgid "Not started on boot"
  4773. msgstr "Nepradėtas įkrovos metu"
  4774. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:409
  4775. msgid "Not supported"
  4776. msgstr "Nepalaikomas"
  4777. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1777
  4778. msgid ""
  4779. "Note: Some wireless drivers do not fully support 802.11w. E.g. mwlwifi may "
  4780. "have problems"
  4781. msgstr ""
  4782. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:356
  4783. msgid ""
  4784. "Note: you may also need a DHCP Proxy (currently unavailable) when specifying "
  4785. "a non-standard Relay To port(<code>addr#port</code>)."
  4786. msgstr ""
  4787. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:142
  4788. msgid "Notes"
  4789. msgstr "Pastabos"
  4790. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:188
  4791. msgid "Notice"
  4792. msgstr "Pranešimas"
  4793. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:135
  4794. msgid "Nslookup"
  4795. msgstr "„Nslookup“"
  4796. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:333
  4797. msgid "Number of IGMP membership reports"
  4798. msgstr "„IGMP“ narystės ataskaitų skaičius"
  4799. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:560
  4800. msgid "Number of cached DNS entries, 10000 is maximum, 0 is no caching."
  4801. msgstr ""
  4802. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:311
  4803. msgid "Number of peer notifications after failover event"
  4804. msgstr ""
  4805. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:69
  4806. msgid "Obfuscated Group Password"
  4807. msgstr ""
  4808. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:61
  4809. msgid "Obfuscated Password"
  4810. msgstr ""
  4811. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:118
  4812. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:111
  4813. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:49
  4814. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:94
  4815. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:80
  4816. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:54
  4817. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:67
  4818. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:93
  4819. msgid "Obtain IPv6 address"
  4820. msgstr "Gauti „IPv6“ adresą"
  4821. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/none.js:19
  4822. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:87
  4823. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:352
  4824. msgid "Off"
  4825. msgstr "Išjungta"
  4826. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/timer.js:18
  4827. msgid "Off-State Delay"
  4828. msgstr ""
  4829. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1450
  4830. msgid ""
  4831. "Off: <code>vlanXXX</code>, e.g., <code>vlan1</code>. On: "
  4832. "<code>vlan_tagged_interface.XXX</code>, e.g. <code>eth0.1</code>."
  4833. msgstr ""
  4834. "Išjungtas: <code>vlanXXX</code>, e.g., <code>vlan1</code>. On: "
  4835. "<code>vlan_tagged_interface.XXX</code>, e.g. <code>eth0.1</code>."
  4836. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/none.js:19
  4837. msgid "On"
  4838. msgstr "Įjungta"
  4839. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/timer.js:12
  4840. msgid "On-State Delay"
  4841. msgstr ""
  4842. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:110
  4843. msgid "On-link"
  4844. msgstr ""
  4845. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:867
  4846. msgid "One of hostname or MAC address must be specified!"
  4847. msgstr ""
  4848. #: modules/luci-base/htdocs/luci-static/resources/validation.js:490
  4849. msgid "One of the following: %s"
  4850. msgstr "Vienas iš šių dalykų: „%s“"
  4851. #: modules/luci-compat/luasrc/view/cbi/nullsection.htm:17
  4852. #: modules/luci-compat/luasrc/view/cbi/ucisection.htm:22
  4853. msgid "One or more fields contain invalid values!"
  4854. msgstr "Viename ar daugiau laukų yra negaliojančių reikšmių!"
  4855. #: modules/luci-compat/luasrc/view/cbi/map.htm:32
  4856. msgid "One or more invalid/required values on tab"
  4857. msgstr ""
  4858. #: modules/luci-compat/luasrc/view/cbi/nullsection.htm:19
  4859. #: modules/luci-compat/luasrc/view/cbi/ucisection.htm:24
  4860. msgid "One or more required fields have no value!"
  4861. msgstr "Viename ar daugiau privalomų laukų neturi reikšmės!"
  4862. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:413
  4863. msgid "Only accept replies via"
  4864. msgstr ""
  4865. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:770
  4866. msgid "Only allow communication with non-isolated bridge ports when enabled"
  4867. msgstr ""
  4868. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:231
  4869. msgid ""
  4870. "Only if current active slave fails and the primary slave is up (failure, 2)"
  4871. msgstr ""
  4872. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:682
  4873. msgid "Open iptables rules overview…"
  4874. msgstr "Atidaryti „iptables“ taisyklių apibendrinimą…"
  4875. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:472
  4876. msgid "Open list..."
  4877. msgstr "Atidaryti sąrašą..."
  4878. #: modules/luci-compat/luasrc/model/network/proto_openconnect.lua:9
  4879. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:65
  4880. msgid "OpenConnect (CISCO AnyConnect)"
  4881. msgstr "„OpenConnect (CISCO AnyConnect)“"
  4882. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:63
  4883. msgid "OpenFortivpn"
  4884. msgstr "„OpenFortivpn“"
  4885. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:741
  4886. msgid ""
  4887. "Operate in <em>relay mode</em> if a designated master interface is "
  4888. "configured and active, otherwise disable <abbr title=\"Neighbour Discovery "
  4889. "Protocol\">NDP</abbr> proxying."
  4890. msgstr ""
  4891. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:740
  4892. msgid ""
  4893. "Operate in <em>relay mode</em> if a designated master interface is "
  4894. "configured and active, otherwise fall back to <em>server mode</em>."
  4895. msgstr ""
  4896. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:742
  4897. msgid ""
  4898. "Operate in <em>relay mode</em> if an upstream IPv6 prefix is present, "
  4899. "otherwise disable service."
  4900. msgstr ""
  4901. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:934
  4902. msgid "Operating frequency"
  4903. msgstr "Operuojantis dažnis"
  4904. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:100
  4905. msgid "Operator"
  4906. msgstr "Operatorius"
  4907. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:101
  4908. msgid "Operator Code"
  4909. msgstr "Operatoriaus kodas"
  4910. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:135
  4911. msgid "Operator Name"
  4912. msgstr "Operatorio pavadinimas"
  4913. #: modules/luci-base/htdocs/luci-static/resources/form.js:2006
  4914. #: modules/luci-base/htdocs/luci-static/resources/form.js:4106
  4915. msgid "Option \"%s\" contains an invalid input value."
  4916. msgstr "Parametre „%s“ yra negaliojanti įvesties reikšmė."
  4917. #: modules/luci-base/htdocs/luci-static/resources/form.js:2021
  4918. msgid "Option \"%s\" must not be empty."
  4919. msgstr "Parametras „%s“ negali būti tuščias."
  4920. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4445
  4921. msgid "Option changed"
  4922. msgstr "Parametras pakeistas"
  4923. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4447
  4924. msgid "Option removed"
  4925. msgstr "Parametras pašalintas"
  4926. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1440
  4927. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1779
  4928. msgid "Optional"
  4929. msgstr "Pasirenkamas"
  4930. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:786
  4931. msgid "Optional hostname to assign"
  4932. msgstr "Priskirti pasirinktinį įrenginio pavadinimą"
  4933. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:142
  4934. msgid "Optional, free-form notes about this device"
  4935. msgstr ""
  4936. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:147
  4937. msgid "Optional, in seconds. If set to '0', no reconnect is attempted."
  4938. msgstr ""
  4939. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:201
  4940. msgid ""
  4941. "Optional. 32-bit mark for outgoing encrypted packets. Enter value in hex, "
  4942. "starting with <code>0x</code>."
  4943. msgstr ""
  4944. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1084
  4945. msgid ""
  4946. "Optional. Allowed values: 'eui64', 'random', fixed value like '::1' or "
  4947. "'::1:2'. When IPv6 prefix (like 'a:b:c:d::') is received from a delegating "
  4948. "server, use the suffix (like '::1') to form the IPv6 address ('a:b:c:d::1') "
  4949. "for the interface."
  4950. msgstr ""
  4951. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:599
  4952. msgid ""
  4953. "Optional. Base64-encoded preshared key. Adds in an additional layer of "
  4954. "symmetric-key cryptography for post-quantum resistance."
  4955. msgstr ""
  4956. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:659
  4957. msgid "Optional. Create routes for Allowed IPs for this peer."
  4958. msgstr ""
  4959. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:517
  4960. msgid "Optional. Description of peer."
  4961. msgstr ""
  4962. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:185
  4963. msgid "Optional. Do not create host routes to peers."
  4964. msgstr ""
  4965. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:662
  4966. msgid ""
  4967. "Optional. Host of peer. Names are resolved prior to bringing up the "
  4968. "interface."
  4969. msgstr ""
  4970. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:624
  4971. msgid ""
  4972. "Optional. IP addresses and prefixes that this peer is allowed to use inside "
  4973. "the tunnel. Usually the peer's tunnel IP addresses and the networks the peer "
  4974. "routes through the tunnel."
  4975. msgstr ""
  4976. #: protocols/luci-proto-xfrm/htdocs/luci-static/resources/protocol/xfrm.js:46
  4977. msgid "Optional. Maximum Transmission Unit of the XFRM interface."
  4978. msgstr ""
  4979. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:196
  4980. msgid "Optional. Maximum Transmission Unit of tunnel interface."
  4981. msgstr ""
  4982. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:678
  4983. msgid "Optional. Port of peer."
  4984. msgstr ""
  4985. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:590
  4986. msgid ""
  4987. "Optional. Private key of the WireGuard peer. The key is not required for "
  4988. "establishing a connection but allows generating a peer configuration or QR "
  4989. "code if available. It can be removed after the configuration has been "
  4990. "exported."
  4991. msgstr ""
  4992. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:683
  4993. msgid ""
  4994. "Optional. Seconds between keep alive messages. Default is 0 (disabled). "
  4995. "Recommended value if this device is behind a NAT is 25."
  4996. msgstr ""
  4997. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:176
  4998. msgid "Optional. UDP port used for outgoing and incoming packets."
  4999. msgstr ""
  5000. "Pasirinktinai. „UDP“ prievadas, naudojamas išeinantiems ir įeinantiems "
  5001. "paketams."
  5002. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:72
  5003. msgid "Options"
  5004. msgstr "Parametrai"
  5005. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:612
  5006. msgid ""
  5007. "Options for the Network-ID. (Note: needs also Network-ID.) E.g. "
  5008. "\"<code>42,192.168.1.4</code>\" for NTP server, \"<code>3,192.168.4.4</"
  5009. "code>\" for default route. <code>0.0.0.0</code> means \"the address of the "
  5010. "system running dnsmasq\"."
  5011. msgstr ""
  5012. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:125
  5013. msgid "Options:"
  5014. msgstr "Parametrai:"
  5015. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:665
  5016. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:697
  5017. msgid "Ordinal: lower comes first."
  5018. msgstr ""
  5019. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:55
  5020. msgid "Originator Interval"
  5021. msgstr "Pradininko intervalas"
  5022. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:348
  5023. msgid "Other:"
  5024. msgstr "Kiti:"
  5025. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:69
  5026. msgid "Out"
  5027. msgstr "Iš"
  5028. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:277
  5029. msgid "Outbound:"
  5030. msgstr "išsiunčiamas:"
  5031. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:101
  5032. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:106
  5033. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:103
  5034. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:108
  5035. msgid "Outgoing checksum"
  5036. msgstr "Išsiunčiama kontrolinė suma"
  5037. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:156
  5038. msgid "Outgoing interface"
  5039. msgstr "Išsiunčiama sąsaja"
  5040. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:96
  5041. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:101
  5042. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:98
  5043. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:103
  5044. #: protocols/luci-proto-vti/htdocs/luci-static/resources/protocol/vti.js:68
  5045. msgid "Outgoing key"
  5046. msgstr ""
  5047. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:103
  5048. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:108
  5049. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:105
  5050. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:110
  5051. msgid "Outgoing serialization"
  5052. msgstr ""
  5053. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:50
  5054. msgid "Output Interface"
  5055. msgstr "Išvesties sąsaja"
  5056. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:59
  5057. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:165
  5058. msgid "Output zone"
  5059. msgstr "Išvesties zona"
  5060. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:16
  5061. msgid "Overlap"
  5062. msgstr ""
  5063. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1021
  5064. msgid "Override IPv4 routing table"
  5065. msgstr "Perkeisti „IPv4“ maršrutizavimo lentelę"
  5066. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1026
  5067. msgid "Override IPv6 routing table"
  5068. msgstr "Perkeisti „IPv6“ maršrutizavimo lentelę"
  5069. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv_hardif.js:54
  5070. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:64
  5071. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:69
  5072. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:69
  5073. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:74
  5074. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:53
  5075. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:128
  5076. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:142
  5077. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:194
  5078. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:57
  5079. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:132
  5080. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:118
  5081. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:96
  5082. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:105
  5083. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:110
  5084. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:62
  5085. #: protocols/luci-proto-vti/htdocs/luci-static/resources/protocol/vti.js:55
  5086. msgid "Override MTU"
  5087. msgstr "Perkeisti „MTU“"
  5088. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:74
  5089. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:79
  5090. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:63
  5091. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:67
  5092. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:62
  5093. msgid "Override TOS"
  5094. msgstr "Perkeisti „TOS“"
  5095. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:69
  5096. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:74
  5097. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:74
  5098. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:79
  5099. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:58
  5100. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:62
  5101. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:57
  5102. msgid "Override TTL"
  5103. msgstr "Perkeisti „TTL“"
  5104. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1161
  5105. msgid ""
  5106. "Override default MAC address - the range of usable addresses might be "
  5107. "limited by the driver"
  5108. msgstr ""
  5109. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1153
  5110. msgid "Override default interface name"
  5111. msgstr ""
  5112. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:167
  5113. msgid "Override the gateway in DHCP responses"
  5114. msgstr ""
  5115. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:708
  5116. msgid ""
  5117. "Override the netmask sent to clients. Normally it is calculated from the "
  5118. "subnet that is served."
  5119. msgstr ""
  5120. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:179
  5121. msgid "Override the table used for internal routes"
  5122. msgstr ""
  5123. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:3
  5124. msgid "Overview"
  5125. msgstr "Apžiūra"
  5126. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2780
  5127. msgid "Overwrite existing file \"%s\" ?"
  5128. msgstr "Perrašyti egzistuojantį failą „%s“?"
  5129. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:355
  5130. msgid "Overwrite the current settings with the imported configuration?"
  5131. msgstr "Perrašyti dabartinius nustatymus su importuotą konfigūraciją?"
  5132. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:98
  5133. msgid "Own Numbers"
  5134. msgstr "Savi numeriai"
  5135. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:70
  5136. msgid "Owner"
  5137. msgstr "Savininkas"
  5138. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:78
  5139. msgid "PAP"
  5140. msgstr "„PAP“"
  5141. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:77
  5142. msgid "PAP/CHAP"
  5143. msgstr "„PAP/CHAP“"
  5144. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:80
  5145. msgid "PAP/CHAP (both)"
  5146. msgstr "„PAP/CHAP“ (abu)"
  5147. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:111
  5148. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:88
  5149. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:130
  5150. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:107
  5151. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:45
  5152. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:90
  5153. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:76
  5154. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:44
  5155. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:63
  5156. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:94
  5157. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:46
  5158. msgid "PAP/CHAP password"
  5159. msgstr "„PAP/CHAP“ slaptažodis"
  5160. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:109
  5161. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:83
  5162. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:125
  5163. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:105
  5164. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:43
  5165. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:88
  5166. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:74
  5167. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:42
  5168. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:61
  5169. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:89
  5170. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:44
  5171. msgid "PAP/CHAP username"
  5172. msgstr "„PAP/CHAP“ slapyvardis/vartotojo vardas"
  5173. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:94
  5174. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:114
  5175. msgid "PDP Type"
  5176. msgstr "„PDP“ tipas"
  5177. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:69
  5178. msgid "PID"
  5179. msgstr "„PID“"
  5180. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:106
  5181. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:73
  5182. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:76
  5183. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:102
  5184. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:79
  5185. msgid "PIN"
  5186. msgstr "„PIN“"
  5187. #: modules/luci-base/htdocs/luci-static/resources/network.js:21
  5188. #: modules/luci-compat/luasrc/model/network.lua:39
  5189. msgid "PIN code rejected"
  5190. msgstr "„PIN“ kodas atmestas"
  5191. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1597
  5192. msgid "PMK R1 Push"
  5193. msgstr "„PMK R1 Push“"
  5194. #: modules/luci-compat/luasrc/model/network/proto_ppp.lua:13
  5195. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:43
  5196. msgid "PPP"
  5197. msgstr "„PPP“"
  5198. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:58
  5199. msgid "PPPoA Encapsulation"
  5200. msgstr "„PPPoA“ Inkapsuliavimas"
  5201. #: modules/luci-compat/luasrc/model/network/proto_ppp.lua:19
  5202. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:28
  5203. msgid "PPPoATM"
  5204. msgstr "„PPPoATM“"
  5205. #: modules/luci-compat/luasrc/model/network/proto_ppp.lua:17
  5206. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:28
  5207. msgid "PPPoE"
  5208. msgstr "„PPPoE“"
  5209. #: modules/luci-compat/luasrc/model/network/proto_pppossh.lua:9
  5210. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:28
  5211. msgid "PPPoSSH"
  5212. msgstr "„PPPoSSH“"
  5213. #: modules/luci-compat/luasrc/model/network/proto_ppp.lua:15
  5214. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:28
  5215. msgid "PPtP"
  5216. msgstr "„PPtP“"
  5217. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:73
  5218. msgid "PSID offset"
  5219. msgstr "„PSID“ poslinkis"
  5220. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:70
  5221. msgid "PSID-bits length"
  5222. msgstr "„PSID“ bitų ilgis"
  5223. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:571
  5224. msgctxt "Label indicating that WireGuard peer uses a PSK"
  5225. msgid "PSK"
  5226. msgstr "„PSK“"
  5227. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1580
  5228. msgid "PTM/EFM (Packet Transfer Mode)"
  5229. msgstr "„PTM/EFM“ (Paketų perdavimo režimas)"
  5230. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:266
  5231. msgid "PXE/TFTP Settings"
  5232. msgstr "„PXE/TFTP“ Nustatymai"
  5233. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:103
  5234. msgid "Packet Service State"
  5235. msgstr "Paketų aptarnavimo būseną"
  5236. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1538
  5237. msgid "Packet Steering"
  5238. msgstr "Paketų valdymo komanda"
  5239. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:25
  5240. msgctxt "nft meta mark"
  5241. msgid "Packet mark"
  5242. msgstr "Paketų žymė"
  5243. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:27
  5244. msgctxt "nft meta time"
  5245. msgid "Packet receive time"
  5246. msgstr "Paketų gavimo laikas"
  5247. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:54
  5248. msgid "Packets"
  5249. msgstr "Paketai"
  5250. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:277
  5251. msgid "Packets To Transmit Before Moving To Next Slave"
  5252. msgstr ""
  5253. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:291
  5254. msgid "Part of network:"
  5255. msgid_plural "Part of networks:"
  5256. msgstr[0] "Tinklo dalis:"
  5257. msgstr[1] "Kelių tinklų dalis:"
  5258. msgstr[2] "Daugumos tinklų dalis:"
  5259. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:153
  5260. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1260
  5261. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:259
  5262. msgid "Part of zone %q"
  5263. msgstr ""
  5264. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:492
  5265. msgctxt "MACVLAN mode"
  5266. msgid "Pass-through (Mirror physical device to single MAC VLAN)"
  5267. msgstr ""
  5268. #: modules/luci-base/ucode/template/sysauth.ut:29
  5269. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1770
  5270. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:51
  5271. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:149
  5272. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:103
  5273. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:58
  5274. #: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:19
  5275. msgid "Password"
  5276. msgstr "Slaptažodis"
  5277. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:25
  5278. msgid "Password authentication"
  5279. msgstr "Slaptažodžio autentifikavimas"
  5280. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1702
  5281. msgid "Password of Private Key"
  5282. msgstr "Privataus rakto slaptažodis"
  5283. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1760
  5284. msgid "Password of inner Private Key"
  5285. msgstr "Privataus vidinio rakto slaptažodis"
  5286. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:31
  5287. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:33
  5288. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:35
  5289. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:37
  5290. msgid "Password strength"
  5291. msgstr "Slaptažodžio stiprumas"
  5292. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:152
  5293. msgid "Password2"
  5294. msgstr "Slaptažodis2"
  5295. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:266
  5296. msgid "Paste or drag SSH key file…"
  5297. msgstr "Įklijuoti arba nutempti „SSH“ rakto failą…"
  5298. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:444
  5299. msgid "Paste or drag WireGuard peer configuration (wg0.conf) file…"
  5300. msgstr ""
  5301. "Įklijuokite arba vilkite „WireGuard“ lygiavertės konfigūracijos („wg0.conf“) "
  5302. "failą…"
  5303. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:437
  5304. msgid ""
  5305. "Paste or drag a WireGuard configuration (commonly <em>wg0.conf</em>) from "
  5306. "another system below to create a matching peer entry allowing that system to "
  5307. "connect to the local WireGuard interface."
  5308. msgstr ""
  5309. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:443
  5310. msgid "Paste or drag supplied WireGuard configuration file…"
  5311. msgstr ""
  5312. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1681
  5313. msgid "Path to CA-Certificate"
  5314. msgstr "Kelias į „CA-Sertifikatas“"
  5315. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1696
  5316. msgid "Path to Client-Certificate"
  5317. msgstr "Kelias į „Kliento-Sertifikatas“"
  5318. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1699
  5319. msgid "Path to Private Key"
  5320. msgstr "Kelias į privatų raktą"
  5321. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1739
  5322. msgid "Path to inner CA-Certificate"
  5323. msgstr ""
  5324. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1754
  5325. msgid "Path to inner Client-Certificate"
  5326. msgstr ""
  5327. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1757
  5328. msgid "Path to inner Private Key"
  5329. msgstr "Kelias į vidinį privatų raktą"
  5330. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2727
  5331. msgid "Paused"
  5332. msgstr "Pristabdytas"
  5333. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:273
  5334. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:283
  5335. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:334
  5336. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:344
  5337. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:354
  5338. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:239
  5339. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:249
  5340. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:259
  5341. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:268
  5342. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:278
  5343. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:296
  5344. msgid "Peak:"
  5345. msgstr "Pikas:"
  5346. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:74
  5347. msgid "Peer"
  5348. msgstr "Lygiarangis"
  5349. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:51
  5350. msgid "Peer Details"
  5351. msgstr ""
  5352. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:89
  5353. msgid "Peer IP address to assign"
  5354. msgstr ""
  5355. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:667
  5356. msgid "Peer MAC address"
  5357. msgstr "Lygiarangio „MAC“ adresas"
  5358. #: modules/luci-base/htdocs/luci-static/resources/network.js:14
  5359. #: modules/luci-compat/luasrc/model/network.lua:32
  5360. msgid "Peer address is missing"
  5361. msgstr ""
  5362. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:648
  5363. msgid "Peer device name"
  5364. msgstr ""
  5365. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:513
  5366. msgid "Peer disabled"
  5367. msgstr ""
  5368. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:214
  5369. msgid "Peers"
  5370. msgstr "Lygiarangiai"
  5371. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:80
  5372. msgid "Perfect Forward Secrecy"
  5373. msgstr ""
  5374. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:103
  5375. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:108
  5376. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:105
  5377. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:110
  5378. msgid "Perform outgoing packets serialization (optional)."
  5379. msgstr ""
  5380. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:34
  5381. msgid "Perform reboot"
  5382. msgstr "Atlikti perkrovimą"
  5383. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:406
  5384. msgid "Perform reset"
  5385. msgstr "Atlikti atstatymą"
  5386. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:407
  5387. msgid "Permission denied"
  5388. msgstr "Prieigą uždrausta/atmesta"
  5389. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:683
  5390. msgid "Persistent Keep Alive"
  5391. msgstr ""
  5392. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:147
  5393. msgid "Persistent reconnect interval"
  5394. msgstr ""
  5395. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:334
  5396. msgid "PersistentKeepAlive setting is invalid"
  5397. msgstr "„PersistentKeepAlive“ nustatymas yra netinkamas"
  5398. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:290
  5399. msgid "Phy Rate:"
  5400. msgstr "Fizinis rodiklis:"
  5401. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:496
  5402. msgid "Physical Settings"
  5403. msgstr "Fiziniai nustatymai"
  5404. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:87
  5405. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:88
  5406. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:98
  5407. msgid "Ping"
  5408. msgstr "Ryšio atsakas"
  5409. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:49
  5410. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:50
  5411. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:84
  5412. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:85
  5413. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:138
  5414. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:64
  5415. msgid "Pkts."
  5416. msgstr "Pkt."
  5417. #: modules/luci-base/ucode/template/sysauth.ut:19
  5418. msgid "Please enter your username and password."
  5419. msgstr "Prašome įvesti savo slapyvardį/vartotojo vardą ir slaptažodį."
  5420. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4176
  5421. msgid "Please select the file to upload."
  5422. msgstr "Pasirinkite failą, kurį norite įkelti."
  5423. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:54
  5424. msgid "Policy"
  5425. msgstr "Politika"
  5426. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:594
  5427. msgctxt "Chain hook policy"
  5428. msgid "Policy: <strong>%h</strong> (%h)"
  5429. msgstr "Politika: <strong>%h</strong> (%h)"
  5430. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:660
  5431. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:21
  5432. msgid "Port"
  5433. msgstr "Prievadas („Port'as“)"
  5434. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:137
  5435. msgctxt "WireGuard listen port"
  5436. msgid "Port %d"
  5437. msgstr "Prievado „%d“"
  5438. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:293
  5439. msgid "Port is not part of any network"
  5440. msgstr "Prievadas nėra jokio tinklo dalis"
  5441. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:770
  5442. msgid "Port isolation"
  5443. msgstr "Prievado izoliavimas"
  5444. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:299
  5445. msgid "Port status"
  5446. msgstr "Prievado būklė"
  5447. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:278
  5448. msgid "Port status:"
  5449. msgstr "Prievado būklė:"
  5450. #: modules/luci-base/htdocs/luci-static/resources/validation.js:516
  5451. msgid "Potential negation of: %s"
  5452. msgstr "Galimas sutarimas: %s"
  5453. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:89
  5454. msgid "Power State"
  5455. msgstr "Energijos būsena"
  5456. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:78
  5457. msgid "Prefer LTE"
  5458. msgstr ""
  5459. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:79
  5460. msgid "Prefer UMTS"
  5461. msgstr ""
  5462. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:979
  5463. msgid "Preferred lifetime for a prefix."
  5464. msgstr ""
  5465. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:106
  5466. msgid "Preferred network technology"
  5467. msgstr "Pageidautiną tinklo technologija"
  5468. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:33
  5469. msgid "Prefix Delegated"
  5470. msgstr "Priešdėlis deleguotas"
  5471. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:192
  5472. msgid "Prefix suppressor"
  5473. msgstr "Priešdėlio slopintuvas"
  5474. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:599
  5475. msgid "Preshared Key"
  5476. msgstr ""
  5477. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:570
  5478. msgid "Preshared key in use"
  5479. msgstr ""
  5480. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:308
  5481. msgid "PresharedKey setting is invalid"
  5482. msgstr ""
  5483. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:130
  5484. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:102
  5485. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:88
  5486. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:62
  5487. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:75
  5488. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:98
  5489. msgid ""
  5490. "Presume peer to be dead after given amount of LCP echo failures, use 0 to "
  5491. "ignore failures"
  5492. msgstr ""
  5493. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1149
  5494. msgid "Prevents client-to-client communication"
  5495. msgstr ""
  5496. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:61
  5497. msgid ""
  5498. "Prevents one wireless client to talk to another. This setting only affects "
  5499. "packets without any VLAN tag (untagged packets)."
  5500. msgstr ""
  5501. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:213
  5502. msgid "Primary Slave"
  5503. msgstr ""
  5504. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:230
  5505. msgid ""
  5506. "Primary becomes active slave when it comes back up if speed and duplex "
  5507. "better than current slave (better, 1)"
  5508. msgstr ""
  5509. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:229
  5510. msgid "Primary becomes active slave whenever it comes back up (always, 0)"
  5511. msgstr ""
  5512. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:562
  5513. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:665
  5514. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:697
  5515. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:130
  5516. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:197
  5517. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:223
  5518. msgid "Priority"
  5519. msgstr "Prioritetas"
  5520. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:565
  5521. msgctxt "Label indicating that WireGuard peer private key is stored"
  5522. msgid "Private"
  5523. msgstr "Privatus"
  5524. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:490
  5525. msgctxt "MACVLAN mode"
  5526. msgid "Private (Prevent communication between MAC VLANs)"
  5527. msgstr "Privatus (Neleidžia komunikacijos tarp „MAC VLAN'ų“)"
  5528. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:151
  5529. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:590
  5530. msgid "Private Key"
  5531. msgstr "Privatus raktas"
  5532. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:564
  5533. msgid "Private key present"
  5534. msgstr "Privatus raktas įgalintas"
  5535. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:296
  5536. msgid "PrivateKey setting is missing or invalid"
  5537. msgstr "Privataus rakto nustatymas nerandamas arba netinkamas"
  5538. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:64
  5539. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:93
  5540. msgid "Processes"
  5541. msgstr "Procesai"
  5542. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:67
  5543. msgid "Prot."
  5544. msgstr ""
  5545. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:80
  5546. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:571
  5547. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1180
  5548. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:384
  5549. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:32
  5550. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:191
  5551. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:217
  5552. msgid "Protocol"
  5553. msgstr "Protokolas"
  5554. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:282
  5555. msgid "Provide NTP server"
  5556. msgstr "Teikti „NTP“ serverį"
  5557. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:930
  5558. msgid ""
  5559. "Provide a DHCPv6 server on this interface and reply to DHCPv6 solicitations "
  5560. "and requests."
  5561. msgstr ""
  5562. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:877
  5563. msgid "Provide new network"
  5564. msgstr "Pateikti naują tinklą"
  5565. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:288
  5566. msgid ""
  5567. "Provide the NTP server to the selected interface or, if unspecified, to all "
  5568. "interfaces"
  5569. msgstr ""
  5570. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:155
  5571. msgid "Proxy Server"
  5572. msgstr "Įgaliotasis serveris"
  5573. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1653
  5574. msgid "ProxyARP"
  5575. msgstr "„ProxyARP“"
  5576. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1072
  5577. msgid "Pseudo Ad-Hoc (ahdemo)"
  5578. msgstr ""
  5579. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:158
  5580. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:585
  5581. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:37
  5582. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:54
  5583. msgid "Public Key"
  5584. msgstr "Viešasis raktas"
  5585. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:547
  5586. msgid "Public key is missing"
  5587. msgstr "Viešasis raktas nerandamas"
  5588. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:556
  5589. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:101
  5590. msgctxt "Tooltip displaying full WireGuard peer public key"
  5591. msgid "Public key: %h"
  5592. msgstr "Viešasis raktas: %h"
  5593. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:290
  5594. msgid ""
  5595. "Public keys allow for the passwordless SSH logins with a higher security "
  5596. "compared to the use of plain passwords. In order to upload a new key to the "
  5597. "device, paste an OpenSSH compatible public key line or drag a <code>.pub</"
  5598. "code> file into the input field."
  5599. msgstr ""
  5600. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:192
  5601. msgid "Public prefix routed to this device for distribution to clients."
  5602. msgstr ""
  5603. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:305
  5604. msgid "PublicKey setting is invalid"
  5605. msgstr "Viešojo rakto nustatymas yra neteisingas"
  5606. #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:9
  5607. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:27
  5608. msgid "QMI Cellular"
  5609. msgstr "„QMI“ mobilusis"
  5610. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:146
  5611. msgid "Quality"
  5612. msgstr "Kokybė"
  5613. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:514
  5614. msgid "Query all available upstream resolvers."
  5615. msgstr ""
  5616. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:610
  5617. msgid "Query interval"
  5618. msgstr "Užklausos intervalas"
  5619. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:615
  5620. msgid "Query response interval"
  5621. msgstr "Užklausos atsakos intervalas"
  5622. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1585
  5623. msgid "R0 Key Lifetime"
  5624. msgstr ""
  5625. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1591
  5626. msgid "R1 Key Holder"
  5627. msgstr ""
  5628. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1425
  5629. msgid "RADIUS Accounting Port"
  5630. msgstr ""
  5631. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1431
  5632. msgid "RADIUS Accounting Secret"
  5633. msgstr ""
  5634. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1420
  5635. msgid "RADIUS Accounting Server"
  5636. msgstr ""
  5637. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1409
  5638. msgid "RADIUS Authentication Port"
  5639. msgstr "„RADIUS“ atpažinimo prievadas"
  5640. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1415
  5641. msgid "RADIUS Authentication Secret"
  5642. msgstr "„RADIUS“ autentifikavimo paslaptis"
  5643. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1404
  5644. msgid "RADIUS Authentication Server"
  5645. msgstr "„RADIUS“ autentifikavimo serveris"
  5646. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1437
  5647. msgid "RADIUS Dynamic VLAN Assignment"
  5648. msgstr ""
  5649. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1446
  5650. msgid "RADIUS Per STA VLAN"
  5651. msgstr ""
  5652. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1463
  5653. msgid "RADIUS VLAN Bridge Naming Scheme"
  5654. msgstr ""
  5655. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1450
  5656. msgid "RADIUS VLAN Naming"
  5657. msgstr "„RADIUS VLAN įvardijimas“"
  5658. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1453
  5659. msgid "RADIUS VLAN Tagged Interface"
  5660. msgstr ""
  5661. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:88
  5662. msgid "RFC3947 NAT-T mode"
  5663. msgstr ""
  5664. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1485
  5665. msgid "RSN Preauth"
  5666. msgstr ""
  5667. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:998
  5668. msgid "RSSI threshold for joining"
  5669. msgstr ""
  5670. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:961
  5671. msgid "RTS/CTS Threshold"
  5672. msgstr ""
  5673. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:49
  5674. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:84
  5675. msgid "RX"
  5676. msgstr "Atsiųsta/Gauta reaktyviai"
  5677. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:236
  5678. msgid "RX Rate"
  5679. msgstr "Atsiųsta/Gauta reaktyviai greitis"
  5680. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2260
  5681. msgid "RX Rate / TX Rate"
  5682. msgstr ""
  5683. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1614
  5684. msgid ""
  5685. "Radio Resource Measurement - Sends beacons to assist roaming. Not all "
  5686. "clients support this."
  5687. msgstr ""
  5688. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:61
  5689. msgctxt "nft nat flag random"
  5690. msgid "Randomize source port mapping"
  5691. msgstr ""
  5692. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:88
  5693. msgid "Raw hex-encoded bytes. Leave empty unless your ISP require this"
  5694. msgstr ""
  5695. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:420
  5696. msgid "Read <code>/etc/ethers</code> to configure the DHCP server."
  5697. msgstr ""
  5698. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:576
  5699. msgid "Really switch protocol?"
  5700. msgstr "Tikrai perjungtį protokolą?"
  5701. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:118
  5702. msgid "Realtime Graphs"
  5703. msgstr "Realaus laiko grafikai"
  5704. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1568
  5705. msgid "Reassociation Deadline"
  5706. msgstr ""
  5707. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:312
  5708. msgid "Rebind protection"
  5709. msgstr "Perrišti apsaugą"
  5710. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:20
  5711. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:140
  5712. msgid "Reboot"
  5713. msgstr "Paleisti iš naujo"
  5714. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:153
  5715. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:162
  5716. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:46
  5717. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:51
  5718. msgid "Rebooting…"
  5719. msgstr "Paleidžiama iš naujo…"
  5720. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:21
  5721. msgid "Reboots the operating system of your device"
  5722. msgstr "Paleidžia iš naujo Jūsų įrenginio operacinę sistemą"
  5723. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:26
  5724. msgid "Receive"
  5725. msgstr "Gauti"
  5726. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:243
  5727. msgid "Receive dropped"
  5728. msgstr "Gavimas atmestas"
  5729. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:242
  5730. msgid "Receive errors"
  5731. msgstr "Gauti klaidas"
  5732. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:57
  5733. msgid "Received Data"
  5734. msgstr "Gauti duomenys"
  5735. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:239
  5736. msgid "Received bytes"
  5737. msgstr "Gauti bytus"
  5738. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:241
  5739. msgid "Received multicast"
  5740. msgstr "Gauti daugiadresiniai transliavimai"
  5741. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:240
  5742. msgid "Received packets"
  5743. msgstr "Gauti paketai"
  5744. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:181
  5745. msgid "Recommended. IP addresses of the WireGuard interface."
  5746. msgstr "Rekomenduojamas. „WireGuard“ sąsajos IP adresai."
  5747. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:199
  5748. msgid "Reconnect Timeout"
  5749. msgstr "Iš naujo prisijungti laukimo laikas"
  5750. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:521
  5751. msgid "Reconnect this interface"
  5752. msgstr "Iš naujo prijungti šią sąsają"
  5753. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/uhttpd.js:14
  5754. msgid "Redirect to HTTPS"
  5755. msgstr "Peradresuoti į „HTTPS“"
  5756. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:118
  5757. msgctxt "nft redirect to port"
  5758. msgid "Redirect to local port <strong>%h</strong>"
  5759. msgstr "Peradresuoti į vietinią prievadą „<strong>%h</strong>“"
  5760. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:117
  5761. msgctxt "nft redirect"
  5762. msgid "Redirect to local system"
  5763. msgstr "Peradresuoti į vietinią sistemą"
  5764. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:57
  5765. msgid "References"
  5766. msgstr "Išnašos"
  5767. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:373
  5768. msgid "Refresh Channels"
  5769. msgstr "Įkelti iš naujo kanalus"
  5770. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2721
  5771. msgid "Refreshing"
  5772. msgstr "Įkeliama iš naujo"
  5773. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:102
  5774. msgid "Registration State"
  5775. msgstr "Registracijos būseną"
  5776. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:101
  5777. msgctxt "nft reject with icmp type"
  5778. msgid "Reject IPv4 packet with <strong>ICMP type %h</strong>"
  5779. msgstr "Atmesti „IPv4“ paketą su „<strong>ICMP type %h</strong>“"
  5780. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:103
  5781. msgctxt "nft reject with icmpx type"
  5782. msgid "Reject packet with <strong>ICMP type %h</strong>"
  5783. msgstr "Atmesti paketą su „<strong>ICMP type %h</strong>“"
  5784. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:102
  5785. msgctxt "nft reject with icmpv6 type"
  5786. msgid "Reject packet with <strong>ICMPv6 type %h</strong>"
  5787. msgstr "Atmesti paketą su „<strong>ICMPv6 type %h</strong>“"
  5788. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:100
  5789. msgctxt "nft reject with tcp reset"
  5790. msgid "Reject packet with <strong>TCP reset</strong>"
  5791. msgstr "Atmesti paketą su „<strong>TCP reset</strong>“"
  5792. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:192
  5793. msgid ""
  5794. "Reject routing decisions that have a prefix length less than or equal to the "
  5795. "specified value"
  5796. msgstr ""
  5797. "Atmesti maršrutizavimo sprendimus, kurių prefikso ilgis yra mažesnis arba "
  5798. "lygus nurodytai vertei"
  5799. #: modules/luci-compat/luasrc/model/network/proto_relay.lua:153
  5800. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:262
  5801. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:692
  5802. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:39
  5803. msgid "Relay"
  5804. msgstr "Retransliuoti"
  5805. #: modules/luci-compat/luasrc/model/network/proto_relay.lua:157
  5806. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:36
  5807. msgid "Relay Bridge"
  5808. msgstr "Retransliavimo tiltas"
  5809. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:355
  5810. msgid "Relay DHCP requests elsewhere. OK: v4↔v4, v6↔v6. Not OK: v4↔v6, v6↔v4."
  5811. msgstr ""
  5812. "Retransliuoti „DHCP“ prašymus kitur. OK: „v4↔v4“, „v6↔v6“. Ne OK: „v4↔v6“, "
  5813. "„v6↔v4“."
  5814. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:154
  5815. msgid "Relay between networks"
  5816. msgstr "Retransliuoti tarp tinklų"
  5817. #: modules/luci-compat/luasrc/model/network/proto_relay.lua:12
  5818. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:64
  5819. msgid "Relay bridge"
  5820. msgstr "Retransliavimo tiltas"
  5821. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:367
  5822. msgid "Relay from"
  5823. msgstr ""
  5824. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:387
  5825. msgid "Relay to address"
  5826. msgstr ""
  5827. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:50
  5828. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:49
  5829. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:40
  5830. msgid "Remote IPv4 address"
  5831. msgstr "Nuotolinis „IPv4“ adresas"
  5832. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:42
  5833. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:42
  5834. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:40
  5835. #: protocols/luci-proto-vti/htdocs/luci-static/resources/protocol/vti.js:40
  5836. msgid "Remote IPv4 address or FQDN"
  5837. msgstr "Nuotolinis „IPv4“ adresas arba „FQDN“"
  5838. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:40
  5839. msgid "Remote IPv6 address"
  5840. msgstr "Nuotolinis „IPv6“ adresas"
  5841. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:42
  5842. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:42
  5843. msgid "Remote IPv6 address or FQDN"
  5844. msgstr "Nuotolinis „IPv6“ adresas arba „FQDN“"
  5845. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:901
  5846. msgid "Remove"
  5847. msgstr "Pašalinti"
  5848. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:474
  5849. msgid "Remove IPv4 addresses from the results and only return IPv6 addresses."
  5850. msgstr "Pašalinti „IPv4“ adresus iš rezultatų ir grąžinti tik „IPv6“ adresus."
  5851. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:468
  5852. msgid "Remove IPv6 addresses from the results and only return IPv4 addresses."
  5853. msgstr "Pašalinti „IPv6“ adresus iš rezultatų ir grąžinti tik „IPv4“ adresus."
  5854. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1361
  5855. msgid "Remove related device settings from the configuration"
  5856. msgstr "Pašalinti susijusio įrenginio nustatymus iš konfigūracijos"
  5857. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2102
  5858. msgid "Replace wireless configuration"
  5859. msgstr "Pakeisti belaidžio konfigūravimą"
  5860. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:17
  5861. msgid "Request IPv6-address"
  5862. msgstr "Prašyti „IPv6“ adreso"
  5863. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:23
  5864. msgid "Request IPv6-prefix of length"
  5865. msgstr "Prašyti „IPv6“ priešdėlio ilgį"
  5866. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:408
  5867. msgid "Request timeout"
  5868. msgstr "Prašyti laukimo laiko"
  5869. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:100
  5870. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:105
  5871. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:102
  5872. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:107
  5873. msgid "Require incoming checksum (optional)."
  5874. msgstr "Prašyti ateinančios kontrolinės patikros sumos (pasirenkamas)."
  5875. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:102
  5876. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:107
  5877. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:104
  5878. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:109
  5879. msgid "Require incoming packets serialization (optional)."
  5880. msgstr "Prašyti ateinančių paketų serializavimo (pasirenkamas)."
  5881. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1441
  5882. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1780
  5883. msgid "Required"
  5884. msgstr "Reikalaujama/Privaloma"
  5885. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34
  5886. msgid "Required for certain ISPs, e.g. Charter with DOCSIS 3"
  5887. msgstr "Reikalingas tam tikriems „ISP“ (dgs.), pvz. chartija su „DOCSIS 3“"
  5888. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:151
  5889. msgid "Required. Base64-encoded private key for this interface."
  5890. msgstr "Reikalaujama. „Base64“ užkoduotas privatus raktas šiai sąsajai."
  5891. #: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:40
  5892. msgid "Required. Path to the .yml config file for this interface."
  5893. msgstr ""
  5894. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:585
  5895. msgid "Required. Public key of the WireGuard peer."
  5896. msgstr ""
  5897. #: protocols/luci-proto-xfrm/htdocs/luci-static/resources/protocol/xfrm.js:42
  5898. msgid "Required. Underlying interface."
  5899. msgstr "Reikalingas/privalomas. Pagrindinė sąsaja."
  5900. #: protocols/luci-proto-xfrm/htdocs/luci-static/resources/protocol/xfrm.js:39
  5901. msgid "Required. XFRM interface ID to be used for SA."
  5902. msgstr ""
  5903. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1437
  5904. msgid ""
  5905. "Required: Rejects auth if RADIUS server does not provide appropriate VLAN "
  5906. "attributes."
  5907. msgstr ""
  5908. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1320
  5909. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1321
  5910. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1322
  5911. msgid "Requires hostapd"
  5912. msgstr "Reikalauja „hostapd“"
  5913. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1327
  5914. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1328
  5915. msgid "Requires hostapd with EAP Suite-B support"
  5916. msgstr "Reikalauja „hostapd“ su „EAP Suite-B“ palaikymu"
  5917. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1325
  5918. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1326
  5919. msgid "Requires hostapd with EAP support"
  5920. msgstr "Reikalauja „hostapd“ su „EAP“ palaikymu"
  5921. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1329
  5922. msgid "Requires hostapd with OWE support"
  5923. msgstr "Reikalauja „hostapd“ su „OWE“ palaikymu"
  5924. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1323
  5925. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1324
  5926. msgid "Requires hostapd with SAE support"
  5927. msgstr "Reikalauja „hostapd“ su „SAE“ palaikymu"
  5928. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1318
  5929. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1319
  5930. msgid "Requires hostapd with WEP support"
  5931. msgstr "Reikalauja „hostapd“ su „WEP“ palaikymu"
  5932. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1334
  5933. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1335
  5934. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1336
  5935. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1348
  5936. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1349
  5937. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1350
  5938. msgid "Requires wpa-supplicant"
  5939. msgstr "Reikalauja „wpa-supplicant“"
  5940. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1341
  5941. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1342
  5942. msgid "Requires wpa-supplicant with EAP Suite-B support"
  5943. msgstr "Reikalauja „wpa-supplicant“ su „EAP Suite-B“ palaikymu"
  5944. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1339
  5945. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1340
  5946. msgid "Requires wpa-supplicant with EAP support"
  5947. msgstr "Reikalauja „wpa-supplicant“ su „EAP“ palaikymu"
  5948. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1343
  5949. msgid "Requires wpa-supplicant with OWE support"
  5950. msgstr "Reikalauja „wpa-supplicant“ su „OWE“ palaikymu"
  5951. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1337
  5952. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1338
  5953. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1353
  5954. msgid "Requires wpa-supplicant with SAE support"
  5955. msgstr "Reikalauja „wpa-supplicant“ su „SAE“ palaikymu"
  5956. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1332
  5957. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1333
  5958. msgid "Requires wpa-supplicant with WEP support"
  5959. msgstr "Reikalauja „wpa-supplicant“ su „WEP“ palaikymu"
  5960. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:226
  5961. msgid "Reselection policy for primary slave"
  5962. msgstr ""
  5963. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2197
  5964. #: modules/luci-base/ucode/template/sysauth.ut:39
  5965. #: modules/luci-compat/luasrc/view/cbi/delegator.htm:17
  5966. #: modules/luci-compat/luasrc/view/cbi/footer.htm:30
  5967. #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:66
  5968. msgid "Reset"
  5969. msgstr "Atkurti/Grąžinimas į pradinę padėti/būsena/Atstatymas"
  5970. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:343
  5971. msgid "Reset Counters"
  5972. msgstr "Atstatyti rodiklius"
  5973. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:404
  5974. msgid "Reset to defaults"
  5975. msgstr "Grąžinimas į pradinę padėti/būsena/Atstatymas"
  5976. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:259
  5977. msgid "Resolv and Hosts Files"
  5978. msgstr "„Resolv“ ir „Hosts“ failai"
  5979. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:431
  5980. msgid "Resolv file"
  5981. msgstr "„Resolv“ failas"
  5982. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:298
  5983. msgid "Resolve specified FQDNs to an IP."
  5984. msgstr "Išspręsti nurodytus „FQDN“ į „IP“."
  5985. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:405
  5986. msgid "Resource not found"
  5987. msgstr "Išteklis nerastas"
  5988. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:523
  5989. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:869
  5990. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:100
  5991. msgid "Restart"
  5992. msgstr "Paleisti iš naujo"
  5993. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:348
  5994. msgid "Restart Firewall"
  5995. msgstr "Paleisti iš naujo užkardą"
  5996. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:867
  5997. msgid "Restart radio interface"
  5998. msgstr "Paleisti iš naujo radijo imtuvą"
  5999. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:400
  6000. msgid "Restore"
  6001. msgstr "Atkurti"
  6002. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:410
  6003. msgid "Restore backup"
  6004. msgstr "Atkurti atsarginę kopiją"
  6005. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:479
  6006. msgid ""
  6007. "Return answers to DNS queries matching the subnet from which the query was "
  6008. "received if multiple IPs are available."
  6009. msgstr ""
  6010. #: modules/luci-base/htdocs/luci-static/resources/ui.js:386
  6011. #: modules/luci-base/htdocs/luci-static/resources/ui.js:387
  6012. msgid "Reveal/hide password"
  6013. msgstr "Atskleisti/Paslėpti slaptažodį"
  6014. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:679
  6015. msgid "Reverse path filter"
  6016. msgstr "Apversti kelio filtrą"
  6017. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4467
  6018. msgid "Revert"
  6019. msgstr "Anuliuoti"
  6020. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4572
  6021. msgid "Revert changes"
  6022. msgstr "Paskelbti pakeitimus negaliojančius (Pakeitimų anuliavimas)"
  6023. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4784
  6024. msgid "Revert request failed with status <code>%h</code>"
  6025. msgstr "Anuliavimo prašymas nepavyko su kodu <code>%h</code>"
  6026. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4764
  6027. msgid "Reverting configuration…"
  6028. msgstr "Visi pakeitimai grįžtą į pradinę konfigūravimą (Anuliuojama)…"
  6029. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:84
  6030. msgid "Revision"
  6031. msgstr "Revizija"
  6032. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:111
  6033. msgctxt "nft dnat ip to addr"
  6034. msgid "Rewrite destination to <strong>%h</strong>"
  6035. msgstr "Perrašyti kelionės tikslą į „<strong>%h</strong>“"
  6036. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:114
  6037. msgctxt "nft dnat ip6 to addr"
  6038. msgid "Rewrite destination to <strong>%h</strong>"
  6039. msgstr "Perrašyti kelionės tikslą į „<strong>%h</strong>“"
  6040. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:112
  6041. msgctxt "nft dnat ip to addr:port"
  6042. msgid "Rewrite destination to <strong>%h</strong>, port <strong>%h</strong>"
  6043. msgstr ""
  6044. "Perrašyti kelionės tikslą į „<strong>%h</strong>“, prievadu „<strong>%h</"
  6045. "strong>“"
  6046. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:115
  6047. msgctxt "nft dnat ip6 to addr:port"
  6048. msgid "Rewrite destination to <strong>%h</strong>, port <strong>%h</strong>"
  6049. msgstr ""
  6050. "Perrašyti kelionės tikslą į „<strong>%h</strong>“, prievadu „<strong>%h</"
  6051. "strong>“"
  6052. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:105
  6053. msgctxt "nft snat ip to addr"
  6054. msgid "Rewrite source to <strong>%h</strong>"
  6055. msgstr "Perrašyti šaltinį į „<strong>%h</strong>“"
  6056. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:108
  6057. msgctxt "nft snat ip6 to addr"
  6058. msgid "Rewrite source to <strong>%h</strong>"
  6059. msgstr "Perrašyti šaltinį į „<strong>%h</strong>“"
  6060. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:106
  6061. msgctxt "nft snat ip to addr:port"
  6062. msgid "Rewrite source to <strong>%h</strong>, port <strong>%h</strong>"
  6063. msgstr ""
  6064. "Perrašyti šaltinį į „<strong>%h</strong>“, prievadu „<strong>%h</strong>“"
  6065. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:109
  6066. msgctxt "nft snat ip6 to addr:port"
  6067. msgid "Rewrite source to <strong>%h</strong>, port <strong>%h</strong>"
  6068. msgstr ""
  6069. "Perrašyti šaltinį į „<strong>%h</strong>“, prievadu „<strong>%h</strong>“"
  6070. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:120
  6071. msgid "Rewrite to egress device address"
  6072. msgstr "Perrašyti į išeinančio įrenginio adresą"
  6073. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1485
  6074. msgid ""
  6075. "Robust Security Network (RSN): Allow roaming preauth for WPA2-EAP networks "
  6076. "(and advertise it in WLAN beacons). Only works if the specified network "
  6077. "interface is a bridge. Shortens the time-critical reassociation process."
  6078. msgstr ""
  6079. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:605
  6080. msgid "Robustness"
  6081. msgstr "Patvarumas"
  6082. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:572
  6083. msgid ""
  6084. "Root directory for files served via TFTP. <em>Enable TFTP server</em> and "
  6085. "<em>TFTP server root</em> turn on the TFTP server and serve files from "
  6086. "<em>TFTP server root</em>."
  6087. msgstr ""
  6088. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:298
  6089. msgid "Root preparation"
  6090. msgstr "Šaknies paruošimas"
  6091. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:204
  6092. msgid "Round-Robin policy (balance-rr, 0)"
  6093. msgstr "„Round-Robin“ politika („balance-rr, 0“)"
  6094. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:659
  6095. msgid "Route Allowed IPs"
  6096. msgstr "Maršruto leidžiami „IP“ (dgs.)"
  6097. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:532
  6098. msgid "Route action chain \"%h\""
  6099. msgstr "Maršuto veiksmo grandinė „%h“"
  6100. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:46
  6101. msgid "Route type"
  6102. msgstr "Maršruto tipas"
  6103. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:879
  6104. msgid ""
  6105. "Router Lifetime published in <abbr title=\"Router Advertisement, ICMPv6 Type "
  6106. "134\">RA</abbr> messages. Maximum is 9000 seconds."
  6107. msgstr ""
  6108. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:46
  6109. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:26
  6110. msgid "Router Password"
  6111. msgstr "Maršrutizatoriaus slaptažodis"
  6112. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:28
  6113. #: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:50
  6114. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:248
  6115. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:15
  6116. msgid "Routing"
  6117. msgstr "Kelvada"
  6118. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:44
  6119. msgid "Routing Algorithm"
  6120. msgstr "Kelvados algoritmas"
  6121. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:28
  6122. msgid ""
  6123. "Routing defines over which interface and gateway a certain host or network "
  6124. "can be reached."
  6125. msgstr ""
  6126. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:218
  6127. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:198
  6128. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:224
  6129. msgid "Rule"
  6130. msgstr "Taisyklė"
  6131. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:602
  6132. msgid "Rule actions"
  6133. msgstr "Taisyklės veiksmai"
  6134. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:475
  6135. msgctxt "nft comment"
  6136. msgid "Rule comment: %s"
  6137. msgstr "Taisyklės komentaras: %s"
  6138. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:540
  6139. msgid "Rule container chain \"%h\""
  6140. msgstr "Taisyklės konteinerio grandinė „%h“"
  6141. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:601
  6142. msgid "Rule matches"
  6143. msgstr "Taisyklės atitikmenys"
  6144. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:137
  6145. msgid "Rule type"
  6146. msgstr "Taisyklės tipas"
  6147. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:336
  6148. msgid "Run a filesystem check before mounting the device"
  6149. msgstr "Paleisti failų sistemos patikrą prieš montuojant įrenginį"
  6150. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:336
  6151. msgid "Run filesystem check"
  6152. msgstr "Paleisti failų sistemos patikrą"
  6153. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2360
  6154. msgid "Runtime error"
  6155. msgstr "Paleidimo klaida"
  6156. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:224
  6157. msgid "SHA256"
  6158. msgstr "„SHA256“"
  6159. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:145
  6160. msgid "SIM %d"
  6161. msgstr "SIM %d"
  6162. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:147
  6163. msgid "SIMs"
  6164. msgstr "SIM (dgs.)"
  6165. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:59
  6166. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:280
  6167. msgid "SNR"
  6168. msgstr "„SNR“"
  6169. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:263
  6170. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:650
  6171. msgid "SRV"
  6172. msgstr "„SRV“"
  6173. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:10
  6174. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:38
  6175. msgid "SSH Access"
  6176. msgstr "„SSH“ Prieigą"
  6177. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:70
  6178. msgid "SSH server address"
  6179. msgstr "„SSH“ serverio adresas"
  6180. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:74
  6181. msgid "SSH server port"
  6182. msgstr "„SSH“ serverio prievadas"
  6183. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:58
  6184. msgid "SSH username"
  6185. msgstr "„SSH“ slapyvardis/vartotojo vardas"
  6186. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:289
  6187. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:51
  6188. msgid "SSH-Keys"
  6189. msgstr "„SSH-Raktai“"
  6190. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:156
  6191. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:181
  6192. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1838
  6193. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:401
  6194. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:147
  6195. msgid "SSID"
  6196. msgstr "„SSID“"
  6197. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:9
  6198. msgid "SSTP"
  6199. msgstr "„SSTP“"
  6200. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:41
  6201. msgid "SSTP Server"
  6202. msgstr "„SSTP“ Serveris"
  6203. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:340
  6204. msgid "SWAP"
  6205. msgstr "„SWAP“"
  6206. #: modules/luci-base/htdocs/luci-static/resources/form.js:3274
  6207. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2192
  6208. #: modules/luci-compat/luasrc/view/cbi/error.htm:17
  6209. #: modules/luci-compat/luasrc/view/cbi/footer.htm:26
  6210. #: modules/luci-compat/luasrc/view/cbi/header.htm:20
  6211. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:463
  6212. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:123
  6213. msgid "Save"
  6214. msgstr "Išsaugoti"
  6215. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2174
  6216. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4455
  6217. #: modules/luci-compat/luasrc/view/cbi/footer.htm:22
  6218. msgid "Save & Apply"
  6219. msgstr "Išsaugoti ir Įgalinti"
  6220. #: modules/luci-base/htdocs/luci-static/resources/form.js:607
  6221. msgid "Save error"
  6222. msgstr "Išsaugojimo klaida"
  6223. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:434
  6224. msgid "Save mtdblock"
  6225. msgstr "Išsaugoti „mtdblock“"
  6226. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:424
  6227. msgid "Save mtdblock contents"
  6228. msgstr "Įrašyti „mtdblock“ turinius"
  6229. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:874
  6230. msgid "Scan"
  6231. msgstr "Skenuoti"
  6232. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/crontab.js:28
  6233. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:90
  6234. msgid "Scheduled Tasks"
  6235. msgstr "Suplanuotos užduotys"
  6236. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:39
  6237. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:62
  6238. msgid "Section %s is empty."
  6239. msgstr "Sekciją „%s“ yra tuščią."
  6240. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4441
  6241. msgid "Section added"
  6242. msgstr "Sekciją pridėtą"
  6243. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4443
  6244. msgid "Section removed"
  6245. msgstr "Sekciją pašalintą"
  6246. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:332
  6247. msgid "See \"mount\" manpage for details"
  6248. msgstr ""
  6249. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:283
  6250. msgid ""
  6251. "Select 'Force upgrade' to flash the image even if the image format check "
  6252. "fails. Use only if you are sure that the firmware is correct and meant for "
  6253. "your device!"
  6254. msgstr ""
  6255. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2681
  6256. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2821
  6257. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2981
  6258. msgid "Select file…"
  6259. msgstr "Pasirinkti failą…"
  6260. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:320
  6261. msgid "Selects the transmit hash policy to use for slave selection"
  6262. msgstr ""
  6263. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:808
  6264. msgid ""
  6265. "Send <abbr title=\"Router Advertisement, ICMPv6 Type 134\">RA</abbr> "
  6266. "messages advertising this device as IPv6 router."
  6267. msgstr ""
  6268. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:704
  6269. msgid "Send ICMP redirects"
  6270. msgstr "Siųsti „ICMP“ peradresavimus"
  6271. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:143
  6272. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:115
  6273. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:101
  6274. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:75
  6275. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:88
  6276. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:111
  6277. msgid ""
  6278. "Send LCP echo requests at the given interval in seconds, only effective in "
  6279. "conjunction with failure threshold"
  6280. msgstr ""
  6281. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:24
  6282. msgid "Send the hostname of this device"
  6283. msgstr "Siųsti šio įrenginio pavadinimą"
  6284. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:89
  6285. msgid "Server"
  6286. msgstr "Serveris"
  6287. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:605
  6288. msgid "Server address"
  6289. msgstr "Serverio adresas"
  6290. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:599
  6291. msgid "Server name"
  6292. msgstr "Serverio pavadinimas"
  6293. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:50
  6294. msgid "Service Name"
  6295. msgstr "Tarnybos pavadinimas"
  6296. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:88
  6297. msgid "Service Type"
  6298. msgstr "Tarnybos tipas"
  6299. #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:36
  6300. msgid "Services"
  6301. msgstr "Tarnybos"
  6302. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2664
  6303. msgid "Session expired"
  6304. msgstr "Sesiją pasibaigę"
  6305. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:126
  6306. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:175
  6307. msgid "Set Static"
  6308. msgstr "Nustatyti statinį"
  6309. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:703
  6310. msgid "Set an alias for a hostname."
  6311. msgstr ""
  6312. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:122
  6313. msgctxt "nft mangle"
  6314. msgid "Set header field <var>%s</var> to <strong>%s</strong>"
  6315. msgstr ""
  6316. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:975
  6317. msgid "Set interface as NDP-Proxy external slave. Default is off."
  6318. msgstr ""
  6319. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1299
  6320. msgid ""
  6321. "Set interface properties regardless of the link carrier (If set, carrier "
  6322. "sense events do not invoke hotplug handlers)."
  6323. msgstr ""
  6324. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:302
  6325. msgid "Set same MAC Address to all slaves"
  6326. msgstr ""
  6327. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:826
  6328. msgid ""
  6329. "Set the autonomous address-configuration flag in the prefix information "
  6330. "options of sent <abbr title=\"Router Advertisement\">RA</abbr> messages. "
  6331. "When enabled, clients will perform stateless IPv6 address autoconfiguration."
  6332. msgstr ""
  6333. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:736
  6334. msgid ""
  6335. "Set this interface as master for RA and DHCPv6 relaying as well as NDP "
  6336. "proxying."
  6337. msgstr ""
  6338. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:306
  6339. msgid "Set to currently active slave (active, 1)"
  6340. msgstr ""
  6341. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:307
  6342. msgid "Set to first slave added to the bond (follow, 2)"
  6343. msgstr ""
  6344. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:663
  6345. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:679
  6346. msgid "Set up DHCP Server"
  6347. msgstr "Nustatyti „DHCP“ serverį"
  6348. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:970
  6349. msgid "Set up routes for proxied IPv6 neighbours."
  6350. msgstr "Nustatyti maršrutus įgalinčioms „IPv6 kaimynams“."
  6351. #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:55
  6352. #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:55
  6353. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:23
  6354. msgid "Setting PLMN failed"
  6355. msgstr "Nustatyti „PLMN“ nepavyko"
  6356. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:68
  6357. msgid "Setting operation mode failed"
  6358. msgstr "Nustatyti operacijos režimą nepavyko"
  6359. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:87
  6360. msgid "Setting the allowed network technology."
  6361. msgstr "Nustatyti leidžiamas tinklo technologijas."
  6362. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:107
  6363. msgid "Setting the preferred network technology."
  6364. msgstr "Nustatyti pageidautiną tinklo technologiją."
  6365. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/uhttpd.js:11
  6366. msgid "Settings"
  6367. msgstr "Nustatymai"
  6368. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:983
  6369. msgid ""
  6370. "Settings for assisting wireless clients in roaming between multiple APs: "
  6371. "802.11r, 802.11k and 802.11v"
  6372. msgstr ""
  6373. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:210
  6374. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:39
  6375. msgid "Short GI"
  6376. msgstr "Trumpasis „GI“"
  6377. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1166
  6378. msgid "Short Preamble"
  6379. msgstr "Trumpa įžanga"
  6380. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:470
  6381. msgid "Show current backup file list"
  6382. msgstr "Rodyti dabartinį atsarginių failų sąrašą"
  6383. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:293
  6384. msgid "Show empty chains"
  6385. msgstr "Rodyti tuščias grandinės"
  6386. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:276
  6387. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:338
  6388. msgid "Show raw counters"
  6389. msgstr "Rodyti neapdorotus skaitiklius"
  6390. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:527
  6391. msgid "Shutdown this interface"
  6392. msgstr "Išjungti šią sąsają"
  6393. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:57
  6394. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:63
  6395. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:186
  6396. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1837
  6397. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:42
  6398. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:400
  6399. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:146
  6400. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:235
  6401. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:278
  6402. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:284
  6403. msgid "Signal"
  6404. msgstr "Signalas"
  6405. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2259
  6406. msgid "Signal / Noise"
  6407. msgstr "Signalas / Triukšmas"
  6408. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:104
  6409. msgid "Signal Quality"
  6410. msgstr "Signalo kokybė"
  6411. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:146
  6412. msgid "Signal Refresh Rate"
  6413. msgstr "Signalo atnaujinimo dažnis"
  6414. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:262
  6415. msgid "Signal:"
  6416. msgstr "Signalas:"
  6417. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4194
  6418. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:222
  6419. msgid "Size"
  6420. msgstr "Dydis"
  6421. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:559
  6422. msgid "Size of DNS query cache"
  6423. msgstr "„DNS“ užklausų talpyklos dydis"
  6424. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:208
  6425. msgid "Size of the ZRam device in megabytes"
  6426. msgstr "„ZRam“ įrenginio dydis megabaitais"
  6427. #: modules/luci-compat/luasrc/view/cbi/footer.htm:18
  6428. #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:57
  6429. msgid "Skip"
  6430. msgstr "Praleisti"
  6431. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:257
  6432. msgid "Skip from backup files that are equal to those in /rom"
  6433. msgstr ""
  6434. #: themes/luci-theme-librecmc-2020/ucode/template/themes/librecmc2020/header.ut:35
  6435. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:46
  6436. msgid "Skip to content"
  6437. msgstr "Praleisti į turinį"
  6438. #: themes/luci-theme-librecmc-2020/ucode/template/themes/librecmc2020/header.ut:34
  6439. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:45
  6440. msgid "Skip to navigation"
  6441. msgstr "Praleisti į navigacija"
  6442. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:180
  6443. msgid "Slave Interfaces"
  6444. msgstr ""
  6445. #: modules/luci-base/htdocs/luci-static/resources/network.js:3002
  6446. #: modules/luci-compat/luasrc/model/network.lua:1428
  6447. msgid "Software VLAN"
  6448. msgstr "Programinės įrangos „VLAN“"
  6449. #: modules/luci-compat/luasrc/view/cbi/header.htm:5
  6450. msgid "Some fields are invalid, cannot save values!"
  6451. msgstr "Kai kurie laukai yra neteisingi, negalime įrašyti reikšmių!"
  6452. #: modules/luci-base/ucode/template/error404.ut:10
  6453. msgid "Sorry, the object you requested was not found."
  6454. msgstr "Atsiprašome, jūsų prašomas objektas nerastas."
  6455. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:442
  6456. msgid ""
  6457. "Sorry, there is no sysupgrade support present; a new firmware image must be "
  6458. "flashed manually. Please refer to the wiki for device specific install "
  6459. "instructions."
  6460. msgstr ""
  6461. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:100
  6462. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:149
  6463. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:385
  6464. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:70
  6465. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:214
  6466. msgid "Source"
  6467. msgstr "Šaltinis"
  6468. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:43
  6469. msgctxt "nft ip saddr"
  6470. msgid "Source IP"
  6471. msgstr "Šaltinio „IP“"
  6472. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:47
  6473. msgctxt "nft ip6 saddr"
  6474. msgid "Source IPv6"
  6475. msgstr "Šaltinio „IPv6“"
  6476. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57
  6477. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:57
  6478. msgid "Source interface"
  6479. msgstr "Šaltinio sąsaja ir/arba Sietuvas"
  6480. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:45
  6481. msgctxt "nft ip sport"
  6482. msgid "Source port"
  6483. msgstr "Šaltinio prievadas"
  6484. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:586
  6485. msgid ""
  6486. "Special <abbr title=\"Preboot eXecution Environment\">PXE</abbr> boot "
  6487. "options for Dnsmasq."
  6488. msgstr ""
  6489. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:953
  6490. msgid ""
  6491. "Specifies a fixed list of DNS search domains to announce via DHCPv6. If left "
  6492. "unspecified, the local device DNS search domain will be announced."
  6493. msgstr ""
  6494. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:937
  6495. msgid ""
  6496. "Specifies a fixed list of IPv6 DNS server addresses to announce via DHCPv6. "
  6497. "If left unspecified, the device will announce itself as IPv6 DNS server "
  6498. "unless the <em>Local IPv6 DNS server</em> option is disabled."
  6499. msgstr ""
  6500. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:187
  6501. msgid ""
  6502. "Specifies an individual UID or range of UIDs to match, e.g. 1000 to match "
  6503. "corresponding UID or 1000-1005 to inclusively match all UIDs within the "
  6504. "corresponding range"
  6505. msgstr ""
  6506. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:343
  6507. msgid ""
  6508. "Specifies that duplicate frames (received on inactive ports) should be "
  6509. "dropped or delivered"
  6510. msgstr ""
  6511. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:359
  6512. msgid "Specifies the ARP link monitoring frequency in milliseconds"
  6513. msgstr ""
  6514. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:367
  6515. msgid "Specifies the IP addresses to use for ARP monitoring"
  6516. msgstr ""
  6517. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:396
  6518. msgid "Specifies the MII link monitoring frequency in milliseconds"
  6519. msgstr ""
  6520. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:182
  6521. msgid "Specifies the TOS value to match in IP headers"
  6522. msgstr ""
  6523. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:261
  6524. msgid "Specifies the aggregation selection logic to use"
  6525. msgstr ""
  6526. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:160
  6527. msgid "Specifies the destination subnet to match (CIDR notation)"
  6528. msgstr ""
  6529. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:293
  6530. msgid "Specifies the directory the device is attached to"
  6531. msgstr ""
  6532. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:832
  6533. msgid ""
  6534. "Specifies the flags sent in <abbr title=\"Router Advertisement\">RA</abbr> "
  6535. "messages, for example to instruct clients to request further information via "
  6536. "stateful DHCPv6."
  6537. msgstr ""
  6538. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:177
  6539. msgid ""
  6540. "Specifies the fwmark and optionally its mask to match, e.g. 0xFF to match "
  6541. "mark 255 or 0x0/0x1 to match any even mark value"
  6542. msgstr ""
  6543. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:145
  6544. msgid "Specifies the incoming logical interface name"
  6545. msgstr ""
  6546. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:41
  6547. msgid ""
  6548. "Specifies the logical interface name of the parent (or master) interface "
  6549. "this route belongs to"
  6550. msgstr ""
  6551. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:254
  6552. msgid ""
  6553. "Specifies the mac-address for the actor in protocol packet exchanges "
  6554. "(LACPDUs). If empty, masters' mac address defaults to system default"
  6555. msgstr ""
  6556. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:175
  6557. msgid ""
  6558. "Specifies the maximum amount of failed ARP requests until hosts are presumed "
  6559. "to be dead"
  6560. msgstr ""
  6561. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:171
  6562. msgid ""
  6563. "Specifies the maximum amount of seconds after which hosts are presumed to be "
  6564. "dead"
  6565. msgstr ""
  6566. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:941
  6567. msgid ""
  6568. "Specifies the maximum transmit power the wireless radio may use. Depending "
  6569. "on regulatory requirements and wireless usage, the actual transmit power may "
  6570. "be reduced by the driver."
  6571. msgstr ""
  6572. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:238
  6573. msgid ""
  6574. "Specifies the minimum number of links that must be active before asserting "
  6575. "carrier"
  6576. msgstr ""
  6577. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:202
  6578. msgid "Specifies the mode to be used for this bonding interface"
  6579. msgstr ""
  6580. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:76
  6581. msgid ""
  6582. "Specifies the network gateway. If omitted, the gateway from the parent "
  6583. "interface is taken if any, otherwise creates a link scope route. If set to "
  6584. "0.0.0.0 no gateway will be specified for the route"
  6585. msgstr ""
  6586. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:334
  6587. msgid ""
  6588. "Specifies the number of IGMP membership reports to be issued after a "
  6589. "failover event in 200ms intervals"
  6590. msgstr ""
  6591. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:278
  6592. msgid ""
  6593. "Specifies the number of packets to transmit through a slave before moving to "
  6594. "the next one"
  6595. msgstr ""
  6596. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:312
  6597. msgid ""
  6598. "Specifies the number of peer notifications (gratuitous ARPs and unsolicited "
  6599. "IPv6 Neighbor Advertisements) to be issued after a failover event"
  6600. msgstr ""
  6601. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:286
  6602. msgid ""
  6603. "Specifies the number of seconds between instances where the bonding driver "
  6604. "sends learning packets to each slaves peer switch"
  6605. msgstr ""
  6606. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:130
  6607. msgid "Specifies the ordering of the IP rules"
  6608. msgstr ""
  6609. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:156
  6610. msgid "Specifies the outgoing logical interface name"
  6611. msgstr ""
  6612. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:100
  6613. msgid ""
  6614. "Specifies the preferred source address when sending to destinations covered "
  6615. "by the target"
  6616. msgstr ""
  6617. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:375
  6618. msgid "Specifies the quantity of ARP IP targets that must be reachable"
  6619. msgstr ""
  6620. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:270
  6621. msgid ""
  6622. "Specifies the rate in which the link partner will be asked to transmit "
  6623. "LACPDU packets"
  6624. msgstr ""
  6625. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:227
  6626. msgid ""
  6627. "Specifies the reselection policy for the primary slave when failure of the "
  6628. "active slave or recovery of the primary slave occurs"
  6629. msgstr ""
  6630. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:80
  6631. msgid "Specifies the route metric to use"
  6632. msgstr ""
  6633. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:46
  6634. msgid "Specifies the route type to be created"
  6635. msgstr ""
  6636. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:137
  6637. msgid "Specifies the rule target routing action"
  6638. msgstr ""
  6639. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:149
  6640. msgid "Specifies the source subnet to match (CIDR notation)"
  6641. msgstr ""
  6642. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:246
  6643. msgid "Specifies the system priority"
  6644. msgstr "Nurodo sistemos prioritetą"
  6645. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:404
  6646. msgid ""
  6647. "Specifies the time in milliseconds to wait before disabling a slave after a "
  6648. "link failure detection"
  6649. msgstr ""
  6650. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:412
  6651. msgid ""
  6652. "Specifies the time in milliseconds to wait before enabling a slave after a "
  6653. "link recovery detection"
  6654. msgstr ""
  6655. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:548
  6656. msgid ""
  6657. "Specifies the wired ports to attach to this bridge. In order to attach "
  6658. "wireless networks, choose the associated interface as network in the "
  6659. "wireless settings."
  6660. msgstr ""
  6661. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:383
  6662. msgid ""
  6663. "Specifies whether ARP probes and replies should be validated or non-ARP "
  6664. "traffic should be filtered for link monitoring"
  6665. msgstr ""
  6666. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:303
  6667. msgid ""
  6668. "Specifies whether active-backup mode should set all slaves to the same MAC "
  6669. "address at enslavement"
  6670. msgstr ""
  6671. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:420
  6672. msgid ""
  6673. "Specifies whether or not miimon should use MII or ETHTOOL ioctls vs. "
  6674. "netif_carrier_ok()"
  6675. msgstr ""
  6676. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:295
  6677. msgid ""
  6678. "Specifies whether to shuffle active flows across slaves based on the load"
  6679. msgstr ""
  6680. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:181
  6681. msgid ""
  6682. "Specifies which slave interfaces should be attached to this bonding interface"
  6683. msgstr ""
  6684. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:214
  6685. msgid ""
  6686. "Specifies which slave is the primary device. It will always be the active "
  6687. "slave while it is available"
  6688. msgstr ""
  6689. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:63
  6690. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:67
  6691. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:62
  6692. msgid "Specify a TOS (Type of Service)."
  6693. msgstr "Nurodyti „TOS“ („Type of Service“)."
  6694. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:74
  6695. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:79
  6696. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:79
  6697. msgid ""
  6698. "Specify a TOS (Type of Service). Can be <code>inherit</code> (the outer "
  6699. "header inherits the value of the inner header) or an hexadecimal value "
  6700. "<code>00..FF</code> (optional)."
  6701. msgstr ""
  6702. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:74
  6703. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:74
  6704. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:79
  6705. msgid ""
  6706. "Specify a TTL (Time to Live) for the encapsulating packet other than the "
  6707. "default (64) (optional)."
  6708. msgstr ""
  6709. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:69
  6710. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:58
  6711. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:62
  6712. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:57
  6713. msgid ""
  6714. "Specify a TTL (Time to Live) for the encapsulating packet other than the "
  6715. "default (64)."
  6716. msgstr ""
  6717. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:84
  6718. msgid ""
  6719. "Specify a Traffic Class. Can be <code>inherit</code> (the outer header "
  6720. "inherits the value of the inner header) or an hexadecimal value <code>00.."
  6721. "FF</code> (optional)."
  6722. msgstr ""
  6723. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:64
  6724. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:69
  6725. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:69
  6726. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:74
  6727. msgid ""
  6728. "Specify an MTU (Maximum Transmission Unit) other than the default (1280 "
  6729. "bytes) (optional)."
  6730. msgstr ""
  6731. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:53
  6732. msgid ""
  6733. "Specify an MTU (Maximum Transmission Unit) other than the default (1280 "
  6734. "bytes)."
  6735. msgstr ""
  6736. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2119
  6737. msgid "Specify the secret encryption key here."
  6738. msgstr "Nurodyti slaptąjį šifravimo raktą čia."
  6739. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:215
  6740. msgid "Speed: %d Mibit/s, Duplex: %s"
  6741. msgstr ""
  6742. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1560
  6743. msgid "Splitterless ADSL (G.992.2) Annex A"
  6744. msgstr ""
  6745. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:717
  6746. msgid "Stale neighbour cache timeout"
  6747. msgstr ""
  6748. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:686
  6749. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:99
  6750. msgid "Start"
  6751. msgstr "Pradėti"
  6752. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:140
  6753. msgid "Start WPS"
  6754. msgstr "Pradėti „WPS“"
  6755. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:76
  6756. msgid "Start priority"
  6757. msgstr "Pradėti pirmenybė"
  6758. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1941
  6759. #, fuzzy
  6760. msgid "Start refresh"
  6761. msgstr "Pradėti įkelimą iš naujo"
  6762. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4687
  6763. msgid "Starting configuration apply…"
  6764. msgstr "Pradėdamas konfigūracijos taikymas…"
  6765. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1854
  6766. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:425
  6767. msgid "Starting wireless scan..."
  6768. msgstr "Pradėdamas belaidžio skenavimas..."
  6769. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:109
  6770. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:78
  6771. msgid "Startup"
  6772. msgstr "Paleidimas"
  6773. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:90
  6774. msgid "State"
  6775. msgstr "Būklė"
  6776. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:32
  6777. msgid "Static IPv4 Routes"
  6778. msgstr "Statiniai „IPv4“ maršrutai"
  6779. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:32
  6780. msgid "Static IPv6 Routes"
  6781. msgstr "Statiniai „IPv6“ maršrutai"
  6782. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:91
  6783. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:138
  6784. msgid "Static Lease"
  6785. msgstr ""
  6786. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:258
  6787. msgid "Static Leases"
  6788. msgstr ""
  6789. #: modules/luci-base/htdocs/luci-static/resources/network.js:2090
  6790. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:172
  6791. #: modules/luci-compat/luasrc/model/network.lua:967
  6792. msgid "Static address"
  6793. msgstr "Statinis adresas"
  6794. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:771
  6795. msgid ""
  6796. "Static leases are used to assign fixed IP addresses and symbolic hostnames "
  6797. "to DHCP clients. They are also required for non-dynamic interface "
  6798. "configurations where only hosts with a corresponding lease are served."
  6799. msgstr ""
  6800. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1183
  6801. msgid "Station inactivity limit"
  6802. msgstr "Stoties neaktyvumo limitas"
  6803. #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:16
  6804. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:558
  6805. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:923
  6806. #: modules/luci-mod-status/ucode/template/admin_status/index.ut:9
  6807. msgid "Status"
  6808. msgstr "Būklė/Būsena"
  6809. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:529
  6810. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:101
  6811. msgid "Stop"
  6812. msgstr "Stop"
  6813. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:135
  6814. msgid "Stop WPS"
  6815. msgstr "Sustabdyti „WPS“"
  6816. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1852
  6817. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1946
  6818. msgid "Stop refresh"
  6819. msgstr "Sustabdyti įkelimą iš naujo"
  6820. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:24
  6821. msgid "Storage"
  6822. msgstr "Vietovė/Talpa"
  6823. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:683
  6824. msgid "Strict filtering"
  6825. msgstr "Griežtas filtravimas"
  6826. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:508
  6827. msgid "Strict order"
  6828. msgstr "Griežtas įsakymas"
  6829. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:33
  6830. msgid "Strong"
  6831. msgstr "Stiprus"
  6832. #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:61
  6833. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2144
  6834. msgid "Submit"
  6835. msgstr "Pateikti"
  6836. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:447
  6837. msgid "Suppress logging"
  6838. msgstr "Sumenkinti žurnalymą"
  6839. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:448
  6840. msgid "Suppress logging of the routine operation for the DHCP protocol."
  6841. msgstr ""
  6842. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:46
  6843. msgid "Swap free"
  6844. msgstr ""
  6845. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:139
  6846. #: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:3
  6847. msgid "Switch"
  6848. msgstr "Perjungti/Komutatorius"
  6849. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:172
  6850. msgid "Switch %q"
  6851. msgstr "Perjungti „%q“ (Komutatoriaus „%q“)"
  6852. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:150
  6853. msgid ""
  6854. "Switch %q has an unknown topology - the VLAN settings might not be accurate."
  6855. msgstr ""
  6856. #: modules/luci-base/htdocs/luci-static/resources/network.js:3002
  6857. #: modules/luci-compat/luasrc/model/network.lua:1426
  6858. msgid "Switch VLAN"
  6859. msgstr "Perjungti „VLAN“ (Komutatoriaus „VLAN“)"
  6860. #: modules/luci-base/htdocs/luci-static/resources/network.js:2999
  6861. msgid "Switch port"
  6862. msgstr "Perjungti prievadą (Komutatoriaus prievadas)"
  6863. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:577
  6864. msgid "Switch protocol"
  6865. msgstr "Perjungti protokolą (Komutatoriaus protokolas)"
  6866. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:103
  6867. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:104
  6868. #: modules/luci-compat/luasrc/view/cbi/ipaddr.htm:26
  6869. msgid "Switch to CIDR list notation"
  6870. msgstr ""
  6871. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2716
  6872. msgid "Symbolic link"
  6873. msgstr ""
  6874. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:89
  6875. msgid "Sync with NTP-Server"
  6876. msgstr "Sinchronizuoti su „NTP“ serveriu"
  6877. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:81
  6878. msgid "Sync with browser"
  6879. msgstr "Sinchronizuoti su naršyklę"
  6880. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:299
  6881. msgid "Syntax: <code>/fqdn[/fqdn…]/[ipaddr]</code>."
  6882. msgstr ""
  6883. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:650
  6884. msgid "Syntax: <code>_service._proto.example.com</code>."
  6885. msgstr ""
  6886. #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:26
  6887. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:22
  6888. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:113
  6889. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:3
  6890. msgid "System"
  6891. msgstr "Sistema"
  6892. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/syslog.js:25
  6893. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:63
  6894. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:75
  6895. msgid "System Log"
  6896. msgstr "Sistemos žurnalas"
  6897. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:245
  6898. msgid "System Priority"
  6899. msgstr "Sistemos prioritetas"
  6900. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:118
  6901. msgid "System Properties"
  6902. msgstr "Sistemos ypatybės"
  6903. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:162
  6904. msgid "System log buffer size"
  6905. msgstr "Sistemos žurnalo buferio dydis"
  6906. #: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:67
  6907. #: themes/luci-theme-material/ucode/template/themes/material/header.ut:87
  6908. #: themes/luci-theme-librecmc-2020/ucode/template/themes/librecmc2020/header.ut:64
  6909. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:89
  6910. msgid "System running in recovery (initramfs) mode."
  6911. msgstr ""
  6912. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:67
  6913. msgctxt "nft tcp option maxseg size"
  6914. msgid "TCP MSS"
  6915. msgstr "„TCP MSS“"
  6916. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:54
  6917. msgctxt "nft tcp dport"
  6918. msgid "TCP destination port"
  6919. msgstr "„TCP“ paskirties prievadas"
  6920. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:57
  6921. msgctxt "nft tcp flags"
  6922. msgid "TCP flags"
  6923. msgstr "„TCP“ žymės/vėliavos"
  6924. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:53
  6925. msgctxt "nft tcp sport"
  6926. msgid "TCP source port"
  6927. msgstr "„TCP“ šaltinio prievadas"
  6928. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:338
  6929. msgid "TCP:"
  6930. msgstr "„TCP“:"
  6931. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:571
  6932. msgid "TFTP server root"
  6933. msgstr "„TFTP“ serverio šaknis"
  6934. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:50
  6935. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:85
  6936. msgid "TX"
  6937. msgstr "Nusiųsta reaktyviai"
  6938. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:236
  6939. msgid "TX Rate"
  6940. msgstr ""
  6941. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:672
  6942. msgid "TX queue length"
  6943. msgstr ""
  6944. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:92
  6945. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:167
  6946. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:18
  6947. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:190
  6948. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:216
  6949. msgid "Table"
  6950. msgstr ""
  6951. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:916
  6952. msgid "Tag"
  6953. msgstr "Žymė"
  6954. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:219
  6955. msgctxt "VLAN port state"
  6956. msgid "Tagged"
  6957. msgstr "Pažymėta"
  6958. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:655
  6959. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:718
  6960. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:57
  6961. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:66
  6962. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:187
  6963. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:213
  6964. msgid "Target"
  6965. msgstr "Taikinys"
  6966. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:58
  6967. msgid "Target Platform"
  6968. msgstr "Taikomoji platformą"
  6969. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:103
  6970. msgid "Target network"
  6971. msgstr "Taikomasis tinklas"
  6972. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:36
  6973. msgid "Temp space"
  6974. msgstr ""
  6975. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:50
  6976. msgid "Terminate"
  6977. msgstr "Nutraukti"
  6978. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:886
  6979. msgid ""
  6980. "The <abbr title=\"Maximum Transmission Unit\">MTU</abbr> to be published in "
  6981. "<abbr title=\"Router Advertisement, ICMPv6 Type 134\">RA</abbr> messages. "
  6982. "Minimum is 1280 bytes."
  6983. msgstr ""
  6984. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:834
  6985. msgid ""
  6986. "The <em>Managed address configuration</em> (M) flag indicates that IPv6 "
  6987. "addresses are available via DHCPv6."
  6988. msgstr ""
  6989. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:838
  6990. msgid ""
  6991. "The <em>Mobile IPv6 Home Agent</em> (H) flag indicates that the device is "
  6992. "also acting as Mobile IPv6 home agent on this link."
  6993. msgstr ""
  6994. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:836
  6995. msgid ""
  6996. "The <em>Other configuration</em> (O) flag indicates that other information, "
  6997. "such as DNS servers, is available via DHCPv6."
  6998. msgstr ""
  6999. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:84
  7000. msgid "The <em>block mount</em> command failed with code %d"
  7001. msgstr "<em>„block mount“</em> komanda nepavyko su kodu %d"
  7002. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:80
  7003. msgid ""
  7004. "The <em>qrencode</em> package is required for generating an QR code image of "
  7005. "the configuration."
  7006. msgstr ""
  7007. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:904
  7008. msgid "The DHCPv6-DUID (DHCP unique identifier) of this host."
  7009. msgstr ""
  7010. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1013
  7011. msgid ""
  7012. "The DNS server entries in the local resolv.conf are primarily sorted by the "
  7013. "weight specified here"
  7014. msgstr ""
  7015. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:77
  7016. msgid ""
  7017. "The HE.net endpoint update configuration changed, you must now use the plain "
  7018. "username instead of the user ID!"
  7019. msgstr ""
  7020. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:876
  7021. msgid "The IP address %h is already used by another static lease"
  7022. msgstr ""
  7023. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:885
  7024. msgid "The IP address is outside of any DHCP pool address range"
  7025. msgstr ""
  7026. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:606
  7027. msgid "The IP address of the boot server"
  7028. msgstr "Pajungimo serverio „IP“ adresas"
  7029. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:859
  7030. msgid ""
  7031. "The IP address to be used for this host, or <em>ignore</em> to ignore any "
  7032. "DHCP request from this host."
  7033. msgstr ""
  7034. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:40
  7035. msgid "The IPv4 address or the fully-qualified domain name of the remote end."
  7036. msgstr ""
  7037. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:42
  7038. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:42
  7039. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:40
  7040. #: protocols/luci-proto-vti/htdocs/luci-static/resources/protocol/vti.js:40
  7041. msgid ""
  7042. "The IPv4 address or the fully-qualified domain name of the remote tunnel end."
  7043. msgstr ""
  7044. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:40
  7045. msgid "The IPv6 address or the fully-qualified domain name of the remote end."
  7046. msgstr ""
  7047. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:42
  7048. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:42
  7049. msgid ""
  7050. "The IPv6 address or the fully-qualified domain name of the remote tunnel end."
  7051. msgstr ""
  7052. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:912
  7053. msgid ""
  7054. "The IPv6 interface identifier (address suffix) as hexadecimal number (max. 8 "
  7055. "chars)."
  7056. msgstr ""
  7057. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:53
  7058. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:59
  7059. msgid ""
  7060. "The IPv6 prefix assigned to the provider, usually ends with <code>::</code>"
  7061. msgstr ""
  7062. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/timer.js:7
  7063. msgid "The LED blinks with the configured on/off frequency"
  7064. msgstr ""
  7065. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/heartbeat.js:7
  7066. msgid "The LED flashes to simulate actual heart beat."
  7067. msgstr ""
  7068. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:8
  7069. msgid ""
  7070. "The LED flashes with link status and activity on the configured interface."
  7071. msgstr ""
  7072. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/none.js:7
  7073. msgid "The LED is always in default state off."
  7074. msgstr ""
  7075. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/default-on.js:6
  7076. msgid "The LED is always in default state on."
  7077. msgstr ""
  7078. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:224
  7079. msgid ""
  7080. "The MAC address %h is already used by another static lease in the same DHCP "
  7081. "pool"
  7082. msgstr ""
  7083. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:640
  7084. msgid "The MTU must not exceed the parent device MTU of %d bytes"
  7085. msgstr ""
  7086. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:942
  7087. msgid "The VLAN ID must be unique"
  7088. msgstr "„VLAN ID“ turi būti unikalūs"
  7089. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:45
  7090. msgid "The algorithm that is used to discover mesh routes"
  7091. msgstr ""
  7092. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2104
  7093. msgid ""
  7094. "The allowed characters are: <code>A-Z</code>, <code>a-z</code>, <code>0-9</"
  7095. "code> and <code>_</code>"
  7096. msgstr ""
  7097. #: modules/luci-compat/luasrc/view/cbi/error.htm:6
  7098. msgid "The configuration file could not be loaded due to the following error:"
  7099. msgstr ""
  7100. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2098
  7101. msgid ""
  7102. "The correct SSID must be manually specified when joining a hidden wireless "
  7103. "network"
  7104. msgstr ""
  7105. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4563
  7106. msgid ""
  7107. "The device could not be reached within %d seconds after applying the pending "
  7108. "changes, which caused the configuration to be rolled back for safety "
  7109. "reasons. If you believe that the configuration changes are correct "
  7110. "nonetheless, perform an unchecked configuration apply. Alternatively, you "
  7111. "can dismiss this warning and edit changes before attempting to apply again, "
  7112. "or revert all pending changes to keep the currently working configuration "
  7113. "state."
  7114. msgstr ""
  7115. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:281
  7116. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:393
  7117. msgid ""
  7118. "The device file of the memory or partition (<abbr title=\"for example\">e.g."
  7119. "</abbr> <code>/dev/sda1</code>)"
  7120. msgstr ""
  7121. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:504
  7122. msgid "The device name \"%s\" is already taken"
  7123. msgstr "Įrenginio pavadinimas „%s“ yra jau panaudotas kažkur kitur"
  7124. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:410
  7125. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:444
  7126. msgid ""
  7127. "The existing network configuration needs to be changed for LuCI to function "
  7128. "properly."
  7129. msgstr ""
  7130. "Dabartinė tinklo konfigūracija turi būti pakeista, kad „LuCI“ veiktų "
  7131. "teisingai."
  7132. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:788
  7133. msgid ""
  7134. "The existing wireless configuration needs to be changed for LuCI to function "
  7135. "properly."
  7136. msgstr ""
  7137. "Dabartinė belaidžio tinklo konfigūracija turi būti pakeista, kad „LuCI“ "
  7138. "veiktų teisingai."
  7139. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:220
  7140. msgid ""
  7141. "The flash image was uploaded. Below is the checksum and file size listed, "
  7142. "compare them with the original file to ensure data integrity. <br /> Click "
  7143. "'Continue' below to start the flash procedure."
  7144. msgstr ""
  7145. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:249
  7146. msgid "The following rules are currently active on this system."
  7147. msgstr "Šioje sistemoje šiuo metu galioja šios taisyklės."
  7148. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/heartbeat.js:8
  7149. msgid "The frequency is in direct proportion to 1-minute average CPU load."
  7150. msgstr ""
  7151. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:154
  7152. msgid "The gateway address must not be a local IP address"
  7153. msgstr "Tinklo sietuvo adresas neturi būti vietinis IP adresas"
  7154. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:757
  7155. msgid ""
  7156. "The generated configuration can be imported into a WireGuard client "
  7157. "application to set up a connection towards this device."
  7158. msgstr ""
  7159. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:172
  7160. msgid "The given SSH public key has already been added."
  7161. msgstr "Pateiktas „SSH“ viešasis raktas jau buvo pridėtas."
  7162. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:178
  7163. msgid ""
  7164. "The given SSH public key is invalid. Please supply proper public RSA, "
  7165. "ED25519 or ECDSA keys."
  7166. msgstr ""
  7167. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:800
  7168. msgid "The hardware address(es) of this entry/host, separated by spaces."
  7169. msgstr ""
  7170. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:93
  7171. msgid ""
  7172. "The hop penalty setting allows to modify batman-adv's preference for "
  7173. "multihop routes vs. short routes. The value is applied to the TQ of each "
  7174. "forwarded OGM, thereby propagating the cost of an extra hop (the packet has "
  7175. "to be received and retransmitted which costs airtime)"
  7176. msgstr ""
  7177. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:600
  7178. msgid "The hostname of the boot server"
  7179. msgstr ""
  7180. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:28
  7181. msgid "The interface could not be found"
  7182. msgstr "Sąsają nebuvo rasta"
  7183. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1169
  7184. msgid "The interface name is already used"
  7185. msgstr "Sąsajos pavadinimas jau yra naudojamas"
  7186. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1175
  7187. msgid "The interface name is too long"
  7188. msgstr "Sąsajos pavadinimas yra per ilgas"
  7189. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:61
  7190. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:55
  7191. msgid ""
  7192. "The length of the IPv4 prefix in bits, the remainder is used in the IPv6 "
  7193. "addresses."
  7194. msgstr ""
  7195. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:57
  7196. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:63
  7197. msgid "The length of the IPv6 prefix in bits"
  7198. msgstr ""
  7199. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:165
  7200. msgid "The local IPv4 address"
  7201. msgstr "Vietinis „IPv4“ adresas"
  7202. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:46
  7203. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:46
  7204. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:44
  7205. #: protocols/luci-proto-vti/htdocs/luci-static/resources/protocol/vti.js:44
  7206. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:44
  7207. msgid "The local IPv4 address over which the tunnel is created (optional)."
  7208. msgstr ""
  7209. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:171
  7210. msgid "The local IPv4 netmask"
  7211. msgstr "Vietinio „IPv4“ tinklo kaukė"
  7212. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:46
  7213. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:53
  7214. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:44
  7215. msgid "The local IPv6 address over which the tunnel is created (optional)."
  7216. msgstr ""
  7217. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:629
  7218. msgid ""
  7219. "The max response time in centiseconds inserted into group-specific queries "
  7220. "sent in response to leave group messages. It is also the amount of time "
  7221. "between group-specific query messages. This value may be tuned to modify the "
  7222. "\"leave latency\" of the network. A reduced value results in reduced time to "
  7223. "detect the loss of the last member of a group"
  7224. msgstr ""
  7225. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:615
  7226. msgid ""
  7227. "The max response time in centiseconds inserted into the periodic general "
  7228. "queries. By varying the value, an administrator may tune the burstiness of "
  7229. "IGMP messages on the subnet; larger values make the traffic less bursty, as "
  7230. "host responses are spread out over a larger interval"
  7231. msgstr ""
  7232. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:905
  7233. msgid ""
  7234. "The maximum hops to be published in <abbr title=\"Router Advertisement\">RA</"
  7235. "abbr> messages. Maximum is 255 hops."
  7236. msgstr ""
  7237. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4699
  7238. msgid ""
  7239. "The network access to this device could be interrupted by changing settings "
  7240. "of the \"%h\" interface."
  7241. msgstr ""
  7242. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2110
  7243. msgid "The network name is already used"
  7244. msgstr "Tinklo pavadinimas jau yra naudojamas"
  7245. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:139
  7246. msgid ""
  7247. "The network ports on this device can be combined to several <abbr "
  7248. "title=\"Virtual Local Area Network\">VLAN</abbr>s in which computers can "
  7249. "communicate directly with each other. <abbr title=\"Virtual Local Area "
  7250. "Network\">VLAN</abbr>s are often used to separate different network "
  7251. "segments. Often there is by default one Uplink port for a connection to the "
  7252. "next greater network like the internet and other ports for a local network."
  7253. msgstr ""
  7254. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:776
  7255. msgid ""
  7256. "The public hostname or IP address of this system the peer should connect to. "
  7257. "This usually is a static public IP address, a static hostname or a DDNS "
  7258. "domain."
  7259. msgstr ""
  7260. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:623
  7261. msgid "The query response interval must be lower than the query interval value"
  7262. msgstr ""
  7263. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:158
  7264. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:42
  7265. msgid "The reboot command failed with code %d"
  7266. msgstr "Paleidimo iš naujo komanda nepavyko su kodu %d"
  7267. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:147
  7268. msgid "The restore command failed with code %d"
  7269. msgstr ""
  7270. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:605
  7271. msgid ""
  7272. "The robustness value allows tuning for the expected packet loss on the "
  7273. "network. If a network is expected to be lossy, the robustness value may be "
  7274. "increased. IGMP is robust to (Robustness-1) packet losses"
  7275. msgstr ""
  7276. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:172
  7277. msgid ""
  7278. "The rule target is a jump to another rule specified by its priority value"
  7279. msgstr ""
  7280. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:92
  7281. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:167
  7282. msgid ""
  7283. "The rule target is a table lookup ID: a numeric table index ranging from 0 "
  7284. "to 65535 or symbol alias declared in /etc/iproute2/rt_tables. Special "
  7285. "aliases local (255), main (254) and default (253) are also valid"
  7286. msgstr ""
  7287. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1378
  7288. msgid "The selected %s mode is incompatible with %s encryption"
  7289. msgstr "Pasirinktas „%s“ režimas yra nesuderinamas su „%s“ šifravimu"
  7290. #: modules/luci-base/ucode/template/csrftoken.ut:11
  7291. msgid "The submitted security token is invalid or already expired!"
  7292. msgstr ""
  7293. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:98
  7294. msgid ""
  7295. "The system is erasing the configuration partition now and will reboot itself "
  7296. "when finished."
  7297. msgstr ""
  7298. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:320
  7299. msgid ""
  7300. "The system is flashing now.<br /> DO NOT POWER OFF THE DEVICE!<br /> Wait a "
  7301. "few minutes before you try to reconnect. It might be necessary to renew the "
  7302. "address of your computer to reach the device again, depending on your "
  7303. "settings."
  7304. msgstr ""
  7305. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:163
  7306. msgid ""
  7307. "The system is rebooting now. If the restored configuration changed the "
  7308. "current LAN IP address, you might need to reconnect manually."
  7309. msgstr ""
  7310. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:85
  7311. msgid "The system password has been successfully changed."
  7312. msgstr "Sistemos slaptažodis sėkmingai pakeistas."
  7313. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:345
  7314. msgid "The sysupgrade command failed with code %d"
  7315. msgstr ""
  7316. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:773
  7317. msgid ""
  7318. "The tag construct filters which host directives are used; more than one tag "
  7319. "can be provided, in this case the request must match all of them. Tagged "
  7320. "directives are used in preference to untagged ones. Note that one of mac, "
  7321. "duid or hostname still needs to be specified (can be a wildcard)."
  7322. msgstr ""
  7323. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:120
  7324. msgid ""
  7325. "The uploaded backup archive appears to be valid and contains the files "
  7326. "listed below. Press \"Continue\" to restore the backup and reboot, or "
  7327. "\"Cancel\" to abort the operation."
  7328. msgstr ""
  7329. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:115
  7330. msgid "The uploaded backup archive is not readable"
  7331. msgstr ""
  7332. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:249
  7333. msgid "The uploaded firmware does not allow keeping current configuration."
  7334. msgstr ""
  7335. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:244
  7336. msgid ""
  7337. "The uploaded image file does not contain a supported format. Make sure that "
  7338. "you choose the generic image format for your platform."
  7339. msgstr ""
  7340. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1515
  7341. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1527
  7342. msgid "The value is overridden by configuration."
  7343. msgstr ""
  7344. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:56
  7345. msgid ""
  7346. "The value specifies the interval (milliseconds) in which batman-adv floods "
  7347. "the network with its protocol information."
  7348. msgstr ""
  7349. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:678
  7350. msgid ""
  7351. "There are legacy iptables rules present on the system. Mixing iptables and "
  7352. "nftables rules is discouraged and may lead to incomplete traffic filtering."
  7353. msgstr ""
  7354. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:985
  7355. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1017
  7356. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:130
  7357. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:179
  7358. msgid "There are no active leases"
  7359. msgstr ""
  7360. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4731
  7361. msgid "There are no changes to apply"
  7362. msgstr "Nėra pakeitimų kurių galima įgalinti"
  7363. #: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:58
  7364. #: themes/luci-theme-material/ucode/template/themes/material/header.ut:78
  7365. #: themes/luci-theme-librecmc-2020/ucode/template/themes/librecmc2020/header.ut:55
  7366. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:80
  7367. msgid ""
  7368. "There is no password set on this router. Please configure a root password to "
  7369. "protect the web interface."
  7370. msgstr ""
  7371. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:49
  7372. msgid "This IPv4 address of the relay"
  7373. msgstr ""
  7374. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1722
  7375. msgid "This authentication type is not applicable to the selected EAP method."
  7376. msgstr ""
  7377. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:58
  7378. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:56
  7379. msgid "This does not look like a valid PEM file"
  7380. msgstr ""
  7381. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:454
  7382. msgid ""
  7383. "This is a list of shell glob patterns for matching files and directories to "
  7384. "include during sysupgrade. Modified files in /etc/config/ and certain other "
  7385. "configurations are automatically preserved."
  7386. msgstr ""
  7387. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:81
  7388. msgid ""
  7389. "This is either the \"Update Key\" configured for the tunnel or the account "
  7390. "password if no update key has been configured"
  7391. msgstr ""
  7392. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv_hardif.js:42
  7393. msgid ""
  7394. "This is the batman-adv device where you want to link the physical Device "
  7395. "from above to. If this list is empty, then you need to create one first. If "
  7396. "you want to route mesh traffic over a wired network device, then please "
  7397. "select it from the above Device selector. If you want to assign the batman-"
  7398. "adv interface to a Wi-fi mesh then do not select a Device in the Device "
  7399. "selector but rather go to the Wireless settings and select this Interface as "
  7400. "a network from there."
  7401. msgstr ""
  7402. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:116
  7403. msgid ""
  7404. "This is the content of /etc/rc.local. Insert your own commands here (in "
  7405. "front of 'exit 0') to execute them at the end of the boot process."
  7406. msgstr ""
  7407. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:54
  7408. msgid ""
  7409. "This is the local endpoint address assigned by the tunnel broker, it usually "
  7410. "ends with <code>...:2/64</code>"
  7411. msgstr ""
  7412. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:274
  7413. msgid "This is the only DHCP server in the local network."
  7414. msgstr "Tai yra vienintelis „DHCP“ serveris vietiniame tinkle."
  7415. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:73
  7416. msgid "This is the plain username for logging into the account"
  7417. msgstr ""
  7418. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:57
  7419. msgid ""
  7420. "This is the prefix routed to you by the tunnel broker for use by clients"
  7421. msgstr ""
  7422. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/crontab.js:29
  7423. msgid "This is the system crontab in which scheduled tasks can be defined."
  7424. msgstr ""
  7425. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:50
  7426. msgid ""
  7427. "This is usually the address of the nearest PoP operated by the tunnel broker"
  7428. msgstr ""
  7429. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:65
  7430. msgid ""
  7431. "This list gives an overview over currently running system processes and "
  7432. "their status."
  7433. msgstr ""
  7434. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1676
  7435. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1734
  7436. msgid ""
  7437. "This option cannot be used because the ca-bundle package is not installed."
  7438. msgstr ""
  7439. #: modules/luci-base/htdocs/luci-static/resources/form.js:2280
  7440. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:172
  7441. #: modules/luci-compat/luasrc/view/cbi/tsection.htm:32
  7442. msgid "This section contains no values yet"
  7443. msgstr ""
  7444. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:124
  7445. msgid "Time Synchronization"
  7446. msgstr "Laiko sinchronizavimas"
  7447. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1629
  7448. msgid "Time advertisement"
  7449. msgstr "Laiko skelbimas"
  7450. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:713
  7451. msgid "Time in milliseconds"
  7452. msgstr "Laikas milisekundėmis"
  7453. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:581
  7454. msgid "Time in seconds to spend in listening and learning states"
  7455. msgstr ""
  7456. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1174
  7457. msgid "Time interval for rekeying GTK"
  7458. msgstr ""
  7459. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1638
  7460. msgid "Time zone"
  7461. msgstr "Laiko juostą"
  7462. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:15
  7463. msgid "Timed-out"
  7464. msgstr ""
  7465. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:717
  7466. msgid "Timeout in seconds"
  7467. msgstr "Laukimo laikas sekundėmis"
  7468. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:567
  7469. msgid "Timeout in seconds for learned MAC addresses in the forwarding database"
  7470. msgstr ""
  7471. "Laukimo laikas sekundėmis išmoktiems „MAC“ adresams persiuntimo duomenų "
  7472. "bazėje"
  7473. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:586
  7474. msgid "Timeout in seconds until topology updates on link loss"
  7475. msgstr "Laukimo laikas sekundėmis kol topologiją atsinaujiną praradus ryšį"
  7476. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:145
  7477. msgid "Timezone"
  7478. msgstr "Laiko juosta"
  7479. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:438
  7480. msgid ""
  7481. "To fully configure the local WireGuard interface from an existing (e.g. "
  7482. "provider supplied) configuration file, use the <strong><a class=\"full-"
  7483. "import\" href=\"#\">configuration import</a></strong> instead."
  7484. msgstr ""
  7485. "Norėdami visiškai sukonfigūruoti vietinę „WireGuard“ sąsają iš esamo (pvz., "
  7486. "tiekėjo pateikto) konfigūracijos failo, naudokite „<strong><a class=\"full-"
  7487. "import\" href=\"#\">“ konfigūracijos importavimą „</a></strong>“."
  7488. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:400
  7489. msgid ""
  7490. "To restore configuration files, you can upload a previously generated backup "
  7491. "archive here. To reset the firmware to its initial state, click \"Perform "
  7492. "reset\" (only possible with squashfs images)."
  7493. msgstr ""
  7494. "Kad atkurtumėte konfigūracijos failus, jūs galite čia įkelti seniau "
  7495. "sugeneruotą atkūrimo archyvą. Norėdami atkurti programine įrangą į numatytą, "
  7496. "spauskite – „Atlikti perkrovimą į gamyklinius parametrus“ (galimas tik su "
  7497. "„squashfs images“)."
  7498. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1569
  7499. msgid "Tone"
  7500. msgstr "Tonas"
  7501. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:35
  7502. msgid "Total Available"
  7503. msgstr "Iš viso pasiekiama"
  7504. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:110
  7505. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:111
  7506. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:121
  7507. msgid "Traceroute"
  7508. msgstr "„Traceroute“"
  7509. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:126
  7510. msgid "Tracking Area Code"
  7511. msgstr "Sekimo srities kodas"
  7512. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:54
  7513. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:65
  7514. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:139
  7515. msgid "Traffic"
  7516. msgstr "Eismas"
  7517. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:79
  7518. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:84
  7519. msgid "Traffic Class"
  7520. msgstr "Eismo klasė"
  7521. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:528
  7522. msgid "Traffic filter chain \"%h\""
  7523. msgstr "Eismo filtro grandinė „%h“"
  7524. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:466
  7525. msgctxt "nft counter"
  7526. msgid "Traffic matched by rule: %.1000mPackets, %.1024mBytes"
  7527. msgstr "Eismas sulygintas pagal taisyklę: %.1000mPaketai, %.1024Megabaitai"
  7528. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:387
  7529. msgid "Transfer"
  7530. msgstr "Perduoti"
  7531. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:25
  7532. msgid "Transmit"
  7533. msgstr "Siųsti"
  7534. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:319
  7535. msgid "Transmit Hash Policy"
  7536. msgstr ""
  7537. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:248
  7538. msgid "Transmit dropped"
  7539. msgstr "Siuntimas nutrauktas"
  7540. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:247
  7541. msgid "Transmit errors"
  7542. msgstr "Siuntimo klaidos"
  7543. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:58
  7544. msgid "Transmitted Data"
  7545. msgstr "Išsiųsti duomenys"
  7546. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:245
  7547. msgid "Transmitted bytes"
  7548. msgstr "Išsiųsti baitai"
  7549. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:246
  7550. msgid "Transmitted packets"
  7551. msgstr "Išsiųsti paketai"
  7552. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:79
  7553. msgctxt "nft @th,off,len"
  7554. msgid "Transport header bits %d-%d"
  7555. msgstr "Transporto antraštės bitai „%d-%d“"
  7556. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:59
  7557. msgctxt "nft th dport"
  7558. msgid "Transport header destination port"
  7559. msgstr "Transporto antraštės paskirties vietos prievadas"
  7560. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:58
  7561. msgctxt "nft th sport"
  7562. msgid "Transport header source port"
  7563. msgstr "Transporto antraštės šaltinio prievadas"
  7564. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:75
  7565. msgid "Trigger"
  7566. msgstr ""
  7567. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:20
  7568. msgid "Trigger Mode"
  7569. msgstr ""
  7570. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:69
  7571. msgid "Tunnel ID"
  7572. msgstr "Tunelio „ID“"
  7573. #: modules/luci-base/htdocs/luci-static/resources/network.js:3005
  7574. #: modules/luci-compat/luasrc/model/network.lua:1431
  7575. msgid "Tunnel Interface"
  7576. msgstr "Tunelio sąsają"
  7577. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:44
  7578. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:55
  7579. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:76
  7580. msgid "Tunnel Link"
  7581. msgstr "Tunelio nuoroda"
  7582. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1472
  7583. msgid "Tunnel device"
  7584. msgstr "Tunelio įrenginys"
  7585. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:185
  7586. msgid "Tx-Power"
  7587. msgstr ""
  7588. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:45
  7589. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1503
  7590. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:169
  7591. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:43
  7592. msgid "Type"
  7593. msgstr "Tipas"
  7594. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:182
  7595. msgid "Type of service"
  7596. msgstr "Tarnybos tipas"
  7597. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:56
  7598. msgctxt "nft udp dport"
  7599. msgid "UDP destination port"
  7600. msgstr "„UDP“ paskirties vietos prievadas"
  7601. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:55
  7602. msgctxt "nft udp sport"
  7603. msgid "UDP source port"
  7604. msgstr "„UDP“ šaltinio prievadas"
  7605. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:328
  7606. msgid "UDP:"
  7607. msgstr "„UDP“:"
  7608. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:91
  7609. msgid "UMTS only"
  7610. msgstr "Tik „UMTS“"
  7611. #: modules/luci-compat/luasrc/model/network/proto_3g.lua:10
  7612. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:43
  7613. msgid "UMTS/GPRS/EV-DO"
  7614. msgstr "„UMTS/GPRS/EV-DO“"
  7615. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:255
  7616. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:361
  7617. msgid "UUID"
  7618. msgstr "„UUID“"
  7619. #: modules/luci-base/htdocs/luci-static/resources/network.js:16
  7620. #: modules/luci-base/htdocs/luci-static/resources/network.js:17
  7621. #: modules/luci-compat/luasrc/model/network.lua:34
  7622. #: modules/luci-compat/luasrc/model/network.lua:35
  7623. msgid "Unable to determine device name"
  7624. msgstr "Nepavyksta nustatyti įrenginio pavadinimo"
  7625. #: modules/luci-base/htdocs/luci-static/resources/network.js:18
  7626. #: modules/luci-compat/luasrc/model/network.lua:36
  7627. msgid "Unable to determine external IP address"
  7628. msgstr "Nepapvyksta nustatyti išorinio „IP“ adreso"
  7629. #: modules/luci-base/htdocs/luci-static/resources/network.js:19
  7630. #: modules/luci-compat/luasrc/model/network.lua:37
  7631. msgid "Unable to determine upstream interface"
  7632. msgstr ""
  7633. #: modules/luci-base/ucode/template/error404.ut:12
  7634. msgid "Unable to dispatch"
  7635. msgstr ""
  7636. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:85
  7637. msgid "Unable to generate QR code: %s"
  7638. msgstr "Nepavyko sukurti „QR-kodo“: %s"
  7639. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/dmesg.js:9
  7640. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/syslog.js:15
  7641. msgid "Unable to load log data:"
  7642. msgstr "Nepavyko pakrauti žurnalo duomenų:"
  7643. #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:54
  7644. #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:54
  7645. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:22
  7646. msgid "Unable to obtain client ID"
  7647. msgstr "Nepavyko gauti kliento „ID“"
  7648. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:221
  7649. msgid "Unable to obtain mount information"
  7650. msgstr ""
  7651. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:307
  7652. msgid "Unable to reset ip6tables counters: %s"
  7653. msgstr ""
  7654. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:305
  7655. msgid "Unable to reset iptables counters: %s"
  7656. msgstr ""
  7657. #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:61
  7658. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:7
  7659. msgid "Unable to resolve AFTR host name"
  7660. msgstr ""
  7661. #: modules/luci-base/htdocs/luci-static/resources/network.js:20
  7662. #: modules/luci-compat/luasrc/model/network.lua:38
  7663. msgid "Unable to resolve peer host name"
  7664. msgstr ""
  7665. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:313
  7666. msgid "Unable to restart firewall: %s"
  7667. msgstr "Nepavyko paleisti iš naujo užkardos: %s"
  7668. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/crontab.js:22
  7669. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:370
  7670. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:57
  7671. msgid "Unable to save contents: %s"
  7672. msgstr "Nepavyko išsaugoti turinį: %s"
  7673. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:14
  7674. msgid "Unable to set allowed mode list."
  7675. msgstr "Nepavyko nustatyti leidžiamo režimo sąrašo."
  7676. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:17
  7677. msgid "Unable to set preferred mode."
  7678. msgstr "Nepavyko nustatyti pageidaujamą režimą."
  7679. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:29
  7680. msgid "Unable to verify PIN"
  7681. msgstr "Nepavyko patvirtinti „PIN-kodo“"
  7682. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1360
  7683. msgid "Unconfigure"
  7684. msgstr "Atkonfigūruoti"
  7685. #: protocols/luci-proto-unet/htdocs/luci-static/resources/protocol/unet.js:8
  7686. msgid "Unet"
  7687. msgstr "„Unet“"
  7688. #: modules/luci-base/htdocs/luci-static/resources/fs.js:102
  7689. msgid "Unexpected reply data format"
  7690. msgstr ""
  7691. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1535
  7692. msgid ""
  7693. "Unique Local Address - in the range <code>fc00::/7</code>. Typically only "
  7694. "within the &#8216;local&#8217; half <code>fd00::/8</code>. ULA for IPv6 is "
  7695. "analogous to IPv4 private network addressing. This prefix is randomly "
  7696. "generated at first install."
  7697. msgstr ""
  7698. "Unikalus vietinis adresas – diapazone „<code>fc00::/7</code>“. Paprastai tik "
  7699. "„&#8216;“ vietinėje „&#8217;“ pusė „<code>fd00::/8</code>“. „IPv6 ULA“ yra "
  7700. "analogiška „IPv4“ privataus tinklo adresavimui. Šis priešdėlis "
  7701. "sugeneruojamas atsitiktinai pirmą kartą įdiegiant."
  7702. #: modules/luci-base/htdocs/luci-static/resources/network.js:2092
  7703. #: modules/luci-compat/luasrc/model/network.lua:971
  7704. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:17
  7705. msgid "Unknown"
  7706. msgstr "Nežinomas"
  7707. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:12
  7708. msgid "Unknown and unsupported connection method."
  7709. msgstr "Nežinomas ir nepalaikomas prisijungimo būdas."
  7710. #: modules/luci-base/htdocs/luci-static/resources/network.js:2401
  7711. #: modules/luci-compat/luasrc/model/network.lua:1138
  7712. msgid "Unknown error (%s)"
  7713. msgstr "Nežinoma klaida (%s)"
  7714. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:412
  7715. msgid "Unknown error code"
  7716. msgstr "Nežinomos klaidos kodas"
  7717. #: modules/luci-base/htdocs/luci-static/resources/network.js:2089
  7718. #: modules/luci-base/htdocs/luci-static/resources/protocol/none.js:6
  7719. #: modules/luci-compat/luasrc/model/network.lua:965
  7720. msgid "Unmanaged"
  7721. msgstr "Netvarkomas/-a/-i"
  7722. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:195
  7723. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:217
  7724. msgid "Unmount"
  7725. msgstr ""
  7726. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:121
  7727. msgid "Unnamed key"
  7728. msgstr "Nepavadintas raktas"
  7729. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4381
  7730. msgid "Unsaved Changes"
  7731. msgstr "Neišsaugoti pakeitimai"
  7732. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:410
  7733. msgid "Unspecified error"
  7734. msgstr "Nenustatyta klaida"
  7735. #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:64
  7736. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:9
  7737. msgid "Unsupported MAP type"
  7738. msgstr "Nepalaikomas „MAP“ tipas"
  7739. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:69
  7740. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:31
  7741. msgid "Unsupported modem"
  7742. msgstr "Nepalaikomas modemas"
  7743. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:112
  7744. msgid "Unsupported protocol"
  7745. msgstr "Nepalaikomas protokolas"
  7746. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:316
  7747. msgid "Unsupported protocol type."
  7748. msgstr "Nepalaikomas protokolo tipas."
  7749. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:215
  7750. msgctxt "VLAN port state"
  7751. msgid "Untagged"
  7752. msgstr "Nepažymėtas"
  7753. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:532
  7754. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:97
  7755. msgid "Untitled peer"
  7756. msgstr ""
  7757. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:151
  7758. msgid "Up"
  7759. msgstr "Viršun"
  7760. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:411
  7761. msgid "Up Delay"
  7762. msgstr ""
  7763. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4268
  7764. msgid "Upload"
  7765. msgstr "Įkelti"
  7766. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:441
  7767. msgid ""
  7768. "Upload a sysupgrade-compatible image here to replace the running firmware."
  7769. msgstr ""
  7770. "Įkelti su „sysupgrade“ suderinama laikmeną, kad pakeistumėte veikiančią "
  7771. "programinę aparatinę įrangą."
  7772. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:138
  7773. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:169
  7774. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:412
  7775. msgid "Upload archive..."
  7776. msgstr "Įkelti archyvą..."
  7777. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2875
  7778. msgid "Upload file"
  7779. msgstr "Įkelti failą"
  7780. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2850
  7781. msgid "Upload file…"
  7782. msgstr "Įkelti failą…"
  7783. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4214
  7784. msgid "Upload has been cancelled"
  7785. msgstr "Įkėlimas buvo atšauktas"
  7786. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2797
  7787. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4256
  7788. msgid "Upload request failed: %s"
  7789. msgstr "Įkėlimo prašymas nesėkmingas: %s"
  7790. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4175
  7791. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4229
  7792. msgid "Uploading file…"
  7793. msgstr "Įkėliamas failas…"
  7794. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:789
  7795. msgid ""
  7796. "Upon pressing \"Continue\", anonymous \"wifi-iface\" sections will be "
  7797. "assigned with a name in the form <em>wifinet#</em> and the network will be "
  7798. "restarted to apply the updated configuration."
  7799. msgstr ""
  7800. "Paspaudus „Tęsti“, anoniminiams „wifi-iface“ skyriams bus suteiktas "
  7801. "<em>„wifinet#“</em> formos pavadinimas ir tinklas bus paleistas iš naujo, "
  7802. "kad būtų pritaikyta atnaujinta konfigūracija."
  7803. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:411
  7804. msgid ""
  7805. "Upon pressing \"Continue\", bridges configuration will be updated and the "
  7806. "network will be restarted to apply the updated configuration."
  7807. msgstr ""
  7808. "Paspaudus „Tęsti“, bus atnaujinta tiltų konfigūracija ir tinklas bus "
  7809. "paleistas iš naujo, kad būtų pritaikyta atnaujinta konfigūracija."
  7810. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:445
  7811. msgid ""
  7812. "Upon pressing \"Continue\", ifname options will get renamed and the network "
  7813. "will be restarted to apply the updated configuration."
  7814. msgstr ""
  7815. "Paspaudus „Tęsti-, „ifname“ parinktys bus pervadintos ir tinklas bus "
  7816. "paleistas iš naujo, kad būtų pritaikyta atnaujinta konfigūracija."
  7817. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:509
  7818. msgid "Upstream resolvers will be queried in the order of the resolv file."
  7819. msgstr ""
  7820. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:82
  7821. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:62
  7822. msgid "Uptime"
  7823. msgstr "Aktyvumo laikas"
  7824. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:419
  7825. msgid "Use <code>/etc/ethers</code>"
  7826. msgstr "Naudoti <code>„/etc/ethers“</code>"
  7827. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:106
  7828. msgid "Use DHCP"
  7829. msgstr "Naudoti „DHCP“"
  7830. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:295
  7831. msgid "Use DHCP advertised servers"
  7832. msgstr "Naudoti „DHCP“ reklamuojamus serverius"
  7833. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:167
  7834. msgid "Use DHCP gateway"
  7835. msgstr "Naudoti „DHCP“ tinklo tarpuvartę"
  7836. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:115
  7837. msgid "Use DHCPv6"
  7838. msgstr "Naudoti „DHCPv6“"
  7839. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:999
  7840. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:144
  7841. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:160
  7842. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:132
  7843. msgid "Use DNS servers advertised by peer"
  7844. msgstr ""
  7845. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:616
  7846. msgid "Use ISO/IEC 3166 alpha2 country codes."
  7847. msgstr "Naudoti „ISO/IEC 3166 alpha2“ šalies kodus."
  7848. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:48
  7849. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:89
  7850. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:69
  7851. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6to4.js:53
  7852. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:67
  7853. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:84
  7854. msgid "Use MTU on tunnel interface"
  7855. msgstr "Naudoti „MTU“ ant tunelio sąsajos"
  7856. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:85
  7857. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:65
  7858. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6to4.js:49
  7859. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:80
  7860. msgid "Use TTL on tunnel interface"
  7861. msgstr "Naudoti „TTL“ ant tunelio sąsajos"
  7862. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:322
  7863. msgid "Use XOR of hardware MAC addresses (layer2)"
  7864. msgstr "Naudoti „XOR“ techninės įrangos „MAC“ adresus („layer2“)"
  7865. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:323
  7866. msgid "Use XOR of hardware MAC addresses and IP addresses (layer2+3)"
  7867. msgstr ""
  7868. "Naudoti „XOR“ techninės įrangos „MAC“ adresus ir „IP“ adresus („layer2+3“)"
  7869. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:325
  7870. msgid ""
  7871. "Use XOR of hardware MAC addresses and IP addresses, rely on skb_flow_dissect "
  7872. "(encap2+3)"
  7873. msgstr ""
  7874. "Naudoti „XOR“ techninės įrangos „MAC“ adresus ir „IP“ adresus, pasikliauti "
  7875. "ant „skb_flow_dissect (encap2+3)“"
  7876. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:295
  7877. msgid "Use as external overlay (/overlay)"
  7878. msgstr ""
  7879. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:294
  7880. msgid "Use as root filesystem (/)"
  7881. msgstr "Naudoti kaip „root“ failų sistemą (/)"
  7882. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34
  7883. msgid "Use broadcast flag"
  7884. msgstr ""
  7885. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1295
  7886. msgid "Use builtin IPv6-management"
  7887. msgstr "Naudoti įtaisytą „IPv6“ tvarkymą"
  7888. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1003
  7889. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:148
  7890. msgid "Use custom DNS servers"
  7891. msgstr "Naudoti tinkintą „DNS“ serverį"
  7892. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:995
  7893. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:133
  7894. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:156
  7895. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:121
  7896. msgid "Use default gateway"
  7897. msgstr "Naudoti numatytąjį tinklo tarpuvartę"
  7898. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1017
  7899. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:138
  7900. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:164
  7901. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:126
  7902. msgid "Use gateway metric"
  7903. msgstr "Naudoti tinklo tarpuvartės metrika"
  7904. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:88
  7905. msgid "Use legacy MAP"
  7906. msgstr ""
  7907. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:88
  7908. msgid ""
  7909. "Use legacy MAP interface identifier format (draft-ietf-softwire-map-00) "
  7910. "instead of RFC7597"
  7911. msgstr ""
  7912. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:179
  7913. msgid "Use routing table"
  7914. msgstr "Naudoti kelvado lentelę"
  7915. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:63
  7916. msgctxt "nft nat flag persistent"
  7917. msgid "Use same source and destination for each connection"
  7918. msgstr "Naudoti tą patį šaltinį ir paskirties vietą kiekvienam ryšiui"
  7919. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1669
  7920. msgid "Use system certificates"
  7921. msgstr "Naudoti sistemos sertifikatus"
  7922. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1727
  7923. msgid "Use system certificates for inner-tunnel"
  7924. msgstr "Naudoti sistemos sertifikatus vidiniam tuneliui"
  7925. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:772
  7926. msgid ""
  7927. "Use the <em>Add</em> Button to add a new lease entry. The <em>MAC address</"
  7928. "em> identifies the host, the <em>IPv4 address</em> specifies the fixed "
  7929. "address to use, and the <em>Hostname</em> is assigned as a symbolic name to "
  7930. "the requesting host. The optional <em>Lease time</em> can be used to set non-"
  7931. "standard host-specific lease time, e.g. 12h, 3d or infinite."
  7932. msgstr ""
  7933. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:324
  7934. msgid "Use upper layer protocol information (layer3+4)"
  7935. msgstr "Naudoti viršutinio sluoksnio protokolo informaciją („layer3-4“)"
  7936. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:326
  7937. msgid ""
  7938. "Use upper layer protocol information, rely on skb_flow_dissect (encap3+4)"
  7939. msgstr ""
  7940. "Naudoti viršutinio sluoksnio protokolo informaciją, pasikliauti ant "
  7941. "„skb_flow_dissect (encap3+4)“"
  7942. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:36
  7943. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:194
  7944. msgid "Used"
  7945. msgstr "Naudotas/-a"
  7946. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1514
  7947. msgid "Used Key Slot"
  7948. msgstr "Naudotas rakto lizdas"
  7949. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1557
  7950. msgid ""
  7951. "Used for two different purposes: RADIUS NAS ID and 802.11r R0KH-ID. Not "
  7952. "needed with normal WPA(2)-PSK."
  7953. msgstr ""
  7954. "Naudojamas dviems skirtingams tikslams: „RADIUS NAS ID“ ir „802.11r R0KH-"
  7955. "ID“. Nereikalingas su normaliu „WPA(2)-PSK“."
  7956. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:146
  7957. msgid "User Group"
  7958. msgstr "Vartotojų grupė"
  7959. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:158
  7960. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:106
  7961. msgid "User certificate (PEM encoded)"
  7962. msgstr "Vartotojo sertifikatas („PEM“ užkoduotas/-a)"
  7963. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:187
  7964. msgid "User identifier"
  7965. msgstr "Vartotojo identifikatorius"
  7966. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:170
  7967. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:118
  7968. msgid "User key (PEM encoded)"
  7969. msgstr "Vartotojo raktas („PEM“ užkoduotas/-a)"
  7970. #: modules/luci-base/ucode/template/sysauth.ut:23
  7971. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:147
  7972. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:101
  7973. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:56
  7974. #: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:13
  7975. msgid "Username"
  7976. msgstr "Slapyvardis/Vartotojo vardas"
  7977. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:131
  7978. msgid "Utilize flow table <strong>%h</strong>"
  7979. msgstr ""
  7980. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1637
  7981. msgid "VC-Mux"
  7982. msgstr "„VC-Mux“"
  7983. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1585
  7984. msgid "VDSL"
  7985. msgstr "„VDSL“"
  7986. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:489
  7987. msgctxt "MACVLAN mode"
  7988. msgid "VEPA (Virtual Ethernet Port Aggregator)"
  7989. msgstr "„VEPA“ (Virtualus eterneto prievado agregatorius)"
  7990. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:400
  7991. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1466
  7992. msgid "VLAN (802.1ad)"
  7993. msgstr "„VLAN (802.1ad)“"
  7994. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:399
  7995. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1463
  7996. msgid "VLAN (802.1q)"
  7997. msgstr "„VLAN (802.1q)“"
  7998. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:468
  7999. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:923
  8000. msgid "VLAN ID"
  8001. msgstr "„VLAN ID“"
  8002. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:173
  8003. msgid "VLANs on %q"
  8004. msgstr "„VLAN'ai“ ant %q"
  8005. #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:54
  8006. msgid "VPN"
  8007. msgstr "„VPN“"
  8008. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:42
  8009. msgid "VPN Local address"
  8010. msgstr "Vietinis „VPN“ adresas"
  8011. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:46
  8012. msgid "VPN Local port"
  8013. msgstr "Vietinis „VPN“ prievadas"
  8014. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:97
  8015. msgid "VPN Protocol"
  8016. msgstr "„VPN“ protokolas"
  8017. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:103
  8018. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:93
  8019. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:58
  8020. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:39
  8021. msgid "VPN Server"
  8022. msgstr "„VPN“ serveris"
  8023. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:152
  8024. msgid "VPN Server certificate's SHA256 hash"
  8025. msgstr "„VPN“ serverio sertifikato „SHA256“ maiša"
  8026. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:140
  8027. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:96
  8028. msgid "VPN Server port"
  8029. msgstr "„VPN“ serverio prievadas"
  8030. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:144
  8031. msgid "VPN Server's certificate SHA1 hash"
  8032. msgstr "„VPN“ serverio sertifikato „SHA1“ maiša"
  8033. #: modules/luci-compat/luasrc/model/network/proto_vpnc.lua:9
  8034. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:9
  8035. msgid "VPNC (CISCO 3000 (and others) VPN)"
  8036. msgstr "„VPNC“ („CISCO 3000 (ir kiti) VPN“)"
  8037. #: protocols/luci-proto-vti/htdocs/luci-static/resources/protocol/vti.js:10
  8038. msgid "VTI"
  8039. msgstr "„VTI“"
  8040. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:10
  8041. msgid "VXLAN (RFC7348)"
  8042. msgstr "„VXLAN (RFC7348)“"
  8043. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:53
  8044. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:48
  8045. msgid "VXLAN network identifier"
  8046. msgstr "„VXLAN“ tinklo identifikatorius"
  8047. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:10
  8048. msgid "VXLANv6 (RFC7348)"
  8049. msgstr "„VXLANv6 (RFC7348)“"
  8050. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:484
  8051. msgid ""
  8052. "Validate DNS replies and cache DNSSEC data, requires upstream to support "
  8053. "DNSSEC."
  8054. msgstr ""
  8055. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1669
  8056. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1727
  8057. msgid ""
  8058. "Validate server certificate using built-in system CA bundle,<br />requires "
  8059. "the \"ca-bundle\" package"
  8060. msgstr ""
  8061. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:388
  8062. msgid "Validation for all slaves"
  8063. msgstr ""
  8064. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:386
  8065. msgid "Validation only for active slave"
  8066. msgstr ""
  8067. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:387
  8068. msgid "Validation only for backup slaves"
  8069. msgstr ""
  8070. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:73
  8071. msgid "Vendor"
  8072. msgstr "Tiekėjas"
  8073. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:40
  8074. msgid "Vendor Class to send when requesting DHCP"
  8075. msgstr "Tiekėjo klasė, kurią reikia siųsti prašant „DHCP“"
  8076. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:489
  8077. msgid "Verify unsigned domain responses really come from unsigned domains."
  8078. msgstr ""
  8079. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:196
  8080. msgid "Verifying the uploaded image file."
  8081. msgstr ""
  8082. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:951
  8083. msgid "Very High"
  8084. msgstr "Labai aukštas"
  8085. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:402
  8086. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1478
  8087. msgid "Virtual Ethernet"
  8088. msgstr "Virtualus „Ethernet'as“"
  8089. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:60
  8090. msgid "Virtual dynamic interface"
  8091. msgstr "Virtuali dinaminė sąsaja"
  8092. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1101
  8093. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1102
  8094. msgid "WDS"
  8095. msgstr "„WDS“"
  8096. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1298
  8097. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1387
  8098. msgid "WEP Open System"
  8099. msgstr "„WEP“ atviroji sistema"
  8100. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1299
  8101. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1388
  8102. msgid "WEP Shared Key"
  8103. msgstr "„WEP“ bendrinamas raktas"
  8104. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2119
  8105. msgid "WEP passphrase"
  8106. msgstr ""
  8107. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:983
  8108. msgid "WLAN roaming"
  8109. msgstr ""
  8110. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1139
  8111. msgid "WMM Mode"
  8112. msgstr "„WMM“ režimas"
  8113. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1642
  8114. msgid "WNM Sleep Mode"
  8115. msgstr "„WNM“ miego režimas"
  8116. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1646
  8117. msgid "WNM Sleep Mode Fixes"
  8118. msgstr ""
  8119. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2119
  8120. msgid "WPA passphrase"
  8121. msgstr ""
  8122. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1289
  8123. msgid ""
  8124. "WPA-Encryption requires wpa_supplicant (for client mode) or hostapd (for AP "
  8125. "and ad-hoc mode) to be installed."
  8126. msgstr ""
  8127. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:153
  8128. msgid "WPS status"
  8129. msgstr "„WPS“ būsena"
  8130. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:47
  8131. msgid "Waiting for device..."
  8132. msgstr "Laukiama įrenginio..."
  8133. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:189
  8134. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:199
  8135. msgid "Warning"
  8136. msgstr "Įspėjimas"
  8137. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:26
  8138. msgid "Warning: There are unsaved changes that will get lost on reboot!"
  8139. msgstr "Ispėjimas: Yra neišsaugotų pakeitimų, kurie bus prarasti perkraunant!"
  8140. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:37
  8141. msgid "Weak"
  8142. msgstr "Silpnas"
  8143. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:670
  8144. msgid "Weight"
  8145. msgstr "Svoris"
  8146. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:921
  8147. msgid ""
  8148. "When a host matches an entry then the special tag <em>known</em> is set. Use "
  8149. "<em>known</em> to match all known hosts."
  8150. msgstr ""
  8151. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1088
  8152. msgid ""
  8153. "When delegating prefixes to multiple downstreams, interfaces with a higher "
  8154. "preference value are considered first when allocating subnets."
  8155. msgstr ""
  8156. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:105
  8157. msgid ""
  8158. "When enabled network coding increases the WiFi throughput by combining "
  8159. "multiple frames into a single frame, thus reducing the needed air time."
  8160. msgstr ""
  8161. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:76
  8162. msgid ""
  8163. "When enabled the distributed ARP table forms a mesh-wide ARP cache that "
  8164. "helps non-mesh clients to get ARP responses much more reliably and without "
  8165. "much delay."
  8166. msgstr ""
  8167. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:110
  8168. msgid ""
  8169. "When enabled, gateway is on-link even if the gateway does not match any "
  8170. "interface prefix"
  8171. msgstr ""
  8172. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:707
  8173. msgid ""
  8174. "When enabled, new ARP table entries are added from received gratuitous APR "
  8175. "requests or replies, otherwise only preexisting table entries are updated, "
  8176. "but no new hosts are learned."
  8177. msgstr ""
  8178. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/heartbeat.js:14
  8179. msgid ""
  8180. "When inverted, the LED is continuously lit and flickers instead of it being "
  8181. "off by default and blinking on system activity."
  8182. msgstr ""
  8183. "Kai apverstas, šviesos diodas („LED“) nuolat šviečia ir mirksi, o ne pagal "
  8184. "numatytuosius nustatymus išjungtas ir mirksi sistemos veiklos metu."
  8185. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:66
  8186. msgid ""
  8187. "When running the mesh over multiple WiFi interfaces per node batman-adv is "
  8188. "capable of optimizing the traffic flow to gain maximum performance."
  8189. msgstr ""
  8190. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1580
  8191. msgid ""
  8192. "When using a PSK, the PMK can be automatically generated. When enabled, the "
  8193. "R0/R1 key options below are not applied. Disable this to use the R0 and R1 "
  8194. "key options."
  8195. msgstr ""
  8196. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1139
  8197. msgid ""
  8198. "Where Wi-Fi Multimedia (WMM) Mode QoS is disabled, clients may be limited to "
  8199. "802.11a/802.11g rates."
  8200. msgstr ""
  8201. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1135
  8202. msgid ""
  8203. "Where the ESSID is hidden, clients may fail to roam and airtime efficiency "
  8204. "may be significantly reduced."
  8205. msgstr ""
  8206. #: modules/luci-compat/luasrc/view/cbi/wireless_modefreq.htm:166
  8207. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:513
  8208. msgid "Width"
  8209. msgstr "Plotis"
  8210. #: protocols/luci-proto-wireguard/root/usr/share/luci/menu.d/luci-proto-wireguard.json:3
  8211. msgid "WireGuard"
  8212. msgstr "„WireGuard“"
  8213. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:120
  8214. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:165
  8215. msgid "WireGuard Status"
  8216. msgstr "„WireGuard“ būsena"
  8217. #: modules/luci-compat/luasrc/model/network/proto_wireguard.lua:9
  8218. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:119
  8219. msgid "WireGuard VPN"
  8220. msgstr "„WireGuard VPN“"
  8221. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:539
  8222. msgid "WireGuard peer is disabled"
  8223. msgstr "„WireGuard“ lygiarangis yra išjungtas"
  8224. #: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:17
  8225. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:10
  8226. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:148
  8227. msgid "Wireless"
  8228. msgstr "Belaidis"
  8229. #: modules/luci-base/htdocs/luci-static/resources/network.js:2992
  8230. #: modules/luci-compat/luasrc/model/network.lua:1419
  8231. msgid "Wireless Adapter"
  8232. msgstr "Belaidis adapteris"
  8233. #: modules/luci-base/htdocs/luci-static/resources/network.js:2971
  8234. #: modules/luci-base/htdocs/luci-static/resources/network.js:4276
  8235. #: modules/luci-compat/luasrc/model/network.lua:1405
  8236. #: modules/luci-compat/luasrc/model/network.lua:1868
  8237. msgid "Wireless Network"
  8238. msgstr "Belaidis Tinklas"
  8239. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:805
  8240. msgid "Wireless Overview"
  8241. msgstr "Belaidžio apžiūra"
  8242. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:980
  8243. msgid "Wireless Security"
  8244. msgstr "Belaidis saugumas"
  8245. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:787
  8246. msgid "Wireless configuration migration"
  8247. msgstr "Belaidžio ryšio konfigūracijos migracija"
  8248. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:153
  8249. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:193
  8250. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:152
  8251. msgid "Wireless is disabled"
  8252. msgstr "Belaidis ryšys yra atjungtas/drausties būsenoje"
  8253. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:153
  8254. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:193
  8255. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:152
  8256. msgid "Wireless is not associated"
  8257. msgstr "Belaidis ryšys nėra susietas"
  8258. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:929
  8259. msgid "Wireless network is disabled"
  8260. msgstr "Belaidis tinklas yra išjungtas"
  8261. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:929
  8262. msgid "Wireless network is enabled"
  8263. msgstr "Belaidis tinklas yra įjungtas"
  8264. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:286
  8265. msgid "Write received DNS queries to syslog."
  8266. msgstr ""
  8267. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:181
  8268. msgid "Write system log to file"
  8269. msgstr ""
  8270. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:206
  8271. msgid "XOR policy (balance-xor, 2)"
  8272. msgstr "„XOR“ politika („xor balansas, 2“)"
  8273. #: modules/luci-base/htdocs/luci-static/resources/form.js:4094
  8274. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:297
  8275. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:345
  8276. msgid "Yes"
  8277. msgstr "Taip"
  8278. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:305
  8279. msgid "Yes (none, 0)"
  8280. msgstr "Taip (nieko, 0)"
  8281. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:177
  8282. msgid ""
  8283. "You appear to be currently connected to the device via the \"%h\" interface. "
  8284. "Do you really want to shut down the interface?"
  8285. msgstr ""
  8286. "Atrodo, kad šiuo metu esate prisijungę prie įrenginio per „%h“ sąsają ir/"
  8287. "arba sietuvą. Ar tikrai norite išjungti sąsają ir/arba sietuvą?"
  8288. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:112
  8289. msgid ""
  8290. "You can enable or disable installed init scripts here. Changes will applied "
  8291. "after a device reboot.<br /><strong>Warning: If you disable essential init "
  8292. "scripts like \"network\", your device might become inaccessible!</strong>"
  8293. msgstr ""
  8294. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:640
  8295. msgid "You may add multiple records for the same Target."
  8296. msgstr ""
  8297. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:677
  8298. msgid "You may add multiple records for the same domain."
  8299. msgstr ""
  8300. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:357
  8301. msgid "You may add multiple unique Relay To on the same Listen addr."
  8302. msgstr ""
  8303. #: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:78
  8304. #: themes/luci-theme-material/ucode/template/themes/material/header.ut:98
  8305. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:73
  8306. msgid ""
  8307. "You must enable JavaScript in your browser or LuCI will not work properly."
  8308. msgstr ""
  8309. "Savo naršyklėje turite įjungti „JavaScript“, kitaip „LuCI“ neveiks tinkamai."
  8310. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:117
  8311. msgid ""
  8312. "You must select a primary interface which is included in selected slave "
  8313. "interfaces!"
  8314. msgstr ""
  8315. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:98
  8316. msgid ""
  8317. "You must select at least one ARP IP target if ARP monitoring is selected!"
  8318. msgstr ""
  8319. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:213
  8320. msgid "ZRam Compression Algorithm"
  8321. msgstr "„ZRam“ glaudinimo algoritmas"
  8322. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:206
  8323. msgid "ZRam Settings"
  8324. msgstr "„ZRam“ nustatymai"
  8325. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:208
  8326. msgid "ZRam Size"
  8327. msgstr "„ZRam“ dydis"
  8328. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:639
  8329. msgid "_proto: _tcp, _udp, _sctp, _quic, … ."
  8330. msgstr "„_proto: _tcp, _udp, _sctp, _quic, …“."
  8331. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:638
  8332. msgid ""
  8333. "_service: _sip, _ldap, _imap, _stun, _xmpp-client, … . (Note: while _http is "
  8334. "possible, no browsers support SRV records.)"
  8335. msgstr ""
  8336. "_tarnyba: „_sip, _ldap, _imap, _stun, _xmpp-client, …“ . (Pastaba: nors "
  8337. "„_http“ yra įmanomas, nė viena naršyklė nepalaikys „SRV“ įrašo.)"
  8338. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:535
  8339. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:153
  8340. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:164
  8341. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:103
  8342. msgid "any"
  8343. msgstr "bet koks"
  8344. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1570
  8345. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1578
  8346. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1583
  8347. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:103
  8348. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:134
  8349. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1238
  8350. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:83
  8351. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:48
  8352. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:51
  8353. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:89
  8354. msgid "auto"
  8355. msgstr "automatiškai"
  8356. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:157
  8357. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:816
  8358. msgid "automatic"
  8359. msgstr "automatinis"
  8360. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:198
  8361. msgid "automatic (disabled)"
  8362. msgstr "automatinis (atjungtas)"
  8363. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:198
  8364. msgid "automatic (enabled)"
  8365. msgstr "automatinis (įjungtas)"
  8366. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:82
  8367. msgid "baseT"
  8368. msgstr "„baseT“"
  8369. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1643
  8370. msgid "bridged"
  8371. msgstr ""
  8372. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:146
  8373. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:406
  8374. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:35
  8375. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:99
  8376. #: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:31
  8377. msgid "create"
  8378. msgstr "sukurti"
  8379. #: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:69
  8380. msgid "create:"
  8381. msgstr "sukurti:"
  8382. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:55
  8383. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:57
  8384. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:58
  8385. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:62
  8386. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:63
  8387. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:83
  8388. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:84
  8389. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:87
  8390. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:185
  8391. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:186
  8392. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:187
  8393. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:41
  8394. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:42
  8395. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:276
  8396. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:278
  8397. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:279
  8398. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:283
  8399. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:284
  8400. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:263
  8401. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:266
  8402. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:269
  8403. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:273
  8404. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:276
  8405. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:279
  8406. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:305
  8407. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:306
  8408. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:307
  8409. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:311
  8410. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:312
  8411. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:313
  8412. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:315
  8413. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:316
  8414. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:317
  8415. msgid "dBm"
  8416. msgstr "dBm"
  8417. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:73
  8418. msgctxt "nft unit"
  8419. msgid "day"
  8420. msgstr "diena"
  8421. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1082
  8422. msgid "disable"
  8423. msgstr "išjungti"
  8424. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:157
  8425. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:681
  8426. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:805
  8427. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:927
  8428. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:963
  8429. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1040
  8430. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:91
  8431. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:25
  8432. msgid "disabled"
  8433. msgstr "išjungtas/-i"
  8434. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:570
  8435. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:604
  8436. msgid "driver default"
  8437. msgstr "tvarkyklės numatytas"
  8438. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1162
  8439. msgid "driver default (%s)"
  8440. msgstr "tvarkyklės numatytas („%s“)"
  8441. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:66
  8442. msgid "e.g: --proxy 10.10.10.10"
  8443. msgstr "pvz: „--proxy 10.10.10.10“"
  8444. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:68
  8445. msgid "e.g: dump"
  8446. msgstr "pvz: „dump“"
  8447. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:157
  8448. msgid "enabled"
  8449. msgstr "įjungtas/-i"
  8450. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:60
  8451. msgctxt "WireGuard keep alive interval"
  8452. msgid "every %ds"
  8453. msgstr "kiekvienas „%ds“"
  8454. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:965
  8455. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:995
  8456. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:101
  8457. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:148
  8458. msgid "expired"
  8459. msgstr "nebegaliojantis/-i"
  8460. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:820
  8461. msgid "forced"
  8462. msgstr "priverstas"
  8463. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:85
  8464. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:196
  8465. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:61
  8466. msgid "forward"
  8467. msgstr ""
  8468. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:98
  8469. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:84
  8470. msgid "full-duplex"
  8471. msgstr ""
  8472. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:98
  8473. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:84
  8474. msgid "half-duplex"
  8475. msgstr ""
  8476. #: modules/luci-base/htdocs/luci-static/resources/validation.js:593
  8477. msgid "hexadecimal encoded value"
  8478. msgstr "šešioliktainė užkoduota vertė"
  8479. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1914
  8480. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:309
  8481. msgid "hidden"
  8482. msgstr "paslėpta/-as"
  8483. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:74
  8484. msgctxt "nft unit"
  8485. msgid "hour"
  8486. msgstr "valanda"
  8487. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:811
  8488. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:933
  8489. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:967
  8490. msgid "hybrid mode"
  8491. msgstr "hibridinis režimas"
  8492. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:63
  8493. msgid "ignore"
  8494. msgstr "ignoruoti"
  8495. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:900
  8496. msgid "infinite (lease does not expire)"
  8497. msgstr ""
  8498. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:69
  8499. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:192
  8500. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:46
  8501. msgid "input"
  8502. msgstr "įvestis"
  8503. #: modules/luci-base/htdocs/luci-static/resources/validation.js:410
  8504. msgid "key between 8 and 63 characters"
  8505. msgstr "raktas tarp 8 ir 63 rašmenų"
  8506. #: modules/luci-base/htdocs/luci-static/resources/validation.js:422
  8507. msgid "key with either 5 or 13 characters"
  8508. msgstr "raktas su 5-iais arba 13-a rašmenų"
  8509. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:924
  8510. msgid "known"
  8511. msgstr "žinomas"
  8512. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:926
  8513. msgid "known-othernet (on different subnet)"
  8514. msgstr ""
  8515. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:833
  8516. msgid "managed config (M)"
  8517. msgstr ""
  8518. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1397
  8519. msgid "medium security"
  8520. msgstr "vidutinė apsauga"
  8521. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:75
  8522. msgctxt "nft unit"
  8523. msgid "minute"
  8524. msgstr "minutė"
  8525. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1585
  8526. msgid "minutes"
  8527. msgstr "minutės"
  8528. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:837
  8529. msgid "mobile home agent (H)"
  8530. msgstr "mobilus namų agentas (H)"
  8531. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:423
  8532. msgid "netif_carrier_ok()"
  8533. msgstr "„netif_carrier_ok()“"
  8534. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:47
  8535. msgid "no"
  8536. msgstr "ne"
  8537. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:104
  8538. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:76
  8539. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:232
  8540. msgid "no link"
  8541. msgstr "nėra nuorodos/sujungimo"
  8542. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1162
  8543. msgid "no override"
  8544. msgstr ""
  8545. #: modules/luci-base/htdocs/luci-static/resources/form.js:2269
  8546. #: modules/luci-base/htdocs/luci-static/resources/validation.js:59
  8547. msgid "non-empty value"
  8548. msgstr ""
  8549. #: modules/luci-base/htdocs/luci-static/resources/form.js:3424
  8550. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:840
  8551. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:39
  8552. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:56
  8553. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:60
  8554. msgid "none"
  8555. msgstr "joks"
  8556. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:41
  8557. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:55
  8558. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:69
  8559. msgid "not present"
  8560. msgstr "nėra"
  8561. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:349
  8562. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:959
  8563. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:963
  8564. msgid "off"
  8565. msgstr "išjungta"
  8566. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:818
  8567. msgid "on available prefix"
  8568. msgstr ""
  8569. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1398
  8570. msgid "open network"
  8571. msgstr "atviras tinklas"
  8572. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:835
  8573. msgid "other config (O)"
  8574. msgstr "kiti konfigūravimai (O)"
  8575. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:69
  8576. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:46
  8577. msgid "output"
  8578. msgstr "išvestis"
  8579. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:28
  8580. msgid "over a day ago"
  8581. msgstr "prieš daugiau nei dieną"
  8582. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:69
  8583. msgctxt "nft unit"
  8584. msgid "packets"
  8585. msgstr "paketai"
  8586. #: modules/luci-base/htdocs/luci-static/resources/validation.js:252
  8587. msgid "positive decimal value"
  8588. msgstr "teigiama dešimtainė vertė"
  8589. #: modules/luci-base/htdocs/luci-static/resources/validation.js:244
  8590. msgid "positive integer value"
  8591. msgstr ""
  8592. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:178
  8593. msgid "random"
  8594. msgstr "atsitiktinis"
  8595. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1163
  8596. msgid "randomly generated"
  8597. msgstr "atsitiktinai sukurtas"
  8598. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:51
  8599. msgid ""
  8600. "reduces overhead by collecting and aggregating originator messages in a "
  8601. "single packet rather than many small ones"
  8602. msgstr ""
  8603. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:809
  8604. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:931
  8605. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:965
  8606. msgid "relay mode"
  8607. msgstr ""
  8608. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1644
  8609. msgid "routed"
  8610. msgstr ""
  8611. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1174
  8612. msgid "sec"
  8613. msgstr "sek."
  8614. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:807
  8615. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:929
  8616. msgid "server mode"
  8617. msgstr "serverio režimas"
  8618. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:54
  8619. msgid "sstpc Log-level"
  8620. msgstr "„sstpc“ žurnalo lygis"
  8621. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1396
  8622. msgid "strong security"
  8623. msgstr "stipri apsauga"
  8624. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:354
  8625. msgid "tagged"
  8626. msgstr "pažymėtas"
  8627. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1568
  8628. msgid "time units (TUs / 1.024 ms) [1000-65535]"
  8629. msgstr "laiko vienetai („TUs“ / 1.024 ms) [1000-65535]"
  8630. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/uhttpd.js:9
  8631. msgid ""
  8632. "uHTTPd offers <abbr title=\"Hypertext Transfer Protocol\">HTTP</abbr> or "
  8633. "<abbr title=\"Hypertext Transfer Protocol Secure\">HTTPS</abbr> network "
  8634. "access."
  8635. msgstr ""
  8636. "„uHTTPd“ suteikia <abbr title=\"Hypertext Transfer Protocol\">„HTTP“</abbr> "
  8637. "arba <abbr title=\"Hypertext Transfer Protocol Secure\">„HTTPS“</abbr> "
  8638. "tinklo prieigą."
  8639. #: modules/luci-base/htdocs/luci-static/resources/validation.js:583
  8640. msgid "unique value"
  8641. msgstr "unikali vertė"
  8642. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:585
  8643. msgid "unknown"
  8644. msgstr "nežinoma"
  8645. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:28
  8646. msgid "unknown version"
  8647. msgstr "nežinoma versija"
  8648. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542
  8649. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:963
  8650. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:993
  8651. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:99
  8652. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:146
  8653. msgid "unlimited"
  8654. msgstr "neribotas"
  8655. #: modules/luci-base/htdocs/luci-static/resources/form.js:3789
  8656. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:76
  8657. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:138
  8658. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:370
  8659. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:397
  8660. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:433
  8661. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:470
  8662. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:566
  8663. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:53
  8664. #: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:38
  8665. msgid "unspecified"
  8666. msgstr "nenustatyta/-s/-i"
  8667. #: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:71
  8668. msgid "unspecified -or- create:"
  8669. msgstr "nenustatyta/-s/-i -arba- sukurti:"
  8670. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:352
  8671. msgid "untagged"
  8672. msgstr "nepažymėtas"
  8673. #: modules/luci-base/htdocs/luci-static/resources/validation.js:257
  8674. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:177
  8675. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:188
  8676. msgid "valid IP address"
  8677. msgstr "tinkamas „IP“ adresas"
  8678. #: modules/luci-base/htdocs/luci-static/resources/validation.js:257
  8679. msgid "valid IP address or prefix"
  8680. msgstr "tinkamas „IP“ adresas ar prielinksnis"
  8681. #: modules/luci-base/htdocs/luci-static/resources/validation.js:294
  8682. msgid "valid IPv4 CIDR"
  8683. msgstr "tinkamas „IPv4 CIDR“"
  8684. #: modules/luci-base/htdocs/luci-static/resources/validation.js:265
  8685. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:181
  8686. msgid "valid IPv4 address"
  8687. msgstr "tinkamas „IPv4“ adresas"
  8688. #: modules/luci-base/htdocs/luci-static/resources/validation.js:265
  8689. msgid "valid IPv4 address or network"
  8690. msgstr "tinkamas „IPv4“ adresas ar tinklas"
  8691. #: modules/luci-base/htdocs/luci-static/resources/validation.js:389
  8692. msgid "valid IPv4 address:port"
  8693. msgstr "tinkamas „IPv4“ adresas:prievadas"
  8694. #: modules/luci-base/htdocs/luci-static/resources/validation.js:328
  8695. msgid "valid IPv4 network"
  8696. msgstr "tinkamas „IPv4“ tinklas"
  8697. #: modules/luci-base/htdocs/luci-static/resources/validation.js:288
  8698. msgid "valid IPv4 or IPv6 CIDR"
  8699. msgstr "tinkamas „IPv4“ ar „IPv6“ „CIRD“"
  8700. #: modules/luci-base/htdocs/luci-static/resources/validation.js:278
  8701. msgid "valid IPv4 prefix value (0-32)"
  8702. msgstr "tinkama „IPv4“ prielinksnio reikšmė (0-32)"
  8703. #: modules/luci-base/htdocs/luci-static/resources/validation.js:300
  8704. msgid "valid IPv6 CIDR"
  8705. msgstr "tinkamas „IPv6 CIDR“"
  8706. #: modules/luci-base/htdocs/luci-static/resources/validation.js:273
  8707. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:185
  8708. msgid "valid IPv6 address"
  8709. msgstr "tinkamas „IPv6“ adresas"
  8710. #: modules/luci-base/htdocs/luci-static/resources/validation.js:273
  8711. msgid "valid IPv6 address or prefix"
  8712. msgstr "tinkamas „IPv6“ adresas ar prielinksnis"
  8713. #: modules/luci-base/htdocs/luci-static/resources/validation.js:318
  8714. msgid "valid IPv6 host id"
  8715. msgstr "tinkamas „IPv6 skleidėjo/p.k – vedėjo id“"
  8716. #: modules/luci-base/htdocs/luci-static/resources/validation.js:333
  8717. msgid "valid IPv6 network"
  8718. msgstr "tinkamas „IPv6“ tinklas"
  8719. #: modules/luci-base/htdocs/luci-static/resources/validation.js:283
  8720. msgid "valid IPv6 prefix value (0-128)"
  8721. msgstr "tinkama „IPv6“ prielinksnio reikšmė (0-128)"
  8722. #: modules/luci-base/htdocs/luci-static/resources/validation.js:355
  8723. msgid "valid MAC address"
  8724. msgstr "tinkamas „MAC“ adresas"
  8725. #: modules/luci-base/htdocs/luci-static/resources/validation.js:426
  8726. msgid "valid UCI identifier"
  8727. msgstr "tinkamas „UCI“ identifikatorius"
  8728. #: modules/luci-base/htdocs/luci-static/resources/validation.js:377
  8729. msgid "valid UCI identifier, hostname or IP address range"
  8730. msgstr ""
  8731. "tinkamas „UCI“ identifikatorius, įrenginio pavadinimas ar „IP“ adreso rėžis"
  8732. #: modules/luci-base/htdocs/luci-static/resources/validation.js:398
  8733. #: modules/luci-base/htdocs/luci-static/resources/validation.js:401
  8734. msgid "valid address:port"
  8735. msgstr "tinkamas adresas:prievadas"
  8736. #: modules/luci-base/htdocs/luci-static/resources/validation.js:557
  8737. #: modules/luci-base/htdocs/luci-static/resources/validation.js:561
  8738. msgid "valid date (YYYY-MM-DD)"
  8739. msgstr "tinkama data (MMMM-MM-DD)"
  8740. #: modules/luci-base/htdocs/luci-static/resources/validation.js:248
  8741. msgid "valid decimal value"
  8742. msgstr "tinkama dešimtainės reikšmė"
  8743. #: modules/luci-base/htdocs/luci-static/resources/validation.js:420
  8744. msgid "valid hexadecimal WEP key"
  8745. msgstr "tinkamas šešioliktainis „WEP“ raktas"
  8746. #: modules/luci-base/htdocs/luci-static/resources/validation.js:408
  8747. msgid "valid hexadecimal WPA key"
  8748. msgstr "tinkamas šešioliktainis „WPA“ raktas"
  8749. #: modules/luci-base/htdocs/luci-static/resources/validation.js:383
  8750. msgid "valid host:port"
  8751. msgstr "tinkamas skleidėjo/p.k – vedėjo:prievadas"
  8752. #: modules/luci-base/htdocs/luci-static/resources/validation.js:370
  8753. #: modules/luci-base/htdocs/luci-static/resources/validation.js:372
  8754. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:127
  8755. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:133
  8756. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:161
  8757. msgid "valid hostname"
  8758. msgstr "tinkamas įrenginio pavadinimas"
  8759. #: modules/luci-base/htdocs/luci-static/resources/validation.js:360
  8760. msgid "valid hostname or IP address"
  8761. msgstr "tinkamas įrenginio pavadinimas ar „IP“ adresas"
  8762. #: modules/luci-base/htdocs/luci-static/resources/validation.js:240
  8763. msgid "valid integer value"
  8764. msgstr "tinkamas sveikojo skaičiaus reikšmė"
  8765. #: modules/luci-base/htdocs/luci-static/resources/validation.js:355
  8766. msgid "valid multicast MAC address"
  8767. msgstr ""
  8768. #: modules/luci-base/htdocs/luci-static/resources/validation.js:435
  8769. msgid ""
  8770. "valid network device name between 1 and 15 characters not containing \":\", "
  8771. "\"/\", \"%\" or spaces"
  8772. msgstr ""
  8773. "tinkamas tinklo įrenginio pavadinimas tarp 1 ir 15 simbolių, kuriame nėra "
  8774. "„:“, „/“, „%“ ar tarpų"
  8775. #: modules/luci-base/htdocs/luci-static/resources/validation.js:433
  8776. msgid "valid network device name, not \".\" or \"..\""
  8777. msgstr "tinkamas tinklo įrenginio pavadinimas, ne „.“ ar „..“"
  8778. #: modules/luci-base/htdocs/luci-static/resources/validation.js:323
  8779. msgid "valid network in address/netmask notation"
  8780. msgstr "tinkamas tinklas adrese/tinklo kaukės užrašas"
  8781. #: modules/luci-base/htdocs/luci-static/resources/validation.js:532
  8782. msgid "valid phone digit (0-9, \"*\", \"#\", \"!\" or \".\")"
  8783. msgstr "tinkami telefono skaitmenys (0-9, „*“, „#“, „!“ ar „.“)"
  8784. #: modules/luci-base/htdocs/luci-static/resources/validation.js:346
  8785. #: modules/luci-base/htdocs/luci-static/resources/validation.js:349
  8786. msgid "valid port or port range (port1-port2)"
  8787. msgstr "tinkamas prievadas ar prievado rėžis (prievadas1–prievadas2)"
  8788. #: modules/luci-base/htdocs/luci-static/resources/validation.js:338
  8789. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:192
  8790. msgid "valid port value"
  8791. msgstr "tinkama prievado reikšmė"
  8792. #: modules/luci-base/htdocs/luci-static/resources/validation.js:537
  8793. msgid "valid time (HH:MM:SS)"
  8794. msgstr "tinkamas laikas (VV:MM:SS)"
  8795. #: modules/luci-base/htdocs/luci-static/resources/validation.js:459
  8796. msgid "value between %d and %d characters"
  8797. msgstr "reikšmė tarp %d ir %d simbolių"
  8798. #: modules/luci-base/htdocs/luci-static/resources/validation.js:440
  8799. msgid "value between %f and %f"
  8800. msgstr "reikšmė tarp %f ir %f"
  8801. #: modules/luci-base/htdocs/luci-static/resources/validation.js:444
  8802. msgid "value greater or equal to %f"
  8803. msgstr "reikšmė, kuri didesnė arba lygi: %f"
  8804. #: modules/luci-base/htdocs/luci-static/resources/validation.js:448
  8805. msgid "value smaller or equal to %f"
  8806. msgstr "reikšmė, kuri mažesnė arba lygi: %f"
  8807. #: modules/luci-base/htdocs/luci-static/resources/validation.js:453
  8808. msgid "value with %d characters"
  8809. msgstr "reikšmė su %d simboliais"
  8810. #: modules/luci-base/htdocs/luci-static/resources/validation.js:464
  8811. msgid "value with at least %d characters"
  8812. msgstr "reikšmė, kurioje yra bent %d simbolių"
  8813. #: modules/luci-base/htdocs/luci-static/resources/validation.js:469
  8814. msgid "value with at most %d characters"
  8815. msgstr ""
  8816. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1398
  8817. msgid "weak security"
  8818. msgstr "silpna apsauga"
  8819. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:72
  8820. msgctxt "nft unit"
  8821. msgid "week"
  8822. msgstr "savaitė"
  8823. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:47
  8824. msgid "yes"
  8825. msgstr "Taip"
  8826. #: modules/luci-compat/luasrc/view/cbi/delegator.htm:20
  8827. msgid "« Back"
  8828. msgstr "🡐 Atgal"