messages.po 68 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340
  1. # Greek (Greece) translations for .
  2. # Copyright (C) 2020 ORGANIZATION
  3. # This file is distributed under the same license as the project.
  4. #
  5. # Translators:
  6. # xinomilo <dimitris@stinpriza.org>, 2017-2018
  7. # xinomilo <dimitris@stinpriza.org>, 2015
  8. # Markus Heiser <markus.heiser@darmarit.de>, 2022, 2023.
  9. # Constantine Giannopoulos <K.Giannopoulos@acg.edu>, 2022.
  10. # Alexandre Flament <alex@al-f.net>, 2022.
  11. # return42 <markus.heiser@darmarit.de>, 2023.
  12. # KDesp73 <kdesp2003@gmail.com>, 2023.
  13. # RaptaG <george-raptis@tutamail.com>, 2023.
  14. # return42 <return42@users.noreply.translate.codeberg.org>, 2024, 2025.
  15. # notlmutsaers <notlmutsaers@users.noreply.translate.codeberg.org>, 2024,
  16. # 2025.
  17. # silukyo <silukyo@users.noreply.translate.codeberg.org>, 2024, 2025.
  18. # Anonymous <anonymous@users.noreply.translate.codeberg.org>, 2025.
  19. # RaptaG <raptag@users.noreply.translate.codeberg.org>, 2025.
  20. # KDesp73 <kdesp73@users.noreply.translate.codeberg.org>, 2025.
  21. # return42 <return42@noreply.codeberg.org>, 2025.
  22. # sakistzimas <sakistzimas@noreply.codeberg.org>, 2025.
  23. msgid ""
  24. msgstr ""
  25. "Project-Id-Version: searx\n"
  26. "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
  27. "POT-Creation-Date: 2025-06-12 00:11+0000\n"
  28. "PO-Revision-Date: 2025-04-03 21:59+0000\n"
  29. "Last-Translator: sakistzimas <sakistzimas@noreply.codeberg.org>\n"
  30. "Language: el_GR\n"
  31. "Language-Team: Greek "
  32. "<https://translate.codeberg.org/projects/searxng/searxng/el/>\n"
  33. "Plural-Forms: nplurals=2; plural=n != 1;\n"
  34. "MIME-Version: 1.0\n"
  35. "Content-Type: text/plain; charset=utf-8\n"
  36. "Content-Transfer-Encoding: 8bit\n"
  37. "Generated-By: Babel 2.17.0\n"
  38. #. CONSTANT_NAMES['NO_SUBGROUPING']
  39. #: searx/searxng.msg
  40. msgid "without further subgrouping"
  41. msgstr "χωρίς περαιτέρω ομαδοποίηση"
  42. #. CONSTANT_NAMES['DEFAULT_CATEGORY']
  43. #: searx/searxng.msg
  44. msgid "other"
  45. msgstr "λοιπά"
  46. #. CATEGORY_NAMES['FILES']
  47. #: searx/searxng.msg
  48. msgid "files"
  49. msgstr "αρχεία"
  50. #. CATEGORY_NAMES['GENERAL']
  51. #: searx/searxng.msg
  52. msgid "general"
  53. msgstr "γενικά"
  54. #. CATEGORY_NAMES['MUSIC']
  55. #: searx/searxng.msg
  56. msgid "music"
  57. msgstr "μουσική"
  58. #. CATEGORY_NAMES['SOCIAL_MEDIA']
  59. #: searx/searxng.msg
  60. msgid "social media"
  61. msgstr "κοινωνικά δίκτυα"
  62. #. CATEGORY_NAMES['IMAGES']
  63. #: searx/searxng.msg
  64. msgid "images"
  65. msgstr "εικόνες"
  66. #. CATEGORY_NAMES['VIDEOS']
  67. #: searx/searxng.msg
  68. msgid "videos"
  69. msgstr "Βίντεο"
  70. #. CATEGORY_NAMES['RADIO']
  71. #: searx/engines/radio_browser.py:151 searx/searxng.msg
  72. msgid "radio"
  73. msgstr "ράδιο"
  74. #. CATEGORY_NAMES['TV']
  75. #: searx/searxng.msg
  76. msgid "tv"
  77. msgstr "Τηλεόραση"
  78. #. CATEGORY_NAMES['IT']
  79. #: searx/searxng.msg
  80. msgid "it"
  81. msgstr "Πληροφορική"
  82. #. CATEGORY_NAMES['NEWS']
  83. #: searx/searxng.msg
  84. msgid "news"
  85. msgstr "νέα"
  86. #. CATEGORY_NAMES['MAP']
  87. #: searx/searxng.msg
  88. msgid "map"
  89. msgstr "χάρτης"
  90. #. CATEGORY_NAMES['ONIONS']
  91. #: searx/searxng.msg
  92. msgid "onions"
  93. msgstr "Σελίδες .onion (tor)"
  94. #. CATEGORY_NAMES['SCIENCE']
  95. #: searx/searxng.msg
  96. msgid "science"
  97. msgstr "επιστήμη"
  98. #. CATEGORY_GROUPS['APPS']
  99. #: searx/searxng.msg
  100. msgid "apps"
  101. msgstr "Εφαρμογές"
  102. #. CATEGORY_GROUPS['DICTIONARIES']
  103. #: searx/searxng.msg
  104. msgid "dictionaries"
  105. msgstr "λεξικά"
  106. #. CATEGORY_GROUPS['LYRICS']
  107. #: searx/searxng.msg
  108. msgid "lyrics"
  109. msgstr "Στίχοι"
  110. #. CATEGORY_GROUPS['PACKAGES']
  111. #: searx/searxng.msg
  112. msgid "packages"
  113. msgstr "πακέτα"
  114. #. CATEGORY_GROUPS['Q_A']
  115. #: searx/searxng.msg
  116. msgid "q&a"
  117. msgstr "ερωταπαντήσεις"
  118. #. CATEGORY_GROUPS['REPOS']
  119. #: searx/searxng.msg
  120. msgid "repos"
  121. msgstr "αποθετήρια"
  122. #. CATEGORY_GROUPS['SOFTWARE_WIKIS']
  123. #: searx/searxng.msg
  124. msgid "software wikis"
  125. msgstr "Wiki λογισμικού"
  126. #. CATEGORY_GROUPS['WEB']
  127. #: searx/searxng.msg
  128. msgid "web"
  129. msgstr "Ιστός"
  130. #. CATEGORY_GROUPS['SCIENTIFIC PUBLICATIONS']
  131. #: searx/searxng.msg
  132. msgid "scientific publications"
  133. msgstr "Επιστημονικά δημοσιεύματα"
  134. #. STYLE_NAMES['AUTO']
  135. #: searx/searxng.msg
  136. msgid "auto"
  137. msgstr "Αυτόματα"
  138. #. STYLE_NAMES['LIGHT']
  139. #: searx/searxng.msg
  140. msgid "light"
  141. msgstr "φωτεινό"
  142. #. STYLE_NAMES['DARK']
  143. #: searx/searxng.msg
  144. msgid "dark"
  145. msgstr "σκοτεινό"
  146. #. STYLE_NAMES['BLACK']
  147. #: searx/searxng.msg
  148. msgid "black"
  149. msgstr "μαύρο"
  150. #. BRAND_CUSTOM_LINKS['UPTIME']
  151. #: searx/searxng.msg
  152. msgid "Uptime"
  153. msgstr "χρόνο λειτουργίας"
  154. #. BRAND_CUSTOM_LINKS['ABOUT']
  155. #: searx/searxng.msg searx/templates/simple/base.html:49
  156. msgid "About"
  157. msgstr "Σχετικά με το SearXNG"
  158. #. WEATHER_TERMS['AVERAGE TEMP.']
  159. #: searx/engines/wttr.py:32 searx/searxng.msg
  160. msgid "Average temp."
  161. msgstr "Μέση θερμοκρασία."
  162. #. WEATHER_TERMS['CLOUD COVER']
  163. #: searx/searxng.msg
  164. msgid "Cloud cover"
  165. msgstr "Νεφοκάλυψη"
  166. #. WEATHER_TERMS['CONDITION']
  167. #: searx/engines/duckduckgo_weather.py:45 searx/engines/wttr.py:51
  168. #: searx/searxng.msg
  169. msgid "Condition"
  170. msgstr "Κατάσταση"
  171. #. WEATHER_TERMS['CURRENT CONDITION']
  172. #: searx/engines/duckduckgo_weather.py:118 searx/engines/wttr.py:104
  173. #: searx/searxng.msg
  174. msgid "Current condition"
  175. msgstr "Τωρινή κατάσταση"
  176. #. WEATHER_TERMS['EVENING']
  177. #: searx/engines/wttr.py:100 searx/searxng.msg
  178. msgid "Evening"
  179. msgstr "Βράδυ"
  180. #. WEATHER_TERMS['FEELS LIKE']
  181. #: searx/engines/duckduckgo_weather.py:53 searx/engines/wttr.py:59
  182. #: searx/searxng.msg
  183. msgid "Feels like"
  184. msgstr "Αίσθηση"
  185. #. WEATHER_TERMS['HUMIDITY']
  186. #: searx/engines/duckduckgo_weather.py:64 searx/engines/wttr.py:68
  187. #: searx/searxng.msg searx/templates/simple/answer/weather.html:29
  188. msgid "Humidity"
  189. msgstr "Υγρασία"
  190. #. WEATHER_TERMS['MAX TEMP.']
  191. #: searx/engines/duckduckgo_weather.py:77 searx/engines/wttr.py:34
  192. #: searx/searxng.msg
  193. msgid "Max temp."
  194. msgstr "Μέγιστη θερμοκρασία."
  195. #. WEATHER_TERMS['MIN TEMP.']
  196. #: searx/engines/duckduckgo_weather.py:73 searx/engines/wttr.py:33
  197. #: searx/searxng.msg
  198. msgid "Min temp."
  199. msgstr "Ελάχιστη Θερμοκρασία"
  200. #. WEATHER_TERMS['MORNING']
  201. #: searx/engines/wttr.py:100 searx/searxng.msg
  202. msgid "Morning"
  203. msgstr "Πρωί"
  204. #. WEATHER_TERMS['NIGHT']
  205. #: searx/engines/wttr.py:100 searx/searxng.msg
  206. msgid "Night"
  207. msgstr "Βράδι"
  208. #. WEATHER_TERMS['NOON']
  209. #: searx/engines/wttr.py:100 searx/searxng.msg
  210. msgid "Noon"
  211. msgstr "Μεσημέρι"
  212. #. WEATHER_TERMS['PRESSURE']
  213. #: searx/searxng.msg searx/templates/simple/answer/weather.html:25
  214. msgid "Pressure"
  215. msgstr "Πίεση"
  216. #. WEATHER_TERMS['SUNRISE']
  217. #: searx/engines/duckduckgo_weather.py:81 searx/engines/wttr.py:36
  218. #: searx/searxng.msg
  219. msgid "Sunrise"
  220. msgstr "Ανατολή ηλίου"
  221. #. WEATHER_TERMS['SUNSET']
  222. #: searx/engines/duckduckgo_weather.py:82 searx/engines/wttr.py:37
  223. #: searx/searxng.msg
  224. msgid "Sunset"
  225. msgstr "Η δυση του ηλιου"
  226. #. WEATHER_TERMS['TEMPERATURE']
  227. #: searx/engines/duckduckgo_weather.py:48 searx/engines/wttr.py:55
  228. #: searx/searxng.msg searx/templates/simple/answer/weather.html:17
  229. msgid "Temperature"
  230. msgstr "Θερμοκρασία"
  231. #. WEATHER_TERMS['UV INDEX']
  232. #: searx/engines/duckduckgo_weather.py:80 searx/engines/wttr.py:35
  233. #: searx/searxng.msg
  234. msgid "UV index"
  235. msgstr "Δείκτης UV"
  236. #. WEATHER_TERMS['VISIBILITY']
  237. #: searx/engines/duckduckgo_weather.py:62 searx/engines/wttr.py:66
  238. #: searx/searxng.msg
  239. msgid "Visibility"
  240. msgstr "Ορατότητα"
  241. #. WEATHER_TERMS['WIND']
  242. #: searx/engines/duckduckgo_weather.py:58 searx/engines/wttr.py:62
  243. #: searx/searxng.msg searx/templates/simple/answer/weather.html:23
  244. msgid "Wind"
  245. msgstr "Ανεμος"
  246. #. WEATHER_CONDITIONS
  247. #: searx/searxng.msg
  248. msgid "Clear sky"
  249. msgstr ""
  250. #. WEATHER_CONDITIONS
  251. #: searx/searxng.msg
  252. msgid "Cloudy"
  253. msgstr ""
  254. #. WEATHER_CONDITIONS
  255. #: searx/searxng.msg
  256. msgid "Fair"
  257. msgstr ""
  258. #. WEATHER_CONDITIONS
  259. #: searx/searxng.msg
  260. msgid "Fog"
  261. msgstr ""
  262. #. WEATHER_CONDITIONS
  263. #: searx/searxng.msg
  264. msgid "Heavy rain and thunder"
  265. msgstr ""
  266. #. WEATHER_CONDITIONS
  267. #: searx/searxng.msg
  268. msgid "Heavy rain showers and thunder"
  269. msgstr ""
  270. #. WEATHER_CONDITIONS
  271. #: searx/searxng.msg
  272. msgid "Heavy rain showers"
  273. msgstr ""
  274. #. WEATHER_CONDITIONS
  275. #: searx/searxng.msg
  276. msgid "Heavy rain"
  277. msgstr ""
  278. #. WEATHER_CONDITIONS
  279. #: searx/searxng.msg
  280. msgid "Heavy sleet and thunder"
  281. msgstr ""
  282. #. WEATHER_CONDITIONS
  283. #: searx/searxng.msg
  284. msgid "Heavy sleet showers and thunder"
  285. msgstr ""
  286. #. WEATHER_CONDITIONS
  287. #: searx/searxng.msg
  288. msgid "Heavy sleet showers"
  289. msgstr ""
  290. #. WEATHER_CONDITIONS
  291. #: searx/searxng.msg
  292. msgid "Heavy sleet"
  293. msgstr ""
  294. #. WEATHER_CONDITIONS
  295. #: searx/searxng.msg
  296. msgid "Heavy snow and thunder"
  297. msgstr ""
  298. #. WEATHER_CONDITIONS
  299. #: searx/searxng.msg
  300. msgid "Heavy snow showers and thunder"
  301. msgstr ""
  302. #. WEATHER_CONDITIONS
  303. #: searx/searxng.msg
  304. msgid "Heavy snow showers"
  305. msgstr ""
  306. #. WEATHER_CONDITIONS
  307. #: searx/searxng.msg
  308. msgid "Heavy snow"
  309. msgstr ""
  310. #. WEATHER_CONDITIONS
  311. #: searx/searxng.msg
  312. msgid "Light rain and thunder"
  313. msgstr ""
  314. #. WEATHER_CONDITIONS
  315. #: searx/searxng.msg
  316. msgid "Light rain showers and thunder"
  317. msgstr ""
  318. #. WEATHER_CONDITIONS
  319. #: searx/searxng.msg
  320. msgid "Light rain showers"
  321. msgstr ""
  322. #. WEATHER_CONDITIONS
  323. #: searx/searxng.msg
  324. msgid "Light rain"
  325. msgstr ""
  326. #. WEATHER_CONDITIONS
  327. #: searx/searxng.msg
  328. msgid "Light sleet and thunder"
  329. msgstr ""
  330. #. WEATHER_CONDITIONS
  331. #: searx/searxng.msg
  332. msgid "Light sleet showers and thunder"
  333. msgstr ""
  334. #. WEATHER_CONDITIONS
  335. #: searx/searxng.msg
  336. msgid "Light sleet showers"
  337. msgstr ""
  338. #. WEATHER_CONDITIONS
  339. #: searx/searxng.msg
  340. msgid "Light sleet"
  341. msgstr ""
  342. #. WEATHER_CONDITIONS
  343. #: searx/searxng.msg
  344. msgid "Light snow and thunder"
  345. msgstr ""
  346. #. WEATHER_CONDITIONS
  347. #: searx/searxng.msg
  348. msgid "Light snow showers and thunder"
  349. msgstr ""
  350. #. WEATHER_CONDITIONS
  351. #: searx/searxng.msg
  352. msgid "Light snow showers"
  353. msgstr ""
  354. #. WEATHER_CONDITIONS
  355. #: searx/searxng.msg
  356. msgid "Light snow"
  357. msgstr ""
  358. #. WEATHER_CONDITIONS
  359. #: searx/searxng.msg
  360. msgid "Partly cloudy"
  361. msgstr ""
  362. #. WEATHER_CONDITIONS
  363. #: searx/searxng.msg
  364. msgid "Rain and thunder"
  365. msgstr ""
  366. #. WEATHER_CONDITIONS
  367. #: searx/searxng.msg
  368. msgid "Rain showers and thunder"
  369. msgstr ""
  370. #. WEATHER_CONDITIONS
  371. #: searx/searxng.msg
  372. msgid "Rain showers"
  373. msgstr ""
  374. #. WEATHER_CONDITIONS
  375. #: searx/searxng.msg
  376. msgid "Rain"
  377. msgstr ""
  378. #. WEATHER_CONDITIONS
  379. #: searx/searxng.msg
  380. msgid "Sleet and thunder"
  381. msgstr ""
  382. #. WEATHER_CONDITIONS
  383. #: searx/searxng.msg
  384. msgid "Sleet showers and thunder"
  385. msgstr ""
  386. #. WEATHER_CONDITIONS
  387. #: searx/searxng.msg
  388. msgid "Sleet showers"
  389. msgstr ""
  390. #. WEATHER_CONDITIONS
  391. #: searx/searxng.msg
  392. msgid "Sleet"
  393. msgstr ""
  394. #. WEATHER_CONDITIONS
  395. #: searx/searxng.msg
  396. msgid "Snow and thunder"
  397. msgstr ""
  398. #. WEATHER_CONDITIONS
  399. #: searx/searxng.msg
  400. msgid "Snow showers and thunder"
  401. msgstr ""
  402. #. WEATHER_CONDITIONS
  403. #: searx/searxng.msg
  404. msgid "Snow showers"
  405. msgstr ""
  406. #. WEATHER_CONDITIONS
  407. #: searx/searxng.msg
  408. msgid "Snow"
  409. msgstr ""
  410. #. SOCIAL_MEDIA_TERMS['SUBSCRIBERS']
  411. #: searx/engines/lemmy.py:85 searx/searxng.msg
  412. msgid "subscribers"
  413. msgstr "συνδρομητές"
  414. #. SOCIAL_MEDIA_TERMS['POSTS']
  415. #: searx/engines/lemmy.py:86 searx/searxng.msg
  416. msgid "posts"
  417. msgstr "αναρτήσεις"
  418. #. SOCIAL_MEDIA_TERMS['ACTIVE USERS']
  419. #: searx/engines/lemmy.py:87 searx/searxng.msg
  420. msgid "active users"
  421. msgstr "ενεργούς χρήστες"
  422. #. SOCIAL_MEDIA_TERMS['COMMENTS']
  423. #: searx/engines/discourse.py:157 searx/engines/hackernews.py:82
  424. #: searx/engines/lemmy.py:130 searx/searxng.msg
  425. msgid "comments"
  426. msgstr "σχόλια"
  427. #. SOCIAL_MEDIA_TERMS['USER']
  428. #: searx/engines/lemmy.py:129 searx/engines/lemmy.py:164 searx/searxng.msg
  429. msgid "user"
  430. msgstr "χρήστης"
  431. #. SOCIAL_MEDIA_TERMS['COMMUNITY']
  432. #: searx/engines/lemmy.py:131 searx/engines/lemmy.py:165 searx/searxng.msg
  433. msgid "community"
  434. msgstr "κοινότητα"
  435. #. SOCIAL_MEDIA_TERMS['POINTS']
  436. #: searx/engines/hackernews.py:82 searx/searxng.msg
  437. msgid "points"
  438. msgstr "σημεία"
  439. #. SOCIAL_MEDIA_TERMS['TITLE']
  440. #: searx/searxng.msg
  441. msgid "title"
  442. msgstr "τίτλος"
  443. #. SOCIAL_MEDIA_TERMS['AUTHOR']
  444. #: searx/engines/hackernews.py:85 searx/searxng.msg
  445. msgid "author"
  446. msgstr "συγγραφέας"
  447. #. SOCIAL_MEDIA_TERMS['THREAD OPEN']
  448. #: searx/engines/discourse.py:149 searx/searxng.msg
  449. msgid "open"
  450. msgstr "Άνοιξε"
  451. #. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
  452. #: searx/engines/discourse.py:149 searx/searxng.msg
  453. msgid "closed"
  454. msgstr "κλειστό"
  455. #. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
  456. #: searx/engines/discourse.py:160 searx/searxng.msg
  457. msgid "answered"
  458. msgstr "απάντησε"
  459. #: searx/webapp.py:292
  460. msgid "No item found"
  461. msgstr "Δεν βρέθηκαν αντικείμενα"
  462. #: searx/engines/qwant.py:291
  463. #: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:294
  464. msgid "Source"
  465. msgstr "Πηγή"
  466. #: searx/webapp.py:296
  467. msgid "Error loading the next page"
  468. msgstr "Σφάλμα φόρτωσης της επόμενης σελίδας"
  469. #: searx/webapp.py:447 searx/webapp.py:845
  470. msgid "Invalid settings, please edit your preferences"
  471. msgstr "Μη έγκυρες ρυθμίσεις, παρακαλούμε ελέγξτε τις προτιμήσεις σας"
  472. #: searx/webapp.py:463
  473. msgid "Invalid settings"
  474. msgstr "Μη έγκυρες ρυθμίσεις"
  475. #: searx/webapp.py:540 searx/webapp.py:630
  476. msgid "search error"
  477. msgstr "σφάλμα αναζήτησης"
  478. #: searx/webutils.py:35
  479. msgid "timeout"
  480. msgstr "Λήξη χρόνου"
  481. #: searx/webutils.py:36
  482. msgid "parsing error"
  483. msgstr "σφάλμα ανάλυσης"
  484. #: searx/webutils.py:37
  485. msgid "HTTP protocol error"
  486. msgstr "Σφάλμα πρωτοκόλλου HTTP"
  487. #: searx/webutils.py:38
  488. msgid "network error"
  489. msgstr "Σφάλμα δικτύου"
  490. #: searx/webutils.py:39
  491. msgid "SSL error: certificate validation has failed"
  492. msgstr "Σφάλμα SSL: η επικύρωση του πιστοποιητικού απέτυχε"
  493. #: searx/webutils.py:41
  494. msgid "unexpected crash"
  495. msgstr "Απροσδόκητο σφάλμα"
  496. #: searx/webutils.py:48
  497. msgid "HTTP error"
  498. msgstr "Σφάλμα HTTP"
  499. #: searx/webutils.py:49
  500. msgid "HTTP connection error"
  501. msgstr "Σφάλμα σύνδεσης HTTP"
  502. #: searx/webutils.py:55
  503. msgid "proxy error"
  504. msgstr "Σφάλμα διακομιστή μεσολάβησης"
  505. #: searx/webutils.py:56
  506. msgid "CAPTCHA"
  507. msgstr "CAPTCHA"
  508. #: searx/webutils.py:57
  509. msgid "too many requests"
  510. msgstr "υπέρβαση ορίου αιτημάτων"
  511. #: searx/webutils.py:58
  512. msgid "access denied"
  513. msgstr "Άρνηση πρόσβασης"
  514. #: searx/webutils.py:59
  515. msgid "server API error"
  516. msgstr "Σφάλμα API διακομιστή"
  517. #: searx/webutils.py:78
  518. msgid "Suspended"
  519. msgstr "Σε αναστολή"
  520. #: searx/webutils.py:313
  521. #, python-brace-format
  522. msgid "{minutes} minute(s) ago"
  523. msgstr "{minutes} λεπτά πριν"
  524. #: searx/webutils.py:314
  525. #, python-brace-format
  526. msgid "{hours} hour(s), {minutes} minute(s) ago"
  527. msgstr "{hours} ώρα(-ες), {minutes} λεπτό(-ά) πριν"
  528. #: searx/answerers/random.py:69
  529. msgid "Generate different random values"
  530. msgstr "Δημιουργία διαφορετικών τυχαίων τιμών"
  531. #: searx/answerers/statistics.py:36
  532. #, python-brace-format
  533. msgid "Compute {func} of the arguments"
  534. msgstr "Υπολογίστε τη {func} των ορισμάτων"
  535. #: searx/engines/openstreetmap.py:158
  536. msgid "Show route in map .."
  537. msgstr "Εμφάνιση διαδρομής στον χάρτη .."
  538. #: searx/engines/pdbe.py:96
  539. #, python-brace-format
  540. msgid "{title} (OBSOLETE)"
  541. msgstr "{title} (ΠΑΡΩΧΗΜΕΝΟΣ)"
  542. #: searx/engines/pdbe.py:103
  543. msgid "This entry has been superseded by"
  544. msgstr "Αυτή η καταχώριση έχει αντικατασταθεί από"
  545. #: searx/engines/qwant.py:293
  546. msgid "Channel"
  547. msgstr "Κανάλι"
  548. #: searx/engines/radio_browser.py:153
  549. msgid "bitrate"
  550. msgstr "ρυθμός μετάδοσης"
  551. #: searx/engines/radio_browser.py:154
  552. msgid "votes"
  553. msgstr "ψήφους"
  554. #: searx/engines/radio_browser.py:155
  555. msgid "clicks"
  556. msgstr "κλικ"
  557. #: searx/engines/seekr.py:193 searx/engines/yummly.py:71
  558. #: searx/engines/zlibrary.py:137
  559. msgid "Language"
  560. msgstr "Γλώσσα"
  561. #: searx/engines/semantic_scholar.py:101
  562. #, python-brace-format
  563. msgid ""
  564. "{numCitations} citations from the year {firstCitationVelocityYear} to "
  565. "{lastCitationVelocityYear}"
  566. msgstr ""
  567. "{numCitations} αναφορές απο τα έτη {firstCitationVelocityYear} εώς "
  568. "{lastCitationVelocityYear}"
  569. #: searx/engines/tineye.py:48
  570. msgid ""
  571. "Could not read that image url. This may be due to an unsupported file "
  572. "format. TinEye only supports images that are JPEG, PNG, GIF, BMP, TIFF or"
  573. " WebP."
  574. msgstr ""
  575. "Αποτυχία ανάγνωσης του συνδέσμου της εικόνας. Αυτό μπορεί να οφείλεται σε"
  576. " μη υποστηριζόμενη μορφή αρχείου. Το TinEye υποστηρίζει μόνο εικόνες που "
  577. "είναι JPEG, PNG, GIF, BMP, TIFF ή WebP."
  578. #: searx/engines/tineye.py:54
  579. msgid ""
  580. "The image is too simple to find matches. TinEye requires a basic level of"
  581. " visual detail to successfully identify matches."
  582. msgstr ""
  583. "Η εικόνα είναι πολύ απλή για να βρεθούν αντιστοιχίες. Το TinEye απαιτεί "
  584. "ένα στοιχειώδης επίπεδο λεπτομέρειας για τον επιτυχή εντοπισμό "
  585. "αντιστοιχιών."
  586. #: searx/engines/tineye.py:59
  587. msgid "The image could not be downloaded."
  588. msgstr "Αποτυχία μεταφόρτωσης εικόνας."
  589. #: searx/engines/zlibrary.py:138
  590. msgid "Book rating"
  591. msgstr "Βαθμολογία βιβλίου"
  592. #: searx/engines/zlibrary.py:139
  593. msgid "File quality"
  594. msgstr "Ποιότητα αρχείου"
  595. #: searx/plugins/ahmia_filter.py:32
  596. msgid "Ahmia blacklist"
  597. msgstr "Η μαύρη λίστα της Ahmia"
  598. #: searx/plugins/ahmia_filter.py:33
  599. msgid "Filter out onion results that appear in Ahmia's blacklist."
  600. msgstr ""
  601. "Φιλτράρισμα των αποτελεσμάτων onion που εμφανίζονται στη μάυρη λίστα της "
  602. "Ahmia."
  603. #: searx/plugins/calculator.py:38
  604. msgid "Basic Calculator"
  605. msgstr "Βασική Αριθμομηχανή"
  606. #: searx/plugins/calculator.py:39
  607. msgid "Calculate mathematical expressions via the search bar"
  608. msgstr "Υπολογίστε μαθηματικές εκφράσεις μέσω της γραμμής αναζήτησης"
  609. #: searx/plugins/hash_plugin.py:34
  610. msgid "Hash plugin"
  611. msgstr "Hash plugin"
  612. #: searx/plugins/hash_plugin.py:35
  613. msgid "Converts strings to different hash digests."
  614. msgstr "Μετατρέπει κείμενο σε διαφορετικές συναρτήσεις κατατεμαχισμού."
  615. #: searx/plugins/hash_plugin.py:62
  616. msgid "hash digest"
  617. msgstr "συνάρτηση κατατεμαχισμού"
  618. #: searx/plugins/hostnames.py:123
  619. msgid "Hostnames plugin"
  620. msgstr "Προσθήκη ονομάτων κεντρικού υπολογιστή"
  621. #: searx/plugins/hostnames.py:124
  622. msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
  623. msgstr ""
  624. "Ξαναγράψτε ονόματα κεντρικών υπολογιστών, αφαιρέστε τα αποτελέσματα ή "
  625. "δώστε προτεραιότητα σε αυτά με βάση το όνομα κεντρικού υπολογιστή"
  626. #: searx/plugins/oa_doi_rewrite.py:55
  627. msgid "Open Access DOI rewrite"
  628. msgstr "Ανοίξτε την επανεγγραφή DOI της Access"
  629. #: searx/plugins/oa_doi_rewrite.py:56
  630. msgid ""
  631. "Avoid paywalls by redirecting to open-access versions of publications "
  632. "when available"
  633. msgstr ""
  634. "Αποφυγή τοίχων πληρωμής με ανακατεύθυνση σε ανοικτές εκδόσεις των "
  635. "δημοσιεύσεων όταν είναι διαθέσιμες"
  636. #: searx/plugins/self_info.py:37
  637. msgid "Self Information"
  638. msgstr "Αυτοπληροφορίες"
  639. #: searx/plugins/self_info.py:39
  640. msgid ""
  641. "Displays your IP if the query is \"ip\" and your user agent if the query "
  642. "is \"user-agent\"."
  643. msgstr ""
  644. "Εμφανίζει την IP σας εάν το ερώτημα είναι \"ip\" και τον παράγοντα χρήστη"
  645. " σας εάν το ερώτημα είναι \"user-agent\"."
  646. #: searx/plugins/self_info.py:52
  647. msgid "Your IP is: "
  648. msgstr "Η IP σας είναι: "
  649. #: searx/plugins/self_info.py:55
  650. msgid "Your user-agent is: "
  651. msgstr "Ο χρήστης-πράκτοράς σας είναι: "
  652. #: searx/plugins/tor_check.py:42
  653. msgid "Tor check plugin"
  654. msgstr "Πρόσθετο ελέγχου Tor"
  655. #: searx/plugins/tor_check.py:44
  656. msgid ""
  657. "This plugin checks if the address of the request is a Tor exit-node, and "
  658. "informs the user if it is; like check.torproject.org, but from SearXNG."
  659. msgstr ""
  660. "Αυτό το πρόσθετο ελέγχει εάν η διεύθυνση του χρήστη είναι διεύθυνση "
  661. "εξόδου του δικτύου Tor και ενημερώνει τον χρήστη εάν είναι έτσι. Όπως στο"
  662. " check.torproject.org, αλλά από το SearXNG."
  663. #: searx/plugins/tor_check.py:65
  664. msgid "Could not download the list of Tor exit-nodes from"
  665. msgstr "Δεν ήταν δυνατή η λήψη της λίστας των κόμβων εξόδου Tor από"
  666. #: searx/plugins/tor_check.py:72
  667. msgid "You are using Tor and it looks like you have the external IP address"
  668. msgstr "Χρησιμοποιείτε Tor και φαίνεται ότι έχετε την εξωτερική διεύθυνση IP"
  669. #: searx/plugins/tor_check.py:76
  670. msgid "You are not using Tor and you have the external IP address"
  671. msgstr "Δεν χρησιμοποιείτε Tor και έχετε την εξωτερική διεύθυνση IP"
  672. #: searx/plugins/tracker_url_remover.py:37
  673. msgid "Tracker URL remover"
  674. msgstr "Αφαίρεση ιχνηλατών από συνδέσμους"
  675. #: searx/plugins/tracker_url_remover.py:38
  676. msgid "Remove trackers arguments from the returned URL"
  677. msgstr "Αφαίρεση ιχνηλατών από τους επιστρεφόμενους συνδέσμους"
  678. #: searx/plugins/unit_converter.py:49
  679. msgid "Unit converter plugin"
  680. msgstr "Πρόσθετο μετατροπέας μονάδων"
  681. #: searx/plugins/unit_converter.py:50
  682. msgid "Convert between units"
  683. msgstr "Μετατροπή μεταξύ μονάδων"
  684. #: searx/result_types/answer.py:224
  685. #, python-brace-format
  686. msgid "{location}: {temperature}, {condition}"
  687. msgstr ""
  688. #: searx/templates/simple/404.html:4
  689. msgid "Page not found"
  690. msgstr "Η σελίδα δεν βρέθηκε"
  691. #: searx/templates/simple/404.html:6
  692. #, python-format
  693. msgid "Go to %(search_page)s."
  694. msgstr "Μετάβαση στο %(search_page)s."
  695. #: searx/templates/simple/404.html:6
  696. msgid "search page"
  697. msgstr "σελίδα αναζήτησης"
  698. #: searx/templates/simple/base.html:53
  699. msgid "Donate"
  700. msgstr "Κάνε δωρεά"
  701. #: searx/templates/simple/base.html:57
  702. #: searx/templates/simple/preferences.html:156
  703. msgid "Preferences"
  704. msgstr "Προτιμήσεις"
  705. #: searx/templates/simple/base.html:67
  706. msgid "Powered by"
  707. msgstr "Με την υποστήριξη του"
  708. #: searx/templates/simple/base.html:67
  709. msgid "a privacy-respecting, open metasearch engine"
  710. msgstr "μια ανοικτή μηχανή μετα-αναζήτησης που σέβεται την ιδιωτικότητα"
  711. #: searx/templates/simple/base.html:68
  712. #: searx/templates/simple/result_templates/packages.html:59
  713. msgid "Source code"
  714. msgstr "Πηγαίος κώδικας"
  715. #: searx/templates/simple/base.html:69
  716. msgid "Issue tracker"
  717. msgstr "Παρακολούθηση ζητημάτων"
  718. #: searx/templates/simple/base.html:70 searx/templates/simple/stats.html:18
  719. msgid "Engine stats"
  720. msgstr "Στατιστικά μηχανής"
  721. #: searx/templates/simple/base.html:72
  722. msgid "Public instances"
  723. msgstr "Δημόσιες εκφάνσεις"
  724. #: searx/templates/simple/base.html:75
  725. msgid "Privacy policy"
  726. msgstr "Πολιτική απορρήτου"
  727. #: searx/templates/simple/base.html:78
  728. msgid "Contact instance maintainer"
  729. msgstr "Επικοινωνήστε με τον συντηρητή αυτής της σελίδας"
  730. #: searx/templates/simple/categories.html:30
  731. msgid "Click on the magnifier to perform search"
  732. msgstr "Κάντε κλικ στο μεγεθυντικό φακό για να πραγματοποιήσετε αναζήτηση"
  733. #: searx/templates/simple/macros.html:40
  734. msgid "Length"
  735. msgstr "Μήκος"
  736. #: searx/templates/simple/macros.html:41
  737. msgid "Views"
  738. msgstr "Προβολές"
  739. #: searx/templates/simple/macros.html:42
  740. #: searx/templates/simple/result_templates/files.html:34
  741. #: searx/templates/simple/result_templates/images.html:19
  742. #: searx/templates/simple/result_templates/paper.html:6
  743. msgid "Author"
  744. msgstr "Συγγραφέας"
  745. #: searx/templates/simple/macros.html:50
  746. msgid "cached"
  747. msgstr "προσωρινά αποθηκευμένο"
  748. #: searx/templates/simple/new_issue.html:64
  749. msgid "Start submitting a new issue on GitHub"
  750. msgstr "Ξεκινήστε την υποβολή ενός νέου ζητήματος στο GitHub"
  751. #: searx/templates/simple/new_issue.html:66
  752. msgid "Please check for existing bugs about this engine on GitHub"
  753. msgstr ""
  754. "Παρακαλούμε ελέγξτε για υπάρχοντα σφάλματα σχετικά με αυτή τη μηχανή "
  755. "αναζήτησης στο GitHub"
  756. #: searx/templates/simple/new_issue.html:69
  757. msgid "I confirm there is no existing bug about the issue I encounter"
  758. msgstr ""
  759. "Επιβεβαιώνω ότι δεν υπάρχει υπάρχον σφάλμα σχετικά με το πρόβλημα που "
  760. "αντιμετωπίζω"
  761. #: searx/templates/simple/new_issue.html:71
  762. msgid "If this is a public instance, please specify the URL in the bug report"
  763. msgstr ""
  764. "Εάν πρόκειται για μια δημόσια σελίδα (SearXNG instance), παρακαλούμε "
  765. "αναφέρετε τη διεύθυνση URL στην αναφορά σφάλματος"
  766. #: searx/templates/simple/new_issue.html:72
  767. msgid "Submit a new issue on Github including the above information"
  768. msgstr "Υποβολή νέου ζητήματος στο Github με τις παραπάνω πληροφορίες"
  769. #: searx/templates/simple/preferences.html:65
  770. msgid "No HTTPS"
  771. msgstr "Όχι HTTPS"
  772. #: searx/templates/simple/elements/engines_msg.html:14
  773. #: searx/templates/simple/preferences.html:69
  774. #: searx/templates/simple/preferences.html:70
  775. msgid "View error logs and submit a bug report"
  776. msgstr "Προβολή αρχείων καταγραφής σφαλμάτων και υποβολή αναφοράς σφάλματος"
  777. #: searx/templates/simple/preferences.html:74
  778. msgid "!bang for this engine"
  779. msgstr "!bang γι' αυτή τη μαχανή αναζήτησης"
  780. #: searx/templates/simple/preferences.html:80
  781. msgid "!bang for its categories"
  782. msgstr "!bang για τις κατηγορίες της"
  783. #: searx/templates/simple/preferences.html:102
  784. #: searx/templates/simple/stats.html:64
  785. msgid "Median"
  786. msgstr "Διάμεσος"
  787. #: searx/templates/simple/preferences.html:103
  788. #: searx/templates/simple/stats.html:70
  789. msgid "P80"
  790. msgstr "P80"
  791. #: searx/templates/simple/preferences.html:104
  792. #: searx/templates/simple/stats.html:76
  793. msgid "P95"
  794. msgstr "P95"
  795. #: searx/templates/simple/preferences.html:136
  796. msgid "Failed checker test(s): "
  797. msgstr "Αποτυχημένα δοκιμαστικά τεστ: "
  798. #: searx/templates/simple/preferences.html:138
  799. msgid "Errors:"
  800. msgstr "Σφάλματα:"
  801. #: searx/templates/simple/preferences.html:163
  802. msgid "General"
  803. msgstr "Γενικά"
  804. #: searx/templates/simple/preferences.html:166
  805. msgid "Default categories"
  806. msgstr "Προεπιλεγμένες κατηγορίες"
  807. #: searx/templates/simple/preferences.html:194
  808. msgid "User interface"
  809. msgstr "Διεπαφή χρήστη"
  810. #: searx/templates/simple/preferences.html:217
  811. msgid "Privacy"
  812. msgstr "Ιδιωτικότητα"
  813. #: searx/templates/simple/preferences.html:232
  814. msgid "Engines"
  815. msgstr "Μηχανές"
  816. #: searx/templates/simple/preferences.html:234
  817. msgid "Currently used search engines"
  818. msgstr "Μηχανές αναζήτησης που χρησιμοποιούνται"
  819. #: searx/templates/simple/preferences.html:243
  820. msgid "Special Queries"
  821. msgstr "Ειδικά Ερωτήματα"
  822. #: searx/templates/simple/preferences.html:251
  823. msgid "Cookies"
  824. msgstr "Cookies"
  825. #: searx/templates/simple/results.html:30
  826. msgid "Number of results"
  827. msgstr "Αριθμός αποτελεσμάτων"
  828. #: searx/templates/simple/results.html:36
  829. msgid "Info"
  830. msgstr "Πληροφορίες"
  831. #: searx/templates/simple/results.html:77
  832. msgid "Back to top"
  833. msgstr "Επιστροφή στην κορυφή"
  834. #: searx/templates/simple/results.html:95
  835. msgid "Previous page"
  836. msgstr "Προηγούμενη σελίδα"
  837. #: searx/templates/simple/results.html:113
  838. msgid "Next page"
  839. msgstr "Επόμενη σελίδα"
  840. #: searx/templates/simple/search.html:3
  841. msgid "Display the front page"
  842. msgstr "Εμφάνιση της αρχικής σελίδας"
  843. #: searx/templates/simple/search.html:9
  844. #: searx/templates/simple/simple_search.html:5
  845. msgid "Search for..."
  846. msgstr "Αναζήτηση για..."
  847. #: searx/templates/simple/search.html:10
  848. #: searx/templates/simple/simple_search.html:6
  849. msgid "clear"
  850. msgstr "καθαρισμός"
  851. #: searx/templates/simple/search.html:11
  852. #: searx/templates/simple/simple_search.html:7
  853. msgid "search"
  854. msgstr "αναζήτηση"
  855. #: searx/templates/simple/stats.html:21
  856. msgid "There is currently no data available. "
  857. msgstr "Δεν υπάρχουν διαθέσιμα δεδομένα. "
  858. #: searx/templates/simple/preferences/engines.html:24
  859. #: searx/templates/simple/stats.html:25
  860. msgid "Engine name"
  861. msgstr "Όνομα μηχανής"
  862. #: searx/templates/simple/stats.html:26
  863. msgid "Scores"
  864. msgstr "Βαθμολογίες"
  865. #: searx/templates/simple/stats.html:27
  866. msgid "Result count"
  867. msgstr "Αριθμός αποτελεσμάτων"
  868. #: searx/templates/simple/elements/engines_msg.html:7
  869. #: searx/templates/simple/preferences/engines.html:31
  870. #: searx/templates/simple/stats.html:28
  871. msgid "Response time"
  872. msgstr "Χρόνος απόκρισης"
  873. #: searx/templates/simple/preferences/engines.html:35
  874. #: searx/templates/simple/stats.html:29
  875. msgid "Reliability"
  876. msgstr "Αξιοπιστία"
  877. #: searx/templates/simple/stats.html:59
  878. msgid "Total"
  879. msgstr "Σύνολο"
  880. #: searx/templates/simple/stats.html:60
  881. msgid "HTTP"
  882. msgstr "HTTP"
  883. #: searx/templates/simple/stats.html:61
  884. msgid "Processing"
  885. msgstr "Επεξεργασία"
  886. #: searx/templates/simple/stats.html:99
  887. msgid "Warnings"
  888. msgstr "Προειδοποιήσεις"
  889. #: searx/templates/simple/stats.html:99
  890. msgid "Errors and exceptions"
  891. msgstr "Σφάλματα και εξαιρέσεις"
  892. #: searx/templates/simple/stats.html:105
  893. msgid "Exception"
  894. msgstr "Εξαίρεση"
  895. #: searx/templates/simple/stats.html:107
  896. msgid "Message"
  897. msgstr "Μήνυμα"
  898. #: searx/templates/simple/stats.html:109
  899. msgid "Percentage"
  900. msgstr "Ποσοστό"
  901. #: searx/templates/simple/stats.html:111
  902. msgid "Parameter"
  903. msgstr "Παράμετρος"
  904. #: searx/templates/simple/result_templates/files.html:36
  905. #: searx/templates/simple/stats.html:119
  906. msgid "Filename"
  907. msgstr "Όνομα αρχείου"
  908. #: searx/templates/simple/stats.html:120
  909. msgid "Function"
  910. msgstr "Συνάρτηση"
  911. #: searx/templates/simple/stats.html:121
  912. msgid "Code"
  913. msgstr "Κώδικας"
  914. #: searx/templates/simple/stats.html:128
  915. msgid "Checker"
  916. msgstr "Ελεγκτής"
  917. #: searx/templates/simple/stats.html:131
  918. msgid "Failed test"
  919. msgstr "Αποτυχημένη δοκιμή"
  920. #: searx/templates/simple/stats.html:132
  921. msgid "Comment(s)"
  922. msgstr "Σχόλιο(α)"
  923. #: searx/templates/simple/answer/translations.html:12
  924. #: searx/templates/simple/preferences/answerers.html:8
  925. msgid "Examples"
  926. msgstr "Παραδείγματα"
  927. #: searx/templates/simple/answer/translations.html:21
  928. msgid "Definitions"
  929. msgstr "Ορισμοί"
  930. #: searx/templates/simple/answer/translations.html:30
  931. msgid "Synonyms"
  932. msgstr "Συνώνυμα"
  933. #: searx/templates/simple/answer/weather.html:19
  934. msgid "Feels Like"
  935. msgstr ""
  936. #: searx/templates/simple/elements/answers.html:2
  937. msgid "Answers"
  938. msgstr "Απαντήσεις"
  939. #: searx/templates/simple/elements/apis.html:3
  940. msgid "Download results"
  941. msgstr "Λήψη αποτελεσμάτων"
  942. #: searx/templates/simple/elements/corrections.html:2
  943. msgid "Try searching for:"
  944. msgstr "Δοκιμάστε αναζήτηση για:"
  945. #: searx/templates/simple/elements/engines_msg.html:4
  946. msgid "Messages from the search engines"
  947. msgstr "Μηνύματα από μηχανές αναζήτησης"
  948. #: searx/templates/simple/elements/engines_msg.html:7
  949. msgid "seconds"
  950. msgstr "s"
  951. #: searx/templates/simple/elements/search_url.html:3
  952. msgid "Search URL"
  953. msgstr "Σύνδεσμος αναζήτησης"
  954. #: searx/templates/simple/elements/search_url.html:4
  955. #: searx/templates/simple/preferences/cookies.html:54
  956. msgid "Copied"
  957. msgstr "Αντιγράφηκε"
  958. #: searx/templates/simple/elements/search_url.html:4
  959. #: searx/templates/simple/preferences/cookies.html:54
  960. msgid "Copy"
  961. msgstr "Αντιγραφή"
  962. #: searx/templates/simple/elements/suggestions.html:3
  963. msgid "Suggestions"
  964. msgstr "Προτάσεις"
  965. #: searx/templates/simple/filters/languages.html:1
  966. #: searx/templates/simple/preferences/language.html:2
  967. msgid "Search language"
  968. msgstr "Γλώσσα αναζήτησης"
  969. #: searx/templates/simple/filters/languages.html:4
  970. #: searx/templates/simple/preferences/language.html:7
  971. msgid "Default language"
  972. msgstr "Προεπιλεγμένη γλώσσα"
  973. #: searx/templates/simple/filters/languages.html:8
  974. #: searx/templates/simple/preferences/language.html:11
  975. msgid "Auto-detect"
  976. msgstr "Αυτόματη αναγνώριση της γλώσσας"
  977. #: searx/templates/simple/filters/safesearch.html:1
  978. #: searx/templates/simple/filters/safesearch.html:2
  979. #: searx/templates/simple/filters/safesearch.html:3
  980. #: searx/templates/simple/filters/safesearch.html:4
  981. #: searx/templates/simple/preferences/engines.html:27
  982. #: searx/templates/simple/preferences/safesearch.html:2
  983. msgid "SafeSearch"
  984. msgstr "Ασφαλής Αναζήτηση"
  985. #: searx/templates/simple/filters/safesearch.html:2
  986. #: searx/templates/simple/preferences/safesearch.html:7
  987. msgid "Strict"
  988. msgstr "Αυστηρό"
  989. #: searx/templates/simple/filters/safesearch.html:3
  990. #: searx/templates/simple/preferences/safesearch.html:11
  991. msgid "Moderate"
  992. msgstr "Μέτριο"
  993. #: searx/templates/simple/filters/safesearch.html:4
  994. #: searx/templates/simple/preferences/safesearch.html:15
  995. msgid "None"
  996. msgstr "Κανένα"
  997. #: searx/templates/simple/filters/time_range.html:1
  998. #: searx/templates/simple/preferences/engines.html:28
  999. msgid "Time range"
  1000. msgstr "Εύρος χρόνου"
  1001. #: searx/templates/simple/filters/time_range.html:3
  1002. msgid "Anytime"
  1003. msgstr "Οποιαδήποτε στιγμή"
  1004. #: searx/templates/simple/filters/time_range.html:6
  1005. msgid "Last day"
  1006. msgstr "Τελευταία μέρα"
  1007. #: searx/templates/simple/filters/time_range.html:9
  1008. msgid "Last week"
  1009. msgstr "Τελευταία βδομάδα"
  1010. #: searx/templates/simple/filters/time_range.html:12
  1011. msgid "Last month"
  1012. msgstr "Τελευταίος μήνας"
  1013. #: searx/templates/simple/filters/time_range.html:15
  1014. msgid "Last year"
  1015. msgstr "Τελευταίο έτος"
  1016. #: searx/templates/simple/messages/no_cookies.html:3
  1017. msgid "Information!"
  1018. msgstr "Πληροφορίες!"
  1019. #: searx/templates/simple/messages/no_cookies.html:4
  1020. msgid "currently, there are no cookies defined."
  1021. msgstr "προς το παρόν, δεν έχουν οριστεί cookies."
  1022. #: searx/templates/simple/messages/no_results.html:6
  1023. msgid "Sorry!"
  1024. msgstr "Συγνώμη!"
  1025. #: searx/templates/simple/messages/no_results.html:12
  1026. msgid "No results were found. You can try to:"
  1027. msgstr "Δεν βρέθηκαν αποτελέσματα. Μπορείτε να δοκιμάσετε:"
  1028. #: searx/templates/simple/messages/no_results.html:14
  1029. msgid "There are no more results. You can try to:"
  1030. msgstr "Δεν υπάρχουν άλλα αποτελέσματα. Μπορείτε να προσπαθήσετε να:"
  1031. #: searx/templates/simple/messages/no_results.html:19
  1032. msgid "Refresh the page."
  1033. msgstr "Ανανέωση σελίδας."
  1034. #: searx/templates/simple/messages/no_results.html:20
  1035. msgid "Search for another query or select another category (above)."
  1036. msgstr "Υποβάλετε νέα αναζήτηση ή επιλέξτε άλλη κατηγορία (επάνω)."
  1037. #: searx/templates/simple/messages/no_results.html:21
  1038. msgid "Change the search engine used in the preferences:"
  1039. msgstr "Αλλάξτε την μηχανή αναζήτησης που χρησιμοποιείται στις ρυθμίσεις:"
  1040. #: searx/templates/simple/messages/no_results.html:22
  1041. msgid "Switch to another instance:"
  1042. msgstr "Αλλαγή σε άλλη έκδοση:"
  1043. #: searx/templates/simple/messages/no_results.html:24
  1044. msgid "Search for another query or select another category."
  1045. msgstr "Αναζητήστε άλλο ερώτημα ή επιλέξτε άλλη κατηγορία."
  1046. #: searx/templates/simple/messages/no_results.html:25
  1047. msgid "Go back to the previous page using the previous page button."
  1048. msgstr ""
  1049. "Επιστρέψτε στην προηγούμενη σελίδα χρησιμοποιώντας το κουμπί της "
  1050. "προηγούμενης σελίδας."
  1051. #: searx/templates/simple/preferences/answerers.html:4
  1052. #: searx/templates/simple/preferences/engines.html:23
  1053. msgid "Allow"
  1054. msgstr "Επέτρεψε"
  1055. #: searx/templates/simple/preferences/answerers.html:5
  1056. msgid "Keywords (first word in query)"
  1057. msgstr "Λέξεις-κλειδιά (πρώτη λέξη στο ερώτημα)"
  1058. #: searx/templates/simple/preferences/answerers.html:6
  1059. #: searx/templates/simple/result_templates/packages.html:7
  1060. msgid "Name"
  1061. msgstr "Όνομα"
  1062. #: searx/templates/simple/preferences/answerers.html:7
  1063. msgid "Description"
  1064. msgstr "Περιγραφή"
  1065. #: searx/templates/simple/preferences/answerers.html:13
  1066. msgid "This is the list of SearXNG's instant answering modules."
  1067. msgstr "Αυτός είναι ο κατάλογος των ενοτήτων άμεσης απάντησης του SearXNG."
  1068. #: searx/templates/simple/preferences/answerers.html:29
  1069. msgid "This is the list of plugins."
  1070. msgstr "Αυτός είναι ο κατάλογος των πρόσθετων."
  1071. #: searx/templates/simple/preferences/autocomplete.html:2
  1072. msgid "Autocomplete"
  1073. msgstr "Αυτόματη συμπλήρωση"
  1074. #: searx/templates/simple/preferences/autocomplete.html:15
  1075. msgid "Show possible queries as you type"
  1076. msgstr ""
  1077. #: searx/templates/simple/preferences/center_alignment.html:2
  1078. msgid "Center Alignment"
  1079. msgstr "Κεντρική ευθυγράμμιση"
  1080. #: searx/templates/simple/preferences/center_alignment.html:14
  1081. msgid "Displays results in the center of the page (Oscar layout)."
  1082. msgstr "Εμφάνιση αποτελεσμάτων στο κέντρο της σελίδας (διάταξη Oscar)."
  1083. #: searx/templates/simple/preferences/cookies.html:2
  1084. msgid ""
  1085. "This is the list of cookies and their values SearXNG is storing on your "
  1086. "computer."
  1087. msgstr ""
  1088. "Αυτός είναι ο κατάλογος των cookies και των τιμών τους που αποθηκεύει η "
  1089. "SearXNG στον υπολογιστή σας."
  1090. #: searx/templates/simple/preferences/cookies.html:3
  1091. msgid "With that list, you can assess SearXNG transparency."
  1092. msgstr "Με αυτόν τον κατάλογο, μπορείτε να αξιολογήσετε τη διαφάνεια του SearXNG."
  1093. #: searx/templates/simple/preferences/cookies.html:9
  1094. msgid "Cookie name"
  1095. msgstr "Όνομα cookie"
  1096. #: searx/templates/simple/preferences/cookies.html:10
  1097. msgid "Value"
  1098. msgstr "Τιμή"
  1099. #: searx/templates/simple/preferences/cookies.html:23
  1100. msgid "Search URL of the currently saved preferences"
  1101. msgstr "Σύνδεσμος αναζήτησης των αποθηκευμένων προτιμήσεων"
  1102. #: searx/templates/simple/preferences/cookies.html:32
  1103. msgid ""
  1104. "Note: specifying custom settings in the search URL can reduce privacy by "
  1105. "leaking data to the clicked result sites."
  1106. msgstr ""
  1107. "Σημείωση: ο καθορισμός προσαρμοσμένων ρυθμίσεων στη διεύθυνση URL "
  1108. "αναζήτησης μπορεί να μειώσει την ιδιωτικότητα διαρρέοντας δεδομένα στους "
  1109. "ιστότοπους των αποτελεσμάτων που εσείς κάνετε κλίκ."
  1110. #: searx/templates/simple/preferences/cookies.html:35
  1111. msgid "URL to restore your preferences in another browser"
  1112. msgstr "Σύνδεσμος για επαναφορά προτιμήσεων σε διαφορετικό περιηγητή"
  1113. #: searx/templates/simple/preferences/cookies.html:43
  1114. msgid ""
  1115. "A URL containing your preferences. This URL can be used to restore your "
  1116. "settings on a different device."
  1117. msgstr ""
  1118. "Ένα URL που περιέχει τις προτιμήσεις σας. Αυτό το URL μπορεί να "
  1119. "χρησιμοποιηθεί για να επαναφέρει τις ρυθμίσεις σας σε διαφορετική "
  1120. "συσκευή."
  1121. #: searx/templates/simple/preferences/cookies.html:46
  1122. msgid "Copy preferences hash"
  1123. msgstr "Αντιγραφή κατακερματισμού προτιμήσεων"
  1124. #: searx/templates/simple/preferences/cookies.html:57
  1125. msgid "Insert copied preferences hash (without URL) to restore"
  1126. msgstr ""
  1127. "Εισαγάγετε αντιγραμμένο κατακερματισμό προτιμήσεων (χωρίς URL) για "
  1128. "επαναφορά"
  1129. #: searx/templates/simple/preferences/cookies.html:59
  1130. msgid "Preferences hash"
  1131. msgstr "Κατακερματισμός προτιμήσεων"
  1132. #: searx/templates/simple/preferences/doi_resolver.html:1
  1133. msgid "Digital Object Identifier (DOI)"
  1134. msgstr "Ψηφιακό αναγνωριστικό αντικειμένου (DOI)"
  1135. #: searx/templates/simple/preferences/doi_resolver.html:6
  1136. msgid "Open Access DOI resolver"
  1137. msgstr "Επιλυτής DOI ανοικτής πρόσβασης"
  1138. #: searx/templates/simple/preferences/doi_resolver.html:18
  1139. msgid "Select service used by DOI rewrite"
  1140. msgstr "Επιλέξτε την υπηρεσία που θα χρησιμοποιηθεί απ' το DOI rewrite"
  1141. #: searx/templates/simple/preferences/engines.html:9
  1142. msgid ""
  1143. "This tab does not exist in the user interface, but you can search with "
  1144. "these engines via !bangs."
  1145. msgstr ""
  1146. #: searx/templates/simple/preferences/engines.html:15
  1147. msgid "Enable all"
  1148. msgstr "Ενεργοποίηση όλων"
  1149. #: searx/templates/simple/preferences/engines.html:16
  1150. msgid "Disable all"
  1151. msgstr "Απενεργοποίηση όλων"
  1152. #: searx/templates/simple/preferences/engines.html:25
  1153. msgid "!bang"
  1154. msgstr "!bang"
  1155. #: searx/templates/simple/preferences/engines.html:26
  1156. msgid "Supports selected language"
  1157. msgstr "Υποστηρίζει την επιλεγμένη γλώσσα"
  1158. #: searx/templates/simple/preferences/engines.html:29
  1159. msgid "Weight"
  1160. msgstr "Βάρος"
  1161. #: searx/templates/simple/preferences/engines.html:33
  1162. msgid "Max time"
  1163. msgstr "Μέγιστος χρόνος"
  1164. #: searx/templates/simple/preferences/favicon.html:2
  1165. msgid "Favicon Resolver"
  1166. msgstr "Ευρετής Εικόνων Σελιδών"
  1167. #: searx/templates/simple/preferences/favicon.html:15
  1168. msgid "Display favicons near search results"
  1169. msgstr "Εμφάνιση εικονιδίων σελιδών δίπλα από τα αποτελέσματα αναζήτησης"
  1170. #: searx/templates/simple/preferences/footer.html:2
  1171. msgid ""
  1172. "These settings are stored in your cookies, this allows us not to store "
  1173. "this data about you."
  1174. msgstr ""
  1175. "Αυτές οι ρυθμίσεις αποθηκεύονται στα cookies σας, με αυτόν τον τρόπο δεν "
  1176. "χρειάζεται να αποθηκέυονται στους δικούς μας διακομιστές."
  1177. #: searx/templates/simple/preferences/footer.html:3
  1178. msgid ""
  1179. "These cookies serve your sole convenience, we don't use these cookies to "
  1180. "track you."
  1181. msgstr ""
  1182. "Αυτά τα cookies υπάρχουν αποκλειστικά για την εξυπηρέτησή σας, δεν τα "
  1183. "χρησιμοποιούμε για να σας παρακολουθούμε."
  1184. #: searx/templates/simple/preferences/footer.html:6
  1185. msgid "Save"
  1186. msgstr "Αποθήκευση"
  1187. #: searx/templates/simple/preferences/footer.html:9
  1188. msgid "Reset defaults"
  1189. msgstr "Επαναφορά προεπιλογών"
  1190. #: searx/templates/simple/preferences/footer.html:13
  1191. msgid "Back"
  1192. msgstr "Πίσω"
  1193. #: searx/templates/simple/preferences/hotkeys.html:2
  1194. msgid "Hotkeys"
  1195. msgstr "Πλήκτρα συντόμευσης"
  1196. #: searx/templates/simple/preferences/hotkeys.html:13
  1197. msgid "Vim-like"
  1198. msgstr "Σαν του Vim"
  1199. #: searx/templates/simple/preferences/hotkeys.html:18
  1200. msgid ""
  1201. "Navigate search results with hotkeys (JavaScript required). Press \"h\" "
  1202. "key on main or result page to get help."
  1203. msgstr ""
  1204. "Πλοήγηση αποτελεσμάτων με πλήκτρα συντόμευσης (αναγκαία η χρήση "
  1205. "Javascript). Πατήστε το πλήκτρο\"h\" στην κύρια σελίδα ή την σελίδα "
  1206. "αποτελεσμάτων για οδηγίες."
  1207. #: searx/templates/simple/preferences/image_proxy.html:2
  1208. msgid "Image proxy"
  1209. msgstr "Διακομιστής μεσολάβησης εικόνων"
  1210. #: searx/templates/simple/preferences/image_proxy.html:14
  1211. msgid "Proxying image results through SearXNG"
  1212. msgstr "Διαμεσολάβιση φόρτωσης αποτελεσμάτων εικόνων μέσω του SearXNG"
  1213. #: searx/templates/simple/preferences/infinite_scroll.html:2
  1214. msgid "Infinite scroll"
  1215. msgstr "Άπειρη κύλιση"
  1216. #: searx/templates/simple/preferences/infinite_scroll.html:14
  1217. msgid "Automatically load next page when scrolling to bottom of current page"
  1218. msgstr ""
  1219. "Αυτόματη φόρτωση της επόμενης σελίδας κατά την κύλιση στο κάτω μέρος της "
  1220. "τρέχουσας σελίδας"
  1221. #: searx/templates/simple/preferences/language.html:24
  1222. msgid "What language do you prefer for search?"
  1223. msgstr "Τι γλώσσα προτιμάτε για αναζήτηση;"
  1224. #: searx/templates/simple/preferences/language.html:25
  1225. msgid "Choose Auto-detect to let SearXNG detect the language of your query."
  1226. msgstr ""
  1227. "Επιλέξτε αυτόματη αναγνώριση για να αφήσετε το SearXNG να αναγνωρίσει την"
  1228. " γλώσσα του ερωτήματος σας αυτόματα."
  1229. #: searx/templates/simple/preferences/method.html:2
  1230. msgid "HTTP Method"
  1231. msgstr "Μέθοδος HTTP"
  1232. #: searx/templates/simple/preferences/method.html:14
  1233. msgid "Change how forms are submitted"
  1234. msgstr "Αλλαγή τρόπου υποβολής φόρμας"
  1235. #: searx/templates/simple/preferences/query_in_title.html:2
  1236. msgid "Query in the page's title"
  1237. msgstr "Ερώτημα στον τίτλο της σελίδας"
  1238. #: searx/templates/simple/preferences/query_in_title.html:14
  1239. msgid ""
  1240. "When enabled, the result page's title contains your query. Your browser "
  1241. "can record this title"
  1242. msgstr ""
  1243. "Όταν ενεργό, ο τίτλος της σελίδας αποτελεσμάτων περιέχει το ερώτημά σας. "
  1244. "Το πρόγραμμα περιήγησής σας μπορεί να καταγράψει αυτόν τον τίτλο"
  1245. #: searx/templates/simple/preferences/results_on_new_tab.html:2
  1246. msgid "Results in new tabs"
  1247. msgstr ""
  1248. #: searx/templates/simple/preferences/results_on_new_tab.html:14
  1249. msgid "Open result links in new browser tabs"
  1250. msgstr ""
  1251. #: searx/templates/simple/preferences/safesearch.html:20
  1252. msgid "Filter content"
  1253. msgstr "Φιλτράρισμα περιεχομένου"
  1254. #: searx/templates/simple/preferences/search_on_category_select.html:2
  1255. msgid "Search on category select"
  1256. msgstr "Αναζήτηση κατά την επιλογή κατηγορίας"
  1257. #: searx/templates/simple/preferences/search_on_category_select.html:14
  1258. msgid ""
  1259. "Perform search immediately if a category selected. Disable to select "
  1260. "multiple categories"
  1261. msgstr ""
  1262. "Άμεση αναζήτηση κατά την επιλογή κατηγορίας. Απενεργοποιήστε για να "
  1263. "διαλέξετε πολλαπλές κατηγορίες"
  1264. #: searx/templates/simple/preferences/theme.html:2
  1265. msgid "Theme"
  1266. msgstr "Θέμα"
  1267. #: searx/templates/simple/preferences/theme.html:14
  1268. msgid "Change SearXNG layout"
  1269. msgstr "Τροποποίηση διάταξης του SearXNG"
  1270. #: searx/templates/simple/preferences/theme.html:19
  1271. msgid "Theme style"
  1272. msgstr "Στυλ θέματος"
  1273. #: searx/templates/simple/preferences/theme.html:31
  1274. msgid "Choose auto to follow your browser settings"
  1275. msgstr ""
  1276. "Επιλέξτε αυτόματο για να τηρήσετε τις ρυθμίσεις του προγράμματος "
  1277. "περιήγησης"
  1278. #: searx/templates/simple/preferences/tokens.html:2
  1279. msgid "Engine tokens"
  1280. msgstr "Tokens μηχανών αναζήτησης"
  1281. #: searx/templates/simple/preferences/tokens.html:9
  1282. msgid "Access tokens for private engines"
  1283. msgstr "Tokens πρόσβασης για ιδιωτικές μηχανές"
  1284. #: searx/templates/simple/preferences/ui_locale.html:2
  1285. msgid "Interface language"
  1286. msgstr "Γλώσσα διεπαφής"
  1287. #: searx/templates/simple/preferences/ui_locale.html:14
  1288. msgid "Change the language of the layout"
  1289. msgstr "Αλλαγή γλώσσας της διάταξης"
  1290. #: searx/templates/simple/preferences/urlformatting.html:2
  1291. msgid "URL formatting"
  1292. msgstr "Τρόπος εμφάνισης ηλεκτρονικού συνδέσμου"
  1293. #: searx/templates/simple/preferences/urlformatting.html:8
  1294. msgid "Pretty"
  1295. msgstr "Όμορφο"
  1296. #: searx/templates/simple/preferences/urlformatting.html:13
  1297. msgid "Full"
  1298. msgstr "Πλήρες"
  1299. #: searx/templates/simple/preferences/urlformatting.html:18
  1300. msgid "Host"
  1301. msgstr "Διακομιστής"
  1302. #: searx/templates/simple/preferences/urlformatting.html:23
  1303. msgid "Change result URL formatting"
  1304. msgstr "Αλλαγή τρόπου εμφάνισης ηλεκτρονικών συνδέσμων"
  1305. #: searx/templates/simple/result_templates/code.html:13
  1306. msgid "repo"
  1307. msgstr "αποθετήρια"
  1308. #: searx/templates/simple/result_templates/default.html:6
  1309. #: searx/templates/simple/result_templates/files.html:8
  1310. #: searx/templates/simple/result_templates/files.html:11
  1311. msgid "show media"
  1312. msgstr "προβολή πολυμέσων"
  1313. #: searx/templates/simple/result_templates/default.html:6
  1314. #: searx/templates/simple/result_templates/files.html:8
  1315. msgid "hide media"
  1316. msgstr "απόκρυψη πολυμέσων"
  1317. #: searx/templates/simple/result_templates/default.html:14
  1318. #: searx/templates/simple/result_templates/videos.html:14
  1319. msgid "This site did not provide any description."
  1320. msgstr "Αυτός ο ιστότοπος δεν παρείχε καμία περιγραφή."
  1321. #: searx/templates/simple/result_templates/files.html:38
  1322. #: searx/templates/simple/result_templates/images.html:22
  1323. #: searx/templates/simple/result_templates/torrent.html:18
  1324. msgid "Filesize"
  1325. msgstr "Μέγεθος αρχείου"
  1326. #: searx/templates/simple/result_templates/files.html:40
  1327. msgid "Date"
  1328. msgstr "Ημερομηνία"
  1329. #: searx/templates/simple/result_templates/files.html:42
  1330. #: searx/templates/simple/result_templates/paper.html:24
  1331. msgid "Type"
  1332. msgstr "Τύπος"
  1333. #: searx/templates/simple/result_templates/images.html:20
  1334. msgid "Resolution"
  1335. msgstr "Ανάλυση"
  1336. #: searx/templates/simple/result_templates/images.html:21
  1337. msgid "Format"
  1338. msgstr "Μορφή"
  1339. #: searx/templates/simple/result_templates/images.html:24
  1340. msgid "Engine"
  1341. msgstr "Μηχανή"
  1342. #: searx/templates/simple/result_templates/images.html:25
  1343. msgid "View source"
  1344. msgstr "Προβολή πηγής"
  1345. #: searx/templates/simple/result_templates/map.html:12
  1346. msgid "address"
  1347. msgstr "διεύθυνση"
  1348. #: searx/templates/simple/result_templates/map.html:43
  1349. msgid "show map"
  1350. msgstr "προβολή χάρτη"
  1351. #: searx/templates/simple/result_templates/map.html:43
  1352. msgid "hide map"
  1353. msgstr "απόκρυψη χάρτη"
  1354. #: searx/templates/simple/result_templates/packages.html:12
  1355. msgid "Version"
  1356. msgstr "Έκδοση"
  1357. #: searx/templates/simple/result_templates/packages.html:18
  1358. msgid "Maintainer"
  1359. msgstr "Συντηρητής"
  1360. #: searx/templates/simple/result_templates/packages.html:24
  1361. msgid "Updated at"
  1362. msgstr "Ενημερώθηκε στις"
  1363. #: searx/templates/simple/result_templates/packages.html:30
  1364. #: searx/templates/simple/result_templates/paper.html:25
  1365. msgid "Tags"
  1366. msgstr "Σημάνσεις"
  1367. #: searx/templates/simple/result_templates/packages.html:36
  1368. msgid "Popularity"
  1369. msgstr "Δημοτικότητα"
  1370. #: searx/templates/simple/result_templates/packages.html:42
  1371. msgid "License"
  1372. msgstr "Άδεια"
  1373. #: searx/templates/simple/result_templates/packages.html:52
  1374. msgid "Project"
  1375. msgstr "Έργο"
  1376. #: searx/templates/simple/result_templates/packages.html:55
  1377. msgid "Project homepage"
  1378. msgstr "Αρχική σελίδα του έργου"
  1379. #: searx/templates/simple/result_templates/paper.html:5
  1380. msgid "Published date"
  1381. msgstr "Ημερομηνία δημοσίευσης"
  1382. #: searx/templates/simple/result_templates/paper.html:9
  1383. msgid "Journal"
  1384. msgstr "Περιοδικό"
  1385. #: searx/templates/simple/result_templates/paper.html:22
  1386. msgid "Editor"
  1387. msgstr "Συντάκτης"
  1388. #: searx/templates/simple/result_templates/paper.html:23
  1389. msgid "Publisher"
  1390. msgstr "Εκδότης"
  1391. #: searx/templates/simple/result_templates/paper.html:26
  1392. msgid "DOI"
  1393. msgstr "DOI"
  1394. #: searx/templates/simple/result_templates/paper.html:27
  1395. msgid "ISSN"
  1396. msgstr "ISSN"
  1397. #: searx/templates/simple/result_templates/paper.html:28
  1398. msgid "ISBN"
  1399. msgstr "ISBN"
  1400. #: searx/templates/simple/result_templates/paper.html:33
  1401. msgid "PDF"
  1402. msgstr "PDF"
  1403. #: searx/templates/simple/result_templates/paper.html:34
  1404. msgid "HTML"
  1405. msgstr "HTML"
  1406. #: searx/templates/simple/result_templates/torrent.html:7
  1407. msgid "magnet link"
  1408. msgstr "Σύνδεσμος magnet"
  1409. #: searx/templates/simple/result_templates/torrent.html:8
  1410. msgid "torrent file"
  1411. msgstr "Αρχείο torrent"
  1412. #: searx/templates/simple/result_templates/torrent.html:13
  1413. msgid "Seeder"
  1414. msgstr "Seeder"
  1415. #: searx/templates/simple/result_templates/torrent.html:14
  1416. msgid "Leecher"
  1417. msgstr "Leecher"
  1418. #: searx/templates/simple/result_templates/torrent.html:19
  1419. msgid "Number of Files"
  1420. msgstr "Αριθμός Αρχείων"
  1421. #: searx/templates/simple/result_templates/videos.html:6
  1422. msgid "show video"
  1423. msgstr "προβολή βίντεο"
  1424. #: searx/templates/simple/result_templates/videos.html:6
  1425. msgid "hide video"
  1426. msgstr "απόκρυψη βίντεο"
  1427. #~ msgid "Engine time (sec)"
  1428. #~ msgstr "Χρόνος μηχανής (δευτ)"
  1429. #~ msgid "Page loads (sec)"
  1430. #~ msgstr "Φόρτωση σελίδας (δευτ)"
  1431. #~ msgid "Errors"
  1432. #~ msgstr "Λάθη"
  1433. #~ msgid "CAPTCHA required"
  1434. #~ msgstr ""
  1435. #~ msgid "Rewrite HTTP links to HTTPS if possible"
  1436. #~ msgstr "Επανεγγραφή συνδέσμων HTTP σε HTTPS αν είναι δυνατό"
  1437. #~ msgid ""
  1438. #~ "Results are opened in the same "
  1439. #~ "window by default. This plugin "
  1440. #~ "overwrites the default behaviour to open"
  1441. #~ " links on new tabs/windows. (JavaScript "
  1442. #~ "required)"
  1443. #~ msgstr ""
  1444. #~ msgid "Color"
  1445. #~ msgstr "Χρώμα"
  1446. #~ msgid "Blue (default)"
  1447. #~ msgstr "Μπλε (προεπιλεγμένο)"
  1448. #~ msgid "Violet"
  1449. #~ msgstr "Βιολετί"
  1450. #~ msgid "Green"
  1451. #~ msgstr "Πράσινο"
  1452. #~ msgid "Cyan"
  1453. #~ msgstr "Κυανό"
  1454. #~ msgid "Orange"
  1455. #~ msgstr "Πορτοκαλί"
  1456. #~ msgid "Red"
  1457. #~ msgstr "Κόκκινο"
  1458. #~ msgid "Category"
  1459. #~ msgstr "Κατηγορία"
  1460. #~ msgid "Block"
  1461. #~ msgstr "Αποκλεισμός"
  1462. #~ msgid "original context"
  1463. #~ msgstr ""
  1464. #~ msgid "Plugins"
  1465. #~ msgstr "Πρόσθετα"
  1466. #~ msgid "Answerers"
  1467. #~ msgstr ""
  1468. #~ msgid "Avg. time"
  1469. #~ msgstr ""
  1470. #~ msgid "show details"
  1471. #~ msgstr "προβολή λεπτομερειών"
  1472. #~ msgid "hide details"
  1473. #~ msgstr "απόκρυψη λεπτομερειών"
  1474. #~ msgid "Load more..."
  1475. #~ msgstr "Φόρτωση περισσότερων..."
  1476. #~ msgid "Loading..."
  1477. #~ msgstr ""
  1478. #~ msgid "Change searx layout"
  1479. #~ msgstr ""
  1480. #~ msgid "Proxying image results through searx"
  1481. #~ msgstr ""
  1482. #~ msgid "This is the list of searx's instant answering modules."
  1483. #~ msgstr ""
  1484. #~ msgid ""
  1485. #~ "This is the list of cookies and"
  1486. #~ " their values searx is storing on "
  1487. #~ "your computer."
  1488. #~ msgstr ""
  1489. #~ msgid "With that list, you can assess searx transparency."
  1490. #~ msgstr ""
  1491. #~ msgid "It look like you are using searx first time."
  1492. #~ msgstr "Φαίνεται ότι χρησιμοποιείται το searx για πρώτη φορά."
  1493. #~ msgid "Please, try again later or find another searx instance."
  1494. #~ msgstr ""
  1495. #~ msgid "Themes"
  1496. #~ msgstr "Θέματα"
  1497. #~ msgid "Reliablity"
  1498. #~ msgstr ""
  1499. #~ msgid ""
  1500. #~ "When enabled, the result page's title"
  1501. #~ " contains your query. Your browser "
  1502. #~ "can record this title."
  1503. #~ msgstr ""
  1504. #~ msgid "Method"
  1505. #~ msgstr "Μέθοδος"
  1506. #~ msgid ""
  1507. #~ "This tab does not show up for "
  1508. #~ "search results but you can search "
  1509. #~ "the engines listed here via bangs."
  1510. #~ msgstr ""
  1511. #~ msgid "Advanced settings"
  1512. #~ msgstr "Ρυθμίσεις για προχωρημένους"
  1513. #~ msgid "Close"
  1514. #~ msgstr "Κλείσιμο"
  1515. #~ msgid "Language"
  1516. #~ msgstr "Γλώσσα"
  1517. #~ msgid "broken"
  1518. #~ msgstr "Κατεστραμένο"
  1519. #~ msgid "supported"
  1520. #~ msgstr "Υποστηρίζεται"
  1521. #~ msgid "not supported"
  1522. #~ msgstr "Δεν υποστηρίζεται"
  1523. #~ msgid "about"
  1524. #~ msgstr "Σχετικά"
  1525. #~ msgid "Avg."
  1526. #~ msgstr ""
  1527. #~ msgid "User Interface"
  1528. #~ msgstr ""
  1529. #~ msgid "Choose style for this theme"
  1530. #~ msgstr ""
  1531. #~ msgid "Style"
  1532. #~ msgstr ""
  1533. #~ msgid "Show advanced settings"
  1534. #~ msgstr ""
  1535. #~ msgid "Show advanced settings panel in the home page by default"
  1536. #~ msgstr ""
  1537. #~ msgid "Allow all"
  1538. #~ msgstr ""
  1539. #~ msgid "Disable all"
  1540. #~ msgstr ""
  1541. #~ msgid "Selected language"
  1542. #~ msgstr "Επιλεγμένη γλώσσα"
  1543. #~ msgid "Query"
  1544. #~ msgstr ""
  1545. #~ msgid "save"
  1546. #~ msgstr "αποθήκευση"
  1547. #~ msgid "back"
  1548. #~ msgstr "πίσω"
  1549. #~ msgid "Links"
  1550. #~ msgstr "Σύνδεσμοι"
  1551. #~ msgid "RSS subscription"
  1552. #~ msgstr ""
  1553. #~ msgid "Search results"
  1554. #~ msgstr "Αποτελέσματα αναζήτησης"
  1555. #~ msgid "next page"
  1556. #~ msgstr "επόμενη σελίδα"
  1557. #~ msgid "previous page"
  1558. #~ msgstr "προηγούμενη σελίδα"
  1559. #~ msgid "Start search"
  1560. #~ msgstr "Έναρξη αναζήτησης"
  1561. #~ msgid "Clear search"
  1562. #~ msgstr ""
  1563. #~ msgid "Clear"
  1564. #~ msgstr ""
  1565. #~ msgid "stats"
  1566. #~ msgstr "στατιστικά"
  1567. #~ msgid "Heads up!"
  1568. #~ msgstr ""
  1569. #~ msgid "It look like you are using SearXNG first time."
  1570. #~ msgstr ""
  1571. #~ msgid "Well done!"
  1572. #~ msgstr "Πολύ καλά!"
  1573. #~ msgid "Settings saved successfully."
  1574. #~ msgstr "Οι ρυθμίσεις αποθηκεύτηκαν επιτυχώς."
  1575. #~ msgid "Oh snap!"
  1576. #~ msgstr "Φτου!"
  1577. #~ msgid "Something went wrong."
  1578. #~ msgstr "Κάτι πήγε στραβά."
  1579. #~ msgid "Date"
  1580. #~ msgstr ""
  1581. #~ msgid "Type"
  1582. #~ msgstr ""
  1583. #~ msgid "Get image"
  1584. #~ msgstr ""
  1585. #~ msgid "Center Alignment"
  1586. #~ msgstr ""
  1587. #~ msgid "Displays results in the center of the page (Oscar layout)."
  1588. #~ msgstr ""
  1589. #~ msgid "preferences"
  1590. #~ msgstr "Προτιμήσεις"
  1591. #~ msgid "Scores per result"
  1592. #~ msgstr ""
  1593. #~ msgid "a privacy-respecting, hackable metasearch engine"
  1594. #~ msgstr "Μια χακέψιμη μεταμηχανή αναζήτησης , που σέβεται την ιδιωτικότητα"
  1595. #~ msgid "No abstract is available for this publication."
  1596. #~ msgstr "Δεν υπάρχει διαθέσιμη σύνοψη για αυτήν την έκδοση."
  1597. #~ msgid "Self Informations"
  1598. #~ msgstr "Αυτοπληροφορίες"
  1599. #~ msgid ""
  1600. #~ "Change how forms are submited, <a "
  1601. #~ "href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
  1602. #~ " rel=\"external\">learn more about request "
  1603. #~ "methods</a>"
  1604. #~ msgstr ""
  1605. #~ "Αλλαγή του τρόπου υποβολής φορμών, <a"
  1606. #~ " "
  1607. #~ "href=\"https://el.wikipedia.org/wiki/%CE%A0%CF%81%CF%89%CF%84%CF%8C%CE%BA%CE%BF%CE%BB%CE%BB%CE%BF_%CE%9C%CE%B5%CF%84%CE%B1%CF%86%CE%BF%CF%81%CE%AC%CF%82_%CE%A5%CF%80%CE%B5%CF%81%CE%BA%CE%B5%CE%B9%CE%BC%CE%AD%CE%BD%CE%BF%CF%85#%CE%9C%CE%AD%CE%B8%CE%BF%CE%B4%CE%BF%CE%B9_%CE%B1%CE%AF%CF%84%CE%B7%CF%83%CE%B7%CF%82_%CF%84%CE%BF%CF%85_HTTP\""
  1608. #~ " rel=\"external\">μάθετε περισσότερα για τις "
  1609. #~ "μεθόδους αίτησης</a>"
  1610. #~ msgid ""
  1611. #~ "This plugin checks if the address "
  1612. #~ "of the request is a TOR exit "
  1613. #~ "node, and informs the user if it"
  1614. #~ " is, like check.torproject.org but from "
  1615. #~ "searxng."
  1616. #~ msgstr ""
  1617. #~ "Αυτό το πρόσθετο ελέγχει αν η "
  1618. #~ "διεύθυνση της αίτησης είναι ένας κόμβος"
  1619. #~ " εξόδου TOR και ενημερώνει τον χρήστη"
  1620. #~ " αν είναι, όπως το check.torproject.org "
  1621. #~ "αλλά από το searxng."
  1622. #~ msgid ""
  1623. #~ "The TOR exit node list "
  1624. #~ "(https://check.torproject.org/exit-addresses) is "
  1625. #~ "unreachable."
  1626. #~ msgstr ""
  1627. #~ "Η λίστα κόμβων εξόδου TOR "
  1628. #~ "(https://check.torproject.org/exit-addresses) δεν "
  1629. #~ "είναι διαθέσιμη."
  1630. #~ msgid "You are using TOR. Your IP address seems to be: {ip_address}."
  1631. #~ msgstr "Χρησιμοποιείτε το TOR. Η διεύθυνση IP σας είναι: {ip_address}."
  1632. #~ msgid "You are not using TOR. Your IP address seems to be: {ip_address}."
  1633. #~ msgstr "Δεν χρησιμοποιείτε το TOR. Η διεύθυνση IP σας είναι: {ip_address}."
  1634. #~ msgid ""
  1635. #~ "The could not download the list of"
  1636. #~ " Tor exit-nodes from "
  1637. #~ "https://check.torproject.org/exit-addresses."
  1638. #~ msgstr ""
  1639. #~ msgid ""
  1640. #~ "You are using Tor. It looks like"
  1641. #~ " you have this external IP address:"
  1642. #~ " {ip_address}."
  1643. #~ msgstr ""
  1644. #~ msgid "You are not using Tor. You have this external IP address: {ip_address}."
  1645. #~ msgstr ""
  1646. #~ msgid "Autodetect search language"
  1647. #~ msgstr ""
  1648. #~ msgid "Automatically detect the query search language and switch to it."
  1649. #~ msgstr ""
  1650. #~ msgid "others"
  1651. #~ msgstr "άλλα"
  1652. #~ msgid ""
  1653. #~ "This tab does not show up for "
  1654. #~ "search results, but you can search "
  1655. #~ "the engines listed here via bangs."
  1656. #~ msgstr ""
  1657. #~ "Αυτή η καρτέλα δεν εμφανίζεται για "
  1658. #~ "τα αποτελέσματα αναζήτησης, αλλά μπορείτε "
  1659. #~ "να αναζητήσετε τις μηχανές που "
  1660. #~ "παρατίθενται εδώ μέσω bangs."
  1661. #~ msgid "Shortcut"
  1662. #~ msgstr "Συντόμευση"
  1663. #~ msgid "!bang"
  1664. #~ msgstr ""
  1665. #~ msgid ""
  1666. #~ "This tab dues not exists in the"
  1667. #~ " user interface, but you can search"
  1668. #~ " in these engines by its !bangs."
  1669. #~ msgstr ""
  1670. #~ msgid "Engines cannot retrieve results."
  1671. #~ msgstr "Οι μηχανές δε μπορούν να φέρουν αποτελέσματα."
  1672. #~ msgid "Please, try again later or find another SearXNG instance."
  1673. #~ msgstr ""
  1674. #~ "Παρακαλώ, προσπαθήστε ξανά αργότερα ή "
  1675. #~ "βρείτε ένα άλλο instance του SearXNG."
  1676. #~ msgid ""
  1677. #~ "Redirect to open-access versions of "
  1678. #~ "publications when available (plugin required)"
  1679. #~ msgstr ""
  1680. #~ "Ανακατεύθυνση σε εκδόσεις ανοικτής πρόσβασης"
  1681. #~ " των δημοσιεύσεων όταν είναι διαθέσιμες "
  1682. #~ "(απαιτείται πρόσθετο)"
  1683. #~ msgid "Bang"
  1684. #~ msgstr "!bang"
  1685. #~ msgid ""
  1686. #~ "Change how forms are submitted, <a "
  1687. #~ "href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
  1688. #~ " rel=\"external\">learn more about request "
  1689. #~ "methods</a>"
  1690. #~ msgstr ""
  1691. #~ "Αλλαγή του τρόπου υποβολής φορμών, <a"
  1692. #~ " "
  1693. #~ "href=\"https://el.wikipedia.org/wiki/%CE%A0%CF%81%CF%89%CF%84%CF%8C%CE%BA%CE%BF%CE%BB%CE%BB%CE%BF_%CE%9C%CE%B5%CF%84%CE%B1%CF%86%CE%BF%CF%81%CE%AC%CF%82_%CE%A5%CF%80%CE%B5%CF%81%CE%BA%CE%B5%CE%B9%CE%BC%CE%AD%CE%BD%CE%BF%CF%85#%CE%9C%CE%AD%CE%B8%CE%BF%CE%B4%CE%BF%CE%B9_%CE%B1%CE%AF%CF%84%CE%B7%CF%83%CE%B7%CF%82_%CF%84%CE%BF%CF%85_HTTP\""
  1694. #~ " rel=\"external\">μάθετε περισσότερα για τις "
  1695. #~ "μεθόδους αίτησης</a>"
  1696. #~ msgid "On"
  1697. #~ msgstr "Ενεργό"
  1698. #~ msgid "Off"
  1699. #~ msgstr "Ανενεργό"
  1700. #~ msgid "Enabled"
  1701. #~ msgstr "Ενεργοποιημένο"
  1702. #~ msgid "Disabled"
  1703. #~ msgstr "Απενεργοποιημένο"
  1704. #~ msgid ""
  1705. #~ "Perform search immediately if a category"
  1706. #~ " selected. Disable to select multiple "
  1707. #~ "categories. (JavaScript required)"
  1708. #~ msgstr ""
  1709. #~ "Άμεση αναζήτηση κατά την επιλογή "
  1710. #~ "κατηγορίας. Απενεργοποιήστε για να διαλέξετε"
  1711. #~ " πολλαπλές κατηγορίες. (απαιτείται JavaScript)"
  1712. #~ msgid "Vim-like hotkeys"
  1713. #~ msgstr "Πλήκτρα συντόμευσης τύπου Vim"
  1714. #~ msgid ""
  1715. #~ "Navigate search results with Vim-like"
  1716. #~ " hotkeys (JavaScript required). Press \"h\""
  1717. #~ " key on main or result page to"
  1718. #~ " get help."
  1719. #~ msgstr ""
  1720. #~ "Πλοήγηση στα αποτελέσματα αναζήτησης με "
  1721. #~ "πλήκτρα συντόμευσης τύπου Vim (απαιτείται "
  1722. #~ "JavaScript). Πατήστε το πλήκτρο \"h\" "
  1723. #~ "στην κύρια σελίδα ή στη σελίδα "
  1724. #~ "αποτελεσμάτων για να λάβετε βοήθεια."
  1725. #~ msgid ""
  1726. #~ "we didn't find any results. Please "
  1727. #~ "use another query or search in "
  1728. #~ "more categories."
  1729. #~ msgstr ""
  1730. #~ "δε βρέθηκαν αποτελέσματα. Παρακαλούμε "
  1731. #~ "χρησιμοποιήστε άλλη αναζήτηση ή ψάξτε σε"
  1732. #~ " περισσότερες κατηγορίες."
  1733. #~ msgid "Rewrite result hostnames or remove results based on the hostname"
  1734. #~ msgstr ""
  1735. #~ "Αντικατάσταση hostname των αποτελεσμάτων ή "
  1736. #~ "αφαίρεση των αποτελεσμάτων με βάση το"
  1737. #~ " hostname"
  1738. #~ msgid "Bytes"
  1739. #~ msgstr "Bytes"
  1740. #~ msgid "kiB"
  1741. #~ msgstr "kiB"
  1742. #~ msgid "MiB"
  1743. #~ msgstr "MiB"
  1744. #~ msgid "GiB"
  1745. #~ msgstr "GiB"
  1746. #~ msgid "TiB"
  1747. #~ msgstr "TiB"
  1748. #~ msgid "Hostname replace"
  1749. #~ msgstr "Αντικατάσταση hostname"
  1750. #~ msgid "Error!"
  1751. #~ msgstr "Λάθος!"
  1752. #~ msgid "Engines cannot retrieve results"
  1753. #~ msgstr "Οι μηχανές δε μπορούν να φέρουν αποτελέσματα"
  1754. #~ msgid "Start submiting a new issue on GitHub"
  1755. #~ msgstr "Ξεκινήστε την υποβολή ενός νέου ζητήματος στο GitHub"
  1756. #~ msgid "dummy"
  1757. #~ msgstr ""
  1758. #~ msgid "Random value generator"
  1759. #~ msgstr "Γεννήτρια τυχαίων τιμών"
  1760. #~ msgid "Statistics functions"
  1761. #~ msgstr "Λειτουργίες στατιστικής"
  1762. #~ msgid "Compute {functions} of the arguments"
  1763. #~ msgstr "Υπολογισμός {functions} των παραμέτρων"
  1764. #~ msgid "Get directions"
  1765. #~ msgstr "Πάρτε οδηγίες"
  1766. #~ msgid ""
  1767. #~ "Displays your IP if the query is"
  1768. #~ " \"ip\" and your user agent if "
  1769. #~ "the query contains \"user agent\"."
  1770. #~ msgstr ""
  1771. #~ "Προβολή της IP διεύθυνσης αν η "
  1772. #~ "αναζήτηση είναι \"ip\" και το user "
  1773. #~ "agent αν η αναζήτηση περιέχει \"user "
  1774. #~ "agent\"."
  1775. #~ msgid ""
  1776. #~ "Could not download the list of Tor"
  1777. #~ " exit-nodes from: https://check.torproject.org"
  1778. #~ "/exit-addresses"
  1779. #~ msgstr ""
  1780. #~ "Δεν ήταν δυνατή η λήψη της λίστας"
  1781. #~ " διευθύνσεων εξόδου του δικτύου Tor "
  1782. #~ "από το: https://check.torproject.org/exit-addresses"
  1783. #~ msgid ""
  1784. #~ "You are using Tor and it looks "
  1785. #~ "like you have this external IP "
  1786. #~ "address: {ip_address}"
  1787. #~ msgstr ""
  1788. #~ "Χρησιμοποιείτε το δίκτυο Tor και "
  1789. #~ "φαίνεται πως η εξωτερική σας διεύθυνση"
  1790. #~ " είναι η: {ip_address}"
  1791. #~ msgid ""
  1792. #~ "You are not using Tor and you "
  1793. #~ "have this external IP address: "
  1794. #~ "{ip_address}"
  1795. #~ msgstr ""
  1796. #~ "Δεν χρησιμοποιείτε το δίκτυο Tor. Η "
  1797. #~ "εξωτερική σας διεύθυνση είναι: {ip_address}"
  1798. #~ msgid "Keywords"
  1799. #~ msgstr "Λέξεις κλειδιά"
  1800. #~ msgid "/"
  1801. #~ msgstr ""
  1802. #~ msgid ""
  1803. #~ "Specifying custom settings in the "
  1804. #~ "preferences URL can be used to "
  1805. #~ "sync preferences across devices."
  1806. #~ msgstr ""
  1807. #~ "Ο καθορισμός προσαρμοσμένων ρυθμίσεων στον "
  1808. #~ "σύνδεσμο προτιμήσεων μπορεί να χρησιμοποιηθεί"
  1809. #~ " για το συγχρονισμό των προτιμήσεων "
  1810. #~ "σας σε όλες τις συσκευές."
  1811. #~ msgid "proxied"
  1812. #~ msgstr "Διαμεσολαβημένα"
  1813. #~ msgid ""
  1814. #~ "This tab does not exists in the"
  1815. #~ " user interface, but you can search"
  1816. #~ " in these engines by its !bangs."
  1817. #~ msgstr ""
  1818. #~ "Αυτή η καρτέλα δεν υπάρχει για την"
  1819. #~ " ιστοσελίδα, αλλά μπορείτε να αναζητήσετε"
  1820. #~ " απ' τις !bangs της."
  1821. #~ msgid "Results on new tabs"
  1822. #~ msgstr "Αποτελέσματα σε νέες καρτέλες"
  1823. #~ msgid "Open result links on new browser tabs"
  1824. #~ msgstr "Άνοιξε τους συνδέσμους των αποτελεσμάτων σε νέα καρτέλα περιηγητή"
  1825. #~ msgid "Find stuff as you type"
  1826. #~ msgstr "Εύρεση όρων κατά την πληκτρολόγηση"