messages.po 57 KB

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