messages.po 62 KB

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