messages.po 60 KB

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