messages.po 57 KB

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