base.po 350 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995
  1. msgid ""
  2. msgstr ""
  3. "Project-Id-Version: PACKAGE VERSION\n"
  4. "Report-Msgid-Bugs-To: \n"
  5. "POT-Creation-Date: 2009-06-10 03:40+0200\n"
  6. "PO-Revision-Date: 2021-06-06 14:38+0000\n"
  7. "Last-Translator: Stefanos Batsios <bouzouste@hotmail.com>\n"
  8. "Language-Team: Greek <https://hosted.weblate.org/projects/openwrt/luci/el/>\n"
  9. "Language: el\n"
  10. "MIME-Version: 1.0\n"
  11. "Content-Type: text/plain; charset=UTF-8\n"
  12. "Content-Transfer-Encoding: 8bit\n"
  13. "Plural-Forms: nplurals=2; plural=n != 1;\n"
  14. "X-Generator: Weblate 4.7-dev\n"
  15. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1484
  16. msgid "%.1f dB"
  17. msgstr "%.1f dB"
  18. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:117
  19. msgid "%d Bit"
  20. msgstr "%d Bit"
  21. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3712
  22. msgid "%d invalid field(s)"
  23. msgstr "%d μη έγκυρο/α πεδίο/α"
  24. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:35
  25. msgid "%s is untagged in multiple VLANs!"
  26. msgstr "%s δεν έχει ετικέτα σε πολλαπλά VLANs!"
  27. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:296
  28. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:405
  29. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:272
  30. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:309
  31. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:327
  32. msgid "(%d minute window, %d second interval)"
  33. msgstr "(παράθυρο %d λεπτών, διάστημα %d δευτερολέπτων)"
  34. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:118
  35. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:124
  36. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:258
  37. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:282
  38. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:88
  39. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:91
  40. msgid "(empty)"
  41. msgstr "(κενό)"
  42. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:351
  43. #: modules/luci-compat/luasrc/view/cbi/network_netinfo.htm:23
  44. #: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:58
  45. msgid "(no interfaces attached)"
  46. msgstr "(χωρίς προσαρτημένες διεπαφές)"
  47. #: modules/luci-compat/luasrc/view/cbi/ucisection.htm:48
  48. msgid "-- Additional Field --"
  49. msgstr "-- Επιπλέον Πεδίο --"
  50. #: modules/luci-base/htdocs/luci-static/resources/cbi.js:275
  51. #: modules/luci-base/htdocs/luci-static/resources/form.js:3397
  52. #: modules/luci-base/htdocs/luci-static/resources/form.js:3763
  53. #: modules/luci-base/htdocs/luci-static/resources/ui.js:784
  54. #: modules/luci-base/htdocs/luci-static/resources/ui.js:1022
  55. #: modules/luci-base/htdocs/luci-static/resources/ui.js:1995
  56. #: modules/luci-compat/luasrc/view/cbi/header.htm:8
  57. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:89
  58. msgid "-- Please choose --"
  59. msgstr "-- Παρακαλώ επιλέξτε --"
  60. #: modules/luci-base/htdocs/luci-static/resources/cbi.js:276
  61. #: modules/luci-base/htdocs/luci-static/resources/ui.js:1023
  62. #: modules/luci-base/htdocs/luci-static/resources/ui.js:1996
  63. #: modules/luci-compat/luasrc/view/cbi/header.htm:9
  64. msgid "-- custom --"
  65. msgstr "-- προσαρμοσμένο --"
  66. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:270
  67. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:379
  68. msgid "-- match by label --"
  69. msgstr "-- αντιστοίχιση κατά ετικέτα --"
  70. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:256
  71. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:362
  72. msgid "-- match by uuid --"
  73. msgstr "-- αντιστοίχιση κατά uuid --"
  74. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:27
  75. #: modules/luci-compat/luasrc/view/cbi/network_ifacelist.htm:44
  76. #: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:23
  77. msgid "-- please select --"
  78. msgstr "-- παρακαλώ επιλέξτε --"
  79. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:55
  80. msgctxt "sstp log level value"
  81. msgid "0"
  82. msgstr ""
  83. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1002
  84. msgid "0 = not using RSSI threshold, 1 = do not change driver default"
  85. msgstr ""
  86. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:56
  87. msgctxt "sstp log level value"
  88. msgid "1"
  89. msgstr ""
  90. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:233
  91. msgid "1 Minute Load:"
  92. msgstr "Φορτίο 1 λεπτού:"
  93. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:253
  94. msgid "15 Minute Load:"
  95. msgstr "Φορτίο 15 λεπτών:"
  96. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:57
  97. msgctxt "sstp log level value"
  98. msgid "2"
  99. msgstr ""
  100. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:58
  101. msgctxt "sstp log level value"
  102. msgid "3"
  103. msgstr ""
  104. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:59
  105. msgctxt "sstp log level value"
  106. msgid "4"
  107. msgstr ""
  108. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1514
  109. msgid "4-character hexadecimal ID"
  110. msgstr ""
  111. #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:18
  112. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:11
  113. msgid "464XLAT (CLAT)"
  114. msgstr "464XLAT (CLAT)"
  115. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:243
  116. msgid "5 Minute Load:"
  117. msgstr "Φορτίο 5 λεπτών:"
  118. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1543
  119. msgid "6-octet identifier as a hex string - no colons"
  120. msgstr ""
  121. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1503
  122. msgid "802.11r Fast Transition"
  123. msgstr ""
  124. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1690
  125. msgid "802.11w Association SA Query maximum timeout"
  126. msgstr ""
  127. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1697
  128. msgid "802.11w Association SA Query retry timeout"
  129. msgstr ""
  130. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1678
  131. msgid "802.11w Management Frame Protection"
  132. msgstr ""
  133. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1690
  134. msgid "802.11w maximum timeout"
  135. msgstr ""
  136. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1697
  137. msgid "802.11w retry timeout"
  138. msgstr ""
  139. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1019
  140. msgid "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>"
  141. msgstr "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>"
  142. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:326
  143. msgid "<abbr title=\"Domain Name System\">DNS</abbr> query port"
  144. msgstr "Θύρα ερωτημάτων <abbr title=\"Σύστημα Ονόματος Τομέα\">DNS</abbr>"
  145. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:317
  146. msgid "<abbr title=\"Domain Name System\">DNS</abbr> server port"
  147. msgstr "Θύρα εξυπηρετητή <abbr title=\"Σύστημα Ονόματος Τομέα\">DNS</abbr>"
  148. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:260
  149. msgid ""
  150. "<abbr title=\"Domain Name System\">DNS</abbr> servers will be queried in the "
  151. "order of the resolvfile"
  152. msgstr ""
  153. "Οι <abbr title=\"Σύστημα Ονόματος Τομέα\">DNS</abbr> εξυπηρετητές θα "
  154. "ερωτηθούν με την σειρά εμφάνισης στο αρχείο resolvfile"
  155. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1008
  156. msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>"
  157. msgstr "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>"
  158. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:495
  159. msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Address"
  160. msgstr "Διεύθυνση <abbr title=\"Internet Protocol Version 4\">IPv4</abbr>"
  161. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:42
  162. msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Gateway"
  163. msgstr "Πύλη <abbr title=\"Internet Protocol Version 4\">IPv4</abbr>"
  164. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:691
  165. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:36
  166. msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Netmask"
  167. msgstr "Μάσκα <abbr title=\"Internet Protocol Version 4\">IPv4</abbr>"
  168. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:31
  169. msgid ""
  170. "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Address or Network "
  171. "(CIDR)"
  172. msgstr ""
  173. "Διεύθυνση <abbr title=\"Internet Protocol Version 6\">IPv6</abbr> ή Δίκτυο "
  174. "(CIDR)"
  175. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:42
  176. msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Gateway"
  177. msgstr "Πύλη <abbr title=\"Internet Protocol Version 6\">IPv6</abbr>"
  178. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:531
  179. msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Suffix (hex)"
  180. msgstr ""
  181. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:58
  182. msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Configuration"
  183. msgstr "Παραμετροποίηση <abbr title=\"Light Emitting Diode\">LED</abbr>"
  184. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:69
  185. msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Name"
  186. msgstr "Όνομα <abbr title=\"Light Emitting Diode\">LED</abbr>"
  187. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:431
  188. msgid "<abbr title=\"Media Access Control\">MAC</abbr>-Address"
  189. msgstr "Διεύθυνση <abbr title=\"Media Access Control\">MAC</abbr>"
  190. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:897
  191. msgid "<abbr title=\"Neighbour Discovery Protocol\">NDP</abbr>-Proxy"
  192. msgstr ""
  193. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:791
  194. msgid "<abbr title=\"Router Advertisement\">RA</abbr> Flags"
  195. msgstr ""
  196. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:849
  197. msgid "<abbr title=\"Router Advertisement\">RA</abbr> Hop Limit"
  198. msgstr ""
  199. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:825
  200. msgid "<abbr title=\"Router Advertisement\">RA</abbr> Lifetime"
  201. msgstr ""
  202. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:832
  203. msgid "<abbr title=\"Router Advertisement\">RA</abbr> MTU"
  204. msgstr ""
  205. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:763
  206. msgid "<abbr title=\"Router Advertisement\">RA</abbr>-Service"
  207. msgstr ""
  208. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:525
  209. msgid "<abbr title=\"The DHCP Unique Identifier\">DUID</abbr>"
  210. msgstr "<abbr title=\"The DHCP Unique Identifier\">DUID</abbr>"
  211. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:335
  212. msgid ""
  213. "<abbr title=\"maximal\">Max.</abbr> <abbr title=\"Dynamic Host Configuration "
  214. "Protocol\">DHCP</abbr> leases"
  215. msgstr ""
  216. "<abbr title=\"μέγιστο\">Μεγ.</abbr> πλήθος <abbr title=\"Πρωτόκολλο "
  217. "Παραμετροποίησης Δυναμικού Συστήματος\">DHCP</abbr> leases"
  218. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:344
  219. msgid ""
  220. "<abbr title=\"maximal\">Max.</abbr> <abbr title=\"Extension Mechanisms for "
  221. "Domain Name System\">EDNS0</abbr> packet size"
  222. msgstr ""
  223. "<abbr title=\"μέγιστο\">Μεγ.</abbr> μέγεθος πακέτου <abbr title=\"Μηχανισμοί "
  224. "επεκτάσεων για Συστήματα Ονόματος Τομέα\">EDNS0</abbr>"
  225. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:353
  226. msgid "<abbr title=\"maximal\">Max.</abbr> concurrent queries"
  227. msgstr "<abbr title=\"μέγιστο\">Μεγ.</abbr> πλήθος ταυτόχρονων ερωτηματων"
  228. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/crontab.js:29
  229. msgid ""
  230. "<br/>Note: you need to manually restart the cron service if the crontab file "
  231. "was empty before editing."
  232. msgstr ""
  233. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:370
  234. msgid "A configuration for the device \"%s\" already exists"
  235. msgstr ""
  236. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2741
  237. msgid "A directory with the same name already exists."
  238. msgstr "Ένας φάκελος με το ίδιο όνομα υπάρχει ήδη."
  239. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2671
  240. msgid "A new login is required since the authentication session expired."
  241. msgstr "Απαιτείται νέα σύνδεση καθώς η συνεδρία ελέγχου ταυτότητας έληξε."
  242. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1464
  243. msgid "A43C + J43 + A43"
  244. msgstr "A43C + J43 + A43"
  245. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1465
  246. msgid "A43C + J43 + A43 + V43"
  247. msgstr "A43C + J43 + A43 + V43"
  248. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1477
  249. msgid "ADSL"
  250. msgstr "ADSL"
  251. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1453
  252. msgid "ANSI T1.413"
  253. msgstr "ANSI T1.413"
  254. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:95
  255. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:94
  256. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:87
  257. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:68
  258. msgid "APN"
  259. msgstr "APN"
  260. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:200
  261. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:352
  262. msgid "ARP"
  263. msgstr ""
  264. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:365
  265. msgid "ARP IP Targets"
  266. msgstr ""
  267. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:357
  268. msgid "ARP Interval"
  269. msgstr ""
  270. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:381
  271. msgid "ARP Validation"
  272. msgstr ""
  273. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:373
  274. msgid "ARP mode to consider a slave as being up"
  275. msgstr ""
  276. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:77
  277. msgid "ARP monitoring is not supported for the selected policy!"
  278. msgstr ""
  279. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:175
  280. msgid "ARP retry threshold"
  281. msgstr "Όριο επαναδοκιμών ARP"
  282. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1472
  283. msgid "ATM (Asynchronous Transfer Mode)"
  284. msgstr "ATM (Λειτουργία ασύγχρονης μεταφοράς)"
  285. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1493
  286. msgid "ATM Bridges"
  287. msgstr "Γέφυρες ΑΤΜ"
  288. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1525
  289. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:66
  290. msgid "ATM Virtual Channel Identifier (VCI)"
  291. msgstr "ATM Εικονικό Κανάλι Αναγνωριστή (VCI)"
  292. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1526
  293. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:70
  294. msgid "ATM Virtual Path Identifier (VPI)"
  295. msgstr "ATM Εικονικό μονοπάτι Αναγνωριστή (VPI)"
  296. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1493
  297. msgid ""
  298. "ATM bridges expose encapsulated ethernet in AAL5 connections as virtual "
  299. "Linux network interfaces which can be used in conjunction with DHCP or PPP "
  300. "to dial into the provider network."
  301. msgstr ""
  302. "Οι γέφυρες ATM αποκαλύπτουν ενθυλακωμένες ethernet σε συνδέσεις AAL5 σαν "
  303. "εικονικές διεπαφές δικτύου Linux, οι οποίες μπορούν να χρησιμοποιηθούν σε "
  304. "συνδυασμό με DHCP ή PPP για την κλήση προς τον παροχέα δικτύου."
  305. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1532
  306. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:62
  307. msgid "ATM device number"
  308. msgstr "Αριθμός συσκευής ATM"
  309. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:36
  310. msgid "ATU-C System Vendor ID"
  311. msgstr ""
  312. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:265
  313. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:544
  314. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:548
  315. msgid "Absent Interface"
  316. msgstr ""
  317. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:647
  318. msgid "Accept local"
  319. msgstr ""
  320. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:647
  321. msgid "Accept packets with local source addresses"
  322. msgstr ""
  323. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:47
  324. msgid "Access Concentrator"
  325. msgstr "Συγκεντρωτής Πρόσβασης"
  326. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:990
  327. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1104
  328. msgid "Access Point"
  329. msgstr "Σημείο Πρόσβασης"
  330. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:358
  331. msgid "Actions"
  332. msgstr "Ενέργειες"
  333. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:14
  334. msgid "Active"
  335. msgstr ""
  336. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:203
  337. msgid "Active <abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Routes"
  338. msgstr ""
  339. "Ενεργές Διαδρομές <abbr title=\"Internet Protocol Version 4\">IPv4</abbr>"
  340. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:209
  341. msgid "Active <abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Routes"
  342. msgstr ""
  343. "Ενεργές Διαδρομές <abbr title=\"Internet Protocol Version 6\">IPv6</abbr>"
  344. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:81
  345. msgid "Active Connections"
  346. msgstr "Ενεργές Συνδέσεις"
  347. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:33
  348. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:173
  349. msgid "Active DHCP Leases"
  350. msgstr ""
  351. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:52
  352. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:175
  353. msgid "Active DHCPv6 Leases"
  354. msgstr ""
  355. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:203
  356. msgid "Active-Backup policy (active-backup, 1)"
  357. msgstr ""
  358. #: modules/luci-base/htdocs/luci-static/resources/network.js:3864
  359. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:992
  360. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:23
  361. msgid "Ad-Hoc"
  362. msgstr "Ad-Hoc"
  363. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:208
  364. msgid "Adaptive load balancing (balance-alb, 6)"
  365. msgstr ""
  366. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:207
  367. msgid "Adaptive transmit load balancing (balance-tlb, 5)"
  368. msgstr ""
  369. #: modules/luci-base/htdocs/luci-static/resources/form.js:2192
  370. #: modules/luci-base/htdocs/luci-static/resources/form.js:2195
  371. #: modules/luci-base/htdocs/luci-static/resources/form.js:2209
  372. #: modules/luci-base/htdocs/luci-static/resources/form.js:2210
  373. #: modules/luci-base/htdocs/luci-static/resources/form.js:3195
  374. #: modules/luci-compat/luasrc/view/cbi/nsection.htm:25
  375. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:189
  376. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:197
  377. #: modules/luci-compat/luasrc/view/cbi/tsection.htm:39
  378. #: modules/luci-compat/luasrc/view/cbi/tsection.htm:47
  379. #: modules/luci-compat/luasrc/view/cbi/ucisection.htm:54
  380. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:884
  381. msgid "Add"
  382. msgstr "Προσθήκη"
  383. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1497
  384. msgid "Add ATM Bridge"
  385. msgstr ""
  386. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:92
  387. msgid "Add IPv4 address…"
  388. msgstr ""
  389. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:185
  390. msgid "Add IPv6 address…"
  391. msgstr ""
  392. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:65
  393. msgid "Add LED action"
  394. msgstr ""
  395. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:219
  396. msgid "Add VLAN"
  397. msgstr ""
  398. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1287
  399. msgid "Add device configuration"
  400. msgstr ""
  401. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1227
  402. msgid "Add device configuration…"
  403. msgstr ""
  404. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:15
  405. msgid "Add instance"
  406. msgstr ""
  407. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:165
  408. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:171
  409. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:268
  410. msgid "Add key"
  411. msgstr ""
  412. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:248
  413. msgid "Add local domain suffix to names served from hosts files"
  414. msgstr ""
  415. "Προσθήκη κατάληξης τοπικού τομέα για ονόματα εξυπηρετούμενα από αρχεία hosts"
  416. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:465
  417. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1114
  418. msgid "Add new interface..."
  419. msgstr "Προσθήκη νέας διεπαφής..."
  420. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:120
  421. msgid "Add peer"
  422. msgstr ""
  423. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:331
  424. msgid "Add to Blacklist"
  425. msgstr ""
  426. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:331
  427. msgid "Add to Whitelist"
  428. msgstr ""
  429. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:200
  430. msgid "Additional Hosts files"
  431. msgstr "Επιπλέον αρχεία Hosts"
  432. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:255
  433. msgid "Additional servers file"
  434. msgstr ""
  435. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:34
  436. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:35
  437. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:36
  438. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:37
  439. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:38
  440. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:39
  441. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:40
  442. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:41
  443. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:42
  444. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:43
  445. msgid "Address"
  446. msgstr "Διεύθυνση"
  447. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:151
  448. msgid "Address to access local relay bridge"
  449. msgstr "Διεύθυνση για πρόσβαση σε την τοπική γέφυρα αναμετάδοσης"
  450. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:285
  451. msgid "Addresses"
  452. msgstr ""
  453. #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:3
  454. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:15
  455. msgid "Administration"
  456. msgstr "Διαχείριση"
  457. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:164
  458. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:478
  459. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:633
  460. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1523
  461. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:25
  462. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:923
  463. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:987
  464. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:241
  465. msgid "Advanced Settings"
  466. msgstr "Ρυθμίσεις για προχωρημένους"
  467. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:337
  468. msgid "Advanced device options"
  469. msgstr ""
  470. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:513
  471. msgid "Ageing time"
  472. msgstr ""
  473. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:27
  474. msgid "Aggregate Transmit Power (ACTATP)"
  475. msgstr ""
  476. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:258
  477. msgid "Aggregation Selection Logic"
  478. msgstr ""
  479. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:261
  480. msgid "Aggregator: All slaves down or has no slaves (stable, 0)"
  481. msgstr ""
  482. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:263
  483. msgid ""
  484. "Aggregator: Chosen by the largest number of ports + slave added/removed or "
  485. "state changes (count, 2)"
  486. msgstr ""
  487. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:262
  488. msgid "Aggregator: Slave added/removed or state changes (bandwidth, 1)"
  489. msgstr ""
  490. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:178
  491. msgid "Alert"
  492. msgstr "Ειδοποίηση"
  493. #: modules/luci-base/htdocs/luci-static/resources/network.js:2985
  494. #: modules/luci-compat/luasrc/model/network.lua:1417
  495. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:62
  496. msgid "Alias Interface"
  497. msgstr ""
  498. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:146
  499. msgid "Alias of \"%s\""
  500. msgstr ""
  501. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:263
  502. msgid "All Servers"
  503. msgstr ""
  504. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:209
  505. msgid ""
  506. "Allocate IP addresses sequentially, starting from the lowest available "
  507. "address"
  508. msgstr ""
  509. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:208
  510. msgid "Allocate IP sequentially"
  511. msgstr ""
  512. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:25
  513. msgid "Allow <abbr title=\"Secure Shell\">SSH</abbr> password authentication"
  514. msgstr ""
  515. "Επιτρέπει την εξουσιοδότηση <abbr title=\"Secure Shell\">SSH</abbr> με "
  516. "κωδικό πρόσβασης"
  517. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1184
  518. msgid "Allow AP mode to disconnect STAs based on low ACK condition"
  519. msgstr ""
  520. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1088
  521. msgid "Allow all except listed"
  522. msgstr "Να επιτρέπονται όλες, εκτός από αυτές στη λίστα"
  523. #: modules/luci-compat/root/usr/share/rpcd/acl.d/luci-compat.json:3
  524. msgid "Allow full UCI access for legacy applications"
  525. msgstr ""
  526. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:943
  527. msgid "Allow legacy 802.11b rates"
  528. msgstr ""
  529. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1087
  530. msgid "Allow listed only"
  531. msgstr "Να επιτρέπονται μόνο αυτές στην λίστα"
  532. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:300
  533. msgid "Allow localhost"
  534. msgstr "Να επιτρέπεται το localhost"
  535. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:157
  536. msgid "Allow rebooting the device"
  537. msgstr ""
  538. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:36
  539. msgid "Allow remote hosts to connect to local SSH forwarded ports"
  540. msgstr ""
  541. "Να επιτρέπεται σε απομακρυσμένα συστήματα να συνδέονται σε τοπικά "
  542. "προωθημένες SSH θύρες"
  543. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:31
  544. msgid "Allow root logins with password"
  545. msgstr "Να επιτρέπονται root συνδέσεις με κωδικό πρόσβασης"
  546. #: modules/luci-base/root/usr/share/rpcd/acl.d/luci-base.json:3
  547. msgid "Allow system feature probing"
  548. msgstr ""
  549. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:31
  550. msgid "Allow the <em>root</em> user to login with password"
  551. msgstr ""
  552. "Να επιτρέπεται στον χρήστη <em>root</em> να συνδέετε με κωδικό πρόσβασης"
  553. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301
  554. msgid ""
  555. "Allow upstream responses in the 127.0.0.0/8 range, e.g. for RBL services"
  556. msgstr ""
  557. "Να επιτρέπονται απαντήσεις από ανώτερο επίπεδο εντός του εύρους 127.0.0.0/8, "
  558. "π.χ. για υπηρεσίες RBL"
  559. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:143
  560. msgid "Allowed IPs"
  561. msgstr "Επιτρεπόμενες IPs"
  562. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:708
  563. msgid "Always"
  564. msgstr ""
  565. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/none.js:5
  566. msgid "Always off (kernel: none)"
  567. msgstr ""
  568. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/default-on.js:6
  569. msgid "Always on (kernel: default-on)"
  570. msgstr ""
  571. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:970
  572. msgid ""
  573. "Always use 40MHz channels even if the secondary channel overlaps. Using this "
  574. "option does not comply with IEEE 802.11n-2009!"
  575. msgstr ""
  576. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:673
  577. msgid "Amount of Duplicate Address Detection probes to send"
  578. msgstr ""
  579. #: modules/luci-base/htdocs/luci-static/resources/form.js:603
  580. msgid "An error occurred while saving the form:"
  581. msgstr ""
  582. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:125
  583. msgid "An optional, short description for this device"
  584. msgstr ""
  585. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1445
  586. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:20
  587. msgid "Annex"
  588. msgstr ""
  589. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1446
  590. msgid "Annex A + L + M (all)"
  591. msgstr ""
  592. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1454
  593. msgid "Annex A G.992.1"
  594. msgstr ""
  595. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1455
  596. msgid "Annex A G.992.2"
  597. msgstr ""
  598. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1456
  599. msgid "Annex A G.992.3"
  600. msgstr ""
  601. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1457
  602. msgid "Annex A G.992.5"
  603. msgstr ""
  604. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1447
  605. msgid "Annex B (all)"
  606. msgstr ""
  607. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1450
  608. msgid "Annex B G.992.1"
  609. msgstr ""
  610. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1451
  611. msgid "Annex B G.992.3"
  612. msgstr ""
  613. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1452
  614. msgid "Annex B G.992.5"
  615. msgstr ""
  616. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1448
  617. msgid "Annex J (all)"
  618. msgstr ""
  619. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1458
  620. msgid "Annex L G.992.3 POTS 1"
  621. msgstr ""
  622. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1449
  623. msgid "Annex M (all)"
  624. msgstr ""
  625. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1459
  626. msgid "Annex M G.992.3"
  627. msgstr ""
  628. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1460
  629. msgid "Annex M G.992.5"
  630. msgstr ""
  631. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:885
  632. msgid "Announce this device as IPv6 DNS server."
  633. msgstr ""
  634. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:777
  635. msgid ""
  636. "Announce this device as default router if a local IPv6 default route is "
  637. "present."
  638. msgstr ""
  639. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:779
  640. msgid ""
  641. "Announce this device as default router if a public IPv6 prefix is available, "
  642. "regardless of local default route availability."
  643. msgstr ""
  644. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:781
  645. msgid ""
  646. "Announce this device as default router regardless of whether a prefix or "
  647. "default route is present."
  648. msgstr ""
  649. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:890
  650. msgid "Announced DNS domains"
  651. msgstr ""
  652. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:878
  653. msgid "Announced IPv6 DNS servers"
  654. msgstr ""
  655. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1668
  656. msgid "Anonymous Identity"
  657. msgstr ""
  658. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:162
  659. msgid "Anonymous Mount"
  660. msgstr ""
  661. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:158
  662. msgid "Anonymous Swap"
  663. msgstr ""
  664. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:84
  665. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:174
  666. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:195
  667. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:60
  668. msgid "Any zone"
  669. msgstr "Οιαδήποτε ζώνη"
  670. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:119
  671. msgid "Apply backup?"
  672. msgstr ""
  673. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4299
  674. msgid "Apply request failed with status <code>%h</code>"
  675. msgstr ""
  676. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2182
  677. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4165
  678. msgid "Apply unchecked"
  679. msgstr ""
  680. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4238
  681. msgid "Applying configuration changes… %ds"
  682. msgstr ""
  683. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:56
  684. msgid "Architecture"
  685. msgstr ""
  686. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:958
  687. msgid ""
  688. "Assign a part of given length of every public IPv6-prefix to this interface"
  689. msgstr ""
  690. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:963
  691. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:27
  692. msgid ""
  693. "Assign prefix parts using this hexadecimal subprefix ID for this interface."
  694. msgstr ""
  695. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2158
  696. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:362
  697. msgid "Associated Stations"
  698. msgstr "Συνδεδεμένοι Σταθμοί"
  699. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:145
  700. msgid "Associations"
  701. msgstr ""
  702. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:154
  703. msgid "Attempt to enable configured mount points for attached devices"
  704. msgstr ""
  705. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:110
  706. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:64
  707. msgid "Auth Group"
  708. msgstr ""
  709. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1607
  710. msgid "Authentication"
  711. msgstr "Εξουσιοδότηση"
  712. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:97
  713. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:71
  714. msgid "Authentication Type"
  715. msgstr ""
  716. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:172
  717. msgid "Authoritative"
  718. msgstr "Κύριος"
  719. #: modules/luci-base/luasrc/view/sysauth.htm:17
  720. msgid "Authorization Required"
  721. msgstr "Απαιτείται Εξουσιοδότηση"
  722. #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:196
  723. #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:197
  724. msgid "Auto Refresh"
  725. msgstr "Αυτόματη Ανανέωση"
  726. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:108
  727. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:18
  728. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:24
  729. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:100
  730. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:51
  731. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:96
  732. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:82
  733. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:56
  734. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:69
  735. msgid "Automatic"
  736. msgstr ""
  737. #: modules/luci-compat/luasrc/model/network/proto_hnet.lua:7
  738. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:7
  739. msgid "Automatic Homenet (HNCP)"
  740. msgstr ""
  741. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:174
  742. msgid "Automatically check filesystem for errors before mounting"
  743. msgstr ""
  744. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:170
  745. msgid "Automatically mount filesystems on hotplug"
  746. msgstr ""
  747. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:166
  748. msgid "Automatically mount swap on hotplug"
  749. msgstr ""
  750. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:170
  751. msgid "Automount Filesystem"
  752. msgstr ""
  753. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:166
  754. msgid "Automount Swap"
  755. msgstr ""
  756. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:193
  757. msgid "Available"
  758. msgstr "Διαθέσιμο"
  759. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:270
  760. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:280
  761. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:331
  762. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:341
  763. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:351
  764. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:236
  765. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:246
  766. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:256
  767. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:265
  768. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:275
  769. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:293
  770. msgid "Average:"
  771. msgstr "Μέσος Όρος:"
  772. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1466
  773. msgid "B43 + B43C"
  774. msgstr ""
  775. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1467
  776. msgid "B43 + B43C + V43"
  777. msgstr "B43 + B43C + V43"
  778. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:48
  779. msgid "BR / DMR / AFTR"
  780. msgstr "BR / DMR / AFTR"
  781. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:158
  782. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:182
  783. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1735
  784. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:379
  785. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:143
  786. msgid "BSSID"
  787. msgstr "BSSID"
  788. #: modules/luci-compat/luasrc/view/cbi/footer.htm:14
  789. #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:48
  790. msgid "Back to Overview"
  791. msgstr "Πίσω προς Επισκόπηση"
  792. #: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:48
  793. msgid "Back to configuration"
  794. msgstr "Πίσω προς παραμετροποίηση"
  795. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:361
  796. msgid "Backup"
  797. msgstr "Αντίγραφο ασφαλείας"
  798. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:114
  799. msgid "Backup / Flash Firmware"
  800. msgstr "Αντίγραφο ασφαλείας / Εγγραφή FLASH Υλικολογισμικό"
  801. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:321
  802. #: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:12
  803. msgid "Backup file list"
  804. msgstr "Λίστα αρχείων για αντίγραφο ασφαλείας"
  805. #: modules/luci-compat/luasrc/view/cbi/wireless_modefreq.htm:158
  806. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:501
  807. msgid "Band"
  808. msgstr ""
  809. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:377
  810. msgid "Base device"
  811. msgstr ""
  812. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:973
  813. msgid "Beacon Interval"
  814. msgstr ""
  815. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:322
  816. #: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:46
  817. msgid ""
  818. "Below is the determined list of files to backup. It consists of changed "
  819. "configuration files marked by opkg, essential base files and the user "
  820. "defined backup patterns."
  821. msgstr ""
  822. "Παρακάτω είναι η προκαθορισμένη λίστα αρχείων για αντιγραφή ασφαλείας. "
  823. "Αποτελείτε από αλλαγμένα αρχεία παραμετροποίησης σημαδεμένα από το opkg, "
  824. "ουσιώδη βασικά αρχεία καθώς και καθορισμένα από το χρήστη μοτίβα αντιγράφων "
  825. "ασφαλείας."
  826. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:395
  827. msgid ""
  828. "Bind dynamically to interfaces rather than wildcard address (recommended as "
  829. "linux default)"
  830. msgstr ""
  831. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:59
  832. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64
  833. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64
  834. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:69
  835. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:48
  836. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:55
  837. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:57
  838. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:52
  839. msgid "Bind interface"
  840. msgstr ""
  841. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:59
  842. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64
  843. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64
  844. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:69
  845. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:48
  846. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:55
  847. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:57
  848. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:52
  849. msgid "Bind the tunnel to this interface (optional)."
  850. msgstr ""
  851. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:129
  852. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:188
  853. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:165
  854. msgid "Bitrate"
  855. msgstr "Ρυθμός δεδομένων"
  856. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:266
  857. msgid "Bogus NX Domain Override"
  858. msgstr "Παράκαμψη Ψευδούς Τομέα NX"
  859. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:199
  860. msgid "Bonding Policy"
  861. msgstr ""
  862. #: modules/luci-base/htdocs/luci-static/resources/network.js:2991
  863. #: modules/luci-compat/luasrc/model/network.lua:1421
  864. msgid "Bridge"
  865. msgstr "Γέφυρα"
  866. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:437
  867. msgctxt "MACVLAN mode"
  868. msgid "Bridge (Support direct communication between MAC VLANs)"
  869. msgstr ""
  870. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:339
  871. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:481
  872. msgid "Bridge VLAN filtering"
  873. msgstr ""
  874. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:344
  875. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1368
  876. msgid "Bridge device"
  877. msgstr ""
  878. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:338
  879. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:480
  880. msgid "Bridge port specific options"
  881. msgstr ""
  882. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:468
  883. msgid "Bridge ports"
  884. msgstr ""
  885. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1533
  886. msgid "Bridge unit number"
  887. msgstr "Αριθμός μονάδας γέφυρας"
  888. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:504
  889. msgid "Bring up empty bridge"
  890. msgstr ""
  891. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:575
  892. msgid "Bring up on boot"
  893. msgstr "Ανέβασμα κατά την εκκίνηση"
  894. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:504
  895. msgid "Bring up the bridge interface even if no ports are attached"
  896. msgstr ""
  897. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:205
  898. msgid "Broadcast policy (broadcast, 3)"
  899. msgstr ""
  900. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2831
  901. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3822
  902. msgid "Browse…"
  903. msgstr ""
  904. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:37
  905. msgid "Buffered"
  906. msgstr ""
  907. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:144
  908. msgid "CA certificate; if empty it will be saved after the first connection."
  909. msgstr ""
  910. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:7
  911. msgid "CLAT configuration failed"
  912. msgstr ""
  913. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:72
  914. msgid "CPU usage (%)"
  915. msgstr "Χρήση CPU (%)"
  916. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:41
  917. msgid "Cached"
  918. msgstr ""
  919. #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:53
  920. #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:53
  921. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:21
  922. msgid "Call failed"
  923. msgstr ""
  924. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2924
  925. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3831
  926. #: modules/luci-compat/luasrc/view/cbi/delegator.htm:14
  927. #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:52
  928. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:188
  929. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1120
  930. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2032
  931. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:128
  932. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:270
  933. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:203
  934. msgid "Cancel"
  935. msgstr "Ακύρωση"
  936. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:17
  937. msgid "Category"
  938. msgstr ""
  939. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1591
  940. msgid "Certificate constraint (Domain)"
  941. msgstr ""
  942. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1588
  943. msgid "Certificate constraint (SAN)"
  944. msgstr ""
  945. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1585
  946. msgid "Certificate constraint (Subject)"
  947. msgstr ""
  948. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1594
  949. msgid "Certificate constraint (Wildcard)"
  950. msgstr ""
  951. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1585
  952. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1643
  953. msgid ""
  954. "Certificate constraint substring - e.g. /CN=wifi.mycompany.com<br />See "
  955. "`logread -f` during handshake for actual values"
  956. msgstr ""
  957. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1591
  958. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1649
  959. msgid ""
  960. "Certificate constraint(s) against DNS SAN values (if available)<br />or "
  961. "Subject CN (exact match)"
  962. msgstr ""
  963. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1594
  964. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1652
  965. msgid ""
  966. "Certificate constraint(s) against DNS SAN values (if available)<br />or "
  967. "Subject CN (suffix match)"
  968. msgstr ""
  969. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1588
  970. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1646
  971. msgid ""
  972. "Certificate constraint(s) via Subject Alternate Name values<br />(supported "
  973. "attributes: EMAIL, DNS, URI) - e.g. DNS:wifi.mycompany.com"
  974. msgstr ""
  975. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:54
  976. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:57
  977. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:212
  978. msgid "Chain"
  979. msgstr "Αλυσίδα"
  980. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4051
  981. msgid "Changes"
  982. msgstr "Αλλαγές"
  983. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4334
  984. msgid "Changes have been reverted."
  985. msgstr ""
  986. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:46
  987. msgid "Changes the administrator password for accessing the device"
  988. msgstr "Αλλάζει τον κωδικό διαχειριστή για πρόσβαση στη συσκευή"
  989. #: modules/luci-compat/luasrc/view/cbi/wireless_modefreq.htm:162
  990. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:128
  991. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:184
  992. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:510
  993. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1733
  994. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:376
  995. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:164
  996. msgid "Channel"
  997. msgstr "Κανάλι"
  998. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:75
  999. msgid "Channel Analysis"
  1000. msgstr ""
  1001. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:377
  1002. msgid "Channel Width"
  1003. msgstr ""
  1004. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:174
  1005. msgid "Check filesystems before mount"
  1006. msgstr ""
  1007. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1994
  1008. msgid "Check this option to delete the existing networks from this radio."
  1009. msgstr ""
  1010. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:110
  1011. msgid "Checking archive…"
  1012. msgstr ""
  1013. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:193
  1014. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:195
  1015. msgid "Checking image…"
  1016. msgstr ""
  1017. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:397
  1018. msgid "Choose mtdblock"
  1019. msgstr ""
  1020. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:580
  1021. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2022
  1022. msgid ""
  1023. "Choose the firewall zone you want to assign to this interface. Select "
  1024. "<em>unspecified</em> to remove the interface from the associated zone or "
  1025. "fill out the <em>custom</em> field to define a new zone and attach the "
  1026. "interface to it."
  1027. msgstr ""
  1028. "Επιλέξατε την ζώνη τείχους προστασίας που επιθυμητέ να αναθέσετε σε αυτήν "
  1029. "την διεπαφή. Επιλέξτε <em>απροσδιόριστο</em> για να αφαιρέσετε την διεπαφή "
  1030. "από την συσχετισμένη ζώνη ή συμπληρώστε το <em>δημιουργία</em> πεδίο για να "
  1031. "προσδιορίσετε μία νέα ζώνη και να προσαρτήσετε την διεπαφή σε αυτό."
  1032. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1022
  1033. msgid ""
  1034. "Choose the network(s) you want to attach to this wireless interface or fill "
  1035. "out the <em>custom</em> field to define a new network."
  1036. msgstr ""
  1037. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1220
  1038. msgid "Cipher"
  1039. msgstr ""
  1040. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:91
  1041. msgid "Cisco UDP encapsulation"
  1042. msgstr ""
  1043. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:361
  1044. msgid ""
  1045. "Click \"Generate archive\" to download a tar archive of the current "
  1046. "configuration files."
  1047. msgstr ""
  1048. "Κλικ στο \"Δημιουργία αρχείου\" για να κατεβάσετε ένα tar αρχείο με τα "
  1049. "τρέχοντα αρχεία παραμετροποίησης."
  1050. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:394
  1051. msgid ""
  1052. "Click \"Save mtdblock\" to download specified mtdblock file. (NOTE: THIS "
  1053. "FEATURE IS FOR PROFESSIONALS! )"
  1054. msgstr ""
  1055. #: modules/luci-base/htdocs/luci-static/resources/network.js:3863
  1056. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:991
  1057. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1105
  1058. msgid "Client"
  1059. msgstr "πελάτης"
  1060. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37
  1061. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:33
  1062. msgid "Client ID to send when requesting DHCP"
  1063. msgstr "Αναγνωριστικό πελάτη που αποστέλλετε κατά την αίτηση DHCP"
  1064. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4068
  1065. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:167
  1066. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:173
  1067. msgid "Close"
  1068. msgstr ""
  1069. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:144
  1070. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:128
  1071. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:114
  1072. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:92
  1073. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:101
  1074. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:124
  1075. msgid ""
  1076. "Close inactive connection after the given amount of seconds, use 0 to "
  1077. "persist connection"
  1078. msgstr ""
  1079. "Κλείσιμο, μη ενεργών συνδέσεων μετά το πέρας του ορισμένου αριθμού "
  1080. "δευτερολέπτων, χρησιμοποιήστε 0 για να εξακολουθούν να υφίστανται επ' "
  1081. "αόριστον"
  1082. #: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:49
  1083. msgid "Close list..."
  1084. msgstr "Κλείσιμο λίστας..."
  1085. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:42
  1086. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:61
  1087. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2156
  1088. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:391
  1089. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:352
  1090. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:355
  1091. #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:204
  1092. msgid "Collecting data..."
  1093. msgstr "Συλλογή δεδομένων..."
  1094. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:71
  1095. msgid "Command"
  1096. msgstr "Εντολή"
  1097. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:401
  1098. msgid "Command OK"
  1099. msgstr ""
  1100. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:33
  1101. msgid "Command failed"
  1102. msgstr ""
  1103. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:73
  1104. msgid "Comment"
  1105. msgstr ""
  1106. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1704
  1107. msgid ""
  1108. "Complicates key reinstallation attacks on the client side by disabling "
  1109. "retransmission of EAPOL-Key frames that are used to install keys. This "
  1110. "workaround might cause interoperability issues and reduced robustness of key "
  1111. "negotiation especially in environments with heavy traffic load."
  1112. msgstr ""
  1113. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:101
  1114. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:106
  1115. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:103
  1116. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:108
  1117. msgid "Compute outgoing checksum (optional)."
  1118. msgstr ""
  1119. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4051
  1120. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:424
  1121. msgid "Configuration"
  1122. msgstr "Διαμόρφωση"
  1123. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4213
  1124. msgid "Configuration changes applied."
  1125. msgstr ""
  1126. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4151
  1127. msgid "Configuration changes have been rolled back!"
  1128. msgstr ""
  1129. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:63
  1130. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:21
  1131. msgid "Configuration failed"
  1132. msgstr ""
  1133. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:952
  1134. msgid ""
  1135. "Configures data rates based on the coverage cell density. Normal configures "
  1136. "basic rates to 6, 12, 24 Mbps if legacy 802.11b rates are not used else to "
  1137. "5.5, 11 Mbps. High configures basic rates to 12, 24 Mbps if legacy 802.11b "
  1138. "rates are not used else to the 11 Mbps rate. Very High configures 24 Mbps as "
  1139. "the basic rate. Supported rates lower than the minimum basic rate are not "
  1140. "offered."
  1141. msgstr ""
  1142. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:775
  1143. msgid ""
  1144. "Configures the default router advertisement in <abbr title=\"Router "
  1145. "Advertisement\">RA</abbr> messages."
  1146. msgstr ""
  1147. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:764
  1148. msgid ""
  1149. "Configures the operation mode of the <abbr title=\"Router Advertisement"
  1150. "\">RA</abbr> service on this interface."
  1151. msgstr ""
  1152. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:868
  1153. msgid "Configures the operation mode of the DHCPv6 service on this interface."
  1154. msgstr ""
  1155. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:898
  1156. msgid ""
  1157. "Configures the operation mode of the NDP proxy service on this interface."
  1158. msgstr ""
  1159. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1273
  1160. msgid "Configure…"
  1161. msgstr ""
  1162. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:176
  1163. msgid "Confirm disconnect"
  1164. msgstr ""
  1165. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:55
  1166. msgid "Confirmation"
  1167. msgstr "Επιβεβαίωση"
  1168. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:97
  1169. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:100
  1170. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:47
  1171. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:51
  1172. msgid "Connected"
  1173. msgstr "Συνδεδεμένος"
  1174. #: modules/luci-base/htdocs/luci-static/resources/network.js:9
  1175. #: modules/luci-compat/luasrc/model/network.lua:27
  1176. msgid "Connection attempt failed"
  1177. msgstr ""
  1178. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:40
  1179. msgid "Connection attempt failed."
  1180. msgstr ""
  1181. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:411
  1182. msgid "Connection lost"
  1183. msgstr ""
  1184. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:130
  1185. msgid "Connections"
  1186. msgstr "Συνδέσεις"
  1187. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:377
  1188. msgid "Consider the slave up when all ARP IP targets are reachable (all, 1)"
  1189. msgstr ""
  1190. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:376
  1191. msgid "Consider the slave up when any ARP IP target is reachable (any, 0)"
  1192. msgstr ""
  1193. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/crontab.js:18
  1194. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:338
  1195. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:55
  1196. msgid "Contents have been saved."
  1197. msgstr ""
  1198. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:399
  1199. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:433
  1200. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:799
  1201. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:132
  1202. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:262
  1203. msgid "Continue"
  1204. msgstr ""
  1205. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4187
  1206. msgid ""
  1207. "Could not regain access to the device after applying the configuration "
  1208. "changes. You might need to reconnect if you modified network related "
  1209. "settings such as the IP address or wireless security credentials."
  1210. msgstr ""
  1211. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:189
  1212. msgid "Country"
  1213. msgstr "Χώρα"
  1214. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:949
  1215. msgid "Country Code"
  1216. msgstr "Κωδικός Χώρας"
  1217. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:952
  1218. msgid "Coverage cell density"
  1219. msgstr ""
  1220. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:580
  1221. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2022
  1222. msgid "Create / Assign firewall-zone"
  1223. msgstr "Δημιουργία / Ανάθεση ζώνης τείχους προστασίας"
  1224. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1149
  1225. msgid "Create interface"
  1226. msgstr ""
  1227. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:177
  1228. msgid "Critical"
  1229. msgstr "Κρίσιμο"
  1230. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:181
  1231. msgid "Cron Log Level"
  1232. msgstr "Επίπεδο Καταγραφής Cron"
  1233. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:590
  1234. msgid "Current power"
  1235. msgstr ""
  1236. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:569
  1237. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:571
  1238. #: modules/luci-compat/luasrc/view/cbi/network_ifacelist.htm:51
  1239. #: modules/luci-compat/luasrc/view/cbi/network_ifacelist.htm:53
  1240. #: modules/luci-compat/luasrc/view/cbi/network_ifacelist.htm:82
  1241. #: modules/luci-compat/luasrc/view/cbi/network_ifacelist.htm:83
  1242. msgid "Custom Interface"
  1243. msgstr ""
  1244. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:380
  1245. msgid ""
  1246. "Custom files (certificates, scripts) may remain on the system. To prevent "
  1247. "this, perform a factory-reset first."
  1248. msgstr ""
  1249. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/timer.js:6
  1250. msgid "Custom flash interval (kernel: timer)"
  1251. msgstr ""
  1252. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:59
  1253. msgid ""
  1254. "Customizes the behaviour of the device <abbr title=\"Light Emitting Diode"
  1255. "\">LED</abbr>s if possible."
  1256. msgstr ""
  1257. "Ρυθμίζει, αν είναι δυνατόν, την συμπεριφορά των <abbr title=\"Light Emitting "
  1258. "Diode\">LED</abbr> της συσκευής."
  1259. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:673
  1260. msgid "DAD transmits"
  1261. msgstr ""
  1262. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1425
  1263. msgid "DAE-Client"
  1264. msgstr ""
  1265. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1430
  1266. msgid "DAE-Port"
  1267. msgstr ""
  1268. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1435
  1269. msgid "DAE-Secret"
  1270. msgstr ""
  1271. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:483
  1272. msgid "DHCP Server"
  1273. msgstr "Εξυπηρετητής DHCP"
  1274. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:155
  1275. #: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:50
  1276. msgid "DHCP and DNS"
  1277. msgstr "DHCP και DNS"
  1278. #: modules/luci-base/htdocs/luci-static/resources/network.js:2100
  1279. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:16
  1280. #: modules/luci-compat/luasrc/model/network.lua:969
  1281. msgid "DHCP client"
  1282. msgstr "Πελάτης DHCP"
  1283. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:707
  1284. msgid "DHCP-Options"
  1285. msgstr "Επιλογές DHCP"
  1286. #: modules/luci-compat/luasrc/model/network/proto_dhcpv6.lua:7
  1287. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:7
  1288. msgid "DHCPv6 client"
  1289. msgstr ""
  1290. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:867
  1291. msgid "DHCPv6-Service"
  1292. msgstr ""
  1293. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:45
  1294. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:46
  1295. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:47
  1296. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:48
  1297. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:49
  1298. msgid "DNS"
  1299. msgstr "DNS"
  1300. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:277
  1301. msgid "DNS forwardings"
  1302. msgstr "Προωθήσεις DNS"
  1303. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:932
  1304. msgid "DNS search domains"
  1305. msgstr ""
  1306. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:937
  1307. msgid "DNS weight"
  1308. msgstr ""
  1309. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:33
  1310. msgid "DNS-Label / FQDN"
  1311. msgstr ""
  1312. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:228
  1313. msgid "DNSSEC"
  1314. msgstr ""
  1315. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:232
  1316. msgid "DNSSEC check unsigned"
  1317. msgstr ""
  1318. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:99
  1319. msgid "DPD Idle Timeout"
  1320. msgstr ""
  1321. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:41
  1322. msgid "DS-Lite AFTR address"
  1323. msgstr ""
  1324. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1442
  1325. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:44
  1326. msgid "DSL"
  1327. msgstr "DSL"
  1328. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:14
  1329. msgid "DSL Status"
  1330. msgstr ""
  1331. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1475
  1332. msgid "DSL line mode"
  1333. msgstr ""
  1334. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1160
  1335. msgid "DTIM Interval"
  1336. msgstr ""
  1337. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:57
  1338. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:127
  1339. msgid "DUID"
  1340. msgstr "DUID"
  1341. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:21
  1342. msgid "Data Rate"
  1343. msgstr ""
  1344. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:172
  1345. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:183
  1346. msgid "Debug"
  1347. msgstr "Αποσφαλμάτωση"
  1348. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1400
  1349. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1415
  1350. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1430
  1351. msgid "Default %d"
  1352. msgstr "Προεπιλογή %d"
  1353. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:774
  1354. msgid "Default router"
  1355. msgstr ""
  1356. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/default-on.js:11
  1357. msgid "Default state"
  1358. msgstr "Προεπιλεγμένη κατάσταση"
  1359. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:707
  1360. msgid ""
  1361. "Define additional DHCP options, for example "
  1362. "\"<code>6,192.168.2.1,192.168.2.2</code>\" which advertises different DNS "
  1363. "servers to clients."
  1364. msgstr ""
  1365. "Ορίστε επιπλέον επιλογές DHCP, που διαφημίζουν διαφορετικούς εξυπηρετητές "
  1366. "DNS στους πελάτες, για παράδειγμα \"<code>6,192.168.2.1,192.168.2.2</code>\"."
  1367. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:462
  1368. msgid ""
  1369. "Defines a mapping of Linux internal packet priority to VLAN header priority "
  1370. "but for outgoing frames"
  1371. msgstr ""
  1372. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:456
  1373. msgid ""
  1374. "Defines a mapping of VLAN header priority to the Linux internal packet "
  1375. "priority on incoming frames"
  1376. msgstr ""
  1377. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:955
  1378. msgid "Delegate IPv6 prefixes"
  1379. msgstr ""
  1380. #: modules/luci-base/htdocs/luci-static/resources/form.js:2262
  1381. #: modules/luci-base/htdocs/luci-static/resources/form.js:2687
  1382. #: modules/luci-base/htdocs/luci-static/resources/form.js:2691
  1383. #: modules/luci-base/htdocs/luci-static/resources/form.js:3179
  1384. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2893
  1385. #: modules/luci-compat/luasrc/view/cbi/nsection.htm:11
  1386. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:162
  1387. #: modules/luci-compat/luasrc/view/cbi/tsection.htm:16
  1388. msgid "Delete"
  1389. msgstr "Διαγραφή"
  1390. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:199
  1391. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:205
  1392. msgid "Delete key"
  1393. msgstr ""
  1394. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2790
  1395. msgid "Delete request failed: %s"
  1396. msgstr ""
  1397. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:904
  1398. msgid "Delete this network"
  1399. msgstr "Διαγραφή αυτού του δικτύου"
  1400. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1160
  1401. msgid "Delivery Traffic Indication Message Interval"
  1402. msgstr ""
  1403. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:340
  1404. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:125
  1405. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:129
  1406. msgid "Description"
  1407. msgstr "Περιγραφή"
  1408. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2889
  1409. msgid "Deselect"
  1410. msgstr ""
  1411. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:222
  1412. msgid "Design"
  1413. msgstr "Εμφάνιση"
  1414. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:715
  1415. msgid "Designated master"
  1416. msgstr ""
  1417. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:386
  1418. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:71
  1419. msgid "Destination"
  1420. msgstr "Προορισμός"
  1421. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:48
  1422. msgid "Destination port"
  1423. msgstr "Θύρα προορισμού"
  1424. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:59
  1425. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:165
  1426. msgid "Destination zone"
  1427. msgstr "Ζώνη προορισμού"
  1428. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:67
  1429. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:191
  1430. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:43
  1431. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:46
  1432. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:81
  1433. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:569
  1434. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1102
  1435. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1384
  1436. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:55
  1437. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:12
  1438. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:247
  1439. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:280
  1440. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:356
  1441. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:392
  1442. msgid "Device"
  1443. msgstr "Συσκευή"
  1444. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:918
  1445. msgid "Device Configuration"
  1446. msgstr "Παραμετροποίηση Συσκευής"
  1447. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:132
  1448. msgid "Device is not active"
  1449. msgstr ""
  1450. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:233
  1451. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:656
  1452. msgid "Device is restarting…"
  1453. msgstr ""
  1454. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:441
  1455. msgid "Device name"
  1456. msgstr ""
  1457. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:45
  1458. msgid "Device not managed by ModemManager."
  1459. msgstr ""
  1460. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1359
  1461. msgid "Device not present"
  1462. msgstr ""
  1463. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:341
  1464. msgid "Device type"
  1465. msgstr ""
  1466. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4186
  1467. msgid "Device unreachable!"
  1468. msgstr ""
  1469. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:53
  1470. msgid "Device unreachable! Still waiting for device..."
  1471. msgstr "Αποτυχία σύνδεσης με συσκευή! Παραμονή για συσκευή..."
  1472. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1224
  1473. msgid "Devices"
  1474. msgstr ""
  1475. #: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:88
  1476. msgid "Diagnostics"
  1477. msgstr "Διαγνωστικά"
  1478. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:102
  1479. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:94
  1480. msgid "Dial number"
  1481. msgstr ""
  1482. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2686
  1483. msgid "Directory"
  1484. msgstr "Φάκελος"
  1485. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:896
  1486. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:936
  1487. msgid "Disable"
  1488. msgstr "Απενεργοποίηση"
  1489. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:666
  1490. msgid ""
  1491. "Disable <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</abbr> for "
  1492. "this interface."
  1493. msgstr ""
  1494. "Απενεργοποίηση <abbr title=\"Πρωτόκολλο Δυναμικής Απόδοσης Διεύθυνσης"
  1495. "\">DHCP</abbr> για αυτή τη διεπαφή."
  1496. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:174
  1497. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:375
  1498. msgid "Disable DNS lookups"
  1499. msgstr ""
  1500. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:93
  1501. msgid "Disable Encryption"
  1502. msgstr ""
  1503. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1170
  1504. msgid "Disable Inactivity Polling"
  1505. msgstr ""
  1506. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:894
  1507. msgid "Disable this network"
  1508. msgstr ""
  1509. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:953
  1510. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1679
  1511. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:13
  1512. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:66
  1513. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:109
  1514. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:101
  1515. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:52
  1516. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:97
  1517. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:83
  1518. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:57
  1519. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:70
  1520. msgid "Disabled"
  1521. msgstr "Απενεργοποιημένο"
  1522. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1184
  1523. msgid "Disassociate On Low Acknowledgement"
  1524. msgstr ""
  1525. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:294
  1526. msgid "Discard upstream RFC1918 responses"
  1527. msgstr "Αγνόησε τις απαντήσεις ανοδικής ροής RFC1918"
  1528. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:198
  1529. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:722
  1530. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:332
  1531. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:347
  1532. msgid "Disconnect"
  1533. msgstr ""
  1534. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:64
  1535. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:22
  1536. msgid "Disconnection attempt failed"
  1537. msgstr ""
  1538. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:48
  1539. msgid "Disconnection attempt failed."
  1540. msgstr ""
  1541. #: modules/luci-base/htdocs/luci-static/resources/form.js:606
  1542. #: modules/luci-base/htdocs/luci-static/resources/form.js:2886
  1543. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3330
  1544. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4157
  1545. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1758
  1546. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:328
  1547. msgid "Dismiss"
  1548. msgstr ""
  1549. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:958
  1550. msgid "Distance Optimization"
  1551. msgstr "Βελτιστοποίηση Απόστασης"
  1552. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:958
  1553. msgid "Distance to farthest network member in meters."
  1554. msgstr "Απόσταση σε μέτρα από το πιο απομακρυσμένο μέλος του δικτύου."
  1555. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:155
  1556. msgid ""
  1557. "Dnsmasq is a combined <abbr title=\"Dynamic Host Configuration Protocol"
  1558. "\">DHCP</abbr>-Server and <abbr title=\"Domain Name System\">DNS</abbr>-"
  1559. "Forwarder for <abbr title=\"Network Address Translation\">NAT</abbr> "
  1560. "firewalls"
  1561. msgstr ""
  1562. "Ο Dnsmasq είναι ένας συνδυασμός εξυπηρετητή <abbr title=\"Πρωτόκολλο "
  1563. "Δυναμικής Απόδοσης Παραμέτρων Συστήματος\">DHCP</abbr> και προωθητή<abbr "
  1564. "title=\"Σύστημα Ονόματος Τομέα\">DNS</abbr> για τείχη προστασίας <abbr title="
  1565. "\"Μεταφραστή Διεύθυνσης Δικτύου\">NAT</abbr>"
  1566. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:252
  1567. msgid "Do not cache negative replies, e.g. for not existing domains"
  1568. msgstr ""
  1569. "Να μην αποθηκεύονται στη λανθάνουσα μνήμη οι αρνητικές απαντήσεις, π.χ. για "
  1570. "μη υπαρκτούς τομείς"
  1571. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:86
  1572. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:91
  1573. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:88
  1574. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:93
  1575. msgid "Do not create host route to peer (optional)."
  1576. msgstr ""
  1577. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:219
  1578. msgid "Do not forward requests that cannot be answered by public name servers"
  1579. msgstr ""
  1580. "Να μην προωθούνται αιτήματα τα οποία δεν μπορούν να απαντηθούν από δημόσιους "
  1581. "εξυπηρετητές ονομάτων"
  1582. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:214
  1583. msgid "Do not forward reverse lookups for local networks"
  1584. msgstr ""
  1585. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:870
  1586. msgid "Do not offer DHCPv6 service on this interface."
  1587. msgstr ""
  1588. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:158
  1589. msgctxt "VLAN port state"
  1590. msgid "Do not participate"
  1591. msgstr ""
  1592. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:900
  1593. msgid ""
  1594. "Do not proxy any <abbr title=\"Neighbour Discovery Protocol\">NDP</abbr> "
  1595. "packets."
  1596. msgstr ""
  1597. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:25
  1598. msgid "Do not send a hostname"
  1599. msgstr ""
  1600. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:766
  1601. msgid ""
  1602. "Do not send any <abbr title=\"Router Advertisement, ICMPv6 Type 134\">RA</"
  1603. "abbr> messages on this interface."
  1604. msgstr ""
  1605. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2776
  1606. msgid "Do you really want to delete \"%s\" ?"
  1607. msgstr ""
  1608. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:200
  1609. msgid "Do you really want to delete the following SSH key?"
  1610. msgstr ""
  1611. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:94
  1612. msgid "Do you really want to erase all settings?"
  1613. msgstr ""
  1614. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2774
  1615. msgid "Do you really want to recursively delete the directory \"%s\" ?"
  1616. msgstr ""
  1617. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:168
  1618. msgid "Domain required"
  1619. msgstr "Απαίτηση για όνομα τομέα"
  1620. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:307
  1621. msgid "Domain whitelist"
  1622. msgstr "Λευκή λίστα τομέων"
  1623. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:83
  1624. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:88
  1625. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:67
  1626. msgid "Don't Fragment"
  1627. msgstr ""
  1628. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:169
  1629. msgid ""
  1630. "Don't forward <abbr title=\"Domain Name System\">DNS</abbr>-Requests without "
  1631. "<abbr title=\"Domain Name System\">DNS</abbr>-Name"
  1632. msgstr ""
  1633. "Να μην προωθούνται ερωτήματα <abbr title=\"Domain Name System\">DNS</abbr> "
  1634. "χωρίς όνομα τομέα <abbr title=\"Domain Name System\">DNS</abbr>"
  1635. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:152
  1636. msgid "Down"
  1637. msgstr ""
  1638. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:402
  1639. msgid "Down Delay"
  1640. msgstr ""
  1641. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:364
  1642. msgid "Download backup"
  1643. msgstr "Κατέβασμα αντιγράφου ασφαλείας"
  1644. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:402
  1645. msgid "Download mtdblock"
  1646. msgstr ""
  1647. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1480
  1648. msgid "Downstream SNR offset"
  1649. msgstr ""
  1650. #: modules/luci-base/htdocs/luci-static/resources/form.js:2645
  1651. msgid "Drag to reorder"
  1652. msgstr ""
  1653. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:341
  1654. msgid "Drop Duplicate Frames"
  1655. msgstr ""
  1656. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:12
  1657. msgid "Dropbear Instance"
  1658. msgstr ""
  1659. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:10
  1660. msgid ""
  1661. "Dropbear offers <abbr title=\"Secure Shell\">SSH</abbr> network shell access "
  1662. "and an integrated <abbr title=\"Secure Copy\">SCP</abbr> server"
  1663. msgstr ""
  1664. "Το Dropbear προσφέρει πρόσβαση σε <abbr title=\"Secure Shell\">SSH</abbr> "
  1665. "κέλυφος μέσω δικτύου και έναν ενσωματωμένο εξυπηρετητή <abbr title=\"Secure "
  1666. "Copy\">SCP</abbr>"
  1667. #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:14
  1668. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:11
  1669. msgid "Dual-Stack Lite (RFC6333)"
  1670. msgstr ""
  1671. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:683
  1672. msgid "Dynamic <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</abbr>"
  1673. msgstr ""
  1674. "Δυναμικό <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</abbr>"
  1675. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:60
  1676. msgid "Dynamic tunnel"
  1677. msgstr "Δυναμικό τούνελ"
  1678. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:683
  1679. msgid ""
  1680. "Dynamically allocate DHCP addresses for clients. If disabled, only clients "
  1681. "having static leases will be served."
  1682. msgstr ""
  1683. "Δυναμική απόδοση DHCP διευθύνσεων στους πελάτες. Σε περίπτωση "
  1684. "απενεργοποίησης, μόνο πελάτες με στατικα leases θα εξυπηρετούνται."
  1685. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:67
  1686. msgid "EA-bits length"
  1687. msgstr ""
  1688. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1563
  1689. msgid "EAP-Method"
  1690. msgstr "Μέθοδος EAP"
  1691. #: modules/luci-base/htdocs/luci-static/resources/form.js:2665
  1692. #: modules/luci-base/htdocs/luci-static/resources/form.js:2668
  1693. #: modules/luci-base/htdocs/luci-static/resources/form.js:3042
  1694. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:154
  1695. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:160
  1696. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:495
  1697. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:901
  1698. msgid "Edit"
  1699. msgstr "Επεξεργασία"
  1700. #: modules/luci-compat/luasrc/view/cbi/error.htm:13
  1701. msgid ""
  1702. "Edit the raw configuration data above to fix any error and hit \"Save\" to "
  1703. "reload the page."
  1704. msgstr ""
  1705. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:899
  1706. msgid "Edit this network"
  1707. msgstr "Επεξεργασία αυτού του δικτύου"
  1708. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:850
  1709. msgid "Edit wireless network"
  1710. msgstr ""
  1711. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:462
  1712. msgid "Egress QoS mapping"
  1713. msgstr ""
  1714. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:166
  1715. msgctxt "VLAN port state"
  1716. msgid "Egress tagged"
  1717. msgstr ""
  1718. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:162
  1719. msgctxt "VLAN port state"
  1720. msgid "Egress untagged"
  1721. msgstr ""
  1722. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:179
  1723. msgid "Emergency"
  1724. msgstr "Έκτακτη ανάγκη"
  1725. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:896
  1726. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:936
  1727. msgid "Enable"
  1728. msgstr "Ενεργοποίηση"
  1729. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:538
  1730. msgid ""
  1731. "Enable <abbr title=\"Internet Group Management Protocol\">IGMP</abbr> "
  1732. "snooping"
  1733. msgstr ""
  1734. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:518
  1735. msgid "Enable <abbr title=\"Spanning Tree Protocol\">STP</abbr>"
  1736. msgstr "Ενεργοποίηση <abbr title=\"Spanning Tree Protocol\">STP</abbr>"
  1737. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:785
  1738. msgid "Enable <abbr title=\"Stateless Address Auto Config\">SLAAC</abbr>"
  1739. msgstr ""
  1740. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:174
  1741. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:369
  1742. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:375
  1743. msgid "Enable DNS lookups"
  1744. msgstr ""
  1745. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:292
  1746. msgid "Enable Dynamic Shuffling Of Flows"
  1747. msgstr ""
  1748. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:60
  1749. msgid "Enable HE.net dynamic endpoint update"
  1750. msgstr "Ενεργοποίηση ενημέρωσης δυναμικού τερματικού σημείου HE.net"
  1751. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:665
  1752. msgid "Enable IPv6"
  1753. msgstr ""
  1754. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:90
  1755. msgid "Enable IPv6 negotiation"
  1756. msgstr ""
  1757. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:49
  1758. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:94
  1759. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:80
  1760. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:54
  1761. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:67
  1762. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:93
  1763. msgid "Enable IPv6 negotiation on the PPP link"
  1764. msgstr "Ενεργοποίηση διαπραγμάτευσης IPv6 πάνω στη PPP ζεύξη"
  1765. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:192
  1766. msgid "Enable Jumbo Frame passthrough"
  1767. msgstr "Ενεργοποίηση διέλευσης Jumbo Frame"
  1768. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:696
  1769. msgid "Enable MAC address learning"
  1770. msgstr ""
  1771. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:242
  1772. msgid "Enable NTP client"
  1773. msgstr ""
  1774. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:96
  1775. msgid "Enable Single DES"
  1776. msgstr ""
  1777. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:368
  1778. msgid "Enable TFTP server"
  1779. msgstr "Ενεργοποίηση εξυπηρετητή TFTP"
  1780. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:720
  1781. msgid "Enable VLAN filtering"
  1782. msgstr ""
  1783. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:184
  1784. msgid "Enable VLAN functionality"
  1785. msgstr "Ενεργοποίηση λειτουργίας VLAN"
  1786. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1708
  1787. msgid "Enable WPS pushbutton, requires WPA(2)-PSK/WPA3-SAE"
  1788. msgstr ""
  1789. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:955
  1790. msgid ""
  1791. "Enable downstream delegation of IPv6 prefixes available on this interface"
  1792. msgstr ""
  1793. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1704
  1794. msgid "Enable key reinstallation (KRACK) countermeasures"
  1795. msgstr ""
  1796. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:187
  1797. msgid "Enable learning and aging"
  1798. msgstr "Ένεργοποίηση learning and aging"
  1799. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:198
  1800. msgid "Enable mirroring of incoming packets"
  1801. msgstr ""
  1802. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:199
  1803. msgid "Enable mirroring of outgoing packets"
  1804. msgstr ""
  1805. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:715
  1806. msgid "Enable multicast fast leave"
  1807. msgstr ""
  1808. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:547
  1809. msgid "Enable multicast querier"
  1810. msgstr ""
  1811. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:679
  1812. msgid "Enable multicast support"
  1813. msgstr ""
  1814. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1437
  1815. msgid ""
  1816. "Enable packet steering across all CPUs. May help or hinder network speed."
  1817. msgstr ""
  1818. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:622
  1819. msgid "Enable promiscuous mode"
  1820. msgstr ""
  1821. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:71
  1822. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:66
  1823. msgid "Enable rx checksum"
  1824. msgstr ""
  1825. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:89
  1826. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:94
  1827. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:91
  1828. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:96
  1829. msgid "Enable support for multicast traffic (optional)."
  1830. msgstr ""
  1831. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:83
  1832. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:88
  1833. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:67
  1834. msgid "Enable the DF (Don't Fragment) flag of the encapsulating packets."
  1835. msgstr ""
  1836. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:894
  1837. msgid "Enable this network"
  1838. msgstr ""
  1839. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:75
  1840. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:70
  1841. msgid "Enable tx checksum"
  1842. msgstr ""
  1843. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:699
  1844. msgid "Enable unicast flooding"
  1845. msgstr ""
  1846. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:243
  1847. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:352
  1848. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:66
  1849. msgid "Enabled"
  1850. msgstr "Ενεργοποιήθηκε"
  1851. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:538
  1852. msgid "Enables IGMP snooping on this bridge"
  1853. msgstr ""
  1854. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1503
  1855. msgid ""
  1856. "Enables fast roaming among access points that belong to the same Mobility "
  1857. "Domain"
  1858. msgstr ""
  1859. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:518
  1860. msgid "Enables the Spanning Tree Protocol on this bridge"
  1861. msgstr ""
  1862. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:59
  1863. msgid "Encapsulation limit"
  1864. msgstr ""
  1865. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1470
  1866. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1528
  1867. msgid "Encapsulation mode"
  1868. msgstr "Λειτουργία ενθυλάκωσης"
  1869. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:159
  1870. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:183
  1871. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1189
  1872. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1736
  1873. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:144
  1874. msgid "Encryption"
  1875. msgstr "Κρυπτογράφηση"
  1876. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:156
  1877. msgid "Endpoint Host"
  1878. msgstr ""
  1879. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:160
  1880. msgid "Endpoint Port"
  1881. msgstr ""
  1882. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:684
  1883. msgid "Enforce IGMPv1"
  1884. msgstr ""
  1885. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:685
  1886. msgid "Enforce IGMPv2"
  1887. msgstr ""
  1888. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:686
  1889. msgid "Enforce IGMPv3"
  1890. msgstr ""
  1891. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:691
  1892. msgid "Enforce MLD version 1"
  1893. msgstr ""
  1894. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:692
  1895. msgid "Enforce MLD version 2"
  1896. msgstr ""
  1897. #: modules/luci-compat/luasrc/view/cbi/dropdown.htm:16
  1898. msgid "Enter custom value"
  1899. msgstr ""
  1900. #: modules/luci-compat/luasrc/view/cbi/dropdown.htm:16
  1901. msgid "Enter custom values"
  1902. msgstr ""
  1903. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:97
  1904. msgid "Erasing..."
  1905. msgstr "Διαγράφεται..."
  1906. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:103
  1907. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:104
  1908. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:105
  1909. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:106
  1910. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:107
  1911. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:176
  1912. msgid "Error"
  1913. msgstr "Σφάλμα"
  1914. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:29
  1915. msgid "Errored seconds (ES)"
  1916. msgstr ""
  1917. #: modules/luci-base/htdocs/luci-static/resources/network.js:3004
  1918. #: modules/luci-compat/luasrc/model/network.lua:1433
  1919. msgid "Ethernet Adapter"
  1920. msgstr "Προσαρμογέας Ethernet"
  1921. #: modules/luci-base/htdocs/luci-static/resources/network.js:2995
  1922. #: modules/luci-compat/luasrc/model/network.lua:1423
  1923. msgid "Ethernet Switch"
  1924. msgstr "Ethernet Switch"
  1925. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:270
  1926. msgid "Every 30 seconds (slow, 0)"
  1927. msgstr ""
  1928. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:271
  1929. msgid "Every second (fast, 1)"
  1930. msgstr ""
  1931. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:406
  1932. msgid "Exclude interfaces"
  1933. msgstr ""
  1934. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:356
  1935. msgid "Existing device"
  1936. msgstr ""
  1937. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:247
  1938. msgid "Expand hosts"
  1939. msgstr ""
  1940. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:972
  1941. msgid "Expecting a hexadecimal assignment hint"
  1942. msgstr ""
  1943. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:18
  1944. msgid "Expecting a valid IPv4 address"
  1945. msgstr ""
  1946. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:18
  1947. msgid "Expecting a valid IPv6 address"
  1948. msgstr ""
  1949. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:28
  1950. msgid "Expecting two priority values separated by a colon"
  1951. msgstr ""
  1952. #: modules/luci-base/htdocs/luci-static/resources/validation.js:64
  1953. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:73
  1954. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:79
  1955. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:107
  1956. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:121
  1957. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:125
  1958. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:129
  1959. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:132
  1960. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:136
  1961. msgid "Expecting: %s"
  1962. msgstr ""
  1963. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:48
  1964. msgid "Expecting: non-empty value"
  1965. msgstr ""
  1966. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:50
  1967. msgid "Expires"
  1968. msgstr "Λήγει"
  1969. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:679
  1970. #, fuzzy
  1971. msgid ""
  1972. "Expiry time of leased addresses, minimum is 2 minutes (<code>2m</code>)."
  1973. msgstr ""
  1974. "Ο ελάχιστος χρόνος λήξεως των διευθύνσεων lease είναι 2 λεπτά (<code>2m</"
  1975. "code>)."
  1976. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:19
  1977. msgid "External"
  1978. msgstr ""
  1979. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1554
  1980. msgid "External R0 Key Holder List"
  1981. msgstr ""
  1982. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1558
  1983. msgid "External R1 Key Holder List"
  1984. msgstr ""
  1985. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:153
  1986. msgid "External system log server"
  1987. msgstr "Εξωτερικός εξυπηρετητής καταγραφής συστήματος"
  1988. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:158
  1989. msgid "External system log server port"
  1990. msgstr ""
  1991. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:163
  1992. msgid "External system log server protocol"
  1993. msgstr ""
  1994. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:79
  1995. msgid "Extra SSH command options"
  1996. msgstr ""
  1997. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:68
  1998. msgid "Extra pppd options"
  1999. msgstr ""
  2000. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:66
  2001. msgid "Extra sstpc options"
  2002. msgstr ""
  2003. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1528
  2004. msgid "FT over DS"
  2005. msgstr ""
  2006. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1529
  2007. msgid "FT over the Air"
  2008. msgstr ""
  2009. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1526
  2010. msgid "FT protocol"
  2011. msgstr ""
  2012. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:87
  2013. msgid "Failed to change the system password."
  2014. msgstr ""
  2015. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4145
  2016. msgid "Failed to confirm apply within %ds, waiting for rollback…"
  2017. msgstr ""
  2018. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:37
  2019. msgid "Failed to execute \"/etc/init.d/%s %s\" action: %s"
  2020. msgstr ""
  2021. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2694
  2022. msgid "File"
  2023. msgstr "Αρχείο"
  2024. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2641
  2025. msgid "File not accessible"
  2026. msgstr ""
  2027. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2832
  2028. msgid "Filename"
  2029. msgstr ""
  2030. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:381
  2031. msgid "Filename of the boot image advertised to clients"
  2032. msgstr "Όνομα αρχείου της εικόνας εκκίνησης που διαφημίζετε στους πελάτες"
  2033. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:191
  2034. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:314
  2035. msgid "Filesystem"
  2036. msgstr "Σύστημα Αρχείων"
  2037. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:213
  2038. msgid "Filter private"
  2039. msgstr "Φιλτράρισμα ιδιωτικών"
  2040. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:218
  2041. msgid "Filter useless"
  2042. msgstr "Φιλτράρισμα άχρηστων"
  2043. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:388
  2044. msgid "Filtering for all slaves, no validation"
  2045. msgstr ""
  2046. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:389
  2047. msgid "Filtering for all slaves, validation only for active slave"
  2048. msgstr ""
  2049. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:390
  2050. msgid "Filtering for all slaves, validation only for backup slaves"
  2051. msgstr ""
  2052. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:65
  2053. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:23
  2054. msgid "Finalizing failed"
  2055. msgstr ""
  2056. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:150
  2057. msgid ""
  2058. "Find all currently attached filesystems and swap and replace configuration "
  2059. "with defaults based on what was detected"
  2060. msgstr ""
  2061. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:877
  2062. msgid "Find and join network"
  2063. msgstr "Εύρεση και σύνδεση σε δίκτυο"
  2064. #: modules/luci-compat/luasrc/view/cbi/delegator.htm:9
  2065. msgid "Finish"
  2066. msgstr "Τέλος"
  2067. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:15
  2068. msgid "Firewall"
  2069. msgstr "Τείχος Προστασίας"
  2070. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:97
  2071. msgid "Firewall Mark"
  2072. msgstr "Σημάδι τείχους προστασίας"
  2073. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:482
  2074. msgid "Firewall Settings"
  2075. msgstr "Ρυθμίσεις Τείχους Προστασίας"
  2076. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:326
  2077. msgid "Firewall Status"
  2078. msgstr "Κατάσταση Τείχους Προστασίας"
  2079. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1487
  2080. msgid "Firmware File"
  2081. msgstr ""
  2082. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:57
  2083. msgid "Firmware Version"
  2084. msgstr "Έκδοση Υλικολογισμικού"
  2085. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:327
  2086. msgid "Fixed source port for outbound DNS queries"
  2087. msgstr ""
  2088. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:281
  2089. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:419
  2090. msgid "Flash image..."
  2091. msgstr "Φλασάρισμα εικόνας..."
  2092. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:277
  2093. msgid "Flash image?"
  2094. msgstr ""
  2095. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:409
  2096. msgid "Flash new firmware image"
  2097. msgstr "Φλασάρισμα νέας εικόνας υλικολογισμικού"
  2098. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:354
  2099. msgid "Flash operations"
  2100. msgstr "Λειτουργίες φλασάρισματος"
  2101. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:286
  2102. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:288
  2103. msgid "Flashing…"
  2104. msgstr ""
  2105. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:686
  2106. msgid "Force"
  2107. msgstr "Επιβολή"
  2108. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:970
  2109. msgid "Force 40MHz mode"
  2110. msgstr ""
  2111. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1230
  2112. msgid "Force CCMP (AES)"
  2113. msgstr "Επιβολή CCMP (AES)"
  2114. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:686
  2115. msgid "Force DHCP on this network even if another server is detected."
  2116. msgstr ""
  2117. "Επιβολή DHCP σε αυτό το δίκτυο ακόμα κι αν έχει εντοπιστεί άλλος "
  2118. "εξυπηρετητής."
  2119. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:682
  2120. msgid "Force IGMP version"
  2121. msgstr ""
  2122. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:689
  2123. msgid "Force MLD version"
  2124. msgstr ""
  2125. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1231
  2126. msgid "Force TKIP"
  2127. msgstr "Επιβολή TKIP"
  2128. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1232
  2129. msgid "Force TKIP and CCMP (AES)"
  2130. msgstr "Επιβολή TKIP και CCMP (AES)"
  2131. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1215
  2132. msgid "Force link"
  2133. msgstr ""
  2134. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:255
  2135. msgid ""
  2136. "Force upgrade: Select 'Force upgrade' to flash the image even if the image "
  2137. "format check fails. Use only if you are sure that the firmware is correct "
  2138. "and meant for your device!"
  2139. msgstr ""
  2140. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:90
  2141. msgid "Force use of NAT-T"
  2142. msgstr ""
  2143. #: modules/luci-base/luasrc/view/csrftoken.htm:8
  2144. msgid "Form token mismatch"
  2145. msgstr ""
  2146. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:902
  2147. msgid ""
  2148. "Forward <abbr title=\"Neighbour Discovery Protocol\">NDP</abbr> <abbr title="
  2149. "\"Neighbour Solicitation, Type 135\">NS</abbr> and <abbr title=\"Neighbour "
  2150. "Advertisement, Type 136\">NA</abbr> messages between the designated master "
  2151. "interface and downstream interfaces."
  2152. msgstr ""
  2153. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:770
  2154. msgid ""
  2155. "Forward <abbr title=\"Router Advertisement, ICMPv6 Type 134\">RA</abbr> "
  2156. "messages received on the designated master interface to downstream "
  2157. "interfaces."
  2158. msgstr ""
  2159. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:164
  2160. msgid "Forward DHCP traffic"
  2161. msgstr "Προώθηση κίνησης DHCP"
  2162. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:874
  2163. msgid ""
  2164. "Forward DHCPv6 messages between the designated master interface and "
  2165. "downstream interfaces."
  2166. msgstr ""
  2167. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:28
  2168. msgid "Forward Error Correction Seconds (FECS)"
  2169. msgstr ""
  2170. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:161
  2171. msgid "Forward broadcast traffic"
  2172. msgstr "Προώθηση κίνησης broadcast"
  2173. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:527
  2174. msgid "Forward delay"
  2175. msgstr ""
  2176. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:997
  2177. msgid "Forward mesh peer traffic"
  2178. msgstr ""
  2179. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:711
  2180. msgid "Forward multicast packets as unicast packets on this device."
  2181. msgstr ""
  2182. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1535
  2183. msgid "Forwarding mode"
  2184. msgstr "Μέθοδος προώθησης"
  2185. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:962
  2186. msgid "Fragmentation Threshold"
  2187. msgstr "Όριο Κατακερµατισµού"
  2188. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:110
  2189. msgid ""
  2190. "Further information about WireGuard interfaces and peers at <a href='http://"
  2191. "wireguard.com'>wireguard.com</a>."
  2192. msgstr ""
  2193. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:128
  2194. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:184
  2195. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:164
  2196. msgid "GHz"
  2197. msgstr "GHz"
  2198. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:92
  2199. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:78
  2200. msgid "GPRS only"
  2201. msgstr ""
  2202. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:10
  2203. msgid "GRE tunnel over IPv4"
  2204. msgstr ""
  2205. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:10
  2206. msgid "GRE tunnel over IPv6"
  2207. msgstr ""
  2208. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:10
  2209. msgid "GRETAP tunnel over IPv4"
  2210. msgstr ""
  2211. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:10
  2212. msgid "GRETAP tunnel over IPv6"
  2213. msgstr ""
  2214. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:44
  2215. msgid "Gateway"
  2216. msgstr "Πύλη"
  2217. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:36
  2218. msgid "Gateway Ports"
  2219. msgstr "Θύρες πύλης"
  2220. #: modules/luci-base/htdocs/luci-static/resources/network.js:11
  2221. #: modules/luci-compat/luasrc/model/network.lua:29
  2222. msgid "Gateway address is invalid"
  2223. msgstr ""
  2224. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:161
  2225. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:477
  2226. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:24
  2227. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:240
  2228. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:108
  2229. msgid "General Settings"
  2230. msgstr "Γενικές ρυθμίσεις"
  2231. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:632
  2232. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1522
  2233. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:922
  2234. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:984
  2235. msgid "General Setup"
  2236. msgstr "Γενικές ρυθμίσεις"
  2237. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:336
  2238. msgid "General device options"
  2239. msgstr ""
  2240. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:150
  2241. msgid "Generate Config"
  2242. msgstr ""
  2243. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:66
  2244. msgid "Generate Key"
  2245. msgstr ""
  2246. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1532
  2247. msgid "Generate PMK locally"
  2248. msgstr ""
  2249. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:366
  2250. msgid "Generate archive"
  2251. msgstr ""
  2252. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:79
  2253. msgid "Given password confirmation did not match, password not changed!"
  2254. msgstr ""
  2255. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:146
  2256. msgid "Global Settings"
  2257. msgstr ""
  2258. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1430
  2259. msgid "Global network options"
  2260. msgstr ""
  2261. #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:57
  2262. #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215
  2263. #: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:62
  2264. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:82
  2265. msgid "Go to password configuration..."
  2266. msgstr ""
  2267. #: modules/luci-base/htdocs/luci-static/resources/form.js:2587
  2268. #: modules/luci-base/htdocs/luci-static/resources/form.js:3361
  2269. #: modules/luci-compat/luasrc/view/cbi/full_valueheader.htm:4
  2270. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:58
  2271. msgid "Go to relevant configuration page"
  2272. msgstr "Μετάβαση στη σχετική σελίδα ρυθμίσεων"
  2273. #: modules/luci-mod-network/root/usr/share/rpcd/acl.d/luci-mod-network.json:37
  2274. msgid "Grant access to DHCP configuration"
  2275. msgstr ""
  2276. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:111
  2277. msgid "Grant access to DHCP status display"
  2278. msgstr ""
  2279. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:120
  2280. msgid "Grant access to DSL status display"
  2281. msgstr ""
  2282. #: protocols/luci-proto-openconnect/root/usr/share/rpcd/acl.d/luci-openconnect.json:3
  2283. msgid "Grant access to LuCI OpenConnect procedures"
  2284. msgstr ""
  2285. #: protocols/luci-proto-wireguard/root/usr/share/rpcd/acl.d/luci-wireguard.json:3
  2286. msgid "Grant access to LuCI Wireguard procedures"
  2287. msgstr ""
  2288. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:19
  2289. msgid "Grant access to SSH configuration"
  2290. msgstr ""
  2291. #: modules/luci-base/root/usr/share/rpcd/acl.d/luci-base.json:12
  2292. msgid "Grant access to basic LuCI procedures"
  2293. msgstr ""
  2294. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:64
  2295. msgid "Grant access to crontab configuration"
  2296. msgstr ""
  2297. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:69
  2298. msgid "Grant access to firewall status"
  2299. msgstr ""
  2300. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:116
  2301. msgid "Grant access to flash operations"
  2302. msgstr ""
  2303. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:95
  2304. msgid "Grant access to main status display"
  2305. msgstr ""
  2306. #: protocols/luci-proto-modemmanager/root/usr/share/rpcd/acl.d/luci-proto-modemmanager.json:3
  2307. msgid "Grant access to mmcli"
  2308. msgstr ""
  2309. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:84
  2310. msgid "Grant access to mount configuration"
  2311. msgstr ""
  2312. #: modules/luci-mod-network/root/usr/share/rpcd/acl.d/luci-mod-network.json:3
  2313. msgid "Grant access to network configuration"
  2314. msgstr ""
  2315. #: modules/luci-mod-network/root/usr/share/rpcd/acl.d/luci-mod-network.json:50
  2316. msgid "Grant access to network diagnostic tools"
  2317. msgstr ""
  2318. #: modules/luci-base/root/usr/share/rpcd/acl.d/luci-base.json:36
  2319. msgid "Grant access to network status information"
  2320. msgstr ""
  2321. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:13
  2322. msgid "Grant access to process status"
  2323. msgstr ""
  2324. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:3
  2325. msgid "Grant access to realtime statistics"
  2326. msgstr ""
  2327. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:42
  2328. msgid "Grant access to startup configuration"
  2329. msgstr ""
  2330. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:3
  2331. msgid "Grant access to system configuration"
  2332. msgstr ""
  2333. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:30
  2334. msgid "Grant access to system logs"
  2335. msgstr ""
  2336. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:47
  2337. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:60
  2338. msgid "Grant access to the system route status"
  2339. msgstr ""
  2340. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:129
  2341. msgid "Grant access to wireless status display"
  2342. msgstr ""
  2343. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:66
  2344. msgid "Group Password"
  2345. msgstr ""
  2346. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:22
  2347. msgid "Guest"
  2348. msgstr ""
  2349. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:81
  2350. msgid "HE.net password"
  2351. msgstr ""
  2352. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:73
  2353. msgid "HE.net username"
  2354. msgstr ""
  2355. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:46
  2356. msgid "Hang Up"
  2357. msgstr "Κρέμασμα"
  2358. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:33
  2359. msgid "Header Error Code Errors (HEC)"
  2360. msgstr ""
  2361. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/heartbeat.js:5
  2362. msgid "Heartbeat interval (kernel: heartbeat)"
  2363. msgstr ""
  2364. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:522
  2365. msgid "Hello interval"
  2366. msgstr ""
  2367. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:100
  2368. msgid ""
  2369. "Here you can configure the basic aspects of your device like its hostname or "
  2370. "the timezone."
  2371. msgstr ""
  2372. "Εδώ μπορείτε να παραμετροποιήσετε βασικές πλευρές της συσκευής σας όπως το "
  2373. "όνομα υπολογιστή ή τη ζώνη ώρας."
  2374. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1138
  2375. msgid "Hide <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>"
  2376. msgstr "Κρυφό <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>"
  2377. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:293
  2378. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:332
  2379. msgid "Hide empty chains"
  2380. msgstr ""
  2381. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:955
  2382. msgid "High"
  2383. msgstr ""
  2384. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:55
  2385. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2150
  2386. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:125
  2387. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:230
  2388. msgid "Host"
  2389. msgstr ""
  2390. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/hosts.js:22
  2391. msgid "Host entries"
  2392. msgstr "Καταχωρήσεις Υπολογιστών"
  2393. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:171
  2394. msgid "Host expiry timeout"
  2395. msgstr ""
  2396. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:31
  2397. msgid "Host-<abbr title=\"Internet Protocol Address\">IP</abbr> or Network"
  2398. msgstr ""
  2399. "<abbr title=\"Internet Protocol Address\">IP</abbr> Υπολογιστή ή Δικτύου"
  2400. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:88
  2401. msgid "Host-Uniq tag content"
  2402. msgstr ""
  2403. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:36
  2404. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:419
  2405. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/hosts.js:27
  2406. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:54
  2407. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:86
  2408. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:121
  2409. msgid "Hostname"
  2410. msgstr "Όνομα κεντρικού υπολογιστή"
  2411. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:22
  2412. msgid "Hostname to send when requesting DHCP"
  2413. msgstr ""
  2414. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/hosts.js:20
  2415. #: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:63
  2416. msgid "Hostnames"
  2417. msgstr "Ονόματα Υπολογιστών"
  2418. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:276
  2419. msgid "Human-readable counters"
  2420. msgstr ""
  2421. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:24
  2422. msgid "Hybrid"
  2423. msgstr ""
  2424. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:53
  2425. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:48
  2426. msgid "ID used to uniquely identify the VXLAN"
  2427. msgstr ""
  2428. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:206
  2429. msgid "IEEE 802.3ad Dynamic link aggregation (802.3ad, 4)"
  2430. msgstr ""
  2431. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:75
  2432. msgid "IKE DH Group"
  2433. msgstr ""
  2434. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:83
  2435. msgid "IP Addresses"
  2436. msgstr ""
  2437. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:81
  2438. msgid "IP Protocol"
  2439. msgstr ""
  2440. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:115
  2441. msgid "IP Type"
  2442. msgstr ""
  2443. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/hosts.js:31
  2444. msgid "IP address"
  2445. msgstr "Διεύθυνση IP"
  2446. #: modules/luci-base/htdocs/luci-static/resources/network.js:10
  2447. #: modules/luci-compat/luasrc/model/network.lua:28
  2448. msgid "IP address is invalid"
  2449. msgstr ""
  2450. #: modules/luci-base/htdocs/luci-static/resources/network.js:13
  2451. #: modules/luci-compat/luasrc/model/network.lua:31
  2452. msgid "IP address is missing"
  2453. msgstr ""
  2454. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:79
  2455. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:102
  2456. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:86
  2457. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:87
  2458. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:88
  2459. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:89
  2460. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:90
  2461. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:83
  2462. msgid "IPv4"
  2463. msgstr "IPv4"
  2464. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:351
  2465. msgid "IPv4 Firewall"
  2466. msgstr "IPv4 Τείχος Προστασίας"
  2467. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:29
  2468. msgid "IPv4 Upstream"
  2469. msgstr ""
  2470. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:178
  2471. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:37
  2472. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:87
  2473. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:155
  2474. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:162
  2475. msgid "IPv4 address"
  2476. msgstr "Διεύθυνση IPv4"
  2477. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:29
  2478. msgid "IPv4 assignment length"
  2479. msgstr ""
  2480. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:181
  2481. msgid "IPv4 broadcast"
  2482. msgstr ""
  2483. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:180
  2484. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:165
  2485. msgid "IPv4 gateway"
  2486. msgstr "Πύλη IPv4"
  2487. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:179
  2488. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:168
  2489. msgid "IPv4 netmask"
  2490. msgstr "Μάσκα IPv4"
  2491. #: modules/luci-base/htdocs/luci-static/resources/validation.js:294
  2492. msgid "IPv4 network in address/netmask notation"
  2493. msgstr ""
  2494. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:117
  2495. msgid "IPv4 only"
  2496. msgstr "Μόνο IPv4"
  2497. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:52
  2498. msgid "IPv4 prefix"
  2499. msgstr ""
  2500. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:61
  2501. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:55
  2502. msgid "IPv4 prefix length"
  2503. msgstr ""
  2504. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:84
  2505. msgid "IPv4+IPv6"
  2506. msgstr ""
  2507. #: modules/luci-compat/luasrc/model/network/proto_ipip.lua:9
  2508. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:10
  2509. msgid "IPv4-in-IPv4 (RFC2003)"
  2510. msgstr ""
  2511. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:116
  2512. msgid "IPv4/IPv6 (both - defaults to IPv4)"
  2513. msgstr ""
  2514. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:80
  2515. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:103
  2516. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:91
  2517. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:92
  2518. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:93
  2519. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:94
  2520. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:95
  2521. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:96
  2522. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:97
  2523. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:98
  2524. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:99
  2525. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:100
  2526. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:85
  2527. msgid "IPv6"
  2528. msgstr "IPv6"
  2529. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:354
  2530. msgid "IPv6 Firewall"
  2531. msgstr "IPv6 Τείχος Προστασίας"
  2532. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:669
  2533. msgid "IPv6 MTU"
  2534. msgstr ""
  2535. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:206
  2536. msgid "IPv6 Neighbours"
  2537. msgstr ""
  2538. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:635
  2539. msgid "IPv6 RA Settings"
  2540. msgstr ""
  2541. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:634
  2542. msgid "IPv6 Settings"
  2543. msgstr ""
  2544. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1434
  2545. msgid "IPv6 ULA-Prefix"
  2546. msgstr ""
  2547. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:29
  2548. msgid "IPv6 Upstream"
  2549. msgstr ""
  2550. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:183
  2551. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:56
  2552. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:126
  2553. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:174
  2554. msgid "IPv6 address"
  2555. msgstr "Διεύθυνση IPv6"
  2556. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:963
  2557. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:27
  2558. msgid "IPv6 assignment hint"
  2559. msgstr ""
  2560. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:958
  2561. msgid "IPv6 assignment length"
  2562. msgstr ""
  2563. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:188
  2564. msgid "IPv6 gateway"
  2565. msgstr "Πύλη IPv6"
  2566. #: modules/luci-base/htdocs/luci-static/resources/validation.js:299
  2567. msgid "IPv6 network in address/netmask notation"
  2568. msgstr ""
  2569. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:118
  2570. msgid "IPv6 only"
  2571. msgstr "Μόνο IPv6"
  2572. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1007
  2573. msgid "IPv6 preference"
  2574. msgstr ""
  2575. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:53
  2576. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:59
  2577. msgid "IPv6 prefix"
  2578. msgstr ""
  2579. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:980
  2580. msgid "IPv6 prefix filter"
  2581. msgstr ""
  2582. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:57
  2583. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:63
  2584. msgid "IPv6 prefix length"
  2585. msgstr ""
  2586. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:192
  2587. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:57
  2588. msgid "IPv6 routed prefix"
  2589. msgstr ""
  2590. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1003
  2591. msgid "IPv6 suffix"
  2592. msgstr ""
  2593. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:51
  2594. msgid "IPv6 support"
  2595. msgstr ""
  2596. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:101
  2597. msgid "IPv6-PD"
  2598. msgstr ""
  2599. #: modules/luci-compat/luasrc/model/network/proto_6x4.lua:13
  2600. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:10
  2601. msgid "IPv6-in-IPv4 (RFC4213)"
  2602. msgstr "IPv6-in-IPv4 (RFC4213)"
  2603. #: modules/luci-compat/luasrc/model/network/proto_6x4.lua:17
  2604. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:9
  2605. msgid "IPv6-over-IPv4 (6rd)"
  2606. msgstr ""
  2607. #: modules/luci-compat/luasrc/model/network/proto_6x4.lua:15
  2608. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6to4.js:9
  2609. msgid "IPv6-over-IPv4 (6to4)"
  2610. msgstr ""
  2611. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1665
  2612. msgid "Identity"
  2613. msgstr "Ταυτότητα"
  2614. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:96
  2615. msgid "If checked, 1DES is enabled"
  2616. msgstr ""
  2617. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:51
  2618. msgid "If checked, adds \"+ipv6\" to the pppd options"
  2619. msgstr ""
  2620. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:93
  2621. msgid "If checked, encryption is disabled"
  2622. msgstr ""
  2623. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:980
  2624. msgid ""
  2625. "If set, downstream subnets are only allocated from the given IPv6 prefix "
  2626. "classes."
  2627. msgstr ""
  2628. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:254
  2629. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:360
  2630. msgid ""
  2631. "If specified, mount the device by its UUID instead of a fixed device node"
  2632. msgstr ""
  2633. "Αν οριστεί, προσάρτησε τη συσκευή με βάση το UUID της αντί για το "
  2634. "καθορισμένο όνομα της"
  2635. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:267
  2636. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:376
  2637. msgid ""
  2638. "If specified, mount the device by the partition label instead of a fixed "
  2639. "device node"
  2640. msgstr ""
  2641. "Αν οριστεί, προσάρτησε τη συσκευή με βάση την ετικέτα της αντί για το "
  2642. "καθορισμένο όνομα της"
  2643. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:919
  2644. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:64
  2645. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:111
  2646. msgid "If unchecked, no default route is configured"
  2647. msgstr ""
  2648. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:923
  2649. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:68
  2650. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:122
  2651. msgid "If unchecked, the advertised DNS server addresses are ignored"
  2652. msgstr ""
  2653. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:339
  2654. msgid ""
  2655. "If your physical memory is insufficient unused data can be temporarily "
  2656. "swapped to a swap-device resulting in a higher amount of usable <abbr title="
  2657. "\"Random Access Memory\">RAM</abbr>. Be aware that swapping data is a very "
  2658. "slow process as the swap-device cannot be accessed with the high datarates "
  2659. "of the <abbr title=\"Random Access Memory\">RAM</abbr>."
  2660. msgstr ""
  2661. "Αν η φυσική μνήμη δεν είναι αρκετή, μη-χρησιμοποιούμενα δεδομένα μπορούν "
  2662. "προσωρινά να εναλλάσσονται σε μία συσκευή swap με αποτέλεσμα περισσότερη "
  2663. "ενεργή <abbr title=\"Random Access Memory\">RAM</abbr>. Η εναλλαγή δεδομένων "
  2664. "είναι μία πολύ αργή διαδικασία αφού η συσκευή swap δεν μπορεί να "
  2665. "προσπελαστεί με τους υψηλούς ρυθμούς μεταφοράς δεδομένων που διαθέτει η "
  2666. "<abbr title=\"Random Access Memory\">RAM</abbr>."
  2667. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:197
  2668. msgid "Ignore <code>/etc/hosts</code>"
  2669. msgstr "Αγνόησε <code>/etc/hosts</code>"
  2670. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:666
  2671. msgid "Ignore interface"
  2672. msgstr "Αγνόησε διεπαφή"
  2673. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:185
  2674. msgid "Ignore resolve file"
  2675. msgstr "Αγνόησε αρχείο resolve"
  2676. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:417
  2677. msgid "Image"
  2678. msgstr ""
  2679. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:68
  2680. msgid "In"
  2681. msgstr "Είσοδος"
  2682. #: modules/luci-base/luasrc/view/csrftoken.htm:13
  2683. msgid ""
  2684. "In order to prevent unauthorized access to the system, your request has been "
  2685. "blocked. Click \"Continue »\" below to return to the previous page."
  2686. msgstr ""
  2687. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:125
  2688. msgid "In seconds"
  2689. msgstr ""
  2690. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:144
  2691. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:128
  2692. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:114
  2693. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:92
  2694. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:101
  2695. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:124
  2696. msgid "Inactivity timeout"
  2697. msgstr ""
  2698. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:267
  2699. msgid "Inbound:"
  2700. msgstr ""
  2701. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:100
  2702. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:105
  2703. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:102
  2704. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:107
  2705. msgid "Incoming checksum"
  2706. msgstr ""
  2707. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:92
  2708. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:97
  2709. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:94
  2710. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:99
  2711. msgid "Incoming key"
  2712. msgstr ""
  2713. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:102
  2714. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:107
  2715. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:104
  2716. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:109
  2717. msgid "Incoming serialization"
  2718. msgstr ""
  2719. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:173
  2720. msgid "Info"
  2721. msgstr "Πληροφορίες"
  2722. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:102
  2723. msgid "Information"
  2724. msgstr ""
  2725. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:456
  2726. msgid "Ingress QoS mapping"
  2727. msgstr ""
  2728. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:67
  2729. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:25
  2730. msgid "Initialization failure"
  2731. msgstr ""
  2732. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:77
  2733. msgid "Initscript"
  2734. msgstr "Σενάριο εκκίνησης"
  2735. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:111
  2736. msgid "Initscripts"
  2737. msgstr "Σενάρια Εκκίνησης"
  2738. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1649
  2739. msgid "Inner certificate constraint (Domain)"
  2740. msgstr ""
  2741. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1646
  2742. msgid "Inner certificate constraint (SAN)"
  2743. msgstr ""
  2744. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1643
  2745. msgid "Inner certificate constraint (Subject)"
  2746. msgstr ""
  2747. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1652
  2748. msgid "Inner certificate constraint (Wildcard)"
  2749. msgstr ""
  2750. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:300
  2751. msgid "Install protocol extensions..."
  2752. msgstr "Εγκατάσταση επεκτάσεων πρωτοκόλλου..."
  2753. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2018
  2754. msgid ""
  2755. "Instead of joining any network with a matching SSID, only connect to the "
  2756. "BSSID <code>%h</code>."
  2757. msgstr ""
  2758. #: modules/luci-compat/luasrc/view/cbi/map.htm:43
  2759. msgid "Insufficient permissions to read UCI configuration."
  2760. msgstr ""
  2761. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:27
  2762. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:157
  2763. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:176
  2764. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:17
  2765. msgid "Interface"
  2766. msgstr "Διεπαφή"
  2767. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:718
  2768. msgid "Interface \"%h\" is already marked as designated master."
  2769. msgstr ""
  2770. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:62
  2771. msgid "Interface %q device auto-migrated from %q to %q."
  2772. msgstr ""
  2773. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:980
  2774. msgid "Interface Configuration"
  2775. msgstr "Παραμετροποίηση Διεπαφής"
  2776. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:111
  2777. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:151
  2778. msgid "Interface has %d pending changes"
  2779. msgstr ""
  2780. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:92
  2781. msgid "Interface is disabled"
  2782. msgstr ""
  2783. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:65
  2784. msgid "Interface is marked for deletion"
  2785. msgstr ""
  2786. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:210
  2787. msgid "Interface is reconnecting..."
  2788. msgstr "Η διεπαφή επανασυνδέεται..."
  2789. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:194
  2790. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:204
  2791. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:210
  2792. msgid "Interface is shutting down..."
  2793. msgstr "Η διεπαφή απενεργοποιείται..."
  2794. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:285
  2795. msgid "Interface is starting..."
  2796. msgstr ""
  2797. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:288
  2798. msgid "Interface is stopping..."
  2799. msgstr ""
  2800. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1151
  2801. msgid "Interface name"
  2802. msgstr "Όνομα διεπαφής (Interface)"
  2803. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:123
  2804. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:304
  2805. msgid "Interface not present or not connected yet."
  2806. msgstr "Η διεπαφή δεν υπάρχει ή δεν έχει συνδεθεί ακόμη."
  2807. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:462
  2808. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:491
  2809. #: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:38
  2810. msgid "Interfaces"
  2811. msgstr "Διεπαφές"
  2812. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:20
  2813. msgid "Internal"
  2814. msgstr ""
  2815. #: modules/luci-base/luasrc/view/error500.htm:8
  2816. msgid "Internal Server Error"
  2817. msgstr ""
  2818. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:283
  2819. msgid "Interval For Sending Learning Packets"
  2820. msgstr ""
  2821. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:556
  2822. msgid ""
  2823. "Interval in centiseconds between multicast general queries. By varying the "
  2824. "value, an administrator may tune the number of IGMP messages on the subnet; "
  2825. "larger values cause IGMP Queries to be sent less often"
  2826. msgstr ""
  2827. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:522
  2828. msgid "Interval in seconds for STP hello packets"
  2829. msgstr ""
  2830. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:192
  2831. #: modules/luci-compat/luasrc/view/cbi/tsection.htm:42
  2832. msgid "Invalid"
  2833. msgstr "Άκυρη τιμή εισόδου"
  2834. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:19
  2835. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:22
  2836. msgid "Invalid Base64 key string"
  2837. msgstr ""
  2838. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:78
  2839. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:83
  2840. msgid "Invalid TOS value, expected 00..FF or inherit"
  2841. msgstr ""
  2842. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:83
  2843. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:88
  2844. msgid "Invalid Traffic Class value, expected 00..FF or inherit"
  2845. msgstr ""
  2846. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:285
  2847. msgid "Invalid VLAN ID given! Only IDs between %d and %d are allowed."
  2848. msgstr ""
  2849. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:294
  2850. msgid "Invalid VLAN ID given! Only unique IDs are allowed"
  2851. msgstr ""
  2852. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:403
  2853. msgid "Invalid argument"
  2854. msgstr ""
  2855. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:46
  2856. msgid ""
  2857. "Invalid bearer list. Possibly too many bearers created. This protocol "
  2858. "supports one and only one bearer."
  2859. msgstr ""
  2860. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:402
  2861. msgid "Invalid command"
  2862. msgstr ""
  2863. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:101
  2864. msgid "Invalid hexadecimal value"
  2865. msgstr ""
  2866. #: modules/luci-base/luasrc/view/sysauth.htm:12
  2867. msgid "Invalid username and/or password! Please try again."
  2868. msgstr "Άκυρο όνομα χρήστη και/ή κωδικός πρόσβασης! Παρακαλώ προσπαθήστε ξανά."
  2869. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1147
  2870. msgid "Isolate Clients"
  2871. msgstr ""
  2872. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:231
  2873. #, fuzzy
  2874. msgid ""
  2875. "It appears that you are trying to flash an image that does not fit into the "
  2876. "flash memory, please verify the image file!"
  2877. msgstr ""
  2878. "Φαίνεται πως προσπαθείτε να φλασάρετε μια εικόνα που δεν χωράει στην μνήμη "
  2879. "flash, παρακαλώ επιβεβαιώστε το αρχείο εικόνας!"
  2880. #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:64
  2881. #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:222
  2882. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:72
  2883. msgid "JavaScript required!"
  2884. msgstr "Απαιτείται JavaScript!"
  2885. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1816
  2886. msgid "Join Network"
  2887. msgstr ""
  2888. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1750
  2889. msgid "Join Network: Wireless Scan"
  2890. msgstr ""
  2891. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2026
  2892. msgid "Joining Network: %q"
  2893. msgstr ""
  2894. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:223
  2895. msgid "Keep settings and retain the current configuration"
  2896. msgstr ""
  2897. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/dmesg.js:20
  2898. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:51
  2899. msgid "Kernel Log"
  2900. msgstr "Καταγραφή Πυρήνα"
  2901. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:58
  2902. msgid "Kernel Version"
  2903. msgstr "Έκδοση Πυρήνα"
  2904. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1441
  2905. msgid "Key"
  2906. msgstr "Κλειδί"
  2907. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1469
  2908. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1470
  2909. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1471
  2910. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1472
  2911. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1484
  2912. msgid "Key #%d"
  2913. msgstr "Κλειδί #%d"
  2914. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:92
  2915. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:97
  2916. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:94
  2917. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:99
  2918. msgid "Key for incoming packets (optional)."
  2919. msgstr ""
  2920. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:96
  2921. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:101
  2922. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:98
  2923. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:103
  2924. msgid "Key for outgoing packets (optional)."
  2925. msgstr ""
  2926. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:54
  2927. msgid "Kill"
  2928. msgstr "Σκότωμα"
  2929. #: modules/luci-compat/luasrc/model/network/proto_ppp.lua:21
  2930. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:10
  2931. msgid "L2TP"
  2932. msgstr ""
  2933. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:40
  2934. msgid "L2TP Server"
  2935. msgstr ""
  2936. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:267
  2937. msgid "LACPDU Packets"
  2938. msgstr ""
  2939. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:118
  2940. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:102
  2941. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:88
  2942. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:62
  2943. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:75
  2944. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:98
  2945. msgid "LCP echo failure threshold"
  2946. msgstr ""
  2947. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:131
  2948. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:115
  2949. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:101
  2950. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:75
  2951. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:88
  2952. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:111
  2953. msgid "LCP echo interval"
  2954. msgstr ""
  2955. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:101
  2956. msgid "LED Configuration"
  2957. msgstr ""
  2958. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1529
  2959. msgid "LLC"
  2960. msgstr "LLC"
  2961. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:267
  2962. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:376
  2963. msgid "Label"
  2964. msgstr "Ετικέτα"
  2965. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:211
  2966. msgid "Language"
  2967. msgstr "Γλώσσα"
  2968. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:111
  2969. msgid "Language and Style"
  2970. msgstr ""
  2971. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:575
  2972. msgid "Last member interval"
  2973. msgstr ""
  2974. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:23
  2975. msgid "Latency"
  2976. msgstr ""
  2977. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:21
  2978. msgid "Leaf"
  2979. msgstr ""
  2980. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:707
  2981. msgid "Learn"
  2982. msgstr ""
  2983. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:906
  2984. msgid "Learn routes"
  2985. msgstr ""
  2986. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:522
  2987. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:679
  2988. msgid "Lease time"
  2989. msgstr ""
  2990. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:39
  2991. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:58
  2992. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:89
  2993. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:128
  2994. msgid "Lease time remaining"
  2995. msgstr "Υπόλοιπο χρόνου Lease"
  2996. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:181
  2997. msgid "Leasefile"
  2998. msgstr "Αρχείο Leases"
  2999. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:41
  3000. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:47
  3001. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:50
  3002. msgid "Leave empty to autodetect"
  3003. msgstr "Αφήστε το κενό για να γίνει αυτόματη ανίχνευση"
  3004. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:40
  3005. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:39
  3006. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6to4.js:39
  3007. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:45
  3008. msgid "Leave empty to use the current WAN address"
  3009. msgstr "Αφήστε το κενό για να γίνει χρήση της τρέχουσας διεύθυνσης WAN"
  3010. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:943
  3011. msgid ""
  3012. "Legacy or badly behaving devices may require legacy 802.11b rates to "
  3013. "interoperate. Airtime efficiency may be significantly reduced where these "
  3014. "are used. It is recommended to not allow 802.11b rates where possible."
  3015. msgstr ""
  3016. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4053
  3017. msgid "Legend:"
  3018. msgstr "Υπόμνημα:"
  3019. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:674
  3020. msgid "Limit"
  3021. msgstr "Όριο"
  3022. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:389
  3023. msgid "Limit DNS service to subnets interfaces on which we are serving DNS."
  3024. msgstr ""
  3025. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:402
  3026. msgid "Limit listening to these interfaces, and loopback."
  3027. msgstr ""
  3028. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:24
  3029. msgid "Line Attenuation (LATN)"
  3030. msgstr ""
  3031. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:18
  3032. msgid "Line Mode"
  3033. msgstr ""
  3034. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:17
  3035. msgid "Line State"
  3036. msgstr ""
  3037. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:19
  3038. msgid "Line Uptime"
  3039. msgstr ""
  3040. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:123
  3041. msgid "Link Aggregation (Channel Bonding)"
  3042. msgstr ""
  3043. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:348
  3044. msgid "Link Monitoring"
  3045. msgstr ""
  3046. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:23
  3047. msgid "Link On"
  3048. msgstr "Αναμμένο με Ζεύξη"
  3049. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:278
  3050. msgid ""
  3051. "List of <abbr title=\"Domain Name System\">DNS</abbr> servers to forward "
  3052. "requests to"
  3053. msgstr ""
  3054. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1554
  3055. msgid ""
  3056. "List of R0KHs in the same Mobility Domain. <br />Format: MAC-address,NAS-"
  3057. "Identifier,128-bit key as hex string. <br />This list is used to map R0KH-ID "
  3058. "(NAS Identifier) to a destination MAC address when requesting PMK-R1 key "
  3059. "from the R0KH that the STA used during the Initial Mobility Domain "
  3060. "Association."
  3061. msgstr ""
  3062. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1558
  3063. msgid ""
  3064. "List of R1KHs in the same Mobility Domain. <br />Format: MAC-address,R1KH-ID "
  3065. "as 6 octets with colons,128-bit key as hex string. <br />This list is used "
  3066. "to map R1KH-ID to a destination MAC address when sending PMK-R1 key from the "
  3067. "R0KH. This is also the list of authorized R1KHs in the MD that can request "
  3068. "PMK-R1 keys."
  3069. msgstr ""
  3070. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:82
  3071. msgid "List of SSH key files for auth"
  3072. msgstr ""
  3073. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:308
  3074. msgid "List of domains to allow RFC1918 responses for"
  3075. msgstr ""
  3076. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:286
  3077. msgid "List of domains to force to an IP address."
  3078. msgstr ""
  3079. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:267
  3080. msgid "List of hosts that supply bogus NX domain results"
  3081. msgstr ""
  3082. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:401
  3083. msgid "Listen Interfaces"
  3084. msgstr ""
  3085. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:78
  3086. msgid "Listen Port"
  3087. msgstr "Θύρα ακρόασης"
  3088. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:17
  3089. msgid "Listen only on the given interface or, if unspecified, on all"
  3090. msgstr ""
  3091. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:318
  3092. msgid "Listening port for inbound DNS queries"
  3093. msgstr ""
  3094. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:100
  3095. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:54
  3096. msgid "Load"
  3097. msgstr "Φόρτος"
  3098. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:61
  3099. msgid "Load Average"
  3100. msgstr "Μέσος όρος φόρτου"
  3101. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2959
  3102. msgid "Loading directory contents…"
  3103. msgstr ""
  3104. #: modules/luci-base/htdocs/luci-static/resources/luci.js:1949
  3105. #: modules/luci-base/luasrc/view/view.htm:4
  3106. #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:12
  3107. msgid "Loading view…"
  3108. msgstr ""
  3109. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:870
  3110. msgid "Local"
  3111. msgstr ""
  3112. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:77
  3113. msgid "Local IP address"
  3114. msgstr ""
  3115. #: modules/luci-base/htdocs/luci-static/resources/network.js:12
  3116. #: modules/luci-compat/luasrc/model/network.lua:30
  3117. msgid "Local IP address is invalid"
  3118. msgstr ""
  3119. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:86
  3120. msgid "Local IP address to assign"
  3121. msgstr ""
  3122. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:46
  3123. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:46
  3124. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:44
  3125. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:40
  3126. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:39
  3127. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6to4.js:39
  3128. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:151
  3129. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:44
  3130. msgid "Local IPv4 address"
  3131. msgstr "Τοπική διεύθυνση IPv4"
  3132. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:884
  3133. msgid "Local IPv6 DNS server"
  3134. msgstr ""
  3135. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:46
  3136. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:53
  3137. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:54
  3138. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:45
  3139. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:44
  3140. msgid "Local IPv6 address"
  3141. msgstr "Τοπική διεύθυνση IPv6"
  3142. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388
  3143. msgid "Local Service Only"
  3144. msgstr ""
  3145. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:115
  3146. msgid "Local Startup"
  3147. msgstr ""
  3148. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:59
  3149. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:117
  3150. msgid "Local Time"
  3151. msgstr "Τοπική Ώρα"
  3152. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:981
  3153. msgid "Local ULA"
  3154. msgstr ""
  3155. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:243
  3156. msgid "Local domain"
  3157. msgstr ""
  3158. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:240
  3159. msgid ""
  3160. "Local domain specification. Names matching this domain are never forwarded "
  3161. "and are resolved from DHCP or hosts files only"
  3162. msgstr ""
  3163. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:244
  3164. msgid "Local domain suffix appended to DHCP names and hosts file entries"
  3165. msgstr ""
  3166. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:239
  3167. msgid "Local server"
  3168. msgstr "Τοπικός εξυπηρετητής"
  3169. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:224
  3170. msgid ""
  3171. "Localise hostname depending on the requesting subnet if multiple IPs are "
  3172. "available"
  3173. msgstr ""
  3174. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:223
  3175. msgid "Localise queries"
  3176. msgstr "Τοπικά ερωτήματα"
  3177. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2018
  3178. msgid "Lock to BSSID"
  3179. msgstr ""
  3180. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:171
  3181. msgid "Log output level"
  3182. msgstr "Επίπεδο εξόδου αρχείων καταγραφής"
  3183. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:274
  3184. msgid "Log queries"
  3185. msgstr "Καταγραφή ερωτημάτων"
  3186. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:109
  3187. msgid "Logging"
  3188. msgstr "Καταγραφή"
  3189. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57
  3190. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:57
  3191. msgid ""
  3192. "Logical network from which to select the local endpoint if local IPv6 "
  3193. "address is empty and no WAN IPv6 is available (optional)."
  3194. msgstr ""
  3195. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:57
  3196. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62
  3197. msgid "Logical network to which the tunnel will be added (bridged) (optional)."
  3198. msgstr ""
  3199. #: modules/luci-base/luasrc/view/sysauth.htm:38
  3200. msgid "Login"
  3201. msgstr "Σύνδεση"
  3202. #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:81
  3203. msgid "Logout"
  3204. msgstr "Αποσύνδεση"
  3205. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:628
  3206. msgid "Loose filtering"
  3207. msgstr ""
  3208. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:31
  3209. msgid "Loss of Signal Seconds (LOSS)"
  3210. msgstr ""
  3211. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:669
  3212. msgid "Lowest leased address as offset from the network address."
  3213. msgstr ""
  3214. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:48
  3215. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:83
  3216. msgid "MAC"
  3217. msgstr "MAC"
  3218. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1406
  3219. msgid "MAC Address"
  3220. msgstr ""
  3221. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1083
  3222. msgid "MAC Address Filter"
  3223. msgstr "Φίλτρο MAC Διευθύνσεων"
  3224. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:251
  3225. msgid "MAC Address For The Actor"
  3226. msgstr ""
  3227. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:347
  3228. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1374
  3229. msgid "MAC VLAN"
  3230. msgstr ""
  3231. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:591
  3232. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:38
  3233. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2149
  3234. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:56
  3235. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:88
  3236. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:229
  3237. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:156
  3238. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:175
  3239. msgid "MAC address"
  3240. msgstr "MAC-Διεύθυνση"
  3241. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:986
  3242. msgid "MAC-Filter"
  3243. msgstr "MAC-Φίλτρο"
  3244. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1090
  3245. msgid "MAC-List"
  3246. msgstr "Λίστα MAC"
  3247. #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:16
  3248. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:13
  3249. msgid "MAP / LW4over6"
  3250. msgstr ""
  3251. #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:62
  3252. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:7
  3253. msgid "MAP rule is invalid"
  3254. msgstr ""
  3255. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:218
  3256. msgid "MD5"
  3257. msgstr "MD5"
  3258. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:199
  3259. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:28
  3260. msgid "MHz"
  3261. msgstr "MHz"
  3262. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:353
  3263. msgid "MII"
  3264. msgstr ""
  3265. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:421
  3266. msgid "MII / ETHTOOL ioctls"
  3267. msgstr ""
  3268. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:394
  3269. msgid "MII Interval"
  3270. msgstr ""
  3271. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:580
  3272. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1418
  3273. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:54
  3274. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:53
  3275. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:92
  3276. msgid "MTU"
  3277. msgstr "MTU"
  3278. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:302
  3279. msgid ""
  3280. "Make sure to clone the root filesystem using something like the commands "
  3281. "below:"
  3282. msgstr ""
  3283. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:110
  3284. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:102
  3285. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:53
  3286. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:98
  3287. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:84
  3288. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:58
  3289. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:71
  3290. msgid "Manual"
  3291. msgstr ""
  3292. #: modules/luci-base/htdocs/luci-static/resources/network.js:3862
  3293. msgid "Master"
  3294. msgstr ""
  3295. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:811
  3296. msgid "Max <abbr title=\"Router Advertisement\">RA</abbr> interval"
  3297. msgstr ""
  3298. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:22
  3299. msgid "Max. Attainable Data Rate (ATTNDR)"
  3300. msgstr ""
  3301. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:532
  3302. msgid "Maximum age"
  3303. msgstr ""
  3304. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1179
  3305. msgid "Maximum allowed Listen Interval"
  3306. msgstr ""
  3307. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:336
  3308. msgid "Maximum allowed number of active DHCP leases"
  3309. msgstr "Μέγιστος επιτρεπόμενος αριθμός ενεργών DHCP leases"
  3310. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:354
  3311. msgid "Maximum allowed number of concurrent DNS queries"
  3312. msgstr "Μέγιστος επιτρεπόμενος αριθμός ταυτόχρονων ερωτημάτων DNS"
  3313. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:345
  3314. msgid "Maximum allowed size of EDNS.0 UDP packets"
  3315. msgstr "Μέγιστο επιτρεπόμενο μέγεθος EDNS.0 UDP πακέτων"
  3316. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:114
  3317. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:106
  3318. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:95
  3319. msgid "Maximum amount of seconds to wait for the modem to become ready"
  3320. msgstr ""
  3321. "Μέγιστος αριθμός δευτερολέπτων αναμονής ώστε το modem να καταστεί έτοιμο"
  3322. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:674
  3323. msgid "Maximum number of leased addresses."
  3324. msgstr "Μέγιστος αριθμός διευθύνσεων lease."
  3325. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:542
  3326. msgid "Maximum snooping table size"
  3327. msgstr ""
  3328. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:811
  3329. msgid ""
  3330. "Maximum time allowed between sending unsolicited <abbr title=\"Router "
  3331. "Advertisement, ICMPv6 Type 134\">RA</abbr>. Default is 600 seconds."
  3332. msgstr ""
  3333. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:946
  3334. msgid "Maximum transmit power"
  3335. msgstr ""
  3336. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:129
  3337. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:188
  3338. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:199
  3339. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:28
  3340. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:165
  3341. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:323
  3342. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:324
  3343. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:325
  3344. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:329
  3345. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:330
  3346. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:331
  3347. msgid "Mbit/s"
  3348. msgstr ""
  3349. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:35
  3350. msgid "Medium"
  3351. msgstr ""
  3352. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:24
  3353. msgid "Memory"
  3354. msgstr "Μνήμη"
  3355. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:73
  3356. msgid "Memory usage (%)"
  3357. msgstr "Χρήση Μνήμης (%)"
  3358. #: modules/luci-base/htdocs/luci-static/resources/network.js:3865
  3359. msgid "Mesh"
  3360. msgstr ""
  3361. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:156
  3362. msgid "Mesh ID"
  3363. msgstr ""
  3364. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:994
  3365. msgid "Mesh Id"
  3366. msgstr ""
  3367. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:404
  3368. msgid "Method not found"
  3369. msgstr ""
  3370. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:349
  3371. msgid "Method of link monitoring"
  3372. msgstr ""
  3373. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:418
  3374. msgid "Method to determine link status"
  3375. msgstr ""
  3376. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:46
  3377. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:166
  3378. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:185
  3379. msgid "Metric"
  3380. msgstr "Μέτρο"
  3381. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:818
  3382. msgid "Min <abbr title=\"Router Advertisement\">RA</abbr> interval"
  3383. msgstr ""
  3384. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:661
  3385. msgid "Minimum ARP validity time"
  3386. msgstr ""
  3387. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:235
  3388. msgid "Minimum Number of Links"
  3389. msgstr ""
  3390. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:661
  3391. msgid ""
  3392. "Minimum required time in seconds before an ARP entry may be replaced. "
  3393. "Prevents ARP cache thrashing."
  3394. msgstr ""
  3395. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:818
  3396. msgid ""
  3397. "Minimum time allowed between sending unsolicited <abbr title=\"Router "
  3398. "Advertisement, ICMPv6 Type 134\">RA</abbr>. Default is 200 seconds."
  3399. msgstr ""
  3400. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:202
  3401. msgid "Mirror monitor port"
  3402. msgstr ""
  3403. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:201
  3404. msgid "Mirror source port"
  3405. msgstr ""
  3406. #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:9
  3407. msgid "Mobile Data"
  3408. msgstr ""
  3409. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1514
  3410. msgid "Mobility Domain"
  3411. msgstr ""
  3412. #: modules/luci-compat/luasrc/view/cbi/wireless_modefreq.htm:154
  3413. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:434
  3414. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:157
  3415. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:180
  3416. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:492
  3417. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:989
  3418. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1734
  3419. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:378
  3420. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:142
  3421. msgid "Mode"
  3422. msgstr "Λειτουργία"
  3423. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:55
  3424. msgid "Model"
  3425. msgstr ""
  3426. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:43
  3427. msgid "Modem bearer teardown in progress."
  3428. msgstr ""
  3429. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:42
  3430. msgid ""
  3431. "Modem connection in progress. Please wait. This process will timeout after 2 "
  3432. "minutes."
  3433. msgstr ""
  3434. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:73
  3435. msgid "Modem default"
  3436. msgstr ""
  3437. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:73
  3438. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:82
  3439. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:61
  3440. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:73
  3441. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:57
  3442. msgid "Modem device"
  3443. msgstr "Συσκευή Modem"
  3444. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:41
  3445. msgid "Modem disconnection in progress. Please wait."
  3446. msgstr ""
  3447. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:66
  3448. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:24
  3449. msgid "Modem information query failed"
  3450. msgstr ""
  3451. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:114
  3452. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:106
  3453. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:95
  3454. msgid "Modem init timeout"
  3455. msgstr ""
  3456. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:44
  3457. msgid "Modem is disabled."
  3458. msgstr ""
  3459. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:52
  3460. msgid "ModemManager"
  3461. msgstr ""
  3462. #: modules/luci-base/htdocs/luci-static/resources/network.js:3866
  3463. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1077
  3464. msgid "Monitor"
  3465. msgstr "Παρακολούθηση"
  3466. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:31
  3467. msgid "More Characters"
  3468. msgstr ""
  3469. #: modules/luci-base/htdocs/luci-static/resources/form.js:2529
  3470. msgid "More…"
  3471. msgstr ""
  3472. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:192
  3473. msgid "Mount Point"
  3474. msgstr "Σημείο Προσάρτησης"
  3475. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:144
  3476. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:228
  3477. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:88
  3478. msgid "Mount Points"
  3479. msgstr "Σημεία Προσάρτησης"
  3480. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:229
  3481. msgid "Mount Points - Mount Entry"
  3482. msgstr "Σημεία Προσάρτησης - Είσοδος Προσάρτησης"
  3483. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:340
  3484. msgid "Mount Points - Swap Entry"
  3485. msgstr ""
  3486. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:228
  3487. msgid ""
  3488. "Mount Points define at which point a memory device will be attached to the "
  3489. "filesystem"
  3490. msgstr ""
  3491. "Τα σημεία προσάρτησης ορίζουν σε ποιο σημείο στο σύστημα αρχείων θα "
  3492. "προσαρτηθεί μία συσκευή μνήμης"
  3493. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:154
  3494. msgid "Mount attached devices"
  3495. msgstr ""
  3496. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:162
  3497. msgid "Mount filesystems not specifically configured"
  3498. msgstr ""
  3499. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:331
  3500. msgid "Mount options"
  3501. msgstr "Επιλογές προσάρτησης"
  3502. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:292
  3503. msgid "Mount point"
  3504. msgstr "Σημείο προσάρτησης"
  3505. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:158
  3506. msgid "Mount swap not specifically configured"
  3507. msgstr ""
  3508. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:223
  3509. msgid "Mounted file systems"
  3510. msgstr "Προσαρτημένα συστήματα αρχείων"
  3511. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:152
  3512. msgid "Move down"
  3513. msgstr "Μετακίνηση κάτω"
  3514. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:151
  3515. msgid "Move up"
  3516. msgstr "Μετακίνηση πάνω"
  3517. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:89
  3518. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:94
  3519. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:91
  3520. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:96
  3521. msgid "Multicast"
  3522. msgstr ""
  3523. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:705
  3524. msgid "Multicast routing"
  3525. msgstr ""
  3526. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:711
  3527. msgid "Multicast to unicast"
  3528. msgstr ""
  3529. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1509
  3530. msgid "NAS ID"
  3531. msgstr "NAS ID"
  3532. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:87
  3533. msgid "NAT-T Mode"
  3534. msgstr ""
  3535. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:41
  3536. msgid "NAT64 Prefix"
  3537. msgstr ""
  3538. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:26
  3539. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:31
  3540. msgid "NCM"
  3541. msgstr "NCM"
  3542. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:911
  3543. msgid "NDP-Proxy slave"
  3544. msgstr ""
  3545. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:72
  3546. msgid "NT Domain"
  3547. msgstr ""
  3548. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:276
  3549. msgid "NTP server candidates"
  3550. msgstr ""
  3551. #: modules/luci-base/htdocs/luci-static/resources/form.js:2567
  3552. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3808
  3553. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:27
  3554. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1082
  3555. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:67
  3556. msgid "Name"
  3557. msgstr "Όνομα"
  3558. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1996
  3559. msgid "Name of the new network"
  3560. msgstr "Όνομα νέου δικτύου"
  3561. #: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:44
  3562. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:50
  3563. msgid "Navigation"
  3564. msgstr "Πλοήγηση"
  3565. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:653
  3566. msgid "Neighbour cache validity"
  3567. msgstr ""
  3568. #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:45
  3569. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1022
  3570. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2148
  3571. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:383
  3572. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:63
  3573. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:228
  3574. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:163
  3575. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:182
  3576. msgid "Network"
  3577. msgstr "Δίκτυο"
  3578. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1990
  3579. msgid "Network SSID"
  3580. msgstr ""
  3581. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:68
  3582. msgid "Network Utilities"
  3583. msgstr "Εργαλεία Δικτύου"
  3584. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:380
  3585. msgid "Network boot image"
  3586. msgstr ""
  3587. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:392
  3588. msgid "Network bridge configuration migration"
  3589. msgstr ""
  3590. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:343
  3591. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1380
  3592. msgid "Network device"
  3593. msgstr ""
  3594. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:7
  3595. msgid "Network device activity (kernel: netdev)"
  3596. msgstr ""
  3597. #: modules/luci-base/htdocs/luci-static/resources/network.js:15
  3598. #: modules/luci-compat/luasrc/model/network.lua:33
  3599. msgid "Network device is not present"
  3600. msgstr ""
  3601. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:426
  3602. msgid "Network ifname configuration migration"
  3603. msgstr ""
  3604. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:57
  3605. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62
  3606. msgid "Network interface"
  3607. msgstr ""
  3608. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:706
  3609. msgid "Never"
  3610. msgstr ""
  3611. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1134
  3612. msgid "New interface for \"%s\" can not be created: %s"
  3613. msgstr ""
  3614. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1085
  3615. msgid "New interface name…"
  3616. msgstr ""
  3617. #: modules/luci-compat/luasrc/view/cbi/delegator.htm:11
  3618. msgid "Next »"
  3619. msgstr "Επόμενο »"
  3620. #: modules/luci-base/htdocs/luci-static/resources/form.js:3702
  3621. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:296
  3622. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:345
  3623. msgid "No"
  3624. msgstr ""
  3625. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:643
  3626. msgid "No DHCP Server configured for this interface"
  3627. msgstr "Δεν υπάρχει ρυθμισμένος DHCP εξυπηρετητής για αυτή τη διεπαφή"
  3628. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:196
  3629. msgid "No Data"
  3630. msgstr ""
  3631. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1382
  3632. msgid "No Encryption"
  3633. msgstr ""
  3634. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:87
  3635. msgid "No Host Routes"
  3636. msgstr ""
  3637. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:89
  3638. msgid "No NAT-T"
  3639. msgstr ""
  3640. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:79
  3641. msgid "No RX signal"
  3642. msgstr ""
  3643. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69
  3644. msgid "No client associated"
  3645. msgstr ""
  3646. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:406
  3647. msgid "No data received"
  3648. msgstr ""
  3649. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:683
  3650. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:690
  3651. msgid "No enforcement"
  3652. msgstr ""
  3653. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2899
  3654. msgid "No entries in this directory"
  3655. msgstr ""
  3656. #: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:82
  3657. msgid "No files found"
  3658. msgstr "Δε βρέθηκαν αρχεία"
  3659. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:86
  3660. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:91
  3661. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:88
  3662. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:93
  3663. msgid "No host route"
  3664. msgstr ""
  3665. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:731
  3666. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:142
  3667. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:358
  3668. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:59
  3669. msgid "No information available"
  3670. msgstr "Δεν υπάρχουν πληροφορίες διαθέσιμες"
  3671. #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:63
  3672. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:8
  3673. msgid "No matching prefix delegation"
  3674. msgstr ""
  3675. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:140
  3676. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:143
  3677. msgid "No more slaves available"
  3678. msgstr ""
  3679. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:187
  3680. msgid "No more slaves available, can not save interface"
  3681. msgstr ""
  3682. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:251
  3683. msgid "No negative cache"
  3684. msgstr ""
  3685. #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:54
  3686. #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:212
  3687. #: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:59
  3688. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:79
  3689. msgid "No password set!"
  3690. msgstr "Δεν έχει οριστεί κωδικός πρόσβασης!"
  3691. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:125
  3692. msgid "No peers defined yet"
  3693. msgstr ""
  3694. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:140
  3695. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:277
  3696. msgid "No public keys present yet."
  3697. msgstr ""
  3698. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:91
  3699. msgid "No rules in this chain."
  3700. msgstr "Δεν υπάρχει κανόνας σε αυτή την αλυσίδα."
  3701. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:384
  3702. msgid "No validation or filtering"
  3703. msgstr ""
  3704. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:153
  3705. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1176
  3706. msgid "No zone assigned"
  3707. msgstr "Δεν έχει ανατεθεί ζώνη"
  3708. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:58
  3709. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:84
  3710. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:187
  3711. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:231
  3712. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:275
  3713. msgid "Noise"
  3714. msgstr "Θόρυβος"
  3715. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:26
  3716. msgid "Noise Margin (SNR)"
  3717. msgstr ""
  3718. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:272
  3719. msgid "Noise:"
  3720. msgstr "Θόρυβος:"
  3721. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:34
  3722. msgid "Non Pre-emptive CRC errors (CRC_P)"
  3723. msgstr ""
  3724. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:394
  3725. msgid "Non-wildcard"
  3726. msgstr ""
  3727. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:159
  3728. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:183
  3729. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:101
  3730. msgid "None"
  3731. msgstr "Κανένα"
  3732. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:954
  3733. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:184
  3734. msgid "Normal"
  3735. msgstr "Φυσιολογικό"
  3736. #: modules/luci-base/luasrc/view/error404.htm:8
  3737. msgid "Not Found"
  3738. msgstr ""
  3739. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:75
  3740. msgid "Not associated"
  3741. msgstr ""
  3742. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:32
  3743. msgid "Not connected"
  3744. msgstr ""
  3745. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:46
  3746. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:81
  3747. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:121
  3748. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:147
  3749. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:312
  3750. msgid "Not present"
  3751. msgstr ""
  3752. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:102
  3753. msgid "Not started on boot"
  3754. msgstr ""
  3755. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:409
  3756. msgid "Not supported"
  3757. msgstr ""
  3758. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1678
  3759. msgid ""
  3760. "Note: Some wireless drivers do not fully support 802.11w. E.g. mwlwifi may "
  3761. "have problems"
  3762. msgstr ""
  3763. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:128
  3764. msgid "Notes"
  3765. msgstr ""
  3766. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:174
  3767. msgid "Notice"
  3768. msgstr "Επισήμανση"
  3769. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:127
  3770. msgid "Nslookup"
  3771. msgstr ""
  3772. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:332
  3773. msgid "Number of IGMP membership reports"
  3774. msgstr ""
  3775. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:362
  3776. msgid "Number of cached DNS entries (max is 10000, 0 is no caching)"
  3777. msgstr ""
  3778. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:309
  3779. msgid "Number of peer notifications after failover event"
  3780. msgstr ""
  3781. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:69
  3782. msgid "Obfuscated Group Password"
  3783. msgstr ""
  3784. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:61
  3785. msgid "Obfuscated Password"
  3786. msgstr ""
  3787. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:106
  3788. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:98
  3789. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:49
  3790. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:94
  3791. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:80
  3792. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:54
  3793. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:67
  3794. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:93
  3795. msgid "Obtain IPv6 address"
  3796. msgstr ""
  3797. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/default-on.js:18
  3798. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:351
  3799. msgid "Off"
  3800. msgstr ""
  3801. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/timer.js:15
  3802. msgid "Off-State Delay"
  3803. msgstr ""
  3804. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/default-on.js:18
  3805. msgid "On"
  3806. msgstr ""
  3807. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:96
  3808. msgid "On-Link route"
  3809. msgstr ""
  3810. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/timer.js:11
  3811. msgid "On-State Delay"
  3812. msgstr ""
  3813. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:504
  3814. msgid "One of hostname or mac address must be specified!"
  3815. msgstr ""
  3816. #: modules/luci-base/htdocs/luci-static/resources/validation.js:469
  3817. msgid "One of the following: %s"
  3818. msgstr ""
  3819. #: modules/luci-compat/luasrc/view/cbi/nullsection.htm:17
  3820. #: modules/luci-compat/luasrc/view/cbi/ucisection.htm:22
  3821. msgid "One or more fields contain invalid values!"
  3822. msgstr "Ένα ή περισσότερα πεδία περιέχουν μη έγκυρες τιμές!"
  3823. #: modules/luci-compat/luasrc/view/cbi/map.htm:32
  3824. msgid "One or more invalid/required values on tab"
  3825. msgstr ""
  3826. #: modules/luci-compat/luasrc/view/cbi/nullsection.htm:19
  3827. #: modules/luci-compat/luasrc/view/cbi/ucisection.htm:24
  3828. msgid "One or more required fields have no value!"
  3829. msgstr "Ένα ή περισσότερα πεδία δεν περιέχουν τιμές!"
  3830. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:702
  3831. msgid "Only allow communication with non-isolated bridge ports when enabled"
  3832. msgstr ""
  3833. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:229
  3834. msgid ""
  3835. "Only if current active slave fails and the primary slave is up (failure, 2)"
  3836. msgstr ""
  3837. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:442
  3838. #: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:19
  3839. msgid "Open list..."
  3840. msgstr ""
  3841. #: modules/luci-compat/luasrc/model/network/proto_openconnect.lua:9
  3842. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:64
  3843. msgid "OpenConnect (CISCO AnyConnect)"
  3844. msgstr ""
  3845. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:12
  3846. msgid "OpenFortivpn"
  3847. msgstr ""
  3848. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:724
  3849. msgid ""
  3850. "Operate in <em>relay mode</em> if a designated master interface is "
  3851. "configured and active, otherwise disable <abbr title=\"Neighbour Discovery "
  3852. "Protocol\">NDP</abbr> proxying."
  3853. msgstr ""
  3854. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:723
  3855. msgid ""
  3856. "Operate in <em>relay mode</em> if a designated master interface is "
  3857. "configured and active, otherwise fall back to <em>server mode</em>."
  3858. msgstr ""
  3859. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:725
  3860. msgid ""
  3861. "Operate in <em>relay mode</em> if an upstream IPv6 prefix is present, "
  3862. "otherwise disable service."
  3863. msgstr ""
  3864. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:939
  3865. msgid "Operating frequency"
  3866. msgstr ""
  3867. #: modules/luci-base/htdocs/luci-static/resources/form.js:1974
  3868. #: modules/luci-base/htdocs/luci-static/resources/form.js:3712
  3869. msgid "Option \"%s\" contains an invalid input value."
  3870. msgstr ""
  3871. #: modules/luci-base/htdocs/luci-static/resources/form.js:1987
  3872. msgid "Option \"%s\" must not be empty."
  3873. msgstr ""
  3874. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4060
  3875. msgid "Option changed"
  3876. msgstr "Η επιλογή άλλαξε"
  3877. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4062
  3878. msgid "Option removed"
  3879. msgstr "Η επιλογή αφαιρέθηκε"
  3880. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1680
  3881. msgid "Optional"
  3882. msgstr ""
  3883. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:128
  3884. msgid "Optional, free-form notes about this device"
  3885. msgstr ""
  3886. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:97
  3887. msgid ""
  3888. "Optional. 32-bit mark for outgoing encrypted packets. Enter value in hex, "
  3889. "starting with <code>0x</code>."
  3890. msgstr ""
  3891. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1003
  3892. msgid ""
  3893. "Optional. Allowed values: 'eui64', 'random', fixed value like '::1' or "
  3894. "'::1:2'. When IPv6 prefix (like 'a:b:c:d::') is received from a delegating "
  3895. "server, use the suffix (like '::1') to form the IPv6 address ('a:b:c:d::1') "
  3896. "for the interface."
  3897. msgstr ""
  3898. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:138
  3899. msgid ""
  3900. "Optional. Base64-encoded preshared key. Adds in an additional layer of "
  3901. "symmetric-key cryptography for post-quantum resistance."
  3902. msgstr ""
  3903. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
  3904. msgid "Optional. Create routes for Allowed IPs for this peer."
  3905. msgstr ""
  3906. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:129
  3907. msgid "Optional. Description of peer."
  3908. msgstr ""
  3909. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:87
  3910. msgid "Optional. Do not create host routes to peers."
  3911. msgstr ""
  3912. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:156
  3913. msgid ""
  3914. "Optional. Host of peer. Names are resolved prior to bringing up the "
  3915. "interface."
  3916. msgstr ""
  3917. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:92
  3918. msgid "Optional. Maximum Transmission Unit of tunnel interface."
  3919. msgstr ""
  3920. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:160
  3921. msgid "Optional. Port of peer."
  3922. msgstr ""
  3923. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:164
  3924. msgid ""
  3925. "Optional. Seconds between keep alive messages. Default is 0 (disabled). "
  3926. "Recommended value if this device is behind a NAT is 25."
  3927. msgstr ""
  3928. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:78
  3929. msgid "Optional. UDP port used for outgoing and incoming packets."
  3930. msgstr ""
  3931. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:72
  3932. msgid "Options"
  3933. msgstr "Επιλογές"
  3934. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:119
  3935. msgid "Options:"
  3936. msgstr ""
  3937. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:348
  3938. msgid "Other:"
  3939. msgstr ""
  3940. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:69
  3941. msgid "Out"
  3942. msgstr "Έξοδος"
  3943. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:277
  3944. msgid "Outbound:"
  3945. msgstr ""
  3946. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:101
  3947. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:106
  3948. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:103
  3949. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:108
  3950. msgid "Outgoing checksum"
  3951. msgstr ""
  3952. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:96
  3953. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:101
  3954. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:98
  3955. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:103
  3956. msgid "Outgoing key"
  3957. msgstr ""
  3958. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:103
  3959. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:108
  3960. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:105
  3961. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:110
  3962. msgid "Outgoing serialization"
  3963. msgstr ""
  3964. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:50
  3965. msgid "Output Interface"
  3966. msgstr ""
  3967. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:59
  3968. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:165
  3969. msgid "Output zone"
  3970. msgstr ""
  3971. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:16
  3972. msgid "Overlap"
  3973. msgstr ""
  3974. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:945
  3975. msgid "Override IPv4 routing table"
  3976. msgstr ""
  3977. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:950
  3978. msgid "Override IPv6 routing table"
  3979. msgstr ""
  3980. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:64
  3981. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:69
  3982. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:69
  3983. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:74
  3984. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:53
  3985. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:121
  3986. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:156
  3987. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:57
  3988. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:132
  3989. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:118
  3990. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:96
  3991. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:105
  3992. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:99
  3993. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:62
  3994. msgid "Override MTU"
  3995. msgstr ""
  3996. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:74
  3997. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:79
  3998. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:63
  3999. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:67
  4000. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:62
  4001. msgid "Override TOS"
  4002. msgstr ""
  4003. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:69
  4004. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:74
  4005. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:74
  4006. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:79
  4007. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:58
  4008. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:62
  4009. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:57
  4010. msgid "Override TTL"
  4011. msgstr ""
  4012. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1151
  4013. msgid "Override default interface name"
  4014. msgstr ""
  4015. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:167
  4016. msgid "Override the gateway in DHCP responses"
  4017. msgstr ""
  4018. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:691
  4019. msgid ""
  4020. "Override the netmask sent to clients. Normally it is calculated from the "
  4021. "subnet that is served."
  4022. msgstr ""
  4023. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:179
  4024. msgid "Override the table used for internal routes"
  4025. msgstr ""
  4026. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:3
  4027. msgid "Overview"
  4028. msgstr "Επισκόπηση"
  4029. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2742
  4030. msgid "Overwrite existing file \"%s\" ?"
  4031. msgstr ""
  4032. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:70
  4033. msgid "Owner"
  4034. msgstr "Κάτοχος"
  4035. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:98
  4036. msgid "PAP/CHAP (both)"
  4037. msgstr ""
  4038. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:99
  4039. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:109
  4040. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:91
  4041. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:45
  4042. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:90
  4043. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:76
  4044. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:44
  4045. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:63
  4046. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:83
  4047. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:46
  4048. msgid "PAP/CHAP password"
  4049. msgstr ""
  4050. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:97
  4051. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:104
  4052. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:89
  4053. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:43
  4054. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:88
  4055. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:74
  4056. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:42
  4057. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:61
  4058. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:78
  4059. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:44
  4060. msgid "PAP/CHAP username"
  4061. msgstr ""
  4062. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:103
  4063. msgid "PDP Type"
  4064. msgstr ""
  4065. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:69
  4066. msgid "PID"
  4067. msgstr "PID"
  4068. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:96
  4069. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:95
  4070. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:88
  4071. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:69
  4072. msgid "PIN"
  4073. msgstr "PIN"
  4074. #: modules/luci-base/htdocs/luci-static/resources/network.js:21
  4075. #: modules/luci-compat/luasrc/model/network.lua:39
  4076. msgid "PIN code rejected"
  4077. msgstr ""
  4078. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1549
  4079. msgid "PMK R1 Push"
  4080. msgstr ""
  4081. #: modules/luci-compat/luasrc/model/network/proto_ppp.lua:13
  4082. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:43
  4083. msgid "PPP"
  4084. msgstr "PPP"
  4085. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:58
  4086. msgid "PPPoA Encapsulation"
  4087. msgstr "Ενθυλάκωση PPPoA"
  4088. #: modules/luci-compat/luasrc/model/network/proto_ppp.lua:19
  4089. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:28
  4090. msgid "PPPoATM"
  4091. msgstr "PPPoATM"
  4092. #: modules/luci-compat/luasrc/model/network/proto_ppp.lua:17
  4093. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:28
  4094. msgid "PPPoE"
  4095. msgstr "PPPoE"
  4096. #: modules/luci-compat/luasrc/model/network/proto_pppossh.lua:9
  4097. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:28
  4098. msgid "PPPoSSH"
  4099. msgstr "PPPoSSH"
  4100. #: modules/luci-compat/luasrc/model/network/proto_ppp.lua:15
  4101. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:28
  4102. msgid "PPtP"
  4103. msgstr "PPtP"
  4104. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:73
  4105. msgid "PSID offset"
  4106. msgstr ""
  4107. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:70
  4108. msgid "PSID-bits length"
  4109. msgstr ""
  4110. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1473
  4111. msgid "PTM/EFM (Packet Transfer Mode)"
  4112. msgstr ""
  4113. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1437
  4114. msgid "Packet Steering"
  4115. msgstr ""
  4116. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:54
  4117. msgid "Packets"
  4118. msgstr "Πακέτα"
  4119. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:275
  4120. msgid "Packets To Transmit Before Moving To Next Slave"
  4121. msgstr ""
  4122. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:153
  4123. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1176
  4124. msgid "Part of zone %q"
  4125. msgstr "Μέρος της ζώνης %q"
  4126. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:438
  4127. msgctxt "MACVLAN mode"
  4128. msgid "Pass-through (Mirror physical device to single MAC VLAN)"
  4129. msgstr ""
  4130. #: modules/luci-base/luasrc/view/sysauth.htm:29
  4131. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1671
  4132. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:51
  4133. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:114
  4134. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:52
  4135. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:58
  4136. msgid "Password"
  4137. msgstr "Κωδικός Πρόσβασης"
  4138. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:25
  4139. msgid "Password authentication"
  4140. msgstr "Εξουσιοδότηση με κωδικό πρόσβασης"
  4141. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1603
  4142. msgid "Password of Private Key"
  4143. msgstr "Κωδικός Πρόσβασης του Ιδιωτικού Κλειδιού"
  4144. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1661
  4145. msgid "Password of inner Private Key"
  4146. msgstr ""
  4147. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:31
  4148. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:33
  4149. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:35
  4150. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:37
  4151. msgid "Password strength"
  4152. msgstr ""
  4153. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:117
  4154. msgid "Password2"
  4155. msgstr ""
  4156. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:260
  4157. msgid "Paste or drag SSH key file…"
  4158. msgstr ""
  4159. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1582
  4160. msgid "Path to CA-Certificate"
  4161. msgstr "Διαδρομή για Πιστοποιητικό CA"
  4162. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1597
  4163. msgid "Path to Client-Certificate"
  4164. msgstr "Διαδρομή για Πιστοποιητικό-Πελάτη"
  4165. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1600
  4166. msgid "Path to Private Key"
  4167. msgstr "Διαδρομή για Ιδιωτικό Κλειδί"
  4168. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1640
  4169. msgid "Path to inner CA-Certificate"
  4170. msgstr ""
  4171. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1655
  4172. msgid "Path to inner Client-Certificate"
  4173. msgstr ""
  4174. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1658
  4175. msgid "Path to inner Private Key"
  4176. msgstr ""
  4177. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2732
  4178. msgid "Paused"
  4179. msgstr ""
  4180. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:273
  4181. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:283
  4182. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:334
  4183. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:344
  4184. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:354
  4185. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:239
  4186. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:249
  4187. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:259
  4188. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:268
  4189. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:278
  4190. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:296
  4191. msgid "Peak:"
  4192. msgstr ""
  4193. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:89
  4194. msgid "Peer IP address to assign"
  4195. msgstr ""
  4196. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:613
  4197. msgid "Peer MAC address"
  4198. msgstr ""
  4199. #: modules/luci-base/htdocs/luci-static/resources/network.js:14
  4200. #: modules/luci-compat/luasrc/model/network.lua:32
  4201. msgid "Peer address is missing"
  4202. msgstr ""
  4203. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:594
  4204. msgid "Peer device name"
  4205. msgstr ""
  4206. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:110
  4207. msgid "Peers"
  4208. msgstr ""
  4209. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:80
  4210. msgid "Perfect Forward Secrecy"
  4211. msgstr ""
  4212. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:103
  4213. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:108
  4214. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:105
  4215. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:110
  4216. msgid "Perform outgoing packets serialization (optional)."
  4217. msgstr ""
  4218. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:34
  4219. msgid "Perform reboot"
  4220. msgstr "Εκτέλεση επανεκκίνησης"
  4221. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:376
  4222. msgid "Perform reset"
  4223. msgstr "Διενέργεια αρχικοποίησης"
  4224. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:407
  4225. msgid "Permission denied"
  4226. msgstr ""
  4227. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:164
  4228. msgid "Persistent Keep Alive"
  4229. msgstr ""
  4230. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:290
  4231. msgid "Phy Rate:"
  4232. msgstr ""
  4233. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:479
  4234. msgid "Physical Settings"
  4235. msgstr ""
  4236. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:79
  4237. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:80
  4238. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:90
  4239. msgid "Ping"
  4240. msgstr ""
  4241. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:49
  4242. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:50
  4243. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:84
  4244. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:85
  4245. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:138
  4246. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:64
  4247. msgid "Pkts."
  4248. msgstr "Πκτ."
  4249. #: modules/luci-base/luasrc/view/sysauth.htm:19
  4250. msgid "Please enter your username and password."
  4251. msgstr "Παρακαλώ εισάγετε όνομα χρήστη και κωδικό πρόσβασης."
  4252. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3791
  4253. msgid "Please select the file to upload."
  4254. msgstr ""
  4255. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:54
  4256. msgid "Policy"
  4257. msgstr "Πολιτική"
  4258. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:21
  4259. msgid "Port"
  4260. msgstr "Θύρα"
  4261. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:702
  4262. msgid "Port isolation"
  4263. msgstr ""
  4264. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:278
  4265. msgid "Port status:"
  4266. msgstr ""
  4267. #: modules/luci-base/htdocs/luci-static/resources/validation.js:495
  4268. msgid "Potential negation of: %s"
  4269. msgstr ""
  4270. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:37
  4271. msgid "Power Management Mode"
  4272. msgstr ""
  4273. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:35
  4274. msgid "Pre-emptive CRC errors (CRCP_P)"
  4275. msgstr ""
  4276. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:74
  4277. msgid "Prefer LTE"
  4278. msgstr ""
  4279. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:75
  4280. msgid "Prefer UMTS"
  4281. msgstr ""
  4282. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:33
  4283. msgid "Prefix Delegated"
  4284. msgstr ""
  4285. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:138
  4286. msgid "Preshared Key"
  4287. msgstr ""
  4288. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:118
  4289. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:102
  4290. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:88
  4291. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:62
  4292. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:75
  4293. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:98
  4294. msgid ""
  4295. "Presume peer to be dead after given amount of LCP echo failures, use 0 to "
  4296. "ignore failures"
  4297. msgstr ""
  4298. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:407
  4299. msgid "Prevent listening on these interfaces."
  4300. msgstr ""
  4301. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1147
  4302. #, fuzzy
  4303. msgid "Prevents client-to-client communication"
  4304. msgstr "Αποτρέπει την επικοινωνία μεταξύ πελατών"
  4305. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:211
  4306. msgid "Primary Slave"
  4307. msgstr ""
  4308. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:170
  4309. msgctxt "VLAN port state"
  4310. msgid "Primary VLAN ID"
  4311. msgstr ""
  4312. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:228
  4313. msgid ""
  4314. "Primary becomes active slave when it comes back up if speed and duplex "
  4315. "better than current slave (better, 1)"
  4316. msgstr ""
  4317. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:227
  4318. msgid "Primary becomes active slave whenever it comes back up (always, 0)"
  4319. msgstr ""
  4320. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:508
  4321. msgid "Priority"
  4322. msgstr ""
  4323. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:436
  4324. msgctxt "MACVLAN mode"
  4325. msgid "Private (Prevent communication between MAC VLANs)"
  4326. msgstr ""
  4327. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:61
  4328. msgid "Private Key"
  4329. msgstr ""
  4330. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:64
  4331. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:63
  4332. msgid "Processes"
  4333. msgstr "Εργασίες"
  4334. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:67
  4335. msgid "Prot."
  4336. msgstr "Πρωτ."
  4337. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:80
  4338. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:554
  4339. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1099
  4340. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:384
  4341. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:32
  4342. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:168
  4343. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:187
  4344. msgid "Protocol"
  4345. msgstr "Πρωτόκολλο"
  4346. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:267
  4347. msgid "Provide NTP server"
  4348. msgstr ""
  4349. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:872
  4350. msgid ""
  4351. "Provide a DHCPv6 server on this interface and reply to DHCPv6 solicitations "
  4352. "and requests."
  4353. msgstr ""
  4354. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:882
  4355. msgid "Provide new network"
  4356. msgstr ""
  4357. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1076
  4358. msgid "Pseudo Ad-Hoc (ahdemo)"
  4359. msgstr "Ψευδό Ad-Hoc (ahdemo)"
  4360. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:134
  4361. msgid "Public Key"
  4362. msgstr "Δημόσιο κλειδί"
  4363. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:284
  4364. msgid ""
  4365. "Public keys allow for the passwordless SSH logins with a higher security "
  4366. "compared to the use of plain passwords. In order to upload a new key to the "
  4367. "device, paste an OpenSSH compatible public key line or drag a <code>.pub</"
  4368. "code> file into the input field."
  4369. msgstr ""
  4370. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:192
  4371. msgid "Public prefix routed to this device for distribution to clients."
  4372. msgstr ""
  4373. #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:9
  4374. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:27
  4375. msgid "QMI Cellular"
  4376. msgstr ""
  4377. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:140
  4378. msgid "Quality"
  4379. msgstr ""
  4380. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:264
  4381. msgid ""
  4382. "Query all available upstream <abbr title=\"Domain Name System\">DNS</abbr> "
  4383. "servers"
  4384. msgstr ""
  4385. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:556
  4386. msgid "Query interval"
  4387. msgstr ""
  4388. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:561
  4389. msgid "Query response interval"
  4390. msgstr ""
  4391. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1537
  4392. msgid "R0 Key Lifetime"
  4393. msgstr ""
  4394. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1543
  4395. msgid "R1 Key Holder"
  4396. msgstr ""
  4397. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:88
  4398. msgid "RFC3947 NAT-T mode"
  4399. msgstr ""
  4400. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1002
  4401. msgid "RSSI threshold for joining"
  4402. msgstr ""
  4403. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:966
  4404. msgid "RTS/CTS Threshold"
  4405. msgstr "Όριο RTS/CTS"
  4406. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:49
  4407. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:84
  4408. msgid "RX"
  4409. msgstr "RX"
  4410. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:232
  4411. msgid "RX Rate"
  4412. msgstr ""
  4413. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2152
  4414. msgid "RX Rate / TX Rate"
  4415. msgstr ""
  4416. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1415
  4417. msgid "Radius-Accounting-Port"
  4418. msgstr ""
  4419. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1420
  4420. msgid "Radius-Accounting-Secret"
  4421. msgstr ""
  4422. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1410
  4423. msgid "Radius-Accounting-Server"
  4424. msgstr ""
  4425. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1400
  4426. msgid "Radius-Authentication-Port"
  4427. msgstr ""
  4428. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1405
  4429. msgid "Radius-Authentication-Secret"
  4430. msgstr ""
  4431. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1395
  4432. msgid "Radius-Authentication-Server"
  4433. msgstr ""
  4434. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:88
  4435. msgid "Raw hex-encoded bytes. Leave empty unless your ISP require this"
  4436. msgstr ""
  4437. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:178
  4438. msgid ""
  4439. "Read <code>/etc/ethers</code> to configure the <abbr title=\"Dynamic Host "
  4440. "Configuration Protocol\">DHCP</abbr>-Server"
  4441. msgstr ""
  4442. "Διάβασμα του <code>/etc/ethers</code> για την παραμετροποίηση του "
  4443. "εξυπηρετητή <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</abbr>"
  4444. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:559
  4445. msgid "Really switch protocol?"
  4446. msgstr "Αλλαγή πρωτοκόλλου;"
  4447. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:88
  4448. msgid "Realtime Graphs"
  4449. msgstr "Γραφήματα πραγματικού χρόνου"
  4450. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1520
  4451. msgid "Reassociation Deadline"
  4452. msgstr ""
  4453. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:293
  4454. msgid "Rebind protection"
  4455. msgstr ""
  4456. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:20
  4457. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:126
  4458. msgid "Reboot"
  4459. msgstr "Επανεκκίνηση"
  4460. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:153
  4461. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:162
  4462. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:46
  4463. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:51
  4464. msgid "Rebooting…"
  4465. msgstr "Επανεκκίνηση…"
  4466. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:21
  4467. msgid "Reboots the operating system of your device"
  4468. msgstr "Επανεκκίνηση του λειτουργικού συστήματος της συσκευής σας"
  4469. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:25
  4470. msgid "Receive"
  4471. msgstr "Λήψη"
  4472. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:83
  4473. msgid "Recommended. IP addresses of the WireGuard interface."
  4474. msgstr ""
  4475. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:504
  4476. msgid "Reconnect this interface"
  4477. msgstr "Επανασύνδεση της διεπαφής"
  4478. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:57
  4479. msgid "References"
  4480. msgstr "Αναφορές"
  4481. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2726
  4482. msgid "Refreshing"
  4483. msgstr ""
  4484. #: modules/luci-compat/luasrc/model/network/proto_relay.lua:153
  4485. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:39
  4486. msgid "Relay"
  4487. msgstr ""
  4488. #: modules/luci-compat/luasrc/model/network/proto_relay.lua:157
  4489. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:36
  4490. msgid "Relay Bridge"
  4491. msgstr ""
  4492. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:154
  4493. msgid "Relay between networks"
  4494. msgstr ""
  4495. #: modules/luci-compat/luasrc/model/network/proto_relay.lua:12
  4496. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:64
  4497. msgid "Relay bridge"
  4498. msgstr ""
  4499. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:50
  4500. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:49
  4501. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:40
  4502. msgid "Remote IPv4 address"
  4503. msgstr "Απομακρυσμένη διεύθυνση IPv4"
  4504. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:42
  4505. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:42
  4506. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:40
  4507. msgid "Remote IPv4 address or FQDN"
  4508. msgstr ""
  4509. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:40
  4510. msgid "Remote IPv6 address"
  4511. msgstr ""
  4512. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:42
  4513. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:42
  4514. msgid "Remote IPv6 address or FQDN"
  4515. msgstr ""
  4516. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:906
  4517. msgid "Remove"
  4518. msgstr "Αφαίρεση"
  4519. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1277
  4520. msgid "Remove related device settings from the configuration"
  4521. msgstr ""
  4522. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1994
  4523. msgid "Replace wireless configuration"
  4524. msgstr "Αντικατάσταση ρυθμίσεων ασύρματης σύνδεσης"
  4525. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:17
  4526. msgid "Request IPv6-address"
  4527. msgstr ""
  4528. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:23
  4529. msgid "Request IPv6-prefix of length"
  4530. msgstr ""
  4531. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:408
  4532. msgid "Request timeout"
  4533. msgstr ""
  4534. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:100
  4535. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:105
  4536. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:102
  4537. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:107
  4538. msgid "Require incoming checksum (optional)."
  4539. msgstr ""
  4540. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:102
  4541. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:107
  4542. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:104
  4543. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:109
  4544. msgid "Require incoming packets serialization (optional)."
  4545. msgstr ""
  4546. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1681
  4547. msgid "Required"
  4548. msgstr ""
  4549. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34
  4550. msgid "Required for certain ISPs, e.g. Charter with DOCSIS 3"
  4551. msgstr ""
  4552. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:61
  4553. msgid "Required. Base64-encoded private key for this interface."
  4554. msgstr ""
  4555. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:134
  4556. msgid "Required. Base64-encoded public key of peer."
  4557. msgstr ""
  4558. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:143
  4559. msgid ""
  4560. "Required. IP addresses and prefixes that this peer is allowed to use inside "
  4561. "the tunnel. Usually the peer's tunnel IP addresses and the networks the peer "
  4562. "routes through the tunnel."
  4563. msgstr ""
  4564. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1311
  4565. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1312
  4566. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1313
  4567. msgid "Requires hostapd"
  4568. msgstr ""
  4569. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1318
  4570. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1319
  4571. msgid "Requires hostapd with EAP Suite-B support"
  4572. msgstr ""
  4573. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1316
  4574. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1317
  4575. msgid "Requires hostapd with EAP support"
  4576. msgstr ""
  4577. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1320
  4578. msgid "Requires hostapd with OWE support"
  4579. msgstr ""
  4580. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1314
  4581. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1315
  4582. msgid "Requires hostapd with SAE support"
  4583. msgstr ""
  4584. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1309
  4585. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1310
  4586. msgid "Requires hostapd with WEP support"
  4587. msgstr ""
  4588. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:233
  4589. msgid ""
  4590. "Requires upstream supports DNSSEC; verify unsigned domain responses really "
  4591. "come from unsigned domains"
  4592. msgstr ""
  4593. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1325
  4594. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1326
  4595. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1327
  4596. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1339
  4597. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1340
  4598. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1341
  4599. msgid "Requires wpa-supplicant"
  4600. msgstr ""
  4601. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1332
  4602. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1333
  4603. msgid "Requires wpa-supplicant with EAP Suite-B support"
  4604. msgstr ""
  4605. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1330
  4606. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1331
  4607. msgid "Requires wpa-supplicant with EAP support"
  4608. msgstr ""
  4609. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1334
  4610. msgid "Requires wpa-supplicant with OWE support"
  4611. msgstr ""
  4612. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1328
  4613. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1329
  4614. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1344
  4615. msgid "Requires wpa-supplicant with SAE support"
  4616. msgstr ""
  4617. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1323
  4618. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1324
  4619. msgid "Requires wpa-supplicant with WEP support"
  4620. msgstr ""
  4621. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:224
  4622. msgid "Reselection policy for primary slave"
  4623. msgstr ""
  4624. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2204
  4625. #: modules/luci-base/luasrc/view/sysauth.htm:39
  4626. #: modules/luci-compat/luasrc/view/cbi/delegator.htm:17
  4627. #: modules/luci-compat/luasrc/view/cbi/footer.htm:30
  4628. #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:66
  4629. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1276
  4630. msgid "Reset"
  4631. msgstr "Αρχικοποίηση"
  4632. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:343
  4633. msgid "Reset Counters"
  4634. msgstr "Αρχικοποίηση Μετρητών"
  4635. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:374
  4636. msgid "Reset to defaults"
  4637. msgstr "Αρχικοποίηση στις προεπιλεγμένες τιμές"
  4638. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:162
  4639. msgid "Resolv and Hosts Files"
  4640. msgstr "Αρχεία Resolv και Hosts"
  4641. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:188
  4642. msgid "Resolve file"
  4643. msgstr "Αρχείο Resolve"
  4644. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:405
  4645. msgid "Resource not found"
  4646. msgstr ""
  4647. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:506
  4648. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:874
  4649. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:100
  4650. msgid "Restart"
  4651. msgstr "Επανεκκίνηση"
  4652. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:348
  4653. msgid "Restart Firewall"
  4654. msgstr "Επανεκκίνηση Τείχους Προστασίας"
  4655. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:872
  4656. msgid "Restart radio interface"
  4657. msgstr ""
  4658. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:370
  4659. msgid "Restore"
  4660. msgstr "Επαναφορά Αντίγραφου Ασφαλείας"
  4661. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:380
  4662. msgid "Restore backup"
  4663. msgstr "Επαναφορά αντιγράφου ασφαλείας"
  4664. #: modules/luci-base/htdocs/luci-static/resources/ui.js:371
  4665. #: modules/luci-base/htdocs/luci-static/resources/ui.js:372
  4666. msgid "Reveal/hide password"
  4667. msgstr ""
  4668. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:625
  4669. msgid "Reverse path filter"
  4670. msgstr ""
  4671. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4076
  4672. msgid "Revert"
  4673. msgstr "Αναίρεση"
  4674. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4161
  4675. msgid "Revert changes"
  4676. msgstr ""
  4677. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4343
  4678. msgid "Revert request failed with status <code>%h</code>"
  4679. msgstr ""
  4680. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4323
  4681. msgid "Reverting configuration…"
  4682. msgstr ""
  4683. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:551
  4684. msgid "Robustness"
  4685. msgstr ""
  4686. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:372
  4687. msgid "Root directory for files served via TFTP"
  4688. msgstr "Κατάλογος Root για αρχεία που σερβίρονται μέσω TFTP"
  4689. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:297
  4690. msgid "Root preparation"
  4691. msgstr ""
  4692. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:202
  4693. msgid "Round-Robin policy (balance-rr, 0)"
  4694. msgstr ""
  4695. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
  4696. msgid "Route Allowed IPs"
  4697. msgstr ""
  4698. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:73
  4699. msgid "Route table"
  4700. msgstr ""
  4701. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:60
  4702. msgid "Route type"
  4703. msgstr ""
  4704. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:825
  4705. msgid ""
  4706. "Router Lifetime published in <abbr title=\"Router Advertisement, ICMPv6 Type "
  4707. "134\">RA</abbr> messages. Maximum is 9000 seconds."
  4708. msgstr ""
  4709. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:46
  4710. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:26
  4711. msgid "Router Password"
  4712. msgstr "Κωδικός Πρόσβασης Δρομολογητή"
  4713. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:15
  4714. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:197
  4715. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:27
  4716. #, fuzzy
  4717. msgid "Routes"
  4718. msgstr "Διαδρομές"
  4719. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:15
  4720. msgid ""
  4721. "Routes specify over which interface and gateway a certain host or network "
  4722. "can be reached."
  4723. msgstr ""
  4724. "Οι διαδρομές ορίζουν τη διεπαφή και πύλη από την οποία κάποιος υπολογιστής ή "
  4725. "δίκτυο μπορεί να είναι προσβάσιμο/ς."
  4726. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:218
  4727. msgid "Rule"
  4728. msgstr ""
  4729. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:335
  4730. msgid "Run a filesystem check before mounting the device"
  4731. msgstr "Εκτέλεση ελέγχου του συστήματος αρχείων πριν προσαρτηθεί η συσκευή"
  4732. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:335
  4733. msgid "Run filesystem check"
  4734. msgstr "Εκτέλεση ελέγχου συστήματος αρχείων"
  4735. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2365
  4736. msgid "Runtime error"
  4737. msgstr ""
  4738. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:219
  4739. msgid "SHA256"
  4740. msgstr ""
  4741. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:59
  4742. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:276
  4743. msgid "SNR"
  4744. msgstr ""
  4745. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:10
  4746. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:38
  4747. msgid "SSH Access"
  4748. msgstr "Πρόσβαση SSH"
  4749. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:70
  4750. msgid "SSH server address"
  4751. msgstr ""
  4752. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:74
  4753. msgid "SSH server port"
  4754. msgstr ""
  4755. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:58
  4756. msgid "SSH username"
  4757. msgstr ""
  4758. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:283
  4759. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:51
  4760. msgid "SSH-Keys"
  4761. msgstr "Κλειδιά SSH"
  4762. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:156
  4763. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:181
  4764. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1732
  4765. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:375
  4766. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:141
  4767. msgid "SSID"
  4768. msgstr "SSID"
  4769. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:9
  4770. msgid "SSTP"
  4771. msgstr ""
  4772. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:41
  4773. msgid "SSTP Server"
  4774. msgstr ""
  4775. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:339
  4776. msgid "SWAP"
  4777. msgstr ""
  4778. #: modules/luci-base/htdocs/luci-static/resources/form.js:2891
  4779. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2199
  4780. #: modules/luci-compat/luasrc/view/cbi/error.htm:17
  4781. #: modules/luci-compat/luasrc/view/cbi/footer.htm:26
  4782. #: modules/luci-compat/luasrc/view/cbi/header.htm:20
  4783. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:433
  4784. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:123
  4785. msgid "Save"
  4786. msgstr "Αποθήκευση"
  4787. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2181
  4788. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4072
  4789. #: modules/luci-compat/luasrc/view/cbi/footer.htm:22
  4790. msgid "Save & Apply"
  4791. msgstr "Αποθήκευση & Εφαρμογή"
  4792. #: modules/luci-base/htdocs/luci-static/resources/form.js:602
  4793. msgid "Save error"
  4794. msgstr ""
  4795. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:404
  4796. msgid "Save mtdblock"
  4797. msgstr ""
  4798. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:394
  4799. msgid "Save mtdblock contents"
  4800. msgstr ""
  4801. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:879
  4802. msgid "Scan"
  4803. msgstr "Σάρωση"
  4804. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/crontab.js:26
  4805. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:76
  4806. msgid "Scheduled Tasks"
  4807. msgstr "Προγραμματισμένες Εργασίες"
  4808. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4056
  4809. msgid "Section added"
  4810. msgstr ""
  4811. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4058
  4812. msgid "Section removed"
  4813. msgstr ""
  4814. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:331
  4815. msgid "See \"mount\" manpage for details"
  4816. msgstr "Δείτε το manpage του \"mount\" για λεπτομέρειες"
  4817. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2643
  4818. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2783
  4819. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2948
  4820. msgid "Select file…"
  4821. msgstr ""
  4822. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:318
  4823. msgid "Selects the transmit hash policy to use for slave selection"
  4824. msgstr ""
  4825. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:768
  4826. msgid ""
  4827. "Send <abbr title=\"Router Advertisement, ICMPv6 Type 134\">RA</abbr> "
  4828. "messages advertising this device as IPv6 router."
  4829. msgstr ""
  4830. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:650
  4831. msgid "Send ICMP redirects"
  4832. msgstr ""
  4833. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:131
  4834. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:115
  4835. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:101
  4836. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:75
  4837. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:88
  4838. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:111
  4839. msgid ""
  4840. "Send LCP echo requests at the given interval in seconds, only effective in "
  4841. "conjunction with failure threshold"
  4842. msgstr ""
  4843. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:24
  4844. msgid "Send the hostname of this device"
  4845. msgstr ""
  4846. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:157
  4847. msgid "Server Settings"
  4848. msgstr "Ρυθμίσεις Εξυπηρετητή"
  4849. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:50
  4850. msgid "Service Name"
  4851. msgstr "Όνομα Υπηρεσίας"
  4852. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:88
  4853. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:72
  4854. msgid "Service Type"
  4855. msgstr "Είδος Υπηρεσίας"
  4856. #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:36
  4857. msgid "Services"
  4858. msgstr "Υπηρεσίες"
  4859. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2669
  4860. msgid "Session expired"
  4861. msgstr ""
  4862. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:117
  4863. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:166
  4864. msgid "Set Static"
  4865. msgstr ""
  4866. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:911
  4867. msgid "Set interface as NDP-Proxy external slave. Default is off."
  4868. msgstr ""
  4869. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1215
  4870. msgid ""
  4871. "Set interface properties regardless of the link carrier (If set, carrier "
  4872. "sense events do not invoke hotplug handlers)."
  4873. msgstr ""
  4874. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:300
  4875. msgid "Set same MAC Address to all slaves"
  4876. msgstr ""
  4877. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:786
  4878. msgid ""
  4879. "Set the autonomous address-configuration flag in the prefix information "
  4880. "options of sent <abbr title=\"Router Advertisement\">RA</abbr> messages. "
  4881. "When enabled, clients will perform stateless IPv6 address autoconfiguration."
  4882. msgstr ""
  4883. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:719
  4884. msgid ""
  4885. "Set this interface as master for RA and DHCPv6 relaying as well as NDP "
  4886. "proxying."
  4887. msgstr ""
  4888. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:304
  4889. msgid "Set to currently active slave (active, 1)"
  4890. msgstr ""
  4891. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:305
  4892. msgid "Set to first slave added to the bond (follow, 2)"
  4893. msgstr ""
  4894. #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:55
  4895. #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:55
  4896. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:23
  4897. msgid "Setting PLMN failed"
  4898. msgstr ""
  4899. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:68
  4900. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:26
  4901. msgid "Setting operation mode failed"
  4902. msgstr ""
  4903. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:646
  4904. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:662
  4905. msgid "Setup DHCP Server"
  4906. msgstr "Ρύθμιση Εξυπηρετητή DHCP"
  4907. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:906
  4908. msgid "Setup routes for proxied IPv6 neighbours."
  4909. msgstr ""
  4910. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:30
  4911. msgid "Severely Errored Seconds (SES)"
  4912. msgstr ""
  4913. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:210
  4914. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:37
  4915. msgid "Short GI"
  4916. msgstr ""
  4917. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1157
  4918. msgid "Short Preamble"
  4919. msgstr ""
  4920. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:440
  4921. #: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:18
  4922. msgid "Show current backup file list"
  4923. msgstr ""
  4924. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:293
  4925. msgid "Show empty chains"
  4926. msgstr ""
  4927. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:276
  4928. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:338
  4929. msgid "Show raw counters"
  4930. msgstr ""
  4931. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:510
  4932. msgid "Shutdown this interface"
  4933. msgstr "Απενεργοποίηση αυτής της διεπαφής"
  4934. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:57
  4935. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:63
  4936. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:186
  4937. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1731
  4938. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:42
  4939. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:374
  4940. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:140
  4941. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:231
  4942. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:274
  4943. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:280
  4944. msgid "Signal"
  4945. msgstr "Σήμα"
  4946. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2151
  4947. msgid "Signal / Noise"
  4948. msgstr ""
  4949. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:25
  4950. msgid "Signal Attenuation (SATN)"
  4951. msgstr ""
  4952. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:125
  4953. msgid "Signal Refresh Rate"
  4954. msgstr ""
  4955. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:262
  4956. msgid "Signal:"
  4957. msgstr "Σήμα:"
  4958. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3809
  4959. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:217
  4960. msgid "Size"
  4961. msgstr "Μέγεθος"
  4962. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:361
  4963. msgid "Size of DNS query cache"
  4964. msgstr ""
  4965. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:194
  4966. msgid "Size of the ZRam device in megabytes"
  4967. msgstr ""
  4968. #: modules/luci-compat/luasrc/view/cbi/footer.htm:18
  4969. #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:57
  4970. msgid "Skip"
  4971. msgstr "Παράκαμψη"
  4972. #: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:40
  4973. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:46
  4974. msgid "Skip to content"
  4975. msgstr "Παράκαμψη σε περιεχόμενο"
  4976. #: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:39
  4977. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:45
  4978. msgid "Skip to navigation"
  4979. msgstr "Παράκαμψη σε πλοήγηση"
  4980. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:178
  4981. msgid "Slave Interfaces"
  4982. msgstr ""
  4983. #: modules/luci-base/htdocs/luci-static/resources/network.js:2998
  4984. #: modules/luci-compat/luasrc/model/network.lua:1428
  4985. msgid "Software VLAN"
  4986. msgstr ""
  4987. #: modules/luci-compat/luasrc/view/cbi/header.htm:5
  4988. msgid "Some fields are invalid, cannot save values!"
  4989. msgstr "Κάποια πεδία δεν είναι έγκυρα, δεν μπορούν να αποθηκευτούν οι τιμές!"
  4990. #: modules/luci-base/luasrc/view/error404.htm:9
  4991. msgid "Sorry, the object you requested was not found."
  4992. msgstr ""
  4993. #: modules/luci-base/luasrc/view/error500.htm:9
  4994. msgid "Sorry, the server encountered an unexpected error."
  4995. msgstr ""
  4996. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:412
  4997. msgid ""
  4998. "Sorry, there is no sysupgrade support present; a new firmware image must be "
  4999. "flashed manually. Please refer to the wiki for device specific install "
  5000. "instructions."
  5001. msgstr ""
  5002. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:385
  5003. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:70
  5004. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:184
  5005. msgid "Source"
  5006. msgstr "Πηγή"
  5007. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:84
  5008. msgid "Source Address"
  5009. msgstr ""
  5010. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57
  5011. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:57
  5012. msgid "Source interface"
  5013. msgstr ""
  5014. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:891
  5015. msgid ""
  5016. "Specifies a fixed list of DNS search domains to announce via DHCPv6. If left "
  5017. "unspecified, the local device DNS search domain will be announced."
  5018. msgstr ""
  5019. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:879
  5020. msgid ""
  5021. "Specifies a fixed list of IPv6 DNS server addresses to announce via DHCPv6. "
  5022. "If left unspecified, the device will announce itself as IPv6 DNS server "
  5023. "unless the <em>Local IPv6 DNS server</em> option is disabled."
  5024. msgstr ""
  5025. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:342
  5026. msgid ""
  5027. "Specifies that duplicate frames (received on inactive ports) should be "
  5028. "dropped or delivered"
  5029. msgstr ""
  5030. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:358
  5031. msgid "Specifies the ARP link monitoring frequency in milliseconds"
  5032. msgstr ""
  5033. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:366
  5034. msgid "Specifies the IP addresses to use for ARP monitoring"
  5035. msgstr ""
  5036. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:395
  5037. msgid "Specifies the MII link monitoring frequency in milliseconds"
  5038. msgstr ""
  5039. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:259
  5040. msgid "Specifies the aggregation selection logic to use"
  5041. msgstr ""
  5042. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:292
  5043. msgid "Specifies the directory the device is attached to"
  5044. msgstr ""
  5045. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:792
  5046. msgid ""
  5047. "Specifies the flags sent in <abbr title=\"Router Advertisement\">RA</abbr> "
  5048. "messages, for example to instruct clients to request further information via "
  5049. "stateful DHCPv6."
  5050. msgstr ""
  5051. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:252
  5052. msgid ""
  5053. "Specifies the mac-address for the actor in protocol packet exchanges "
  5054. "(LACPDUs). If empty, masters' mac address defaults to system default"
  5055. msgstr ""
  5056. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:175
  5057. msgid ""
  5058. "Specifies the maximum amount of failed ARP requests until hosts are presumed "
  5059. "to be dead"
  5060. msgstr ""
  5061. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:171
  5062. msgid ""
  5063. "Specifies the maximum amount of seconds after which hosts are presumed to be "
  5064. "dead"
  5065. msgstr ""
  5066. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:946
  5067. msgid ""
  5068. "Specifies the maximum transmit power the wireless radio may use. Depending "
  5069. "on regulatory requirements and wireless usage, the actual transmit power may "
  5070. "be reduced by the driver."
  5071. msgstr ""
  5072. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:236
  5073. msgid ""
  5074. "Specifies the minimum number of links that must be active before asserting "
  5075. "carrier"
  5076. msgstr ""
  5077. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:200
  5078. msgid "Specifies the mode to be used for this bonding interface"
  5079. msgstr ""
  5080. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:333
  5081. msgid ""
  5082. "Specifies the number of IGMP membership reports to be issued after a "
  5083. "failover event in 200ms intervals"
  5084. msgstr ""
  5085. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:276
  5086. msgid ""
  5087. "Specifies the number of packets to transmit through a slave before moving to "
  5088. "the next one"
  5089. msgstr ""
  5090. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:310
  5091. msgid ""
  5092. "Specifies the number of peer notifications (gratuitous ARPs and unsolicited "
  5093. "IPv6 Neighbor Advertisements) to be issued after a failover event"
  5094. msgstr ""
  5095. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:284
  5096. msgid ""
  5097. "Specifies the number of seconds between instances where the bonding driver "
  5098. "sends learning packets to each slaves peer switch"
  5099. msgstr ""
  5100. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:374
  5101. msgid "Specifies the quantity of ARP IP targets that must be reachable"
  5102. msgstr ""
  5103. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:268
  5104. msgid ""
  5105. "Specifies the rate in which the link partner will be asked to transmit "
  5106. "LACPDU packets"
  5107. msgstr ""
  5108. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:225
  5109. msgid ""
  5110. "Specifies the reselection policy for the primary slave when failure of the "
  5111. "active slave or recovery of the primary slave occurs"
  5112. msgstr ""
  5113. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:244
  5114. msgid "Specifies the system priority"
  5115. msgstr ""
  5116. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:403
  5117. msgid ""
  5118. "Specifies the time in milliseconds to wait before disabling a slave after a "
  5119. "link failure detection"
  5120. msgstr ""
  5121. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:411
  5122. msgid ""
  5123. "Specifies the time in milliseconds to wait before enabling a slave after a "
  5124. "link recovery detection"
  5125. msgstr ""
  5126. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:494
  5127. msgid ""
  5128. "Specifies the wired ports to attach to this bridge. In order to attach "
  5129. "wireless networks, choose the associated interface as network in the "
  5130. "wireless settings."
  5131. msgstr ""
  5132. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:382
  5133. msgid ""
  5134. "Specifies whether ARP probes and replies should be validated or non-ARP "
  5135. "traffic should be filtered for link monitoring"
  5136. msgstr ""
  5137. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:301
  5138. msgid ""
  5139. "Specifies whether active-backup mode should set all slaves to the same MAC "
  5140. "address at enslavement"
  5141. msgstr ""
  5142. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:419
  5143. msgid ""
  5144. "Specifies whether or not miimon should use MII or ETHTOOL ioctls vs. "
  5145. "netif_carrier_ok()"
  5146. msgstr ""
  5147. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:293
  5148. msgid ""
  5149. "Specifies whether to shuffle active flows across slaves based on the load"
  5150. msgstr ""
  5151. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:179
  5152. msgid ""
  5153. "Specifies which slave interfaces should be attached to this bonding interface"
  5154. msgstr ""
  5155. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:212
  5156. msgid ""
  5157. "Specifies which slave is the primary device. It will always be the active "
  5158. "slave while it is available"
  5159. msgstr ""
  5160. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:63
  5161. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:67
  5162. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:62
  5163. msgid "Specify a TOS (Type of Service)."
  5164. msgstr ""
  5165. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:74
  5166. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:79
  5167. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:79
  5168. msgid ""
  5169. "Specify a TOS (Type of Service). Can be <code>inherit</code> (the outer "
  5170. "header inherits the value of the inner header) or an hexadecimal value "
  5171. "<code>00..FF</code> (optional)."
  5172. msgstr ""
  5173. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:74
  5174. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:74
  5175. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:79
  5176. msgid ""
  5177. "Specify a TTL (Time to Live) for the encapsulating packet other than the "
  5178. "default (64) (optional)."
  5179. msgstr ""
  5180. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:69
  5181. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:58
  5182. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:62
  5183. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:57
  5184. msgid ""
  5185. "Specify a TTL (Time to Live) for the encapsulating packet other than the "
  5186. "default (64)."
  5187. msgstr ""
  5188. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:84
  5189. msgid ""
  5190. "Specify a Traffic Class. Can be <code>inherit</code> (the outer header "
  5191. "inherits the value of the inner header) or an hexadecimal value <code>00.."
  5192. "FF</code> (optional)."
  5193. msgstr ""
  5194. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:64
  5195. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:69
  5196. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:69
  5197. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:74
  5198. msgid ""
  5199. "Specify an MTU (Maximum Transmission Unit) other than the default (1280 "
  5200. "bytes) (optional)."
  5201. msgstr ""
  5202. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:53
  5203. msgid ""
  5204. "Specify an MTU (Maximum Transmission Unit) other than the default (1280 "
  5205. "bytes)."
  5206. msgstr ""
  5207. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2011
  5208. msgid "Specify the secret encryption key here."
  5209. msgstr "Ορίστε το κρυφό κλειδί κρυπτογράφησης."
  5210. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:657
  5211. msgid "Stale neighbour cache timeout"
  5212. msgstr ""
  5213. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:669
  5214. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:99
  5215. msgid "Start"
  5216. msgstr "Αρχή"
  5217. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:134
  5218. msgid "Start WPS"
  5219. msgstr ""
  5220. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:76
  5221. msgid "Start priority"
  5222. msgstr "Προτεραιότητα εκκίνησης"
  5223. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1835
  5224. msgid "Start refresh"
  5225. msgstr ""
  5226. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4276
  5227. msgid "Starting configuration apply…"
  5228. msgstr ""
  5229. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1748
  5230. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:398
  5231. msgid "Starting wireless scan..."
  5232. msgstr ""
  5233. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:109
  5234. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:64
  5235. msgid "Startup"
  5236. msgstr "Εκκίνηση"
  5237. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:19
  5238. msgid "Static IPv4 Routes"
  5239. msgstr "Στατικές Διαδρομές IPv4"
  5240. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:19
  5241. msgid "Static IPv6 Routes"
  5242. msgstr "Στατικές Διαδρομές IPv6"
  5243. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:90
  5244. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:129
  5245. msgid "Static Lease"
  5246. msgstr ""
  5247. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:165
  5248. msgid "Static Leases"
  5249. msgstr "Στατικά Leases"
  5250. #: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:76
  5251. msgid "Static Routes"
  5252. msgstr "Στατικές Διαδρομές"
  5253. #: modules/luci-base/htdocs/luci-static/resources/network.js:2099
  5254. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:172
  5255. #: modules/luci-compat/luasrc/model/network.lua:967
  5256. msgid "Static address"
  5257. msgstr "Στατική διεύθυνση"
  5258. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:411
  5259. msgid ""
  5260. "Static leases are used to assign fixed IP addresses and symbolic hostnames "
  5261. "to DHCP clients. They are also required for non-dynamic interface "
  5262. "configurations where only hosts with a corresponding lease are served."
  5263. msgstr ""
  5264. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1174
  5265. msgid "Station inactivity limit"
  5266. msgstr ""
  5267. #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:16
  5268. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:541
  5269. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:928
  5270. #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:9
  5271. msgid "Status"
  5272. msgstr "Κατάσταση"
  5273. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:512
  5274. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:101
  5275. msgid "Stop"
  5276. msgstr ""
  5277. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:129
  5278. msgid "Stop WPS"
  5279. msgstr ""
  5280. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1746
  5281. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1840
  5282. msgid "Stop refresh"
  5283. msgstr ""
  5284. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:629
  5285. msgid "Strict filtering"
  5286. msgstr ""
  5287. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:259
  5288. msgid "Strict order"
  5289. msgstr "Αυστηρή σειρά"
  5290. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:33
  5291. msgid "Strong"
  5292. msgstr ""
  5293. #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:61
  5294. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2036
  5295. msgid "Submit"
  5296. msgstr "Υποβολή"
  5297. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:203
  5298. msgid "Suppress logging"
  5299. msgstr ""
  5300. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:204
  5301. msgid "Suppress logging of the routine operation of these protocols"
  5302. msgstr ""
  5303. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:44
  5304. msgid "Swap free"
  5305. msgstr ""
  5306. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:139
  5307. #: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:3
  5308. msgid "Switch"
  5309. msgstr "Switch"
  5310. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:172
  5311. msgid "Switch %q"
  5312. msgstr ""
  5313. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:150
  5314. msgid ""
  5315. "Switch %q has an unknown topology - the VLAN settings might not be accurate."
  5316. msgstr ""
  5317. #: modules/luci-base/htdocs/luci-static/resources/network.js:2998
  5318. #: modules/luci-compat/luasrc/model/network.lua:1426
  5319. msgid "Switch VLAN"
  5320. msgstr ""
  5321. #: modules/luci-base/htdocs/luci-static/resources/network.js:2995
  5322. msgid "Switch port"
  5323. msgstr ""
  5324. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:560
  5325. msgid "Switch protocol"
  5326. msgstr ""
  5327. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:103
  5328. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:104
  5329. #: modules/luci-compat/luasrc/view/cbi/ipaddr.htm:26
  5330. msgid "Switch to CIDR list notation"
  5331. msgstr ""
  5332. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2678
  5333. msgid "Symbolic link"
  5334. msgstr ""
  5335. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:75
  5336. msgid "Sync with NTP-Server"
  5337. msgstr ""
  5338. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:67
  5339. msgid "Sync with browser"
  5340. msgstr ""
  5341. #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:26
  5342. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:17
  5343. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:99
  5344. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:3
  5345. msgid "System"
  5346. msgstr "Σύστημα"
  5347. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/syslog.js:25
  5348. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:39
  5349. msgid "System Log"
  5350. msgstr "Καταγραφή Συστήματος"
  5351. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:243
  5352. msgid "System Priority"
  5353. msgstr ""
  5354. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:104
  5355. msgid "System Properties"
  5356. msgstr "Ιδιότητες Συστήματος"
  5357. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:148
  5358. msgid "System log buffer size"
  5359. msgstr ""
  5360. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:338
  5361. msgid "TCP:"
  5362. msgstr "TCP:"
  5363. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:163
  5364. msgid "TFTP Settings"
  5365. msgstr "Ρυθμίσεις TFTP"
  5366. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:371
  5367. msgid "TFTP server root"
  5368. msgstr ""
  5369. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:50
  5370. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:85
  5371. msgid "TX"
  5372. msgstr "TX"
  5373. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:232
  5374. msgid "TX Rate"
  5375. msgstr ""
  5376. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:618
  5377. msgid "TX queue length"
  5378. msgstr ""
  5379. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:18
  5380. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:167
  5381. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:186
  5382. msgid "Table"
  5383. msgstr "Πίνακας"
  5384. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:31
  5385. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:66
  5386. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:164
  5387. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:183
  5388. msgid "Target"
  5389. msgstr "Στόχος"
  5390. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:103
  5391. msgid "Target network"
  5392. msgstr ""
  5393. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:50
  5394. msgid "Terminate"
  5395. msgstr "Τερματισμός"
  5396. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:832
  5397. msgid ""
  5398. "The <abbr title=\"Maximum Transmission Unit\">MTU</abbr> to be published in "
  5399. "<abbr title=\"Router Advertisement, ICMPv6 Type 134\">RA</abbr> messages. "
  5400. "Minimum is 1280 bytes."
  5401. msgstr ""
  5402. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:794
  5403. msgid ""
  5404. "The <em>Managed address configuration</em> (M) flag indicates that IPv6 "
  5405. "addresses are available via DHCPv6."
  5406. msgstr ""
  5407. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:798
  5408. msgid ""
  5409. "The <em>Mobile IPv6 Home Agent</em> (H) flag indicates that the device is "
  5410. "also acting as Mobile IPv6 home agent on this link."
  5411. msgstr ""
  5412. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:796
  5413. msgid ""
  5414. "The <em>Other configuration</em> (O) flag indicates that other information, "
  5415. "such as DNS servers, is available via DHCPv6."
  5416. msgstr ""
  5417. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:84
  5418. msgid "The <em>block mount</em> command failed with code %d"
  5419. msgstr ""
  5420. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:937
  5421. msgid ""
  5422. "The DNS server entries in the local resolv.conf are primarily sorted by the "
  5423. "weight specified here"
  5424. msgstr ""
  5425. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:77
  5426. msgid ""
  5427. "The HE.net endpoint update configuration changed, you must now use the plain "
  5428. "username instead of the user ID!"
  5429. msgstr ""
  5430. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:40
  5431. msgid "The IPv4 address or the fully-qualified domain name of the remote end."
  5432. msgstr ""
  5433. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:42
  5434. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:42
  5435. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:40
  5436. msgid ""
  5437. "The IPv4 address or the fully-qualified domain name of the remote tunnel end."
  5438. msgstr ""
  5439. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:40
  5440. msgid "The IPv6 address or the fully-qualified domain name of the remote end."
  5441. msgstr ""
  5442. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:42
  5443. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:42
  5444. msgid ""
  5445. "The IPv6 address or the fully-qualified domain name of the remote tunnel end."
  5446. msgstr ""
  5447. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:53
  5448. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:59
  5449. msgid ""
  5450. "The IPv6 prefix assigned to the provider, usually ends with <code>::</code>"
  5451. msgstr ""
  5452. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:586
  5453. msgid "The MTU must not exceed the parent device MTU of %d bytes"
  5454. msgstr ""
  5455. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:864
  5456. msgid "The VLAN ID must be unique"
  5457. msgstr ""
  5458. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1996
  5459. msgid ""
  5460. "The allowed characters are: <code>A-Z</code>, <code>a-z</code>, <code>0-9</"
  5461. "code> and <code>_</code>"
  5462. msgstr ""
  5463. "Οι επιτρεπόμενοι χαρακτήρες είναι: <code>A-Z</code>, <code>a-z</code>, "
  5464. "<code>0-9</code> και <code>_</code>"
  5465. #: modules/luci-compat/luasrc/view/cbi/error.htm:6
  5466. msgid "The configuration file could not be loaded due to the following error:"
  5467. msgstr ""
  5468. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1990
  5469. msgid ""
  5470. "The correct SSID must be manually specified when joining a hidden wireless "
  5471. "network"
  5472. msgstr ""
  5473. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4152
  5474. msgid ""
  5475. "The device could not be reached within %d seconds after applying the pending "
  5476. "changes, which caused the configuration to be rolled back for safety "
  5477. "reasons. If you believe that the configuration changes are correct "
  5478. "nonetheless, perform an unchecked configuration apply. Alternatively, you "
  5479. "can dismiss this warning and edit changes before attempting to apply again, "
  5480. "or revert all pending changes to keep the currently working configuration "
  5481. "state."
  5482. msgstr ""
  5483. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:280
  5484. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:392
  5485. msgid ""
  5486. "The device file of the memory or partition (<abbr title=\"for example\">e.g."
  5487. "</abbr> <code>/dev/sda1</code>)"
  5488. msgstr ""
  5489. "Το αρχείο συσκευής της μνήμης ή του διαμέρισματος (<abbr title="
  5490. "\"παραδείγματος χάρην\">π.χ.</abbr> <code>/dev/sda1</code>)"
  5491. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:450
  5492. msgid "The device name \"%s\" is already taken"
  5493. msgstr ""
  5494. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:393
  5495. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:427
  5496. msgid ""
  5497. "The existing network configuration needs to be changed for LuCI to function "
  5498. "properly."
  5499. msgstr ""
  5500. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:793
  5501. msgid ""
  5502. "The existing wireless configuration needs to be changed for LuCI to function "
  5503. "properly."
  5504. msgstr ""
  5505. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:215
  5506. msgid ""
  5507. "The flash image was uploaded. Below is the checksum and file size listed, "
  5508. "compare them with the original file to ensure data integrity. <br /> Click "
  5509. "'Continue' below to start the flash procedure."
  5510. msgstr ""
  5511. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:198
  5512. msgid "The following rules are currently active on this system."
  5513. msgstr "Οι παρακάτω κανόνες είναι αυτή τη στιγμή ενεργοί σε αυτό το σύστημα."
  5514. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:154
  5515. msgid "The gateway address must not be a local IP address"
  5516. msgstr ""
  5517. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:166
  5518. msgid "The given SSH public key has already been added."
  5519. msgstr ""
  5520. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:172
  5521. msgid ""
  5522. "The given SSH public key is invalid. Please supply proper public RSA or "
  5523. "ECDSA keys."
  5524. msgstr ""
  5525. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1088
  5526. msgid "The interface name is already used"
  5527. msgstr ""
  5528. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1094
  5529. msgid "The interface name is too long"
  5530. msgstr ""
  5531. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:61
  5532. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:55
  5533. msgid ""
  5534. "The length of the IPv4 prefix in bits, the remainder is used in the IPv6 "
  5535. "addresses."
  5536. msgstr ""
  5537. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:57
  5538. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:63
  5539. msgid "The length of the IPv6 prefix in bits"
  5540. msgstr ""
  5541. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:163
  5542. msgid "The local IPv4 address"
  5543. msgstr ""
  5544. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:46
  5545. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:46
  5546. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:44
  5547. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:44
  5548. msgid "The local IPv4 address over which the tunnel is created (optional)."
  5549. msgstr ""
  5550. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:169
  5551. msgid "The local IPv4 netmask"
  5552. msgstr ""
  5553. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:46
  5554. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:53
  5555. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:44
  5556. msgid "The local IPv6 address over which the tunnel is created (optional)."
  5557. msgstr ""
  5558. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:575
  5559. msgid ""
  5560. "The max response time in centiseconds inserted into group-specific queries "
  5561. "sent in response to leave group messages. It is also the amount of time "
  5562. "between group-specific query messages. This value may be tuned to modify the "
  5563. "\"leave latency\" of the network. A reduced value results in reduced time to "
  5564. "detect the loss of the last member of a group"
  5565. msgstr ""
  5566. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:561
  5567. msgid ""
  5568. "The max response time in centiseconds inserted into the periodic general "
  5569. "queries. By varying the value, an administrator may tune the burstiness of "
  5570. "IGMP messages on the subnet; larger values make the traffic less bursty, as "
  5571. "host responses are spread out over a larger interval"
  5572. msgstr ""
  5573. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:849
  5574. msgid ""
  5575. "The maximum hops to be published in <abbr title=\"Router Advertisement\">RA</"
  5576. "abbr> messages. Maximum is 255 hops."
  5577. msgstr ""
  5578. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2002
  5579. msgid "The network name is already used"
  5580. msgstr ""
  5581. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:139
  5582. msgid ""
  5583. "The network ports on this device can be combined to several <abbr title="
  5584. "\"Virtual Local Area Network\">VLAN</abbr>s in which computers can "
  5585. "communicate directly with each other. <abbr title=\"Virtual Local Area "
  5586. "Network\">VLAN</abbr>s are often used to separate different network "
  5587. "segments. Often there is by default one Uplink port for a connection to the "
  5588. "next greater network like the internet and other ports for a local network."
  5589. msgstr ""
  5590. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:569
  5591. msgid "The query response interval must be lower than the query interval value"
  5592. msgstr ""
  5593. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:158
  5594. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:42
  5595. msgid "The reboot command failed with code %d"
  5596. msgstr "Η εντολή επανεκκίνησης απέτυχε με σφάλμα %d"
  5597. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:147
  5598. msgid "The restore command failed with code %d"
  5599. msgstr ""
  5600. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:551
  5601. msgid ""
  5602. "The robustness value allows tuning for the expected packet loss on the "
  5603. "network. If a network is expected to be lossy, the robustness value may be "
  5604. "increased. IGMP is robust to (Robustness-1) packet losses"
  5605. msgstr ""
  5606. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1369
  5607. msgid "The selected %s mode is incompatible with %s encryption"
  5608. msgstr ""
  5609. #: modules/luci-base/luasrc/view/csrftoken.htm:11
  5610. msgid "The submitted security token is invalid or already expired!"
  5611. msgstr ""
  5612. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:98
  5613. msgid ""
  5614. "The system is erasing the configuration partition now and will reboot itself "
  5615. "when finished."
  5616. msgstr ""
  5617. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:289
  5618. #, fuzzy
  5619. msgid ""
  5620. "The system is flashing now.<br /> DO NOT POWER OFF THE DEVICE!<br /> Wait a "
  5621. "few minutes before you try to reconnect. It might be necessary to renew the "
  5622. "address of your computer to reach the device again, depending on your "
  5623. "settings."
  5624. msgstr ""
  5625. "Το σύστημα φλασάρετε τώρα.<br /> ΜΗ ΣΒΗΣΕΤΕ ΤΗΝ ΣΥΣΚΕΥΗ!<br /> Περιμένετε "
  5626. "λίγα λεπτά για να δοκιμάσετε επανασύνδεση. Ανάλογα με τις ρυθμίσεις σας, "
  5627. "είναι πιθανό να χρειαστεί να ανανεώσετε την διεύθυνση του υπολογιστή σας για "
  5628. "να αποκτήσετε ξανά πρόσβαση στη συσκευή."
  5629. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:163
  5630. msgid ""
  5631. "The system is rebooting now. If the restored configuration changed the "
  5632. "current LAN IP address, you might need to reconnect manually."
  5633. msgstr ""
  5634. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:85
  5635. msgid "The system password has been successfully changed."
  5636. msgstr ""
  5637. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:315
  5638. msgid "The sysupgrade command failed with code %d"
  5639. msgstr ""
  5640. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:120
  5641. msgid ""
  5642. "The uploaded backup archive appears to be valid and contains the files "
  5643. "listed below. Press \"Continue\" to restore the backup and reboot, or "
  5644. "\"Cancel\" to abort the operation."
  5645. msgstr ""
  5646. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:115
  5647. msgid "The uploaded backup archive is not readable"
  5648. msgstr ""
  5649. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:244
  5650. msgid "The uploaded firmware does not allow keeping current configuration."
  5651. msgstr ""
  5652. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:239
  5653. msgid ""
  5654. "The uploaded image file does not contain a supported format. Make sure that "
  5655. "you choose the generic image format for your platform."
  5656. msgstr ""
  5657. "Η εικόνα που ανεβάσατε δεν περιέχει κάποια υποστηριζόμενη μορφή. Βεβαιωθείτε "
  5658. "ότι επιλέξατε την γενική μορφή εικόνας για την πλατφόρμα σας."
  5659. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1414
  5660. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1426
  5661. msgid "The value is overridden by configuration. Original: %s"
  5662. msgstr ""
  5663. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:562
  5664. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:594
  5665. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:121
  5666. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:170
  5667. msgid "There are no active leases"
  5668. msgstr ""
  5669. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4291
  5670. msgid "There are no changes to apply"
  5671. msgstr ""
  5672. #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:55
  5673. #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:213
  5674. #: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:60
  5675. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:80
  5676. msgid ""
  5677. "There is no password set on this router. Please configure a root password to "
  5678. "protect the web interface."
  5679. msgstr ""
  5680. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:49
  5681. msgid "This IPv4 address of the relay"
  5682. msgstr ""
  5683. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1623
  5684. msgid "This authentication type is not applicable to the selected EAP method."
  5685. msgstr ""
  5686. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:57
  5687. msgid "This does not look like a valid PEM file"
  5688. msgstr ""
  5689. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:256
  5690. msgid ""
  5691. "This file may contain lines like 'server=/domain/1.2.3.4' or "
  5692. "'server=1.2.3.4' for domain-specific or full upstream <abbr title=\"Domain "
  5693. "Name System\">DNS</abbr> servers."
  5694. msgstr ""
  5695. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:424
  5696. #: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:16
  5697. msgid ""
  5698. "This is a list of shell glob patterns for matching files and directories to "
  5699. "include during sysupgrade. Modified files in /etc/config/ and certain other "
  5700. "configurations are automatically preserved."
  5701. msgstr ""
  5702. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:81
  5703. msgid ""
  5704. "This is either the \"Update Key\" configured for the tunnel or the account "
  5705. "password if no update key has been configured"
  5706. msgstr ""
  5707. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:116
  5708. msgid ""
  5709. "This is the content of /etc/rc.local. Insert your own commands here (in "
  5710. "front of 'exit 0') to execute them at the end of the boot process."
  5711. msgstr ""
  5712. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:54
  5713. msgid ""
  5714. "This is the local endpoint address assigned by the tunnel broker, it usually "
  5715. "ends with <code>...:2/64</code>"
  5716. msgstr ""
  5717. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:173
  5718. msgid ""
  5719. "This is the only <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</"
  5720. "abbr> in the local network"
  5721. msgstr ""
  5722. "Αυτός είναι ο μόνος <abbr title=\"Dynamic Host Configuration Protocol"
  5723. "\">DHCP</abbr> στο τοπικό δίκτυο"
  5724. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:73
  5725. msgid "This is the plain username for logging into the account"
  5726. msgstr ""
  5727. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:57
  5728. msgid ""
  5729. "This is the prefix routed to you by the tunnel broker for use by clients"
  5730. msgstr ""
  5731. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/crontab.js:28
  5732. msgid "This is the system crontab in which scheduled tasks can be defined."
  5733. msgstr ""
  5734. "Αυτό είναι το crontab του συστήματος στο οποίο μπορούν να οριστούν "
  5735. "προγραμματισμένες εργασίες."
  5736. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:50
  5737. msgid ""
  5738. "This is usually the address of the nearest PoP operated by the tunnel broker"
  5739. msgstr ""
  5740. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:65
  5741. msgid ""
  5742. "This list gives an overview over currently running system processes and "
  5743. "their status."
  5744. msgstr ""
  5745. "Αυτή η λίστα δίνει μία εικόνα των τρέχοντων εργασιών συστήματος και της "
  5746. "κατάστασής τους."
  5747. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1577
  5748. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1635
  5749. msgid ""
  5750. "This option cannot be used because the ca-bundle package is not installed."
  5751. msgstr ""
  5752. #: modules/luci-base/htdocs/luci-static/resources/form.js:2230
  5753. #: modules/luci-base/htdocs/luci-static/resources/form.js:2536
  5754. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:172
  5755. #: modules/luci-compat/luasrc/view/cbi/tsection.htm:32
  5756. msgid "This section contains no values yet"
  5757. msgstr "Αυτή η ενότητα δεν περιέχει ακόμη τιμές"
  5758. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:110
  5759. msgid "Time Synchronization"
  5760. msgstr ""
  5761. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:653
  5762. msgid "Time in milliseconds"
  5763. msgstr ""
  5764. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:527
  5765. msgid "Time in seconds to spend in listening and learning states"
  5766. msgstr ""
  5767. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1165
  5768. msgid "Time interval for rekeying GTK"
  5769. msgstr ""
  5770. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:15
  5771. msgid "Timed-out"
  5772. msgstr ""
  5773. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:657
  5774. msgid "Timeout in seconds"
  5775. msgstr ""
  5776. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:513
  5777. msgid "Timeout in seconds for learned MAC addresses in the forwarding database"
  5778. msgstr ""
  5779. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:532
  5780. msgid "Timeout in seconds until topology updates on link loss"
  5781. msgstr ""
  5782. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:131
  5783. msgid "Timezone"
  5784. msgstr "Ζώνη ώρας"
  5785. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2679
  5786. msgid "To login…"
  5787. msgstr ""
  5788. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:370
  5789. msgid ""
  5790. "To restore configuration files, you can upload a previously generated backup "
  5791. "archive here. To reset the firmware to its initial state, click \"Perform "
  5792. "reset\" (only possible with squashfs images)."
  5793. msgstr ""
  5794. "To restore configuration files, you can upload a previously generated backup "
  5795. "archive here. Για να επαναφέρετε το υλικολογισμικό στην αρχική του "
  5796. "κατάσταση, κάντε κλικ στο \"Εκτέλεσε επαναφορά\" (δυνατό μόνο σε squashfs "
  5797. "εικόνες)."
  5798. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1462
  5799. msgid "Tone"
  5800. msgstr ""
  5801. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:35
  5802. msgid "Total Available"
  5803. msgstr "Διαθέσιμο Συνολικά"
  5804. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:102
  5805. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:103
  5806. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:113
  5807. msgid "Traceroute"
  5808. msgstr ""
  5809. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:54
  5810. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:65
  5811. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:109
  5812. msgid "Traffic"
  5813. msgstr "Κίνηση"
  5814. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:79
  5815. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:84
  5816. msgid "Traffic Class"
  5817. msgstr ""
  5818. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:387
  5819. msgid "Transfer"
  5820. msgstr "Μεταφέρθηκαν"
  5821. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:24
  5822. msgid "Transmit"
  5823. msgstr "Εκπομπή"
  5824. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:317
  5825. msgid "Transmit Hash Policy"
  5826. msgstr ""
  5827. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:74
  5828. msgid "Trigger"
  5829. msgstr ""
  5830. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:19
  5831. msgid "Trigger Mode"
  5832. msgstr ""
  5833. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:69
  5834. msgid "Tunnel ID"
  5835. msgstr ""
  5836. #: modules/luci-base/htdocs/luci-static/resources/network.js:3001
  5837. #: modules/luci-compat/luasrc/model/network.lua:1431
  5838. msgid "Tunnel Interface"
  5839. msgstr "Διεπαφή Τούνελ"
  5840. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:44
  5841. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:55
  5842. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:76
  5843. msgid "Tunnel Link"
  5844. msgstr ""
  5845. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1371
  5846. msgid "Tunnel device"
  5847. msgstr ""
  5848. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:185
  5849. msgid "Tx-Power"
  5850. msgstr "Ισχύς Εκπομπής"
  5851. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:45
  5852. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1402
  5853. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:163
  5854. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:43
  5855. msgid "Type"
  5856. msgstr "Τύπος"
  5857. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:328
  5858. msgid "UDP:"
  5859. msgstr "UDP:"
  5860. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:91
  5861. msgid "UMTS only"
  5862. msgstr ""
  5863. #: modules/luci-compat/luasrc/model/network/proto_3g.lua:10
  5864. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:43
  5865. msgid "UMTS/GPRS/EV-DO"
  5866. msgstr "UMTS/GPRS/EV-DO"
  5867. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:254
  5868. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:360
  5869. msgid "UUID"
  5870. msgstr "UUID"
  5871. #: modules/luci-base/htdocs/luci-static/resources/network.js:16
  5872. #: modules/luci-base/htdocs/luci-static/resources/network.js:17
  5873. #: modules/luci-compat/luasrc/model/network.lua:34
  5874. #: modules/luci-compat/luasrc/model/network.lua:35
  5875. msgid "Unable to determine device name"
  5876. msgstr ""
  5877. #: modules/luci-base/htdocs/luci-static/resources/network.js:18
  5878. #: modules/luci-compat/luasrc/model/network.lua:36
  5879. msgid "Unable to determine external IP address"
  5880. msgstr ""
  5881. #: modules/luci-base/htdocs/luci-static/resources/network.js:19
  5882. #: modules/luci-compat/luasrc/model/network.lua:37
  5883. msgid "Unable to determine upstream interface"
  5884. msgstr ""
  5885. #: modules/luci-base/luasrc/view/error404.htm:11
  5886. msgid "Unable to dispatch"
  5887. msgstr ""
  5888. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/dmesg.js:9
  5889. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/syslog.js:15
  5890. msgid "Unable to load log data:"
  5891. msgstr ""
  5892. #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:54
  5893. #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:54
  5894. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:22
  5895. msgid "Unable to obtain client ID"
  5896. msgstr ""
  5897. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:221
  5898. msgid "Unable to obtain mount information"
  5899. msgstr ""
  5900. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:307
  5901. msgid "Unable to reset ip6tables counters: %s"
  5902. msgstr ""
  5903. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:305
  5904. msgid "Unable to reset iptables counters: %s"
  5905. msgstr ""
  5906. #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:61
  5907. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:7
  5908. msgid "Unable to resolve AFTR host name"
  5909. msgstr ""
  5910. #: modules/luci-base/htdocs/luci-static/resources/network.js:20
  5911. #: modules/luci-compat/luasrc/model/network.lua:38
  5912. msgid "Unable to resolve peer host name"
  5913. msgstr ""
  5914. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:313
  5915. msgid "Unable to restart firewall: %s"
  5916. msgstr ""
  5917. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/crontab.js:20
  5918. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:340
  5919. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:57
  5920. msgid "Unable to save contents: %s"
  5921. msgstr ""
  5922. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:32
  5923. msgid "Unavailable Seconds (UAS)"
  5924. msgstr ""
  5925. #: modules/luci-base/htdocs/luci-static/resources/fs.js:102
  5926. msgid "Unexpected reply data format"
  5927. msgstr ""
  5928. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1434
  5929. msgid ""
  5930. "Unique Local Address - in the range <code>fc00::/7</code>. Typically only "
  5931. "within the &#8216;local&#8217; half <code>fd00::/8</code>. ULA for IPv6 is "
  5932. "analogous to IPv4 private network addressing. This prefix is randomly "
  5933. "generated at first install."
  5934. msgstr ""
  5935. #: modules/luci-base/htdocs/luci-static/resources/network.js:2101
  5936. #: modules/luci-compat/luasrc/model/network.lua:971
  5937. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:17
  5938. msgid "Unknown"
  5939. msgstr "Άγνωστο"
  5940. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:47
  5941. msgid "Unknown and unsupported connection method."
  5942. msgstr ""
  5943. #: modules/luci-base/htdocs/luci-static/resources/network.js:2410
  5944. #: modules/luci-compat/luasrc/model/network.lua:1138
  5945. msgid "Unknown error (%s)"
  5946. msgstr ""
  5947. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:412
  5948. msgid "Unknown error code"
  5949. msgstr ""
  5950. #: modules/luci-base/htdocs/luci-static/resources/network.js:2098
  5951. #: modules/luci-base/htdocs/luci-static/resources/protocol/none.js:6
  5952. #: modules/luci-compat/luasrc/model/network.lua:965
  5953. msgid "Unmanaged"
  5954. msgstr ""
  5955. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:195
  5956. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:217
  5957. msgid "Unmount"
  5958. msgstr ""
  5959. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:115
  5960. msgid "Unnamed key"
  5961. msgstr ""
  5962. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3996
  5963. msgid "Unsaved Changes"
  5964. msgstr "Μη-αποθηκευμένες Αλλαγές"
  5965. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:410
  5966. msgid "Unspecified error"
  5967. msgstr ""
  5968. #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:64
  5969. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:9
  5970. msgid "Unsupported MAP type"
  5971. msgstr ""
  5972. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:69
  5973. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:27
  5974. msgid "Unsupported modem"
  5975. msgstr ""
  5976. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:299
  5977. msgid "Unsupported protocol type."
  5978. msgstr ""
  5979. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:151
  5980. msgid "Up"
  5981. msgstr ""
  5982. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:410
  5983. msgid "Up Delay"
  5984. msgstr ""
  5985. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3883
  5986. msgid "Upload"
  5987. msgstr ""
  5988. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:411
  5989. msgid ""
  5990. "Upload a sysupgrade-compatible image here to replace the running firmware."
  5991. msgstr ""
  5992. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:138
  5993. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:169
  5994. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:382
  5995. msgid "Upload archive..."
  5996. msgstr ""
  5997. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2837
  5998. msgid "Upload file"
  5999. msgstr ""
  6000. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2812
  6001. msgid "Upload file…"
  6002. msgstr ""
  6003. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2759
  6004. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3871
  6005. msgid "Upload request failed: %s"
  6006. msgstr ""
  6007. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3790
  6008. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3844
  6009. msgid "Uploading file…"
  6010. msgstr ""
  6011. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:794
  6012. msgid ""
  6013. "Upon pressing \"Continue\", anonymous \"wifi-iface\" sections will be "
  6014. "assigned with a name in the form <em>wifinet#</em> and the network will be "
  6015. "restarted to apply the updated configuration."
  6016. msgstr ""
  6017. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:394
  6018. msgid ""
  6019. "Upon pressing \"Continue\", bridges configuration will be updated and the "
  6020. "network will be restarted to apply the updated configuration."
  6021. msgstr ""
  6022. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:428
  6023. msgid ""
  6024. "Upon pressing \"Continue\", ifname options will get renamed and the network "
  6025. "will be restarted to apply the updated configuration."
  6026. msgstr ""
  6027. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:82
  6028. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:60
  6029. msgid "Uptime"
  6030. msgstr "Χρόνος εν λειτουργία"
  6031. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:177
  6032. msgid "Use <code>/etc/ethers</code>"
  6033. msgstr "Χρήση <code>/etc/ethers</code>"
  6034. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:271
  6035. msgid "Use DHCP advertised servers"
  6036. msgstr ""
  6037. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:167
  6038. msgid "Use DHCP gateway"
  6039. msgstr "Χρήση πύλης DHCP"
  6040. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:923
  6041. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:68
  6042. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:121
  6043. msgid "Use DNS servers advertised by peer"
  6044. msgstr ""
  6045. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:622
  6046. msgid "Use ISO/IEC 3166 alpha2 country codes."
  6047. msgstr ""
  6048. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:48
  6049. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:89
  6050. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:69
  6051. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6to4.js:53
  6052. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:67
  6053. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:84
  6054. msgid "Use MTU on tunnel interface"
  6055. msgstr ""
  6056. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:85
  6057. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:65
  6058. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6to4.js:49
  6059. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:80
  6060. msgid "Use TTL on tunnel interface"
  6061. msgstr ""
  6062. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:320
  6063. msgid "Use XOR of hardware MAC addresses (layer2)"
  6064. msgstr ""
  6065. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:321
  6066. msgid "Use XOR of hardware MAC addresses and IP addresses (layer2+3)"
  6067. msgstr ""
  6068. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:323
  6069. msgid ""
  6070. "Use XOR of hardware MAC addresses and IP addresses, rely on skb_flow_dissect "
  6071. "(encap2+3)"
  6072. msgstr ""
  6073. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:294
  6074. msgid "Use as external overlay (/overlay)"
  6075. msgstr ""
  6076. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:293
  6077. msgid "Use as root filesystem (/)"
  6078. msgstr ""
  6079. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34
  6080. msgid "Use broadcast flag"
  6081. msgstr ""
  6082. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1211
  6083. msgid "Use builtin IPv6-management"
  6084. msgstr ""
  6085. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:927
  6086. msgid "Use custom DNS servers"
  6087. msgstr ""
  6088. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:919
  6089. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:64
  6090. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:110
  6091. msgid "Use default gateway"
  6092. msgstr "Χρήση προεπιλεγμένης πύλης"
  6093. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:941
  6094. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:72
  6095. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:115
  6096. msgid "Use gateway metric"
  6097. msgstr ""
  6098. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:88
  6099. msgid "Use legacy MAP"
  6100. msgstr ""
  6101. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:88
  6102. msgid ""
  6103. "Use legacy MAP interface identifier format (draft-ietf-softwire-map-00) "
  6104. "instead of RFC7597"
  6105. msgstr ""
  6106. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:179
  6107. msgid "Use routing table"
  6108. msgstr ""
  6109. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1570
  6110. msgid "Use system certificates"
  6111. msgstr ""
  6112. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1628
  6113. msgid "Use system certificates for inner-tunnel"
  6114. msgstr ""
  6115. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:412
  6116. msgid ""
  6117. "Use the <em>Add</em> Button to add a new lease entry. The <em>MAC address</"
  6118. "em> identifies the host, the <em>IPv4 address</em> specifies the fixed "
  6119. "address to use, and the <em>Hostname</em> is assigned as a symbolic name to "
  6120. "the requesting host. The optional <em>Lease time</em> can be used to set non-"
  6121. "standard host-specific lease time, e.g. 12h, 3d or infinite."
  6122. msgstr ""
  6123. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:322
  6124. msgid "Use upper layer protocol information (layer3+4)"
  6125. msgstr ""
  6126. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:324
  6127. msgid ""
  6128. "Use upper layer protocol information, rely on skb_flow_dissect (encap3+4)"
  6129. msgstr ""
  6130. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:36
  6131. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:194
  6132. msgid "Used"
  6133. msgstr "Σε χρήση"
  6134. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1466
  6135. msgid "Used Key Slot"
  6136. msgstr "Χρησιμοποιούμενη Υποδοχή Κλειδιού"
  6137. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1509
  6138. msgid ""
  6139. "Used for two different purposes: RADIUS NAS ID and 802.11r R0KH-ID. Not "
  6140. "needed with normal WPA(2)-PSK."
  6141. msgstr ""
  6142. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:111
  6143. msgid "User Group"
  6144. msgstr ""
  6145. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:120
  6146. msgid "User certificate (PEM encoded)"
  6147. msgstr ""
  6148. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:132
  6149. msgid "User key (PEM encoded)"
  6150. msgstr ""
  6151. #: modules/luci-base/luasrc/view/sysauth.htm:23
  6152. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:112
  6153. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:50
  6154. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:56
  6155. msgid "Username"
  6156. msgstr "Όνομα Χρήστη"
  6157. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1530
  6158. msgid "VC-Mux"
  6159. msgstr ""
  6160. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1478
  6161. msgid "VDSL"
  6162. msgstr ""
  6163. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:435
  6164. msgctxt "MACVLAN mode"
  6165. msgid "VEPA (Virtual Ethernet Port Aggregator)"
  6166. msgstr ""
  6167. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:346
  6168. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1365
  6169. msgid "VLAN (802.1ad)"
  6170. msgstr ""
  6171. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:345
  6172. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1362
  6173. msgid "VLAN (802.1q)"
  6174. msgstr ""
  6175. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:414
  6176. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:845
  6177. msgid "VLAN ID"
  6178. msgstr ""
  6179. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:173
  6180. msgid "VLANs on %q"
  6181. msgstr ""
  6182. #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:54
  6183. msgid "VPN"
  6184. msgstr "VPN"
  6185. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:42
  6186. msgid "VPN Local address"
  6187. msgstr ""
  6188. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:46
  6189. msgid "VPN Local port"
  6190. msgstr ""
  6191. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:96
  6192. msgid "VPN Protocol"
  6193. msgstr ""
  6194. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:102
  6195. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:42
  6196. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:58
  6197. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:39
  6198. msgid "VPN Server"
  6199. msgstr "Εξυπηρετητής VPN"
  6200. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:105
  6201. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:45
  6202. msgid "VPN Server port"
  6203. msgstr ""
  6204. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:109
  6205. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:60
  6206. msgid "VPN Server's certificate SHA1 hash"
  6207. msgstr ""
  6208. #: modules/luci-compat/luasrc/model/network/proto_vpnc.lua:9
  6209. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:9
  6210. msgid "VPNC (CISCO 3000 (and others) VPN)"
  6211. msgstr ""
  6212. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:10
  6213. msgid "VXLAN (RFC7348)"
  6214. msgstr ""
  6215. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:53
  6216. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:48
  6217. msgid "VXLAN network identifier"
  6218. msgstr ""
  6219. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:10
  6220. msgid "VXLANv6 (RFC7348)"
  6221. msgstr ""
  6222. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1570
  6223. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1628
  6224. msgid ""
  6225. "Validate server certificate using built-in system CA bundle,<br />requires "
  6226. "the \"ca-bundle\" package"
  6227. msgstr ""
  6228. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:387
  6229. msgid "Validation for all slaves"
  6230. msgstr ""
  6231. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:385
  6232. msgid "Validation only for active slave"
  6233. msgstr ""
  6234. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:386
  6235. msgid "Validation only for backup slaves"
  6236. msgstr ""
  6237. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:149
  6238. msgid "Value must not be empty"
  6239. msgstr ""
  6240. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:73
  6241. msgid "Vendor"
  6242. msgstr ""
  6243. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:40
  6244. msgid "Vendor Class to send when requesting DHCP"
  6245. msgstr ""
  6246. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:196
  6247. msgid "Verifying the uploaded image file."
  6248. msgstr ""
  6249. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:956
  6250. msgid "Very High"
  6251. msgstr ""
  6252. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:348
  6253. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1377
  6254. msgid "Virtual Ethernet"
  6255. msgstr ""
  6256. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:60
  6257. msgid "Virtual dynamic interface"
  6258. msgstr ""
  6259. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1104
  6260. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1105
  6261. msgid "WDS"
  6262. msgstr "WDS"
  6263. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1289
  6264. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1378
  6265. msgid "WEP Open System"
  6266. msgstr ""
  6267. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1290
  6268. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1379
  6269. msgid "WEP Shared Key"
  6270. msgstr "Μοιραζόμενο κλειδί WEP"
  6271. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2011
  6272. msgid "WEP passphrase"
  6273. msgstr "Κωδική φράση WEP"
  6274. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1142
  6275. msgid "WMM Mode"
  6276. msgstr "Υποστήριξη WMM"
  6277. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2011
  6278. msgid "WPA passphrase"
  6279. msgstr "Κωδική φράση WPA"
  6280. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1280
  6281. msgid ""
  6282. "WPA-Encryption requires wpa_supplicant (for client mode) or hostapd (for AP "
  6283. "and ad-hoc mode) to be installed."
  6284. msgstr ""
  6285. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:147
  6286. msgid "WPS status"
  6287. msgstr ""
  6288. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:47
  6289. msgid "Waiting for device..."
  6290. msgstr "Αναμονή για συσκευή..."
  6291. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:175
  6292. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:185
  6293. msgid "Warning"
  6294. msgstr "Προειδοποίηση"
  6295. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:26
  6296. msgid "Warning: There are unsaved changes that will get lost on reboot!"
  6297. msgstr "Προσοχή: Οι μη αποθηκευμένες αλλαγές θα χαθούν με την επανεκκίνηση!"
  6298. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:37
  6299. msgid "Weak"
  6300. msgstr ""
  6301. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1007
  6302. msgid ""
  6303. "When delegating prefixes to multiple downstreams, interfaces with a higher "
  6304. "preference value are considered first when allocating subnets."
  6305. msgstr ""
  6306. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1532
  6307. msgid ""
  6308. "When using a PSK, the PMK can be automatically generated. When enabled, the "
  6309. "R0/R1 key options below are not applied. Disable this to use the R0 and R1 "
  6310. "key options."
  6311. msgstr ""
  6312. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1142
  6313. msgid ""
  6314. "Where Wi-Fi Multimedia (WMM) Mode QoS is disabled, clients may be limited to "
  6315. "802.11a/802.11g rates."
  6316. msgstr ""
  6317. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1138
  6318. msgid ""
  6319. "Where the ESSID is hidden, clients may fail to roam and airtime efficiency "
  6320. "may be significantly reduced."
  6321. msgstr ""
  6322. #: modules/luci-compat/luasrc/view/cbi/wireless_modefreq.htm:166
  6323. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:519
  6324. msgid "Width"
  6325. msgstr ""
  6326. #: modules/luci-compat/luasrc/model/network/proto_wireguard.lua:9
  6327. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:29
  6328. msgid "WireGuard VPN"
  6329. msgstr ""
  6330. #: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:17
  6331. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:10
  6332. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:118
  6333. msgid "Wireless"
  6334. msgstr "Ασύρματο"
  6335. #: modules/luci-base/htdocs/luci-static/resources/network.js:2988
  6336. #: modules/luci-compat/luasrc/model/network.lua:1419
  6337. msgid "Wireless Adapter"
  6338. msgstr "Ασύρματος Προσαρμογέας"
  6339. #: modules/luci-base/htdocs/luci-static/resources/network.js:2967
  6340. #: modules/luci-base/htdocs/luci-static/resources/network.js:4274
  6341. #: modules/luci-compat/luasrc/model/network.lua:1405
  6342. #: modules/luci-compat/luasrc/model/network.lua:1868
  6343. msgid "Wireless Network"
  6344. msgstr "Ασύρματο Δίκτυο"
  6345. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:810
  6346. msgid "Wireless Overview"
  6347. msgstr "Επισκόπηση Ασύρματου Δικτύου"
  6348. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:985
  6349. msgid "Wireless Security"
  6350. msgstr "Ασφάλεια Ασύρματου Δικτύου"
  6351. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:792
  6352. msgid "Wireless configuration migration"
  6353. msgstr ""
  6354. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:153
  6355. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:193
  6356. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:146
  6357. msgid "Wireless is disabled"
  6358. msgstr "Το ασύρματο δίκτυο είναι απενεργοποιημένο"
  6359. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:153
  6360. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:193
  6361. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:146
  6362. msgid "Wireless is not associated"
  6363. msgstr "Το ασύρματο δίκτυο μη συνδεδεμένο"
  6364. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:934
  6365. msgid "Wireless network is disabled"
  6366. msgstr "Το ασύρματο δίκτυο είναι ανενεργό"
  6367. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:934
  6368. msgid "Wireless network is enabled"
  6369. msgstr "Το ασύρματο δίκτυο είναι ενεργό"
  6370. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:275
  6371. msgid "Write received DNS requests to syslog"
  6372. msgstr "Καταγραφή των ληφθέντων DNS αιτήσεων στο syslog"
  6373. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:167
  6374. msgid "Write system log to file"
  6375. msgstr ""
  6376. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:204
  6377. msgid "XOR policy (balance-xor, 2)"
  6378. msgstr ""
  6379. #: modules/luci-base/htdocs/luci-static/resources/form.js:3702
  6380. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:295
  6381. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:344
  6382. msgid "Yes"
  6383. msgstr ""
  6384. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:303
  6385. msgid "Yes (none, 0)"
  6386. msgstr ""
  6387. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:177
  6388. msgid ""
  6389. "You appear to be currently connected to the device via the \"%h\" interface. "
  6390. "Do you really want to shut down the interface?"
  6391. msgstr ""
  6392. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:112
  6393. msgid ""
  6394. "You can enable or disable installed init scripts here. Changes will applied "
  6395. "after a device reboot.<br /><strong>Warning: If you disable essential init "
  6396. "scripts like \"network\", your device might become inaccessible!</strong>"
  6397. msgstr ""
  6398. "Μπορείτε να ενεργοποιήσετε ή να απενεργοποιήσετε σενάρια εκκίνησης εδώ. Οι "
  6399. "αλλαγές θα εφαρμοστούν αφού επανεκκινήσετε τη συσκευή.<br /"
  6400. "><strong>Προειδοποίηση: Αν απενεργοποιήσετε απαραίτητα σενάρια εκκίνησης "
  6401. "όπως το \"network\", η συσκευή σας μπορεί να καταστεί μη-προσβάσιμη!</strong>"
  6402. #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:65
  6403. #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:223
  6404. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:73
  6405. msgid ""
  6406. "You must enable JavaScript in your browser or LuCI will not work properly."
  6407. msgstr ""
  6408. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:115
  6409. msgid ""
  6410. "You must select a primary interface which is included in selected slave "
  6411. "interfaces!"
  6412. msgstr ""
  6413. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:96
  6414. msgid ""
  6415. "You must select at least one ARP IP target if ARP monitoring is selected!"
  6416. msgstr ""
  6417. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:199
  6418. msgid "ZRam Compression Algorithm"
  6419. msgstr ""
  6420. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:192
  6421. msgid "ZRam Settings"
  6422. msgstr ""
  6423. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:194
  6424. msgid "ZRam Size"
  6425. msgstr ""
  6426. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:331
  6427. msgid "any"
  6428. msgstr ""
  6429. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1463
  6430. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1471
  6431. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1476
  6432. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1229
  6433. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:79
  6434. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:48
  6435. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:51
  6436. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:89
  6437. msgid "auto"
  6438. msgstr "αυτόματα"
  6439. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:776
  6440. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:85
  6441. #, fuzzy
  6442. msgid "automatic"
  6443. msgstr "στατικό"
  6444. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:82
  6445. msgid "baseT"
  6446. msgstr ""
  6447. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1536
  6448. msgid "bridged"
  6449. msgstr ""
  6450. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:146
  6451. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:402
  6452. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:35
  6453. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:99
  6454. #: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:31
  6455. msgid "create"
  6456. msgstr ""
  6457. #: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:69
  6458. msgid "create:"
  6459. msgstr ""
  6460. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:55
  6461. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:57
  6462. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:58
  6463. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:62
  6464. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:63
  6465. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:83
  6466. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:84
  6467. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:87
  6468. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:185
  6469. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:186
  6470. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:187
  6471. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:41
  6472. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:42
  6473. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:272
  6474. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:274
  6475. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:275
  6476. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:279
  6477. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:280
  6478. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:263
  6479. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:266
  6480. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:269
  6481. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:273
  6482. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:276
  6483. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:279
  6484. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:305
  6485. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:306
  6486. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:307
  6487. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:311
  6488. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:312
  6489. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:313
  6490. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:315
  6491. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:316
  6492. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:317
  6493. msgid "dBm"
  6494. msgstr "dBm"
  6495. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1086
  6496. msgid "disable"
  6497. msgstr "ανενεργό"
  6498. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:627
  6499. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:765
  6500. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:869
  6501. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:899
  6502. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:959
  6503. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:91
  6504. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:25
  6505. msgid "disabled"
  6506. msgstr ""
  6507. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:576
  6508. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:610
  6509. msgid "driver default"
  6510. msgstr ""
  6511. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:66
  6512. msgid "e.g: --proxy 10.10.10.10"
  6513. msgstr ""
  6514. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:68
  6515. msgid "e.g: dump"
  6516. msgstr ""
  6517. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:551
  6518. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:572
  6519. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:100
  6520. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:139
  6521. msgid "expired"
  6522. msgstr ""
  6523. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:182
  6524. msgid ""
  6525. "file where given <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</"
  6526. "abbr>-leases will be stored"
  6527. msgstr ""
  6528. "αρχείο όπου θα αποθηκεύονται τα Leases του <abbr title=\"Dynamic Host "
  6529. "Configuration Protocol\">DHCP</abbr>"
  6530. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:780
  6531. msgid "forced"
  6532. msgstr ""
  6533. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:85
  6534. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:195
  6535. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:61
  6536. msgid "forward"
  6537. msgstr "προώθηση"
  6538. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:97
  6539. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:84
  6540. msgid "full-duplex"
  6541. msgstr ""
  6542. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:97
  6543. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:84
  6544. msgid "half-duplex"
  6545. msgstr ""
  6546. #: modules/luci-base/htdocs/luci-static/resources/validation.js:572
  6547. msgid "hexadecimal encoded value"
  6548. msgstr ""
  6549. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1808
  6550. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:297
  6551. msgid "hidden"
  6552. msgstr ""
  6553. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:771
  6554. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:875
  6555. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:903
  6556. msgid "hybrid mode"
  6557. msgstr ""
  6558. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:36
  6559. msgid "if target is a network"
  6560. msgstr "αν ο στόχος είναι ένα δίκτυο"
  6561. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:63
  6562. msgid "ignore"
  6563. msgstr ""
  6564. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:69
  6565. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:191
  6566. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:46
  6567. msgid "input"
  6568. msgstr "είσοδος"
  6569. #: modules/luci-base/htdocs/luci-static/resources/validation.js:398
  6570. msgid "key between 8 and 63 characters"
  6571. msgstr ""
  6572. #: modules/luci-base/htdocs/luci-static/resources/validation.js:410
  6573. msgid "key with either 5 or 13 characters"
  6574. msgstr ""
  6575. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:189
  6576. msgid "local <abbr title=\"Domain Name System\">DNS</abbr> file"
  6577. msgstr "τοπικό αρχείο <abbr title=\"Domain Name System\">DNS</abbr>"
  6578. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:793
  6579. msgid "managed config (M)"
  6580. msgstr ""
  6581. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1388
  6582. msgid "medium security"
  6583. msgstr ""
  6584. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1537
  6585. msgid "minutes"
  6586. msgstr ""
  6587. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:797
  6588. msgid "mobile home agent (H)"
  6589. msgstr ""
  6590. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:422
  6591. msgid "netif_carrier_ok()"
  6592. msgstr ""
  6593. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:47
  6594. msgid "no"
  6595. msgstr "όχι"
  6596. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:103
  6597. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:76
  6598. msgid "no link"
  6599. msgstr ""
  6600. #: modules/luci-base/htdocs/luci-static/resources/validation.js:59
  6601. msgid "non-empty value"
  6602. msgstr ""
  6603. #: modules/luci-base/htdocs/luci-static/resources/form.js:3032
  6604. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:800
  6605. msgid "none"
  6606. msgstr "κανένα"
  6607. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:41
  6608. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:55
  6609. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:69
  6610. msgid "not present"
  6611. msgstr ""
  6612. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:347
  6613. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:964
  6614. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:968
  6615. #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:197
  6616. msgid "off"
  6617. msgstr "κλειστό"
  6618. #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:196
  6619. msgid "on"
  6620. msgstr "ανοιχτό"
  6621. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:778
  6622. msgid "on available prefix"
  6623. msgstr ""
  6624. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1389
  6625. msgid "open network"
  6626. msgstr ""
  6627. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:795
  6628. msgid "other config (O)"
  6629. msgstr ""
  6630. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:69
  6631. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:46
  6632. msgid "output"
  6633. msgstr ""
  6634. #: modules/luci-base/htdocs/luci-static/resources/validation.js:241
  6635. msgid "positive decimal value"
  6636. msgstr ""
  6637. #: modules/luci-base/htdocs/luci-static/resources/validation.js:233
  6638. msgid "positive integer value"
  6639. msgstr ""
  6640. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:80
  6641. msgid "random"
  6642. msgstr ""
  6643. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:769
  6644. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:873
  6645. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:901
  6646. msgid "relay mode"
  6647. msgstr ""
  6648. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1537
  6649. msgid "routed"
  6650. msgstr ""
  6651. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1165
  6652. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1174
  6653. msgid "sec"
  6654. msgstr ""
  6655. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:767
  6656. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:871
  6657. msgid "server mode"
  6658. msgstr ""
  6659. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:54
  6660. msgid "sstpc Log-level"
  6661. msgstr ""
  6662. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1387
  6663. msgid "strong security"
  6664. msgstr ""
  6665. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:352
  6666. msgid "tagged"
  6667. msgstr ""
  6668. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1520
  6669. msgid "time units (TUs / 1.024 ms) [1000-65535]"
  6670. msgstr ""
  6671. #: modules/luci-base/htdocs/luci-static/resources/validation.js:562
  6672. msgid "unique value"
  6673. msgstr ""
  6674. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1414
  6675. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1426
  6676. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:591
  6677. msgid "unknown"
  6678. msgstr ""
  6679. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:340
  6680. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:549
  6681. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:570
  6682. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:98
  6683. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:137
  6684. msgid "unlimited"
  6685. msgstr "απεριόριστα"
  6686. #: modules/luci-base/htdocs/luci-static/resources/form.js:3397
  6687. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:76
  6688. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:138
  6689. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:369
  6690. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:393
  6691. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:429
  6692. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:466
  6693. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:562
  6694. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:53
  6695. #: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:38
  6696. msgid "unspecified"
  6697. msgstr "μη-καθορισμένο"
  6698. #: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:71
  6699. msgid "unspecified -or- create:"
  6700. msgstr "μη-καθορισμένο -ή- δημιουργείστε:"
  6701. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:350
  6702. msgid "untagged"
  6703. msgstr ""
  6704. #: modules/luci-base/htdocs/luci-static/resources/validation.js:246
  6705. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:121
  6706. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:132
  6707. msgid "valid IP address"
  6708. msgstr ""
  6709. #: modules/luci-base/htdocs/luci-static/resources/validation.js:246
  6710. msgid "valid IP address or prefix"
  6711. msgstr ""
  6712. #: modules/luci-base/htdocs/luci-static/resources/validation.js:283
  6713. msgid "valid IPv4 CIDR"
  6714. msgstr ""
  6715. #: modules/luci-base/htdocs/luci-static/resources/validation.js:254
  6716. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:125
  6717. msgid "valid IPv4 address"
  6718. msgstr ""
  6719. #: modules/luci-base/htdocs/luci-static/resources/validation.js:254
  6720. msgid "valid IPv4 address or network"
  6721. msgstr ""
  6722. #: modules/luci-base/htdocs/luci-static/resources/validation.js:377
  6723. msgid "valid IPv4 address:port"
  6724. msgstr ""
  6725. #: modules/luci-base/htdocs/luci-static/resources/validation.js:317
  6726. msgid "valid IPv4 network"
  6727. msgstr ""
  6728. #: modules/luci-base/htdocs/luci-static/resources/validation.js:277
  6729. msgid "valid IPv4 or IPv6 CIDR"
  6730. msgstr ""
  6731. #: modules/luci-base/htdocs/luci-static/resources/validation.js:267
  6732. msgid "valid IPv4 prefix value (0-32)"
  6733. msgstr ""
  6734. #: modules/luci-base/htdocs/luci-static/resources/validation.js:289
  6735. msgid "valid IPv6 CIDR"
  6736. msgstr ""
  6737. #: modules/luci-base/htdocs/luci-static/resources/validation.js:262
  6738. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:129
  6739. msgid "valid IPv6 address"
  6740. msgstr ""
  6741. #: modules/luci-base/htdocs/luci-static/resources/validation.js:262
  6742. msgid "valid IPv6 address or prefix"
  6743. msgstr ""
  6744. #: modules/luci-base/htdocs/luci-static/resources/validation.js:307
  6745. msgid "valid IPv6 host id"
  6746. msgstr ""
  6747. #: modules/luci-base/htdocs/luci-static/resources/validation.js:322
  6748. msgid "valid IPv6 network"
  6749. msgstr ""
  6750. #: modules/luci-base/htdocs/luci-static/resources/validation.js:272
  6751. msgid "valid IPv6 prefix value (0-128)"
  6752. msgstr ""
  6753. #: modules/luci-base/htdocs/luci-static/resources/validation.js:343
  6754. msgid "valid MAC address"
  6755. msgstr ""
  6756. #: modules/luci-base/htdocs/luci-static/resources/validation.js:414
  6757. msgid "valid UCI identifier"
  6758. msgstr ""
  6759. #: modules/luci-base/htdocs/luci-static/resources/validation.js:365
  6760. msgid "valid UCI identifier, hostname or IP address range"
  6761. msgstr ""
  6762. #: modules/luci-base/htdocs/luci-static/resources/validation.js:386
  6763. #: modules/luci-base/htdocs/luci-static/resources/validation.js:389
  6764. msgid "valid address:port"
  6765. msgstr ""
  6766. #: modules/luci-base/htdocs/luci-static/resources/validation.js:536
  6767. #: modules/luci-base/htdocs/luci-static/resources/validation.js:540
  6768. msgid "valid date (YYYY-MM-DD)"
  6769. msgstr ""
  6770. #: modules/luci-base/htdocs/luci-static/resources/validation.js:237
  6771. msgid "valid decimal value"
  6772. msgstr ""
  6773. #: modules/luci-base/htdocs/luci-static/resources/validation.js:408
  6774. msgid "valid hexadecimal WEP key"
  6775. msgstr ""
  6776. #: modules/luci-base/htdocs/luci-static/resources/validation.js:396
  6777. msgid "valid hexadecimal WPA key"
  6778. msgstr ""
  6779. #: modules/luci-base/htdocs/luci-static/resources/validation.js:371
  6780. msgid "valid host:port"
  6781. msgstr ""
  6782. #: modules/luci-base/htdocs/luci-static/resources/validation.js:358
  6783. #: modules/luci-base/htdocs/luci-static/resources/validation.js:360
  6784. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:73
  6785. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:79
  6786. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:107
  6787. msgid "valid hostname"
  6788. msgstr ""
  6789. #: modules/luci-base/htdocs/luci-static/resources/validation.js:348
  6790. msgid "valid hostname or IP address"
  6791. msgstr ""
  6792. #: modules/luci-base/htdocs/luci-static/resources/validation.js:229
  6793. msgid "valid integer value"
  6794. msgstr ""
  6795. #: modules/luci-base/htdocs/luci-static/resources/validation.js:312
  6796. msgid "valid network in address/netmask notation"
  6797. msgstr ""
  6798. #: modules/luci-base/htdocs/luci-static/resources/validation.js:511
  6799. msgid "valid phone digit (0-9, \"*\", \"#\", \"!\" or \".\")"
  6800. msgstr ""
  6801. #: modules/luci-base/htdocs/luci-static/resources/validation.js:335
  6802. #: modules/luci-base/htdocs/luci-static/resources/validation.js:338
  6803. msgid "valid port or port range (port1-port2)"
  6804. msgstr ""
  6805. #: modules/luci-base/htdocs/luci-static/resources/validation.js:327
  6806. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:136
  6807. msgid "valid port value"
  6808. msgstr ""
  6809. #: modules/luci-base/htdocs/luci-static/resources/validation.js:516
  6810. msgid "valid time (HH:MM:SS)"
  6811. msgstr ""
  6812. #: modules/luci-base/htdocs/luci-static/resources/validation.js:438
  6813. msgid "value between %d and %d characters"
  6814. msgstr ""
  6815. #: modules/luci-base/htdocs/luci-static/resources/validation.js:419
  6816. msgid "value between %f and %f"
  6817. msgstr ""
  6818. #: modules/luci-base/htdocs/luci-static/resources/validation.js:423
  6819. msgid "value greater or equal to %f"
  6820. msgstr ""
  6821. #: modules/luci-base/htdocs/luci-static/resources/validation.js:427
  6822. msgid "value smaller or equal to %f"
  6823. msgstr ""
  6824. #: modules/luci-base/htdocs/luci-static/resources/validation.js:432
  6825. msgid "value with %d characters"
  6826. msgstr ""
  6827. #: modules/luci-base/htdocs/luci-static/resources/validation.js:443
  6828. msgid "value with at least %d characters"
  6829. msgstr ""
  6830. #: modules/luci-base/htdocs/luci-static/resources/validation.js:448
  6831. msgid "value with at most %d characters"
  6832. msgstr ""
  6833. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1389
  6834. msgid "weak security"
  6835. msgstr ""
  6836. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:47
  6837. msgid "yes"
  6838. msgstr "ναι"
  6839. #: modules/luci-compat/luasrc/view/cbi/delegator.htm:20
  6840. msgid "« Back"
  6841. msgstr "« Πίσω"
  6842. #~ msgid "Announced DNS servers"
  6843. #~ msgstr "Ενεργοί διακομιστές DNS"
  6844. #~ msgid "Bridge interfaces"
  6845. #~ msgstr "Γεφύρωμα διεπαφών"
  6846. #, fuzzy
  6847. #~ msgid "Creates a bridge over specified interface(s)"
  6848. #~ msgstr "δημιουργεί μία γέφυρα μεταξύ των ορισμένων διεπαφών"
  6849. #~ msgid "Default gateway"
  6850. #~ msgstr "Προεπιλεγμένη πύλη"
  6851. #~ msgid "Enable/Disable"
  6852. #~ msgstr "Ενεργοποίηση/Απενεργοποίηση"
  6853. #~ msgid "USB Device"
  6854. #~ msgstr "Συσκευή USB"
  6855. #~ msgid "Define a name for this network."
  6856. #~ msgstr "Ορίστε ένα όνομα για αυτό το δίκτυο."
  6857. #, fuzzy
  6858. #~ msgid "Bad address specified!"
  6859. #~ msgstr "Μη έγκυρη διεύθυνση!"
  6860. #~ msgid "Loading"
  6861. #~ msgstr "Φόρτωση"
  6862. #~ msgid "Realtime Connections"
  6863. #~ msgstr "Συνδέσεις πραγματικού χρόνου"
  6864. #~ msgid "Realtime Traffic"
  6865. #~ msgstr "Κίνηση πραγματικού χρόνου"
  6866. #~ msgid "There are no active leases."
  6867. #~ msgstr "Δεν υπάρχουν ενεργά leases."
  6868. #~ msgid ""
  6869. #~ "This page gives an overview over currently active network connections."
  6870. #~ msgstr ""
  6871. #~ "Αυτή η σελίδα δίνει μία εικόνα για τις τρέχουσες ενεργές συνδέσεις "
  6872. #~ "δικτύου."
  6873. #~ msgid "Changes applied."
  6874. #~ msgstr "Αλλαγές εφαρμόστηκαν."
  6875. #~ msgid "Keep settings"
  6876. #~ msgstr "Διατήρηση ρυθμίσεων"
  6877. #~ msgid "Rebooting..."
  6878. #~ msgstr "Επανεκκίνηση..."
  6879. #~ msgid "(%s available)"
  6880. #~ msgstr "(%s διαθέσιμα)"
  6881. #~ msgid "Check"
  6882. #~ msgstr "Έλεγχος"
  6883. #~ msgid "Checksum"
  6884. #~ msgstr "Άθροισμα Ελέγχου"
  6885. #~ msgid "Enable this mount"
  6886. #~ msgstr "Ενεργοποίηση αυτής της προσάρτησης"
  6887. #~ msgid "Enable this swap"
  6888. #~ msgstr "Ενεργοποίηση αυτής της swap"
  6889. #~ msgid "Flash Firmware"
  6890. #~ msgstr "Φλασάρισμα Firmware"
  6891. #~ msgid "Flashing..."
  6892. #~ msgstr "Φλασάρεται..."
  6893. #, fuzzy
  6894. #~ msgid "Mount Entry"
  6895. #~ msgstr "Προσάρτηση"
  6896. #~ msgid "Proceed"
  6897. #~ msgstr "Συνέχεια"
  6898. #~ msgid "Really reset all changes?"
  6899. #~ msgstr "Αρχικοποίηση όλων των αλλαγών;"
  6900. #~ msgid "Root"
  6901. #~ msgstr "Root"
  6902. #~ msgid ""
  6903. #~ "The filesystem that was used to format the memory (<abbr title=\"for "
  6904. #~ "example\">e.g.</abbr> <samp><abbr title=\"Third Extended Filesystem"
  6905. #~ "\">ext3</abbr></samp>)"
  6906. #~ msgstr ""
  6907. #~ "Το σύστημα αρχείων που χρησιμοποιήθηκε για διαμόρφωση (<abbr title="
  6908. #~ "\"παραδείγματος χάρην\">π.χ.</abbr> <samp><abbr title=\"Third Extended "
  6909. #~ "Filesystem\">ext3</abbr></samp>)"
  6910. #, fuzzy
  6911. #~ msgid "Specifies the listening port of this <em>Dropbear</em> instance"
  6912. #~ msgstr ""
  6913. #~ "Προσδιορίζει την θύρα ακρόασης αυτού του στιγμιοτύπου <em>Dropbear</em>"
  6914. #~ msgid "Antenna 1"
  6915. #~ msgstr "Κεραία 1"
  6916. #~ msgid "Antenna 2"
  6917. #~ msgstr "Κεραία 2"
  6918. #~ msgid "Back to overview"
  6919. #~ msgstr "Πίσω προς επισκόπηση"
  6920. #~ msgid "Back to scan results"
  6921. #~ msgstr "Πίσω στα αποτελέσματα σάρωσης"
  6922. #~ msgid "Common Configuration"
  6923. #~ msgstr "Κοινή Παραμετροποίηση"
  6924. #~ msgid "Connect"
  6925. #~ msgstr "Σύνδεση"
  6926. #~ msgid "Connection Limit"
  6927. #~ msgstr "Όριο Συνδέσεων"
  6928. #~ msgid "Cover the following interface"
  6929. #~ msgstr "Κάλυψη της ακόλουθης διεπαφής"
  6930. #~ msgid "Cover the following interfaces"
  6931. #~ msgstr "Κάλυψη των ακόλουθων διεπαφών"
  6932. #~ msgid "Create Interface"
  6933. #~ msgstr "Δημιουργία Διεπαφής"
  6934. #~ msgid "Diversity"
  6935. #~ msgstr "Διαφορική Λήψη"
  6936. #~ msgid "Edit this interface"
  6937. #~ msgstr "Επεξεργασία αυτής της διεπαφής"
  6938. #~ msgid "Frame Bursting"
  6939. #~ msgstr "Bursting Πλαισίων"
  6940. #~ msgid "Install package %q"
  6941. #~ msgstr "Εγκατάσταση πακέτου %q"
  6942. #~ msgid "Interface Overview"
  6943. #~ msgstr "Επισκόπηση Διεπαφής"
  6944. #~ msgid "Name of the new interface"
  6945. #~ msgstr "Όνομα νέας διεπαφής"
  6946. #~ msgid "No network configured on this device"
  6947. #~ msgstr "Δεν υπάρχει παραμετροποιημένο δίκτυο σε αυτή τη συσκευή"
  6948. #~ msgid "No network name specified"
  6949. #~ msgstr "Δεν έχει οριστεί όνομα δικτύου"
  6950. #~ msgid ""
  6951. #~ "On this page you can configure the network interfaces. You can bridge "
  6952. #~ "several interfaces by ticking the \"bridge interfaces\" field and enter "
  6953. #~ "the names of several network interfaces separated by spaces. You can also "
  6954. #~ "use <abbr title=\"Virtual Local Area Network\">VLAN</abbr> notation "
  6955. #~ "<samp>INTERFACE.VLANNR</samp> (<abbr title=\"for example\">e.g.</abbr>: "
  6956. #~ "<samp>eth0.1</samp>)."
  6957. #~ msgstr ""
  6958. #~ "Σε αυτή τη σελίδα μπορείτε να ρυθμίσετε τις διεπαφές δικτύου. Μπορείτε να "
  6959. #~ "γεφυρώσετε πολλαπλές διεπαφές τικάροντας το πεδίο \"γεφύρωμα διεπαφών\" "
  6960. #~ "και εισάγοντας τα ονόματα των διεπαφών δικτύου χωρισμένα με κενά. "
  6961. #~ "Μπορείτε επίσης να χρησιμοποιήσετε παράσταση τύπου <abbr title=\"Virtual "
  6962. #~ "Local Area Network\">VLAN</abbr> <samp>INTERFACE.VLANNR</samp> (<abbr "
  6963. #~ "title=\"παραδείγματος χάριν\">π.χ.</abbr>: <samp>eth0.1</samp>)."
  6964. #~ msgid "Package libiwinfo required!"
  6965. #~ msgstr "Απαιτείται το πακέτο libiwinfo!"
  6966. #~ msgid "Protocol of the new interface"
  6967. #~ msgstr "Πρωτόκολλο νέας διεπαφής"
  6968. #~ msgid "Protocol support is not installed"
  6969. #~ msgstr "Η υποστήριξη πρωτοκόλλου δεν έχει εκγατασταθεί"
  6970. #~ msgid "Receiver Antenna"
  6971. #~ msgstr "Κεραία Λήψης"
  6972. #~ msgid "Repeat scan"
  6973. #~ msgstr "Επανάληψη σάρωσης"
  6974. #~ msgid "Replace entry"
  6975. #~ msgstr "Αντικατάσταση καταχώρησης"
  6976. #, fuzzy
  6977. #~ msgid "Separate Clients"
  6978. #~ msgstr "Απομόνωση Πελατών"
  6979. #~ msgid "The given network name is not unique"
  6980. #~ msgstr "Το παρεχόμενο όνομα δικτύου δεν είναι μοναδικό"
  6981. #~ msgid "Transmission Rate"
  6982. #~ msgstr "Ρυθμός Εκπομπής"
  6983. #~ msgid "Transmit Power"
  6984. #~ msgstr "Ισχύς Εκπομπής"
  6985. #~ msgid "Transmitter Antenna"
  6986. #~ msgstr "Κεραία Εκπομπής"
  6987. #~ msgid "Uploaded File"
  6988. #~ msgstr "Το Αρχείο Ανέβηκε"
  6989. #~ msgid "Wireless is restarting..."
  6990. #~ msgstr "Το ασύρματο δίκτυο επανεκκινείται..."
  6991. #~ msgid "Back"
  6992. #~ msgstr "Πίσω"
  6993. #~ msgid "Netmask"
  6994. #~ msgstr "Μάσκα δικτύου"
  6995. #~ msgid "Synchronizing..."
  6996. #~ msgstr "Συγχρονισμός..."
  6997. #~ msgid "The following changes have been reverted"
  6998. #~ msgstr "Οι παρακάτω αλλαγές έχουν αναιρεθεί"
  6999. #~ msgid "Theme"
  7000. #~ msgstr "Εμφάνιση"
  7001. #~ msgid "Password successfully changed!"
  7002. #~ msgstr "Ο κωδικός πρόσβασης άλλαξε επιτυχώς!"
  7003. #~ msgid "Unknown Error, password not changed!"
  7004. #~ msgstr "Άγνωστο Λάθος. ο κωδικός πρόσβασης δεν άλλαξε!"
  7005. #~ msgid "Available packages"
  7006. #~ msgstr "Διαθέσιμα πακέτα"
  7007. #~ msgid "Displaying only packages containing"
  7008. #~ msgstr "Εμφάνιση μόνο πακέτων που περιέχουν"
  7009. #~ msgid "Download and install package"
  7010. #~ msgstr "Κατέβασμα και εγκατάσταση πακέτου"
  7011. #~ msgid "Filter"
  7012. #~ msgstr "Φίλτρο"
  7013. #~ msgid "Find package"
  7014. #~ msgstr "Εύρεση πακέτου"
  7015. #~ msgid "Free space"
  7016. #~ msgstr "Ελεύθερος χώρος"
  7017. #~ msgid "Install"
  7018. #~ msgstr "Εγκατάσταση"
  7019. #~ msgid "Installed packages"
  7020. #~ msgstr "Εγκατεστημένα πακέτα"
  7021. #~ msgid "No package lists available"
  7022. #~ msgstr "Δεν υπάρχουν διαθέσιμες λίστες πακέτων"
  7023. #~ msgid "OK"
  7024. #~ msgstr "Εντάξει"
  7025. #~ msgid "OPKG-Configuration"
  7026. #~ msgstr "Παραμετροποίηση OPKG"
  7027. #~ msgid "Package lists are older than 24 hours"
  7028. #~ msgstr "Οι λίστες πακέτων έχουν να ανανεωθούν πάνω από 24 ώρες"
  7029. #~ msgid "Package name"
  7030. #~ msgstr "Όνομα πακέτου"
  7031. #~ msgid "Software"
  7032. #~ msgstr "Λογισμικό"
  7033. #~ msgid "Version"
  7034. #~ msgstr "Έκδοση"
  7035. #~ msgid "Disable DNS setup"
  7036. #~ msgstr "Απενεργοποίηση ρυθμίσεων DNS"
  7037. #~ msgid "IPv4 and IPv6"
  7038. #~ msgstr "IPv4 και IPv6"
  7039. #~ msgid "Multicast address"
  7040. #~ msgstr "Διεύθυνση Multicast"
  7041. #~ msgid "Protocol family"
  7042. #~ msgstr "Οικογένεια πρωτοκόλλου"
  7043. #~ msgid "No chains in this table"
  7044. #~ msgstr "Δεν υπάρχουν αλυσίδες σε αυτόν τον πίνακα"
  7045. #~ msgid "Configuration files will be kept."
  7046. #~ msgstr "Τα αρχεία παραμετροποίησης θα διατηρηθούν."
  7047. #~ msgid "Note: Configuration files will be erased."
  7048. #~ msgstr "Σημείωση: Τα αρχεία παραμετροποίησης θα διαγραφούν."
  7049. #~ msgid "Activate this network"
  7050. #~ msgstr "Ενεργοποίηση αυτού του δικτύου"
  7051. #~ msgid "Interface reconnected"
  7052. #~ msgstr "Η διεπαφή επανασυνδέθηκε"
  7053. #~ msgid "Interface shut down"
  7054. #~ msgstr "Η διεπαφή απενεργοποιήθηκε"
  7055. #~ msgid "Reconnecting interface"
  7056. #~ msgstr "Επανασύνδεση της διεπαφής"
  7057. #~ msgid "Shutdown this network"
  7058. #~ msgstr "Απενεργοποίηση αυτού του δικτύου"
  7059. #~ msgid "Wireless restarted"
  7060. #~ msgstr "Το ασύρματο δίκτυο επανεκκινήθηκε"
  7061. #~ msgid "Wireless shut down"
  7062. #~ msgstr "Το ασύρματο δίκτυο τερματίστηκε"
  7063. #~ msgid "DHCP Leases"
  7064. #~ msgstr "DHCP Leases"
  7065. #~ msgid "Sort"
  7066. #~ msgstr "Ταξινόμηση"
  7067. #~ msgid "help"
  7068. #~ msgstr "βοήθεια"
  7069. #~ msgid "IPv6 WAN Status"
  7070. #~ msgstr "Κατάσταση IPv6 WAN"
  7071. #~ msgid "Apply"
  7072. #~ msgstr "Εφαρμογή"
  7073. #~ msgid "Applying changes"
  7074. #~ msgstr "Εφαρμογή αλλαγών"
  7075. #~ msgid "Configuration applied."
  7076. #~ msgstr "Η Παραμετροποίηση εφαρμόστηκε."
  7077. #~ msgid "Save &#38; Apply"
  7078. #~ msgstr "Αποθήκευση &#38; Εφαρμογή"
  7079. #~ msgid "The following changes have been committed"
  7080. #~ msgstr "Οι παρακάτω αλλαγές έχουν υποβληθεί"
  7081. #~ msgid "Action"
  7082. #~ msgstr "Ενέργεια"
  7083. #~ msgid "Buttons"
  7084. #~ msgstr "Κουμπιά"
  7085. #~ msgid "Maximum hold time"
  7086. #~ msgstr "Μέγιστος χρόνος κράτησης"
  7087. #~ msgid "Minimum hold time"
  7088. #~ msgstr "Ελάχιστος χρόνος κράτησης"
  7089. #~ msgid "Path to executable which handles the button event"
  7090. #~ msgstr "Διαδρομή για το εκτελέσιμο που χειρίζεται το γεγονός του κουμπιού"
  7091. #~ msgid "Leasetime"
  7092. #~ msgstr "Χρόνος Lease"
  7093. #~ msgid "AR Support"
  7094. #~ msgstr "Υποστήριξη AR"
  7095. #~ msgid "Background Scan"
  7096. #~ msgstr "Σάρωση Παρασκηνίου"
  7097. #~ msgid "Compression"
  7098. #~ msgstr "Συμπίεση"
  7099. #~ msgid "Disable HW-Beacon timer"
  7100. #~ msgstr "Απενεργοποίηση χρονιστή HW-Beacon"
  7101. #~ msgid "Do not send probe responses"
  7102. #~ msgstr "Να μην στέλνονται απαντήσεις σε probes"
  7103. #~ msgid "Fast Frames"
  7104. #~ msgstr "Γρήγορα Πλαίσια"
  7105. #~ msgid "Maximum Rate"
  7106. #~ msgstr "Μέγιστος Ρυθμός"
  7107. #~ msgid "Minimum Rate"
  7108. #~ msgstr "Ελάχιστος Ρυθμός"
  7109. #~ msgid "Multicast Rate"
  7110. #~ msgstr "Ρυθμός Multicast"
  7111. #~ msgid "Outdoor Channels"
  7112. #~ msgstr "Εξωτερικά Κανάλια"
  7113. #~ msgid "Regulatory Domain"
  7114. #~ msgstr "Ρυθμιστική Περιοχή"
  7115. #~ msgid "Separate WDS"
  7116. #~ msgstr "Ξεχωριστά WDS"
  7117. #~ msgid "Turbo Mode"
  7118. #~ msgstr "Λειτουργία Turbo"
  7119. #~ msgid "XR Support"
  7120. #~ msgstr "Υποστήριξη XR"
  7121. #~ msgid "An additional network will be created if you leave this unchecked."
  7122. #~ msgstr "Ένα επιπλέον δίκτυο θα δημιουργηθεί εάν αυτό αφεθεί κενό"
  7123. #~ msgid "Port %d"
  7124. #~ msgstr "Θύρα %d"
  7125. #~ msgid "VLAN Interface"
  7126. #~ msgstr "Διεπαφή VLAN"