el.po 77 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322
  1. # Greek translation for aria2
  2. # Copyright (c) 2008 Rosetta Contributors and Canonical Ltd 2008
  3. # This file is distributed under the same license as the aria2 package.
  4. # FIRST AUTHOR <EMAIL@ADDRESS>, 2008.
  5. #
  6. msgid ""
  7. msgstr ""
  8. "Project-Id-Version: aria2\n"
  9. "Report-Msgid-Bugs-To: http://aria2.sourceforge.net/\n"
  10. "POT-Creation-Date: 2010-12-18 21:45+0900\n"
  11. "PO-Revision-Date: 2010-12-05 16:04+0900\n"
  12. "Last-Translator: Kostas Milonas <milonas.ko@gmail.com>\n"
  13. "Language-Team: Greek <el@li.org>\n"
  14. "Language: el\n"
  15. "MIME-Version: 1.0\n"
  16. "Content-Type: text/plain; charset=UTF-8\n"
  17. "Content-Transfer-Encoding: 8bit\n"
  18. "X-Launchpad-Export-Date: 2010-12-04 12:56+0000\n"
  19. "X-Generator: Launchpad (build Unknown)\n"
  20. #: src/DownloadEngine.cc:220
  21. msgid ""
  22. "Shutdown sequence commencing... Press Ctrl-C again for emergency shutdown."
  23. msgstr ""
  24. "Η διαδικασία τερματισμού ξεκινά... Πατήστε Ctrl-C ξανά για άμεσο τερματισμό."
  25. #: src/DownloadEngine.cc:227
  26. msgid "Emergency shutdown sequence commencing..."
  27. msgstr "Η διαδικασία άμεσου τερματισμού ξεκινά..."
  28. #: src/MultiUrlRequestInfo.cc:109
  29. msgid "aria2 will resume download if the transfer is restarted."
  30. msgstr "Το aria2 θα συνεχίσει το κατέβασμα εάν η μεταφορά επανεκκινηθεί."
  31. #: src/MultiUrlRequestInfo.cc:111
  32. msgid ""
  33. "If there are any errors, then see the log file. See '-l' option in help/man "
  34. "page for details."
  35. msgstr ""
  36. "Αν υπάρχουν σφάλματα, δείτε το αρχείο καταγραφών (log). Δώστε την παράμετρο -"
  37. "l στη σελίδα help/man για περαιτέρω λεπτομέρειες."
  38. #: src/RequestGroupMan.cc:608
  39. msgid "Download Results:"
  40. msgstr "Αποτελέσματα κατεβάσματος:"
  41. #: src/RequestGroupMan.cc:649
  42. msgid "Status Legend:"
  43. msgstr "Υπόμνημα Κατάστασης:"
  44. #: src/OptionHandler.cc:38
  45. msgid " Default: "
  46. msgstr " Προκαθορισμένο: "
  47. #: src/OptionHandler.cc:39
  48. msgid " Tags: "
  49. msgstr " Ετικέττα: "
  50. #: src/OptionHandler.cc:40
  51. msgid " Possible Values: "
  52. msgstr " Πιθανές Τιμές: "
  53. #: src/usage_text.h:37
  54. msgid ""
  55. " -d, --dir=DIR The directory to store the downloaded file."
  56. msgstr " -d, --dir=DIR Το directory για αποθήκευση του κατεβασμένου αρχείου."
  57. #: src/usage_text.h:39
  58. msgid ""
  59. " -o, --out=FILE The file name of the downloaded file. When -Z\n"
  60. " option is used, this option is ignored."
  61. msgstr ""
  62. " -o, --out=ΑΡΧΕΙΟ Το όνομα του κατεβασμένου αρχείου. Όταν "
  63. "χρησιμοποιείται\n"
  64. " η επιλογή -Z, αυτή η επιλογή πραβλέπεται."
  65. #: src/usage_text.h:42
  66. msgid ""
  67. " -l, --log=LOG The file name of the log file. If '-' is\n"
  68. " specified, log is written to stdout."
  69. msgstr ""
  70. " -l, --log=LOG Το όνομα του αρχείου καταγραφής. Εάν προσθέσατε '-',\n"
  71. " η καταγραφή γίνετε στο stdout."
  72. #: src/usage_text.h:45
  73. #, fuzzy
  74. msgid ""
  75. " -D, --daemon[=true|false] Run as daemon. The current working directory "
  76. "will\n"
  77. " be changed to \"/\" and standard input, "
  78. "standard\n"
  79. " output and standard error will be redirected "
  80. "to\n"
  81. " \"/dev/null\"."
  82. msgstr ""
  83. " -D, --daemon Εκτέλεση σαν δαίμονας. Ο τρέχων φάκελλος θα\n"
  84. " αλλάξει σε \"/\" και η κανονική είσοδος, η "
  85. "κανονική έξοδος\n"
  86. " και το κανονικό σφάλμα θα ανακατευθυνθούν στο\n"
  87. " \"/dev/null\"."
  88. #: src/usage_text.h:50
  89. msgid ""
  90. " -s, --split=N Download a file using N connections. If more\n"
  91. " than N URLs are given, first N URLs are used "
  92. "and\n"
  93. " remaining URLs are used for backup. If less "
  94. "than\n"
  95. " N URLs are given, those URLs are used more "
  96. "than\n"
  97. " once so that N connections total are made\n"
  98. " simultaneously. The number of connections to "
  99. "the\n"
  100. " same host is restricted by\n"
  101. " --max-connection-per-server option. Please see "
  102. "-j\n"
  103. " and --min-split-size option too.\n"
  104. " Please note that in Metalink download, this\n"
  105. " option has no effect and use -C option instead."
  106. msgstr ""
  107. " -s, --split=N Κατέβασμα ενός αρχείου χρησιμοποιώντας N "
  108. "συνδέσεις.\n"
  109. " Αν δοθούν περισσότερα από N URLs, θα "
  110. "χρησιμοποιηθούν\n"
  111. " τα πρώτα N και τα υπόλοιπα θα χρησιμοποιηθούν "
  112. "ως εφεδρικά.\n"
  113. " Αν δοθούν λιγότερα από N, αυτά τα URLs θα "
  114. "χρησιμοποιηθούν\n"
  115. " περισσότερες από μια φορές ώστε να γίνουν "
  116. "συνολικά N\n"
  117. " ταυτόχρονες συνδέσεις. Ο αριθμός των συνδέσεων "
  118. "στο ίδιο\n"
  119. " μηχάνημα περιορίζεται από την επιλογή --max-"
  120. "connection-per-server. \n"
  121. " Παρακαλούμε δείτε ακόμη τις επιλογές -j και --"
  122. "min-split-size.\n"
  123. " Παρακαλούμε σημειώστε ότι στο κατέβασμα "
  124. "Metalink,\n"
  125. " αυτή η επιλογή δε λειτουργεί και αντί αυτής "
  126. "χρησιμοποιήστε τη -C."
  127. #: src/usage_text.h:62
  128. msgid ""
  129. " --retry-wait=SEC Set the seconds to wait to retry after an "
  130. "error\n"
  131. " has occured."
  132. msgstr ""
  133. " --retry-wait=ΔΤΠ Ορίστε δευτερόλεπτα αναμονής μετά από σφάλμα, "
  134. "πριν \n"
  135. " επανάλφθεί η προσπάθεια."
  136. #: src/usage_text.h:65
  137. msgid " -t, --timeout=SEC Set timeout in seconds."
  138. msgstr " -t, --timeout=ΔΤΠ Ορίστε τη λήξη χρόνου σε δευτερόλεπτα."
  139. #: src/usage_text.h:67
  140. msgid " -m, --max-tries=N Set number of tries. 0 means unlimited."
  141. msgstr ""
  142. " -m, --max-tries=N Ορίστε των αριθμό των προσπαθειών. Το 0 "
  143. "σημαίνει απεριόριστες."
  144. #: src/usage_text.h:69
  145. msgid ""
  146. " --http-proxy=PROXY Use this proxy server for HTTP. To erase\n"
  147. " previously defined proxy, use \"\".\n"
  148. " See also --all-proxy option.\n"
  149. " This affects all URLs."
  150. msgstr ""
  151. " --http-proxy=PROXY Χρήση αυτού του διακομιστή proxy για το HTTP.\n"
  152. " Για να σβήσετε έναν proxy που ορίσατε\n"
  153. " προηγουμένως, χρησιμοποιήστε \"\".\n"
  154. " Ακόμη, δείτε την επιλογή --all-proxy.\n"
  155. " Αυτή η επιλογή επηρεάζει όλα τα URL."
  156. #: src/usage_text.h:74
  157. msgid ""
  158. " --https-proxy=PROXY Use this proxy server for HTTPS. To erase\n"
  159. " previously defined proxy, use \"\".\n"
  160. " See also --all-proxy option.\n"
  161. " This affects all URLs."
  162. msgstr ""
  163. " --https-proxy=PROXY Χρήση αυτού του διακομιστή proxy για το "
  164. "HTTPS.\n"
  165. " Για να σβήσετε έναν proxy που ορίσατε\n"
  166. " προηγουμένως, χρησιμοποιήστε \"\".\n"
  167. " Ακόμη, δείτε την επιλογή --all-proxy.\n"
  168. " Αυτή η επιλογή επηρεάζει όλα τα URL."
  169. #: src/usage_text.h:79
  170. msgid ""
  171. " --ftp-proxy=PROXY Use this proxy server for FTP. To erase "
  172. "previously\n"
  173. " defined proxy, use \"\".\n"
  174. " See also --all-proxy option.\n"
  175. " This affects all URLs."
  176. msgstr ""
  177. " --ftp-proxy=PROXY Χρήση αυτού του διακομιστή proxy για το FTP.\n"
  178. " Για να σβήσετε έναν proxy που ορίσατε\n"
  179. " προηγουμένως, χρησιμοποιήστε \"\".\n"
  180. " Ακόμη, δείτε την επιλογή --all-proxy.\n"
  181. " Αυτή η επιλογή επηρεάζει όλα τα URL."
  182. #: src/usage_text.h:84
  183. msgid ""
  184. " --all-proxy=PROXY Use this proxy server for all protocols. To "
  185. "erase\n"
  186. " previously defined proxy, use \"\".\n"
  187. " You can override this setting and specify a\n"
  188. " proxy server for a particular protocol using\n"
  189. " --http-proxy, --https-proxy and --ftp-proxy\n"
  190. " options.\n"
  191. " This affects all URLs."
  192. msgstr ""
  193. " --ftp-proxy=PROXY Χρήση αυτού του διακομιστή proxy για όλα τα\n"
  194. " πρωτόκολλα. Για να σβήσετε έναν proxy που "
  195. "ορίσατε\n"
  196. " προηγουμένως, χρησιμοποιήστε \"\". Μπορείτε "
  197. "να\n"
  198. " παρακάμψετε αυτήν τη ρύθμιση, ορίζωντας\n"
  199. " διακομιστή proxy για συγκεκριμένο πρωτόκολλο\n"
  200. " χρησιμοποιώντας τις επιλογές --http-proxy,\n"
  201. " --https-proxy και--ftp-proxy.\n"
  202. " Αυτή η επιλογή επηρεάζει όλα τα URL."
  203. #: src/usage_text.h:92
  204. msgid " --http-user=USER Set HTTP user. This affects all URLs."
  205. msgstr " --http-user=USER Ορίστε χρήστη HTTP. Επιδρα σε όλα τα URLs."
  206. #: src/usage_text.h:94
  207. msgid " --http-passwd=PASSWD Set HTTP password. This affects all URLs."
  208. msgstr " --http-passwd=PASSWD Ορίστε τον κωδικό HTTP. Επιδρα σε όλα τα URLs."
  209. #: src/usage_text.h:96
  210. msgid " --proxy-method=METHOD Set the method to use in proxy request."
  211. msgstr " --proxy-method=ΜΕΘΟΔΟΣ Ορίστε τη μέθοδο αιτήματος προς τον proxy"
  212. #: src/usage_text.h:98
  213. msgid " --referer=REFERER Set Referer. This affects all URLs."
  214. msgstr " --referer=REFERER Ορίστε το Referer. Επιδρα σε όλα τα URLs."
  215. #: src/usage_text.h:100
  216. msgid " --ftp-user=USER Set FTP user. This affects all URLs."
  217. msgstr ""
  218. " --ftp-user=ΧΡΗΣΤΗΣ Ορίστε το χρήστη FTP. Αυτή η επιλογή επηρεάζει\n"
  219. " όλα τα URL."
  220. #: src/usage_text.h:102
  221. msgid " --ftp-passwd=PASSWD Set FTP password. This affects all URLs."
  222. msgstr ""
  223. " --ftp-passwd=ΚΩΔΙΚΟΣ Ορίστε τον κωδικό FTP. Αυτή η επιλογή επηρεάζει\n"
  224. " όλα τα URL."
  225. #: src/usage_text.h:104
  226. msgid " --ftp-type=TYPE Set FTP transfer type."
  227. msgstr " --ftp-type=ΤΥΠΟΣ Ορίστε τον τύπο μεταφοράς FTP."
  228. #: src/usage_text.h:106
  229. msgid ""
  230. " -p, --ftp-pasv[=true|false] Use the passive mode in FTP. If false is "
  231. "given,\n"
  232. " the active mode will be used."
  233. msgstr ""
  234. " -p, --ftp-pasv[=true|false] Χρήση της μεθόδου passive στο FTP.\n"
  235. " Αν δοθεί false, θα χρησιμοποιηθεί η μέθοδος "
  236. "active."
  237. #: src/usage_text.h:109
  238. msgid ""
  239. " --lowest-speed-limit=SPEED Close connection if download speed is lower "
  240. "than\n"
  241. " or equal to this value(bytes per sec).\n"
  242. " 0 means aria2 does not have a lowest speed "
  243. "limit.\n"
  244. " You can append K or M(1K = 1024, 1M = 1024K).\n"
  245. " This option does not affect BitTorrent "
  246. "downloads."
  247. msgstr ""
  248. #: src/usage_text.h:115
  249. msgid ""
  250. " --max-overall-download-limit=SPEED Set max overall download speed in bytes/"
  251. "sec.\n"
  252. " 0 means unrestricted.\n"
  253. " You can append K or M(1K = 1024, 1M = 1024K).\n"
  254. " To limit the download speed per download, use\n"
  255. " --max-download-limit option."
  256. msgstr ""
  257. #: src/usage_text.h:121
  258. msgid ""
  259. " --max-download-limit=SPEED Set max download speed per each download in\n"
  260. " bytes/sec. 0 means unrestricted.\n"
  261. " You can append K or M(1K = 1024, 1M = 1024K).\n"
  262. " To limit the overall download speed, use\n"
  263. " --max-overall-download-limit option."
  264. msgstr ""
  265. #: src/usage_text.h:127
  266. msgid ""
  267. " --file-allocation=METHOD Specify file allocation method.\n"
  268. " 'none' doesn't pre-allocate file space. "
  269. "'prealloc'\n"
  270. " pre-allocates file space before download "
  271. "begins.\n"
  272. " This may take some time depending on the size "
  273. "of\n"
  274. " the file.\n"
  275. " If you are using newer file systems such as "
  276. "ext4\n"
  277. " (with extents support), btrfs or xfs, 'falloc' "
  278. "is\n"
  279. " your best choice. It allocates large(few GiB)\n"
  280. " files almost instantly. Don't use 'falloc' "
  281. "with\n"
  282. " legacy file systems such as ext3 because it "
  283. "takes\n"
  284. " almost same time as 'prealloc' and it blocks "
  285. "aria2\n"
  286. " entirely until allocation finishes. 'falloc' "
  287. "may\n"
  288. " not be available if your system doesn't have\n"
  289. " posix_fallocate() function."
  290. msgstr ""
  291. #: src/usage_text.h:142
  292. msgid ""
  293. " --no-file-allocation-limit=SIZE No file allocation is made for files whose\n"
  294. " size is smaller than SIZE.\n"
  295. " You can append K or M(1K = 1024, 1M = 1024K)."
  296. msgstr ""
  297. #: src/usage_text.h:146
  298. msgid ""
  299. " --enable-direct-io[=true|false] Enable directI/O, which lowers cpu usage "
  300. "while\n"
  301. " allocating files.\n"
  302. " Turn off if you encounter any error"
  303. msgstr ""
  304. #: src/usage_text.h:150
  305. msgid ""
  306. " --allow-overwrite[=true|false] Restart download from scratch if the\n"
  307. " corresponding control file doesn't exist. "
  308. "See\n"
  309. " also --auto-file-renaming option."
  310. msgstr ""
  311. #: src/usage_text.h:154
  312. msgid ""
  313. " --allow-piece-length-change[=true|false] If false is given, aria2 aborts\n"
  314. " download when a piece length is different "
  315. "from\n"
  316. " one in a control file. If true is given, you "
  317. "can\n"
  318. " proceed but some download progress will be "
  319. "lost."
  320. msgstr ""
  321. #: src/usage_text.h:159
  322. msgid ""
  323. " -Z, --force-sequential[=true|false] Fetch URIs in the command-line "
  324. "sequentially\n"
  325. " and download each URI in a separate session, "
  326. "like\n"
  327. " the usual command-line download utilities."
  328. msgstr ""
  329. #: src/usage_text.h:163
  330. msgid ""
  331. " --auto-file-renaming[=true|false] Rename file name if the same file "
  332. "already\n"
  333. " exists. This option works only in http(s)/ftp\n"
  334. " download.\n"
  335. " The new file name has a dot and a number"
  336. "(1..9999)\n"
  337. " appended."
  338. msgstr ""
  339. #: src/usage_text.h:169
  340. msgid ""
  341. " -P, --parameterized-uri[=true|false] Enable parameterized URI support.\n"
  342. " You can specify set of parts:\n"
  343. " http://{sv1,sv2,sv3}/foo.iso\n"
  344. " Also you can specify numeric sequences with "
  345. "step\n"
  346. " counter:\n"
  347. " http://host/image[000-100:2].img\n"
  348. " A step counter can be omitted.\n"
  349. " If all URIs do not point to the same file, "
  350. "such\n"
  351. " as the second example above, -Z option is\n"
  352. " required."
  353. msgstr ""
  354. #: src/usage_text.h:180
  355. msgid ""
  356. " --enable-http-keep-alive[=true|false] Enable HTTP/1.1 persistent connection."
  357. msgstr ""
  358. #: src/usage_text.h:182
  359. msgid " --enable-http-pipelining[=true|false] Enable HTTP/1.1 pipelining."
  360. msgstr ""
  361. #: src/usage_text.h:184
  362. msgid ""
  363. " -V, --check-integrity[=true|false] Check file integrity by validating "
  364. "piece\n"
  365. " hashes. This option has effect only in "
  366. "BitTorrent\n"
  367. " and Metalink downloads with chunk checksums.\n"
  368. " Use this option to re-download a damaged "
  369. "portion\n"
  370. " of a file. See also --bt-hash-check-seed "
  371. "option."
  372. msgstr ""
  373. #: src/usage_text.h:190
  374. msgid ""
  375. " --bt-hash-check-seed[=true|false] If true is given, after hash check using\n"
  376. " --check-integrity option and file is "
  377. "complete,\n"
  378. " continue to seed file. If you want to check "
  379. "file\n"
  380. " and download it only when it is damaged or\n"
  381. " incomplete, set this option to false.\n"
  382. " This option has effect only on BitTorrent\n"
  383. " download."
  384. msgstr ""
  385. #: src/usage_text.h:198
  386. msgid ""
  387. " --realtime-chunk-checksum[=true|false] Validate chunk of data by "
  388. "calculating\n"
  389. " checksum while downloading a file if chunk\n"
  390. " checksums are provided."
  391. msgstr ""
  392. #: src/usage_text.h:202
  393. msgid ""
  394. " -c, --continue[=true|false] Continue downloading a partially downloaded\n"
  395. " file. Use this option to resume a download\n"
  396. " started by a web browser or another program\n"
  397. " which downloads files sequentially from the\n"
  398. " beginning. Currently this option is only\n"
  399. " applicable to http(s)/ftp downloads."
  400. msgstr ""
  401. #: src/usage_text.h:209
  402. msgid " -U, --user-agent=USER_AGENT Set user agent for http(s) downloads."
  403. msgstr ""
  404. #: src/usage_text.h:211
  405. #, fuzzy
  406. msgid " -n, --no-netrc[=true|false] Disables netrc support."
  407. msgstr " -n, --no-netrc Απενεργοποιεί την υποστήριξη netrc."
  408. #: src/usage_text.h:213
  409. msgid ""
  410. " -i, --input-file=FILE Downloads URIs found in FILE. You can specify\n"
  411. " multiple URIs for a single entity: separate\n"
  412. " URIs on a single line using the TAB "
  413. "character.\n"
  414. " Reads input from stdin when '-' is specified.\n"
  415. " Additionally, options can be specified after "
  416. "each\n"
  417. " line of URI. This optional line must start "
  418. "with\n"
  419. " one or more white spaces and have one option "
  420. "per\n"
  421. " single line. See INPUT FILE section of man "
  422. "page\n"
  423. " for details."
  424. msgstr ""
  425. #: src/usage_text.h:223
  426. msgid ""
  427. " -j, --max-concurrent-downloads=N Set maximum number of parallel downloads "
  428. "for\n"
  429. " every static (HTTP/FTP) URL, torrent and "
  430. "metalink.\n"
  431. " See also -s and -C options."
  432. msgstr ""
  433. #: src/usage_text.h:227
  434. msgid ""
  435. " --load-cookies=FILE Load Cookies from FILE using the Firefox3 "
  436. "format\n"
  437. " and Mozilla/Firefox(1.x/2.x)/Netscape format."
  438. msgstr ""
  439. #: src/usage_text.h:230
  440. msgid ""
  441. " --save-cookies=FILE Save Cookies to FILE in Mozilla/Firefox(1.x/2."
  442. "x)/\n"
  443. " Netscape format. If FILE already exists, it "
  444. "is\n"
  445. " overwritten. Session Cookies are also saved "
  446. "and\n"
  447. " their expiry values are treated as 0."
  448. msgstr ""
  449. #: src/usage_text.h:235
  450. msgid ""
  451. " -S, --show-files[=true|false] Print file listing of .torrent or .metalink "
  452. "file\n"
  453. " and exit. More detailed information will be "
  454. "listed\n"
  455. " in case of torrent file."
  456. msgstr ""
  457. #: src/usage_text.h:239
  458. msgid ""
  459. " --select-file=INDEX... Set file to download by specifying its index.\n"
  460. " You can find the file index using the\n"
  461. " --show-files option. Multiple indexes can be\n"
  462. " specified by using ',', for example: \"3,6\".\n"
  463. " You can also use '-' to specify a range: "
  464. "\"1-5\".\n"
  465. " ',' and '-' can be used together.\n"
  466. " When used with the -M option, index may vary\n"
  467. " depending on the query(see --metalink-* "
  468. "options)."
  469. msgstr ""
  470. #: src/usage_text.h:248
  471. msgid " -T, --torrent-file=TORRENT_FILE The path to the .torrent file."
  472. msgstr " -T, --torrent-file=TORRENT_FILE Η διαδρομή του αρχείου .torrent."
  473. #: src/usage_text.h:250
  474. msgid ""
  475. " --follow-torrent=true|false|mem If true or mem is specified, when a file\n"
  476. " whose suffix is .torrent or content type is\n"
  477. " application/x-bittorrent is downloaded, aria2\n"
  478. " parses it as a torrent file and downloads "
  479. "files\n"
  480. " mentioned in it.\n"
  481. " If mem is specified, a torrent file is not\n"
  482. " written to the disk, but is just kept in "
  483. "memory.\n"
  484. " If false is specified, the action mentioned "
  485. "above\n"
  486. " is not taken."
  487. msgstr ""
  488. #: src/usage_text.h:260
  489. msgid ""
  490. " --listen-port=PORT... Set TCP port number for BitTorrent downloads.\n"
  491. " Multiple ports can be specified by using ',',\n"
  492. " for example: \"6881,6885\". You can also use "
  493. "'-'\n"
  494. " to specify a range: \"6881-6999\". ',' and '-' "
  495. "can\n"
  496. " be used together."
  497. msgstr ""
  498. #: src/usage_text.h:266
  499. msgid ""
  500. " --max-overall-upload-limit=SPEED Set max overall upload speed in bytes/"
  501. "sec.\n"
  502. " 0 means unrestricted.\n"
  503. " You can append K or M(1K = 1024, 1M = 1024K).\n"
  504. " To limit the upload speed per torrent, use\n"
  505. " --max-upload-limit option."
  506. msgstr ""
  507. #: src/usage_text.h:272
  508. msgid ""
  509. " -u, --max-upload-limit=SPEED Set max upload speed per each torrent in\n"
  510. " bytes/sec. 0 means unrestricted.\n"
  511. " You can append K or M(1K = 1024, 1M = 1024K).\n"
  512. " To limit the overall upload speed, use\n"
  513. " --max-overall-upload-limit option."
  514. msgstr ""
  515. #: src/usage_text.h:278
  516. msgid ""
  517. " --seed-time=MINUTES Specify seeding time in minutes. Also see the\n"
  518. " --seed-ratio option."
  519. msgstr ""
  520. #: src/usage_text.h:281
  521. msgid ""
  522. " --seed-ratio=RATIO Specify share ratio. Seed completed torrents\n"
  523. " until share ratio reaches RATIO.\n"
  524. " You are strongly encouraged to specify equals "
  525. "or\n"
  526. " more than 1.0 here. Specify 0.0 if you intend "
  527. "to\n"
  528. " do seeding regardless of share ratio.\n"
  529. " If --seed-time option is specified along with\n"
  530. " this option, seeding ends when at least one "
  531. "of\n"
  532. " the conditions is satisfied."
  533. msgstr ""
  534. #: src/usage_text.h:290
  535. msgid ""
  536. " --peer-id-prefix=PEER_ID_PREFIX Specify the prefix of peer ID. The peer ID "
  537. "in\n"
  538. " BitTorrent is 20 byte length. If more than 20\n"
  539. " bytes are specified, only first 20 bytes are\n"
  540. " used. If less than 20 bytes are specified, "
  541. "random\n"
  542. " byte data are added to make its length 20 "
  543. "bytes."
  544. msgstr ""
  545. #: src/usage_text.h:296
  546. msgid " --enable-peer-exchange[=true|false] Enable Peer Exchange extension."
  547. msgstr ""
  548. #: src/usage_text.h:298
  549. msgid " --enable-dht[=true|false] Enable IPv4 DHT functionality."
  550. msgstr ""
  551. #: src/usage_text.h:300
  552. msgid ""
  553. " --dht-listen-port=PORT... Set UDP listening port for both IPv4 and IPv6\n"
  554. " DHT. Multiple ports can be specified by using\n"
  555. " ',', for example: \"6881,6885\". You can also\n"
  556. " use '-' to specify a range: \"6881-6999\". "
  557. "','\n"
  558. " and '-' can be used together."
  559. msgstr ""
  560. #: src/usage_text.h:306
  561. msgid ""
  562. " --dht-entry-point=HOST:PORT Set host and port as an entry point to IPv4 "
  563. "DHT\n"
  564. " network."
  565. msgstr ""
  566. #: src/usage_text.h:309
  567. msgid ""
  568. " --dht-file-path=PATH Change the IPv4 DHT routing table file to PATH."
  569. msgstr ""
  570. " --dht-file-path=PATH Αλλαγή του αρχείου του πίνακα δρομολόγησης "
  571. "(routing table) του IPv4 DHT σε PATH."
  572. #: src/usage_text.h:311
  573. msgid ""
  574. " --bt-min-crypto-level=plain|arc4 Set minimum level of encryption method.\n"
  575. " If several encryption methods are provided by "
  576. "a\n"
  577. " peer, aria2 chooses the lowest one which "
  578. "satisfies\n"
  579. " the given level."
  580. msgstr ""
  581. #: src/usage_text.h:316
  582. msgid ""
  583. " --bt-require-crypto[=true|false] If true is given, aria2 doesn't accept "
  584. "and\n"
  585. " establish connection with legacy BitTorrent\n"
  586. " handshake. Thus aria2 always uses Obfuscation\n"
  587. " handshake."
  588. msgstr ""
  589. #: src/usage_text.h:321
  590. msgid ""
  591. " --bt-request-peer-speed-limit=SPEED If the whole download speed of every\n"
  592. " torrent is lower than SPEED, aria2 "
  593. "temporarily\n"
  594. " increases the number of peers to try for more\n"
  595. " download speed. Configuring this option with "
  596. "your\n"
  597. " preferred download speed can increase your\n"
  598. " download speed in some cases.\n"
  599. " You can append K or M(1K = 1024, 1M = 1024K)."
  600. msgstr ""
  601. #: src/usage_text.h:329
  602. msgid ""
  603. " --bt-max-open-files=NUM Specify maximum number of files to open in "
  604. "each\n"
  605. " BitTorrent download."
  606. msgstr ""
  607. #: src/usage_text.h:332
  608. msgid ""
  609. " --bt-seed-unverified[=true|false] Seed previously downloaded files without\n"
  610. " verifying piece hashes."
  611. msgstr ""
  612. #: src/usage_text.h:335
  613. msgid ""
  614. " --bt-max-peers=NUM Specify the maximum number of peers per "
  615. "torrent.\n"
  616. " 0 means unlimited.\n"
  617. " See also --bt-request-peer-speed-limit option."
  618. msgstr ""
  619. #: src/usage_text.h:339
  620. msgid ""
  621. " -M, --metalink-file=METALINK_FILE The file path to the .metalink file. "
  622. "Reads\n"
  623. " input from stdin when '-' is specified."
  624. msgstr ""
  625. #: src/usage_text.h:342
  626. msgid ""
  627. " -C, --metalink-servers=NUM_SERVERS The number of servers to connect to\n"
  628. " simultaneously. Some Metalinks regulate the\n"
  629. " number of servers to connect. aria2 strictly\n"
  630. " respects them. This means that if Metalink "
  631. "defines\n"
  632. " the maxconnections attribute lower than\n"
  633. " NUM_SERVERS, then aria2 uses the value of\n"
  634. " maxconnections attribute instead of "
  635. "NUM_SERVERS.\n"
  636. " See also -s and -j options."
  637. msgstr ""
  638. #: src/usage_text.h:351
  639. msgid " --metalink-version=VERSION The version of the file to download."
  640. msgstr " --metalink-version=VERSION Η έκδοση του αρχείου που θα κατέβει."
  641. #: src/usage_text.h:353
  642. msgid " --metalink-language=LANGUAGE The language of the file to download."
  643. msgstr " --metalink-version=VERSION Η γλώσσα του αρχείου που θα κατέβει."
  644. #: src/usage_text.h:355
  645. msgid ""
  646. " --metalink-os=OS The operating system of the file to download."
  647. msgstr ""
  648. " --metalink-version=VERSION Το λειτουργικό σύστημα του αρχείου που θα "
  649. "κατέβει."
  650. #: src/usage_text.h:357
  651. msgid ""
  652. " --metalink-location=LOCATION[,...] The location of the preferred server.\n"
  653. " A comma-delimited list of locations is\n"
  654. " acceptable."
  655. msgstr ""
  656. #: src/usage_text.h:361
  657. msgid ""
  658. " --metalink-preferred-protocol=PROTO Specify preferred protocol. Specify "
  659. "'none'\n"
  660. " if you don't have any preferred protocol."
  661. msgstr ""
  662. #: src/usage_text.h:364
  663. msgid ""
  664. " --follow-metalink=true|false|mem If true or mem is specified, when a file\n"
  665. " whose suffix is .metalink or content type of\n"
  666. " application/metalink+xml is downloaded, aria2\n"
  667. " parses it as a metalink file and downloads "
  668. "files\n"
  669. " mentioned in it.\n"
  670. " If mem is specified, a metalink file is not\n"
  671. " written to the disk, but is just kept in "
  672. "memory.\n"
  673. " If false is specified, the action mentioned "
  674. "above\n"
  675. " is not taken."
  676. msgstr ""
  677. #: src/usage_text.h:374
  678. msgid ""
  679. " --metalink-enable-unique-protocol[=true|false] If true is given and "
  680. "several\n"
  681. " protocols are available for a mirror in a "
  682. "metalink\n"
  683. " file, aria2 uses one of them.\n"
  684. " Use --metalink-preferred-protocol option to\n"
  685. " specify the preference of protocol."
  686. msgstr ""
  687. #: src/usage_text.h:380
  688. msgid " -v, --version Print the version number and exit."
  689. msgstr " -v, --version Εκτύπωση του αριθμού έκδοσης και έξοδος."
  690. #: src/usage_text.h:382
  691. msgid ""
  692. " -h, --help[=TAG|KEYWORD] Print usage and exit.\n"
  693. " The help messages are classified with tags. A "
  694. "tag\n"
  695. " starts with \"#\". For example, type \"--"
  696. "help=#http\"\n"
  697. " to get the usage for the options tagged with\n"
  698. " \"#http\". If non-tag word is given, print the "
  699. "usage\n"
  700. " for the options whose name includes that word."
  701. msgstr ""
  702. #: src/usage_text.h:389
  703. #, fuzzy
  704. msgid " --no-conf[=true|false] Disable loading aria2.conf file."
  705. msgstr ""
  706. " --no-conf Απενεργοποίηση της φόρτωσης του αρχείου aria2."
  707. "conf."
  708. #: src/usage_text.h:391
  709. msgid ""
  710. " --conf-path=PATH Change the configuration file path to PATH."
  711. msgstr ""
  712. " --conf-path=PATH Αλλαγή της διαδρομής του αρχείου ρυθμίσεων σε "
  713. "PATH."
  714. #: src/usage_text.h:393
  715. msgid ""
  716. " --stop=SEC Stop application after SEC seconds has "
  717. "passed.\n"
  718. " If 0 is given, this feature is disabled."
  719. msgstr ""
  720. #: src/usage_text.h:396
  721. msgid ""
  722. " --header=HEADER Append HEADER to HTTP request header. You can "
  723. "use\n"
  724. " this option repeatedly to specify more than "
  725. "one\n"
  726. " header:\n"
  727. " aria2c --header=\"X-A: b78\" --header=\"X-B: "
  728. "9J1\"\n"
  729. " http://host/file"
  730. msgstr ""
  731. #: src/usage_text.h:402
  732. msgid " -q, --quiet[=true|false] Make aria2 quiet(no console output)."
  733. msgstr ""
  734. " -q, --quiet[=true|false] Ορισμός σιωπηλής λειτουργίας του aria2 (χωρίς "
  735. "έξοδο στην κονσόλα)."
  736. #: src/usage_text.h:404
  737. msgid " --async-dns[=true|false] Enable asynchronous DNS."
  738. msgstr " --async-dns[=true|false] Ενεργοποίηση ασύγχρονου DNS."
  739. #: src/usage_text.h:406
  740. msgid " --ftp-reuse-connection[=true|false] Reuse connection in FTP."
  741. msgstr ""
  742. " --ftp-reuse-connection[=true|false] Επαναχρησιμοποίηση της σύνδεσης στο FTP."
  743. #: src/usage_text.h:408
  744. msgid ""
  745. " --summary-interval=SEC Set interval to output download progress "
  746. "summary.\n"
  747. " Setting 0 suppresses the output."
  748. msgstr ""
  749. #: src/usage_text.h:411
  750. msgid " --log-level=LEVEL Set log level to output."
  751. msgstr ""
  752. #: src/usage_text.h:413
  753. msgid ""
  754. " -R, --remote-time[=true|false] Retrieve timestamp of the remote file from "
  755. "the\n"
  756. " remote HTTP/FTP server and if it is "
  757. "available,\n"
  758. " apply it to the local file."
  759. msgstr ""
  760. #: src/usage_text.h:417
  761. msgid ""
  762. " --connect-timeout=SEC Set the connect timeout in seconds to "
  763. "establish\n"
  764. " connection to HTTP/FTP/proxy server. After "
  765. "the\n"
  766. " connection is established, this option makes "
  767. "no\n"
  768. " effect and --timeout option is used instead."
  769. msgstr ""
  770. #: src/usage_text.h:422
  771. msgid ""
  772. " --max-file-not-found=NUM If aria2 receives `file not found' status from "
  773. "the\n"
  774. " remote HTTP/FTP servers NUM times without "
  775. "getting\n"
  776. " a single byte, then force the download to "
  777. "fail.\n"
  778. " Specify 0 to disable this option.\n"
  779. " This options is effective only when using\n"
  780. " HTTP/FTP servers."
  781. msgstr ""
  782. #: src/usage_text.h:429
  783. msgid ""
  784. " --uri-selector=SELECTOR Specify URI selection algorithm.\n"
  785. " If 'inorder' is given, URI is tried in the "
  786. "order\n"
  787. " appeared in the URI list.\n"
  788. " If 'feedback' is given, aria2 uses download "
  789. "speed\n"
  790. " observed in the previous downloads and choose\n"
  791. " fastest server in the URI list. This also\n"
  792. " effectively skips dead mirrors. The observed\n"
  793. " download speed is a part of performance "
  794. "profile\n"
  795. " of servers mentioned in --server-stat-of and\n"
  796. " --server-stat-if options.\n"
  797. " If 'adaptive' is given, selects one of the "
  798. "best\n"
  799. " mirrors for the first and reserved "
  800. "connections.\n"
  801. " For supplementary ones, it returns mirrors "
  802. "which\n"
  803. " has not been tested yet, and if each of them "
  804. "has\n"
  805. " already been tested, returns mirrors which has "
  806. "to\n"
  807. " be tested again. Otherwise, it doesn't select\n"
  808. " anymore mirrors. Like 'feedback', it uses a\n"
  809. " performance profile of servers."
  810. msgstr ""
  811. #: src/usage_text.h:448
  812. msgid ""
  813. " --server-stat-of=FILE Specify the filename to which performance "
  814. "profile\n"
  815. " of the servers is saved. You can load saved "
  816. "data\n"
  817. " using --server-stat-if option."
  818. msgstr ""
  819. #: src/usage_text.h:452
  820. msgid ""
  821. " --server-stat-if=FILE Specify the filename to load performance "
  822. "profile\n"
  823. " of the servers. The loaded data will be used "
  824. "in\n"
  825. " some URI selector such as 'feedback'.\n"
  826. " See also --uri-selector option"
  827. msgstr ""
  828. #: src/usage_text.h:457
  829. msgid ""
  830. " --server-stat-timeout=SEC Specifies timeout in seconds to invalidate\n"
  831. " performance profile of the servers since the "
  832. "last\n"
  833. " contact to them."
  834. msgstr ""
  835. #: src/usage_text.h:461
  836. msgid ""
  837. " --auto-save-interval=SEC Save a control file(*.aria2) every SEC "
  838. "seconds.\n"
  839. " If 0 is given, a control file is not saved "
  840. "during\n"
  841. " download. aria2 saves a control file when it "
  842. "stops\n"
  843. " regardless of the value."
  844. msgstr ""
  845. #: src/usage_text.h:466
  846. msgid ""
  847. " --certificate=FILE Use the client certificate in FILE.\n"
  848. " The certificate must be in PEM format.\n"
  849. " You may use --private-key option to specify "
  850. "the\n"
  851. " private key."
  852. msgstr ""
  853. #: src/usage_text.h:471
  854. msgid ""
  855. " --private-key=FILE Use the private key in FILE.\n"
  856. " The private key must be decrypted and in PEM\n"
  857. " format. See also --certificate option."
  858. msgstr ""
  859. #: src/usage_text.h:475
  860. msgid ""
  861. " --ca-certificate=FILE Use the certificate authorities in FILE to "
  862. "verify\n"
  863. " the peers. The certificate file must be in "
  864. "PEM\n"
  865. " format and can contain multiple CA "
  866. "certificates.\n"
  867. " Use --check-certificate option to enable\n"
  868. " verification."
  869. msgstr ""
  870. #: src/usage_text.h:481
  871. msgid ""
  872. " --check-certificate[=true|false] Verify the peer using certificates "
  873. "specified\n"
  874. " in --ca-certificate option."
  875. msgstr ""
  876. #: src/usage_text.h:484
  877. msgid ""
  878. " --no-proxy=DOMAINS Specify comma separated hostnames, domains or\n"
  879. " network address with or without CIDR block "
  880. "where\n"
  881. " proxy should not be used."
  882. msgstr ""
  883. #: src/usage_text.h:488
  884. msgid ""
  885. " --use-head[=true|false] Use HEAD method for the first request to the "
  886. "HTTP\n"
  887. " server."
  888. msgstr ""
  889. #: src/usage_text.h:491
  890. msgid " --event-poll=POLL Specify the method for polling events."
  891. msgstr ""
  892. #: src/usage_text.h:493
  893. msgid ""
  894. " --xml-rpc-listen-port=PORT Specify a port number for XML-RPC server to "
  895. "listen\n"
  896. " to."
  897. msgstr ""
  898. #: src/usage_text.h:496
  899. msgid ""
  900. " --enable-xml-rpc[=true|false] Enable XML-RPC server.\n"
  901. " It is strongly recommended to set username "
  902. "and\n"
  903. " password using --xml-rpc-user and --xml-rpc-"
  904. "passwd\n"
  905. " option. See also --xml-rpc-listen-port option."
  906. msgstr ""
  907. #: src/usage_text.h:501
  908. msgid ""
  909. " --xml-rpc-max-request-size=SIZE Set max size of XML-RPC request. If aria2\n"
  910. " detects the request is more than SIZE bytes, "
  911. "it\n"
  912. " drops connection."
  913. msgstr ""
  914. #: src/usage_text.h:505
  915. msgid " --xml-rpc-user=USER Set XML-RPC user."
  916. msgstr " --xml-rpc-user=USER Ορισμός του χρήστη XML-RPC."
  917. #: src/usage_text.h:507
  918. msgid " --xml-rpc-passwd=PASSWD Set XML-RPC password."
  919. msgstr " --xml-rpc-passwd=PASSWD Ορισμός του κωδικού XML-RPC."
  920. #: src/usage_text.h:509
  921. msgid ""
  922. " --bt-external-ip=IPADDRESS Specify the external IP address to report to "
  923. "a\n"
  924. " BitTorrent tracker. Although this function is\n"
  925. " named 'external', it can accept any kind of "
  926. "IP\n"
  927. " addresses."
  928. msgstr ""
  929. #: src/usage_text.h:514
  930. msgid ""
  931. " --http-auth-challenge[=true|false] Send HTTP authorization header only when "
  932. "it\n"
  933. " is requested by the server. If false is set, "
  934. "then\n"
  935. " authorization header is always sent to the "
  936. "server.\n"
  937. " There is an exception: if username and "
  938. "password\n"
  939. " are embedded in URI, authorization header is\n"
  940. " always sent to the server regardless of this\n"
  941. " option."
  942. msgstr ""
  943. #: src/usage_text.h:522
  944. msgid ""
  945. " -O, --index-out=INDEX=PATH Set file path for file with index=INDEX. You "
  946. "can\n"
  947. " find the file index using the --show-files "
  948. "option.\n"
  949. " PATH is a relative path to the path specified "
  950. "in\n"
  951. " --dir option. You can use this option "
  952. "multiple\n"
  953. " times."
  954. msgstr ""
  955. #: src/usage_text.h:528
  956. msgid ""
  957. " --dry-run[=true|false] If true is given, aria2 just checks whether "
  958. "the\n"
  959. " remote file is available and doesn't download\n"
  960. " data. This option has effect on HTTP/FTP "
  961. "download.\n"
  962. " BitTorrent downloads are canceled if true is\n"
  963. " specified."
  964. msgstr ""
  965. #: src/usage_text.h:534
  966. msgid ""
  967. " --bt-tracker-interval=SEC Set the interval in seconds between tracker\n"
  968. " requests. This completely overrides interval "
  969. "value\n"
  970. " and aria2 just uses this value and ignores "
  971. "the\n"
  972. " min interval and interval value in the "
  973. "response of\n"
  974. " tracker. If 0 is set, aria2 determines "
  975. "interval\n"
  976. " based on the response of tracker and the "
  977. "download\n"
  978. " progress."
  979. msgstr ""
  980. #: src/usage_text.h:542
  981. msgid ""
  982. " --on-download-complete=COMMAND Set the command to be executed after "
  983. "download\n"
  984. " completed.\n"
  985. " See --on-download-start option for the\n"
  986. " requirement of COMMAND.\n"
  987. " See also --on-download-stop option."
  988. msgstr ""
  989. #: src/usage_text.h:548
  990. msgid ""
  991. " --on-download-start=COMMAND Set the command to be executed after download\n"
  992. " got started. aria2 passes 3 arguments to "
  993. "COMMAND:\n"
  994. " GID, the nubmer of files and file path. See "
  995. "Event\n"
  996. " Hook in man page for more details."
  997. msgstr ""
  998. #: src/usage_text.h:553
  999. #, fuzzy
  1000. msgid ""
  1001. " --on-download-pause=COMMAND Set the command to be executed after download\n"
  1002. " was paused.\n"
  1003. " See --on-download-start option for the\n"
  1004. " requirement of COMMAND."
  1005. msgstr ""
  1006. " --ftp-proxy=PROXY Χρήση αυτού του διακομιστή proxy για το FTP.\n"
  1007. " Για να σβήσετε έναν proxy που ορίσατε\n"
  1008. " προηγουμένως, χρησιμοποιήστε \"\".\n"
  1009. " Ακόμη, δείτε την επιλογή --all-proxy.\n"
  1010. " Αυτή η επιλογή επηρεάζει όλα τα URL."
  1011. #: src/usage_text.h:558
  1012. msgid ""
  1013. " --on-download-error=COMMAND Set the command to be executed after download\n"
  1014. " aborted due to error.\n"
  1015. " See --on-download-start option for the\n"
  1016. " requirement of COMMAND.\n"
  1017. " See also --on-download-stop option."
  1018. msgstr ""
  1019. #: src/usage_text.h:564
  1020. msgid ""
  1021. " --on-download-stop=COMMAND Set the command to be executed after download\n"
  1022. " stopped. You can override the command to be\n"
  1023. " executed for particular download result using\n"
  1024. " --on-download-complete and --on-download-"
  1025. "error. If\n"
  1026. " they are specified, command specified in this\n"
  1027. " option is not executed.\n"
  1028. " See --on-download-start option for the\n"
  1029. " requirement of COMMAND."
  1030. msgstr ""
  1031. #: src/usage_text.h:573
  1032. msgid ""
  1033. " --bt-stop-timeout=SEC Stop BitTorrent download if download speed is "
  1034. "0 in\n"
  1035. " consecutive SEC seconds. If 0 is given, this\n"
  1036. " feature is disabled."
  1037. msgstr ""
  1038. #: src/usage_text.h:577
  1039. msgid ""
  1040. " --xml-rpc-listen-all[=true|false] Listen incoming XML-RPC requests on all\n"
  1041. " network interfaces. If false is given, listen "
  1042. "only\n"
  1043. " on local loopback interface."
  1044. msgstr ""
  1045. #: src/usage_text.h:581
  1046. msgid ""
  1047. " --bt-prioritize-piece=head[=SIZE],tail[=SIZE] Try to download first and "
  1048. "last\n"
  1049. " pieces of each file first. This is useful for\n"
  1050. " previewing files. The argument can contain 2\n"
  1051. " keywords:head and tail. To include both "
  1052. "keywords,\n"
  1053. " they must be separated by comma. These "
  1054. "keywords\n"
  1055. " can take one parameter, SIZE. For example, if\n"
  1056. " head=SIZE is specified, pieces in the range "
  1057. "of\n"
  1058. " first SIZE bytes of each file get higher "
  1059. "priority.\n"
  1060. " tail=SIZE means the range of last SIZE bytes "
  1061. "of\n"
  1062. " each file. SIZE can include K or M(1K = 1024, "
  1063. "1M =\n"
  1064. " 1024K). If SIZE is omitted, SIZE=1M is used."
  1065. msgstr ""
  1066. #: src/usage_text.h:593
  1067. msgid ""
  1068. " --interface=INTERFACE Bind sockets to given interface. You can "
  1069. "specify\n"
  1070. " interface name, IP address and hostname."
  1071. msgstr ""
  1072. #: src/usage_text.h:596
  1073. msgid " --disable-ipv6[=true|false] Disable IPv6."
  1074. msgstr " --disable-ipv6[=true|false] Απενεργοποίηση του IPv6."
  1075. #: src/usage_text.h:598
  1076. msgid ""
  1077. " --bt-save-metadata[=true|false] Save metadata as .torrent file. This option "
  1078. "has\n"
  1079. " effect only when BitTorrent Magnet URI is "
  1080. "used.\n"
  1081. " The filename is hex encoded info hash with "
  1082. "suffix\n"
  1083. " .torrent. The directory to be saved is the "
  1084. "same\n"
  1085. " directory where download file is saved. If "
  1086. "the\n"
  1087. " same file already exists, metadata is not "
  1088. "saved.\n"
  1089. " See also --bt-metadata-only option."
  1090. msgstr ""
  1091. #: src/usage_text.h:606
  1092. msgid ""
  1093. " --http-no-cache[=true|false] Send Cache-Control: no-cache and Pragma: no-"
  1094. "cache\n"
  1095. " header to avoid cached content. If false is\n"
  1096. " given, these headers are not sent and you can "
  1097. "add\n"
  1098. " Cache-Control header with a directive you "
  1099. "like\n"
  1100. " using --header option."
  1101. msgstr ""
  1102. #: src/usage_text.h:612
  1103. msgid ""
  1104. " --bt-metadata-only[=true|false] Download metadata only. The file(s) "
  1105. "described\n"
  1106. " in metadata will not be downloaded. This "
  1107. "option\n"
  1108. " has effect only when BitTorrent Magnet URI is\n"
  1109. " used. See also --bt-save-metadata option."
  1110. msgstr ""
  1111. #: src/usage_text.h:617
  1112. msgid ""
  1113. " --human-readable[=true|false] Print sizes and speed in human readable "
  1114. "format\n"
  1115. " (e.g., 1.2Ki, 3.4Mi) in the console readout."
  1116. msgstr ""
  1117. #: src/usage_text.h:620
  1118. msgid " --bt-enable-lpd[=true|false] Enable Local Peer Discovery."
  1119. msgstr ""
  1120. #: src/usage_text.h:622
  1121. msgid ""
  1122. " --bt-lpd-interface=INTERFACE Use given interface for Local Peer Discovery. "
  1123. "If\n"
  1124. " this option is not specified, the default\n"
  1125. " interface is chosen. You can specify "
  1126. "interface\n"
  1127. " name and IP address."
  1128. msgstr ""
  1129. #: src/usage_text.h:627
  1130. msgid ""
  1131. " --reuse-uri[=true|false] Reuse already used URIs if no unused URIs are\n"
  1132. " left."
  1133. msgstr ""
  1134. #: src/usage_text.h:630
  1135. msgid " --all-proxy-user=USER Set user for --all-proxy option."
  1136. msgstr ""
  1137. " --all-proxy-user=USER Ορισμός του χρήστη για την επιλογή --all-proxy."
  1138. #: src/usage_text.h:632
  1139. msgid " --all-proxy-passwd=PASSWD Set password for --all-proxy option."
  1140. msgstr ""
  1141. " --all-proxy-passwd=PASSWD Ορισμός του κωδικού για την επιλογή --all-"
  1142. "proxy."
  1143. #: src/usage_text.h:634
  1144. msgid " --http-proxy-user=USER Set user for --http-proxy option."
  1145. msgstr ""
  1146. " --http-proxy-user=USER Ορισμός του χρήστη για την επιλογή --http-"
  1147. "proxy."
  1148. #: src/usage_text.h:636
  1149. msgid " --http-proxy-passwd=PASSWD Set password for --http-proxy option."
  1150. msgstr ""
  1151. " --http-proxy-passwd=PASSWD Ορισμός του κωδικού για την επιλογή --http-"
  1152. "proxy."
  1153. #: src/usage_text.h:638
  1154. msgid " --https-proxy-user=USER Set user for --https-proxy option."
  1155. msgstr ""
  1156. " --https-proxy-user=USER Ορισμός του χρήστη για την επιλογή --https-"
  1157. "proxy."
  1158. #: src/usage_text.h:640
  1159. msgid " --https-proxy-passwd=PASSWD Set password for --https-proxy option."
  1160. msgstr ""
  1161. " --https-proxy-user=PASSWD Ορισμός του κωδικού για την επιλογή --https-"
  1162. "proxy."
  1163. #: src/usage_text.h:642
  1164. msgid " --ftp-proxy-user=USER Set user for --ftp-proxy option."
  1165. msgstr ""
  1166. " --ftp-proxy-user=USER Ορισμός του χρήστη για την επιλογή --ftp-proxy."
  1167. #: src/usage_text.h:644
  1168. msgid " --ftp-proxy-passwd=PASSWD Set password for --ftp-proxy option."
  1169. msgstr ""
  1170. " --ftp-proxy-passwd=PASSWD Ορισμός του κωδικού για την επιλογή --ftp-"
  1171. "proxy."
  1172. #: src/usage_text.h:646
  1173. msgid ""
  1174. " --remove-control-file[=true|false] Remove control file before download. "
  1175. "Using\n"
  1176. " with --allow-overwrite=true, download always\n"
  1177. " starts from scratch. This will be useful for\n"
  1178. " users behind proxy server which disables "
  1179. "resume."
  1180. msgstr ""
  1181. #: src/usage_text.h:651
  1182. msgid ""
  1183. " --always-resume[=true|false] Always resume download. If true is given, "
  1184. "aria2\n"
  1185. " always tries to resume download and if resume "
  1186. "is\n"
  1187. " not possible, aborts download. If false is "
  1188. "given,\n"
  1189. " when all given URIs do not support resume or\n"
  1190. " aria2 encounters N URIs which does not "
  1191. "support\n"
  1192. " resume (N is the value specified using\n"
  1193. " --max-resume-failure-tries option), aria2\n"
  1194. " downloads file from scratch.\n"
  1195. " See --max-resume-failure-tries option."
  1196. msgstr ""
  1197. #: src/usage_text.h:661
  1198. msgid ""
  1199. " --max-resume-failure-tries=N When used with --always-resume=false, aria2\n"
  1200. " downloads file from scratch when aria2 detects "
  1201. "N\n"
  1202. " number of URIs that does not support resume. "
  1203. "If N\n"
  1204. " is 0, aria2 downloads file from scratch when "
  1205. "all\n"
  1206. " given URIs do not support resume.\n"
  1207. " See --always-resume option."
  1208. msgstr ""
  1209. #: src/usage_text.h:668
  1210. msgid " --bt-tracker-timeout=SEC Set timeout in seconds."
  1211. msgstr ""
  1212. #: src/usage_text.h:670
  1213. msgid ""
  1214. " --bt-tracker-connect-timeout=SEC Set the connect timeout in seconds to\n"
  1215. " establish connection to tracker. After the\n"
  1216. " connection is established, this option makes "
  1217. "no\n"
  1218. " effect and --bt-tracker-timeout option is "
  1219. "used\n"
  1220. " instead."
  1221. msgstr ""
  1222. #: src/usage_text.h:676
  1223. msgid " --dht-message-timeout=SEC Set timeout in seconds."
  1224. msgstr ""
  1225. #: src/usage_text.h:678
  1226. msgid ""
  1227. " --http-accept-gzip[=true|false] Send 'Accept: deflate, gzip' request "
  1228. "header\n"
  1229. " and inflate response if remote server "
  1230. "responds\n"
  1231. " with 'Content-Encoding: gzip' or\n"
  1232. " 'Content-Encoding: deflate'."
  1233. msgstr ""
  1234. #: src/usage_text.h:683
  1235. msgid ""
  1236. " --save-session=FILE Save error/unfinished downloads to FILE on "
  1237. "exit.\n"
  1238. " You can pass this output file to aria2c with -"
  1239. "i\n"
  1240. " option on restart. Please note that downloads\n"
  1241. " added by aria2.addTorrent and aria2."
  1242. "addMetalink\n"
  1243. " XML-RPC method are not saved."
  1244. msgstr ""
  1245. #: src/usage_text.h:689
  1246. msgid ""
  1247. " -x, --max-connection-per-server=NUM The maximum number of connections to "
  1248. "one\n"
  1249. " server for each download."
  1250. msgstr ""
  1251. #: src/usage_text.h:692
  1252. msgid ""
  1253. " -k, --min-split-size=SIZE aria2 does not split less than 2*SIZE byte "
  1254. "range.\n"
  1255. " For example, let's consider downloading 20MiB\n"
  1256. " file. If SIZE is 10M, aria2 can split file "
  1257. "into 2\n"
  1258. " range [0-10MiB) and [10MiB-20MiB) and download "
  1259. "it\n"
  1260. " using 2 sources(if --split >= 2, of course).\n"
  1261. " If SIZE is 15M, since 2*15M > 20MiB, aria2 "
  1262. "does\n"
  1263. " not split file and download it using 1 "
  1264. "source.\n"
  1265. " You can append K or M(1K = 1024, 1M = 1024K)."
  1266. msgstr ""
  1267. #: src/usage_text.h:701
  1268. msgid ""
  1269. " --conditional-get[=true|false] Download file only when the local file is "
  1270. "older\n"
  1271. " than remote file. Currently, this function "
  1272. "has\n"
  1273. " many limitations. See man page for details."
  1274. msgstr ""
  1275. #: src/usage_text.h:705
  1276. msgid ""
  1277. " --on-bt-download-complete=COMMAND For BitTorrent, a command specified in\n"
  1278. " --on-download-complete is called after "
  1279. "download\n"
  1280. " completed and seeding is over. On the other "
  1281. "hand,\n"
  1282. " this option sets the command to be executed "
  1283. "after\n"
  1284. " download completed but before seeding.\n"
  1285. " See --on-download-start option for the\n"
  1286. " requirement of COMMAND."
  1287. msgstr ""
  1288. #: src/usage_text.h:713
  1289. msgid ""
  1290. " --enable-async-dns6[=true|false] Enable IPv6 name resolution in "
  1291. "asynchronous\n"
  1292. " DNS resolver. This option will be ignored "
  1293. "when\n"
  1294. " --async-dns=false."
  1295. msgstr ""
  1296. #: src/usage_text.h:717
  1297. msgid ""
  1298. " --enable-dht6[=true|false] Enable IPv6 DHT functionality.\n"
  1299. " Use --dht-listen-port option to specify port\n"
  1300. " number to listen on. See also --dht-listen-"
  1301. "addr6\n"
  1302. " option."
  1303. msgstr ""
  1304. #: src/usage_text.h:722
  1305. msgid ""
  1306. " --dht-listen-addr6=ADDR Specify address to bind socket for IPv6 DHT. \n"
  1307. " It should be a global unicast IPv6 address of "
  1308. "the\n"
  1309. " host."
  1310. msgstr ""
  1311. #: src/usage_text.h:726
  1312. msgid ""
  1313. " --dht-entry-point6=HOST:PORT Set host and port as an entry point to IPv6 "
  1314. "DHT\n"
  1315. " network."
  1316. msgstr ""
  1317. #: src/usage_text.h:729
  1318. msgid ""
  1319. " --dht-file-path6=PATH Change the IPv6 DHT routing table file to PATH."
  1320. msgstr ""
  1321. #: src/usage_text.h:731
  1322. msgid ""
  1323. " --bt-tracker=URI[,...] Comma separated list of additional BitTorrent\n"
  1324. " tracker's announce URI. These URIs are not\n"
  1325. " affected by --bt-exclude-tracker option "
  1326. "because\n"
  1327. " they are added after URIs in --bt-exclude-"
  1328. "tracker\n"
  1329. " option are removed."
  1330. msgstr ""
  1331. #: src/usage_text.h:737
  1332. msgid ""
  1333. " --bt-exclude-tracker=URI[,...] Comma separated list of BitTorrent "
  1334. "tracker's\n"
  1335. " announce URI to remove. You can use special "
  1336. "value\n"
  1337. " '*' which matches all URIs, thus removes all\n"
  1338. " announce URIs. When specifying '*' in shell\n"
  1339. " command-line, don't forget to escape or quote "
  1340. "it.\n"
  1341. " See also --bt-tracker option."
  1342. msgstr ""
  1343. #: src/usage_text.h:744
  1344. msgid ""
  1345. " --max-download-result=NUM Set maximum number of download result kept in\n"
  1346. " memory. The download results are completed/"
  1347. "error/\n"
  1348. " removed downloads. The download results are "
  1349. "stored\n"
  1350. " in FIFO queue and it can store at most NUM\n"
  1351. " download results. When queue is full and new\n"
  1352. " download result is created, oldest download "
  1353. "result\n"
  1354. " is removed from the front of the queue and new "
  1355. "one\n"
  1356. " is pushed to the back. Setting big number in "
  1357. "this\n"
  1358. " option may result high memory consumption "
  1359. "after\n"
  1360. " thousands of downloads. Specifying 0 means no\n"
  1361. " download result is kept."
  1362. msgstr ""
  1363. #: src/version_usage.cc:57
  1364. msgid " version "
  1365. msgstr " έκδοση "
  1366. #: src/version_usage.cc:80
  1367. #, c-format
  1368. msgid "Report bugs to %s"
  1369. msgstr "Αναφορά σφαλμάτων στο %s"
  1370. #: src/version_usage.cc:85
  1371. msgid ""
  1372. "Usage: aria2c [OPTIONS] [URI | MAGNET | TORRENT_FILE | METALINK_FILE]..."
  1373. msgstr ""
  1374. "Χρήση: aria2c [OPTIONS] [URI | MAGNET | TORRENT_FILE | METALINK_FILE]..."
  1375. #: src/version_usage.cc:92
  1376. msgid "Printing all options."
  1377. msgstr "Εκτύπωση όλων των επιλογών."
  1378. #: src/version_usage.cc:94
  1379. #, c-format
  1380. msgid "Printing options tagged with '%s'."
  1381. msgstr "Εκτύπωση των επιλογών που έχουν μαρκαριστεί με '%s'."
  1382. #: src/version_usage.cc:98
  1383. #, c-format
  1384. msgid "See -h option to know other command-line options(%s)."
  1385. msgstr ""
  1386. "Δείτε την επιλογή -h για να μάθετε και για άλλες επιλογές (%s) της γραμμής "
  1387. "εντολών."
  1388. #: src/version_usage.cc:103 src/version_usage.cc:115
  1389. msgid "Options:"
  1390. msgstr "Επιλογές:"
  1391. #: src/version_usage.cc:112
  1392. #, c-format
  1393. msgid "Printing options whose name includes '%s'."
  1394. msgstr "Εκτύπωση των επιλογών που το όνομά τους περιέχει '%s'."
  1395. #: src/version_usage.cc:121
  1396. #, c-format
  1397. msgid "No option matching with '%s'."
  1398. msgstr "Δεν υπάρχει επιλογή που να ταιριάζει με το '%s'"
  1399. #: src/version_usage.cc:129
  1400. msgid ""
  1401. " You can specify multiple HTTP(S)/FTP URIs. Unless you specify -Z option, "
  1402. "all\n"
  1403. " URIs must point to the same file or downloading will fail."
  1404. msgstr ""
  1405. #: src/version_usage.cc:131
  1406. msgid ""
  1407. " You can also specify arbitrary number of BitTorrent Magnet URIs, torrent/\n"
  1408. " metalink files stored in a local drive. Please note that they are always\n"
  1409. " treated as a separate download."
  1410. msgstr ""
  1411. #: src/version_usage.cc:136
  1412. msgid ""
  1413. " You can specify both torrent file with -T option and URIs. By doing this,\n"
  1414. " download a file from both torrent swarm and HTTP/FTP server at the same "
  1415. "time,\n"
  1416. " while the data from HTTP/FTP are uploaded to the torrent swarm. For single "
  1417. "file\n"
  1418. " torrents, URI can be a complete URI pointing to the resource or if URI "
  1419. "ends\n"
  1420. " with '/', 'name' in torrent file is added. For multi-file torrents, 'name' "
  1421. "and\n"
  1422. " 'path' in torrent are added to form a URI for each file."
  1423. msgstr ""
  1424. #: src/version_usage.cc:143
  1425. msgid ""
  1426. " Make sure that URI is quoted with single(') or double(\") quotation if it\n"
  1427. " contains \"&\" or any characters that have special meaning in shell."
  1428. msgstr ""
  1429. #: src/version_usage.cc:153
  1430. msgid "Refer to man page for more information."
  1431. msgstr "Για περισσότερες πληροφορίες ανατρέξτε στην κεντρική σελίδα."
  1432. #: src/message.h:57
  1433. #, c-format
  1434. msgid "GID#%s - Download has already completed: %s"
  1435. msgstr ""
  1436. #: src/message.h:106
  1437. #, c-format
  1438. msgid "Unrecognized URI or unsupported protocol: %s"
  1439. msgstr ""
  1440. #: src/message.h:107
  1441. #, c-format
  1442. msgid "Tracker returned warning message: %s"
  1443. msgstr ""
  1444. #: src/message.h:108
  1445. #, c-format
  1446. msgid "The segment file %s exists."
  1447. msgstr ""
  1448. #: src/message.h:109
  1449. #, c-format
  1450. msgid "The segment file %s does not exist."
  1451. msgstr ""
  1452. #: src/message.h:110
  1453. #, c-format
  1454. msgid "Saving the segment file %s"
  1455. msgstr ""
  1456. #: src/message.h:111
  1457. msgid "The segment file was saved successfully."
  1458. msgstr ""
  1459. #: src/message.h:112
  1460. #, c-format
  1461. msgid "Loading the segment file %s."
  1462. msgstr ""
  1463. #: src/message.h:113
  1464. msgid "The segment file was loaded successfully."
  1465. msgstr ""
  1466. #: src/message.h:114
  1467. msgid "No URI to download. Download aborted."
  1468. msgstr ""
  1469. #: src/message.h:115
  1470. #, c-format
  1471. msgid ""
  1472. "File %s exists, but a control file(*.aria2) does not exist. Download was "
  1473. "canceled in order to prevent your file from being truncated to 0. If you are "
  1474. "sure to download the file all over again, then delete it or add --allow-"
  1475. "overwrite=true option and restart aria2."
  1476. msgstr ""
  1477. #: src/message.h:116
  1478. #, c-format
  1479. msgid "Allocating file %s, %s bytes"
  1480. msgstr ""
  1481. #: src/message.h:117
  1482. msgid "File not found"
  1483. msgstr "Δε βρέθηκε το αρχείο"
  1484. #: src/message.h:118
  1485. msgid "Not a directory"
  1486. msgstr "Δεν είναι κατάλογος"
  1487. #: src/message.h:119
  1488. #, c-format
  1489. msgid "Insufficient checksums. checksumLength=%d, numChecksum=%d"
  1490. msgstr ""
  1491. #: src/message.h:120
  1492. #, c-format
  1493. msgid "Writing file %s"
  1494. msgstr "Εγγραφή του αρχείου %s"
  1495. #: src/message.h:121
  1496. msgid "No peer list received."
  1497. msgstr ""
  1498. #: src/message.h:122
  1499. #, c-format
  1500. msgid "Adding peer %s:%d"
  1501. msgstr ""
  1502. #: src/message.h:123
  1503. #, c-format
  1504. msgid "Deleting used piece index=%d, fillRate(%%)=%d<=%d"
  1505. msgstr ""
  1506. #: src/message.h:124
  1507. msgid "Download of selected files was complete."
  1508. msgstr "Το κατέβασμα των επιλεγμένων αρχείων έχει ολοκληρωθεί."
  1509. #: src/message.h:125
  1510. msgid "The download was complete."
  1511. msgstr "Το κατέβασμα έχει ολοκληρωθεί."
  1512. #: src/message.h:126
  1513. #, c-format
  1514. msgid "Removed %lu have entries."
  1515. msgstr ""
  1516. #: src/message.h:127
  1517. #, c-format
  1518. msgid "Validating file %s"
  1519. msgstr ""
  1520. #: src/message.h:128
  1521. #, c-format
  1522. msgid "%ld seconds to allocate %s byte(s)"
  1523. msgstr ""
  1524. #: src/message.h:131
  1525. #, c-format
  1526. msgid "Metalink: Queueing %s for download."
  1527. msgstr ""
  1528. #: src/message.h:132
  1529. #, c-format
  1530. msgid "Download complete: %s"
  1531. msgstr "Το κατέβασμα ολοκληρώθηκε: %s"
  1532. #: src/message.h:133
  1533. msgid "Seeding is over."
  1534. msgstr ""
  1535. #: src/message.h:134
  1536. msgid "No chunk to verify."
  1537. msgstr ""
  1538. #: src/message.h:135
  1539. #, c-format
  1540. msgid "Good chunk checksum. hash=%s"
  1541. msgstr ""
  1542. #: src/message.h:136
  1543. #, c-format
  1544. msgid "Failed to load cookies from %s"
  1545. msgstr ""
  1546. #: src/message.h:137
  1547. #, c-format
  1548. msgid ""
  1549. ".netrc file %s does not have correct permissions. It should be 600. netrc "
  1550. "support disabled."
  1551. msgstr ""
  1552. "Το αρχείο .netrc %s δεν έχει τα σωστά δικαιώματα. Θα πρέπει να είναι 600. Η "
  1553. "υποστήριξη για το netrc έχει απενεργοποιηθεί."
  1554. #: src/message.h:138
  1555. msgid "Logging started."
  1556. msgstr "Έγινε εκκίνηση της καταγραφής."
  1557. #: src/message.h:139
  1558. msgid "Specify at least one URL."
  1559. msgstr "Ορίστε τουλάχιστον ένα URL."
  1560. #: src/message.h:140
  1561. msgid "daemon failed."
  1562. msgstr "Ο δαίμονας απέτυχε."
  1563. #: src/message.h:141
  1564. #, c-format
  1565. msgid "Verification finished successfully. file=%s"
  1566. msgstr ""
  1567. #: src/message.h:142
  1568. #, c-format
  1569. msgid "Checksum error detected. file=%s"
  1570. msgstr ""
  1571. #: src/message.h:143
  1572. #, c-format
  1573. msgid "Incomplete range specified. %s"
  1574. msgstr ""
  1575. #: src/message.h:144
  1576. #, c-format
  1577. msgid "Failed to convert string into value: %s"
  1578. msgstr ""
  1579. #: src/message.h:145
  1580. msgid "Resource not found"
  1581. msgstr ""
  1582. #: src/message.h:146
  1583. #, c-format
  1584. msgid "File already exists. Renamed to %s."
  1585. msgstr "Το αρχείο υπάρχει ήδη. Έγινε μετονομασία σε %s."
  1586. #: src/message.h:147
  1587. msgid "Cannot parse metalink XML file. XML may be malformed."
  1588. msgstr ""
  1589. #: src/message.h:148
  1590. #, c-format
  1591. msgid "Too small payload size for %s, size=%lu."
  1592. msgstr ""
  1593. #: src/message.h:149
  1594. #, c-format
  1595. msgid ""
  1596. "Removed the defunct control file %s because the download file %s doesn't "
  1597. "exist."
  1598. msgstr ""
  1599. #: src/message.h:150
  1600. #, c-format
  1601. msgid "Your share ratio was %.1f, uploaded/downloaded=%sB/%sB"
  1602. msgstr ""
  1603. #: src/message.h:151
  1604. #, c-format
  1605. msgid "Missing %s in torrent metainfo."
  1606. msgstr ""
  1607. #: src/message.h:152
  1608. msgid "Tracker returned null data."
  1609. msgstr ""
  1610. #: src/message.h:153
  1611. msgid "Windows socket library initialization failed"
  1612. msgstr ""
  1613. #: src/message.h:154
  1614. #, c-format
  1615. msgid "%ld second(s) has passed. Stopping application."
  1616. msgstr ""
  1617. #: src/message.h:155
  1618. #, c-format
  1619. msgid ""
  1620. "Saved signature as %s. Please note that aria2 doesn't verify signatures."
  1621. msgstr ""
  1622. #: src/message.h:157
  1623. #, c-format
  1624. msgid "Saving signature as %s failed. Maybe file already exists."
  1625. msgstr ""
  1626. #: src/message.h:160
  1627. #, c-format
  1628. msgid "Failed to open ServerStat file %s for read."
  1629. msgstr ""
  1630. #: src/message.h:161
  1631. #, c-format
  1632. msgid "ServerStat file %s loaded successfully."
  1633. msgstr ""
  1634. #: src/message.h:162
  1635. #, c-format
  1636. msgid "Failed to read ServerStat from %s."
  1637. msgstr ""
  1638. #: src/message.h:165
  1639. #, c-format
  1640. msgid "Failed to open ServerStat file %s for write."
  1641. msgstr ""
  1642. #: src/message.h:166
  1643. #, c-format
  1644. msgid "ServerStat file %s saved successfully."
  1645. msgstr ""
  1646. #: src/message.h:167
  1647. #, c-format
  1648. msgid "Failed to write ServerStat to %s."
  1649. msgstr ""
  1650. #: src/message.h:170
  1651. #, c-format
  1652. msgid "Failed to establish connection, cause: %s"
  1653. msgstr ""
  1654. #: src/message.h:171
  1655. #, c-format
  1656. msgid "Network problem has occurred. cause:%s"
  1657. msgstr ""
  1658. #: src/message.h:173
  1659. #, c-format
  1660. msgid "Failed to load trusted CA certificates from %s. Cause: %s"
  1661. msgstr ""
  1662. #: src/message.h:175
  1663. #, c-format
  1664. msgid ""
  1665. "Certificate verification failed. Cause: %s See --ca-certificate and --check-"
  1666. "certificate option."
  1667. msgstr ""
  1668. #: src/message.h:177
  1669. msgid "No certificate found."
  1670. msgstr ""
  1671. #: src/message.h:178
  1672. msgid "Hostname not match."
  1673. msgstr ""
  1674. #: src/message.h:179
  1675. msgid "No files to download."
  1676. msgstr "Δεν υπάρχουν αρχεία για κατέβασμα."
  1677. #: src/message.h:181
  1678. msgid ""
  1679. "You may encounter the certificate verification error with HTTPS server. See "
  1680. "--ca-certificate and --check-certificate option."
  1681. msgstr ""
  1682. #: src/message.h:183
  1683. #, c-format
  1684. msgid "Printing the contents of file '%s'..."
  1685. msgstr "Εκτύπωση των περιεχομένων του αρχείου '%s'..."
  1686. #: src/message.h:184
  1687. msgid "This file is neither Torrent nor Metalink file. Skipping."
  1688. msgstr ""
  1689. #: src/message.h:189
  1690. #, c-format
  1691. msgid "Is '%s' a file?"
  1692. msgstr "Είναι αρχείο το '%s';"
  1693. #: src/message.h:190
  1694. #, c-format
  1695. msgid "Failed to find given interface %s, cause: %s"
  1696. msgstr ""
  1697. #: src/message.h:192
  1698. #, c-format
  1699. msgid "Saved metadata as %s."
  1700. msgstr ""
  1701. #: src/message.h:193
  1702. #, c-format
  1703. msgid "Saving metadata as %s failed. Maybe file already exists."
  1704. msgstr ""
  1705. #: src/message.h:195
  1706. #, c-format
  1707. msgid "Detected directory traversal directive in %s"
  1708. msgstr ""
  1709. #: src/message.h:199
  1710. msgid "Timeout."
  1711. msgstr ""
  1712. #: src/message.h:200
  1713. msgid "Invalid chunk size."
  1714. msgstr ""
  1715. #: src/message.h:201
  1716. #, c-format
  1717. msgid "Too large chunk. size=%d"
  1718. msgstr ""
  1719. #: src/message.h:202
  1720. msgid "Invalid header."
  1721. msgstr "Εσφαλμένη κεφαλίδα."
  1722. #: src/message.h:203
  1723. msgid "Invalid response."
  1724. msgstr "Εσφαλμένη απάντηση."
  1725. #: src/message.h:204
  1726. msgid "No header found."
  1727. msgstr "Δε βρέθηκε κεφαλίδα."
  1728. #: src/message.h:205
  1729. msgid "No status header."
  1730. msgstr "Δεν υπάρχει κεφαλίδα κατάστασης."
  1731. #: src/message.h:206
  1732. msgid "Proxy connection failed."
  1733. msgstr "Αποτυχία σύνδεσης στον proxy."
  1734. #: src/message.h:207
  1735. msgid "Connection failed."
  1736. msgstr "Αποτυχία σύνδεσης."
  1737. #: src/message.h:208
  1738. #, c-format
  1739. msgid ""
  1740. "The requested filename and the previously registered one are not same. "
  1741. "Expected:%s Actual:%s"
  1742. msgstr ""
  1743. #: src/message.h:209
  1744. #, c-format
  1745. msgid "The response status is not successful. status=%d"
  1746. msgstr "Η κατάσταση της απάντησης δεν ήταν επιτυχής. status=%d"
  1747. #: src/message.h:210
  1748. #, c-format
  1749. msgid "Too large file size. size=%s"
  1750. msgstr "Πολύ μεγάλο μέγεθος αρχείου. size=%s"
  1751. #: src/message.h:211
  1752. #, c-format
  1753. msgid "Transfer encoding %s is not supported."
  1754. msgstr ""
  1755. #: src/message.h:212
  1756. #, c-format
  1757. msgid "SSL initialization failed: %s"
  1758. msgstr ""
  1759. #: src/message.h:213
  1760. msgid "SSL I/O error"
  1761. msgstr ""
  1762. #: src/message.h:214
  1763. msgid "SSL protocol error"
  1764. msgstr ""
  1765. #: src/message.h:215
  1766. #, c-format
  1767. msgid "SSL unknown error %d"
  1768. msgstr ""
  1769. #: src/message.h:216
  1770. #, c-format
  1771. msgid "SSL initialization failed: OpenSSL connect error %d"
  1772. msgstr ""
  1773. #: src/message.h:217
  1774. #, c-format
  1775. msgid "Size mismatch Expected:%s Actual:%s"
  1776. msgstr ""
  1777. #: src/message.h:218
  1778. msgid "Authorization failed."
  1779. msgstr ""
  1780. #: src/message.h:219
  1781. msgid "Got EOF from the server."
  1782. msgstr ""
  1783. #: src/message.h:220
  1784. msgid "Got EOF from peer."
  1785. msgstr ""
  1786. #: src/message.h:221
  1787. msgid "Malformed meta info."
  1788. msgstr ""
  1789. #: src/message.h:223
  1790. #, c-format
  1791. msgid "Failed to open the file %s, cause: %s"
  1792. msgstr ""
  1793. #: src/message.h:224
  1794. #, c-format
  1795. msgid "Failed to write into the file %s, cause: %s"
  1796. msgstr ""
  1797. #: src/message.h:225
  1798. #, c-format
  1799. msgid "Failed to read from the file %s, cause: %s"
  1800. msgstr ""
  1801. #: src/message.h:226
  1802. msgid "Failed to read data from disk."
  1803. msgstr "Αποτυχία ανάγνωσης δεδομένων από το δίσκο."
  1804. #: src/message.h:227
  1805. #, c-format
  1806. msgid "Failed to calculate SHA1 digest of or a part of the file %s, cause: %s"
  1807. msgstr ""
  1808. #: src/message.h:228
  1809. #, c-format
  1810. msgid "Failed to seek the file %s, cause: %s"
  1811. msgstr ""
  1812. #: src/message.h:229
  1813. #, c-format
  1814. msgid "The offset is out of range, offset=%s"
  1815. msgstr ""
  1816. #: src/message.h:230
  1817. #, c-format
  1818. msgid "%s is not a directory."
  1819. msgstr "Το %s δεν είναι κατάλογος."
  1820. #: src/message.h:231
  1821. #, c-format
  1822. msgid "Failed to make the directory %s, cause: %s"
  1823. msgstr ""
  1824. #: src/message.h:235
  1825. #, c-format
  1826. msgid "Failed to open a socket, cause: %s"
  1827. msgstr ""
  1828. #: src/message.h:236
  1829. #, c-format
  1830. msgid "Failed to set a socket option, cause: %s"
  1831. msgstr ""
  1832. #: src/message.h:237
  1833. #, c-format
  1834. msgid "Failed to set a socket as blocking, cause: %s"
  1835. msgstr ""
  1836. #: src/message.h:238
  1837. #, c-format
  1838. msgid "Failed to set a socket as non-blocking, cause: %s"
  1839. msgstr ""
  1840. #: src/message.h:239
  1841. #, c-format
  1842. msgid "Failed to bind a socket, cause: %s"
  1843. msgstr ""
  1844. #: src/message.h:240
  1845. #, c-format
  1846. msgid "Failed to listen to a socket, cause: %s"
  1847. msgstr ""
  1848. #: src/message.h:241
  1849. #, c-format
  1850. msgid "Failed to accept a peer connection, cause: %s"
  1851. msgstr ""
  1852. #: src/message.h:242
  1853. #, c-format
  1854. msgid "Failed to get the name of socket, cause: %s"
  1855. msgstr ""
  1856. #: src/message.h:243
  1857. #, c-format
  1858. msgid "Failed to get the name of connected peer, cause: %s"
  1859. msgstr ""
  1860. #: src/message.h:244
  1861. #, c-format
  1862. msgid "Failed to resolve the hostname %s, cause: %s"
  1863. msgstr ""
  1864. #: src/message.h:245
  1865. #, c-format
  1866. msgid "Failed to connect to the host %s, cause: %s"
  1867. msgstr ""
  1868. #: src/message.h:246
  1869. #, c-format
  1870. msgid "Failed to check whether the socket is writable, cause: %s"
  1871. msgstr ""
  1872. #: src/message.h:247
  1873. #, c-format
  1874. msgid "Failed to check whether the socket is readable, cause: %s"
  1875. msgstr ""
  1876. #: src/message.h:248
  1877. #, c-format
  1878. msgid "Failed to send data, cause: %s"
  1879. msgstr ""
  1880. #: src/message.h:249
  1881. #, c-format
  1882. msgid "Failed to receive data, cause: %s"
  1883. msgstr ""
  1884. #: src/message.h:250
  1885. #, c-format
  1886. msgid "Failed to peek data, cause: %s"
  1887. msgstr ""
  1888. #: src/message.h:251
  1889. #, c-format
  1890. msgid "Unknown socket error %d (0x%x)"
  1891. msgstr ""
  1892. #: src/message.h:252
  1893. #, c-format
  1894. msgid "File %s exists, but %s does not exist."
  1895. msgstr ""
  1896. #: src/message.h:254
  1897. #, c-format
  1898. msgid "Invalid payload size for %s, size=%lu. It should be %lu."
  1899. msgstr ""
  1900. #: src/message.h:255
  1901. #, c-format
  1902. msgid "Invalid ID=%d for %s. It should be %d."
  1903. msgstr ""
  1904. #: src/message.h:256
  1905. #, c-format
  1906. msgid ""
  1907. "Chunk checksum validation failed. checksumIndex=%lu, offset=%s, expectedHash="
  1908. "%s, actualHash=%s"
  1909. msgstr ""
  1910. #: src/message.h:257
  1911. msgid "Download aborted."
  1912. msgstr "Το κατέβασμα ματαιώθηκε."
  1913. #: src/message.h:258
  1914. #, c-format
  1915. msgid "File %s is being downloaded by other command."
  1916. msgstr ""
  1917. #: src/message.h:259
  1918. msgid "Insufficient checksums."
  1919. msgstr ""
  1920. #: src/message.h:260
  1921. #, c-format
  1922. msgid "Tracker returned failure reason: %s"
  1923. msgstr ""
  1924. #: src/message.h:261
  1925. msgid "Flooding detected."
  1926. msgstr ""
  1927. #: src/message.h:263
  1928. #, c-format
  1929. msgid ""
  1930. "Drop connection because no request/piece messages were exchanged in a "
  1931. "certain period(%ld seconds)."
  1932. msgstr ""
  1933. #: src/message.h:265
  1934. msgid "The infoHash in torrent file doesn't match to one in .aria2 file."
  1935. msgstr ""
  1936. #: src/message.h:266
  1937. #, c-format
  1938. msgid "No such file entry %s"
  1939. msgstr ""
  1940. #: src/message.h:267
  1941. #, c-format
  1942. msgid "Too slow Downloading speed: %d <= %d(B/s), host:%s"
  1943. msgstr ""
  1944. #: src/message.h:268
  1945. msgid "No HttpRequestEntry found."
  1946. msgstr ""
  1947. #: src/message.h:269
  1948. #, c-format
  1949. msgid "Got %d status, but no location header provided."
  1950. msgstr ""
  1951. #: src/message.h:270
  1952. #, c-format
  1953. msgid "Invalid range header. Request: %s-%s/%s, Response: %s-%s/%s"
  1954. msgstr ""
  1955. #: src/message.h:271
  1956. msgid "No file matched with your preference."
  1957. msgstr ""
  1958. #: src/message.h:272
  1959. msgid "Exception caught"
  1960. msgstr ""
  1961. #: src/message.h:273
  1962. #, c-format
  1963. msgid "Max payload length exceeded or invalid. length = %u"
  1964. msgstr ""
  1965. #: src/message.h:274
  1966. #, c-format
  1967. msgid "Invalid file length. Cannot continue download %s: local %s, remote %s"
  1968. msgstr ""
  1969. #: src/BtSetup.cc:212
  1970. msgid "Errors occurred while binding port.\n"
  1971. msgstr ""
  1972. #~ msgid "must be either 'true' or 'false'."
  1973. #~ msgstr "πρέπει να είναι \"true\" ή \"false\""
  1974. #~ msgid "must be between %s and %s."
  1975. #~ msgstr "πρέπει να είναι μεταξύ %s και %s."
  1976. #~ msgid "must be smaller than or equal to %s."
  1977. #~ msgstr "πρέπει να είναι μικρότερο ή ίσο με το %s."
  1978. #~ msgid "must be greater than or equal to %s."
  1979. #~ msgstr "πρέπει να είναι μεγαλύτερο ή ίσο με %s."
  1980. #~ msgid "must be a number."
  1981. #~ msgstr "πρέπει να είναι αριθμός."
  1982. #~ msgid "must be smaller than or equal to %.1f."
  1983. #~ msgstr "πρέπει να είναι μικρότερο ή ίσο με %.1f."
  1984. #~ msgid "must be between %.1f and %.1f."
  1985. #~ msgstr "πρέπει να είναι μεταξύ %.1f και %.1f."
  1986. #~ msgid "must be greater than or equal to %.1f."
  1987. #~ msgstr "πρέπει να είναι μεγαλύτερο ή ίσο με το %.1f."
  1988. #~ msgid "must be one of the following:"
  1989. #~ msgstr "πρέπει να είναι ένα από τα ακόλουθα:"
  1990. #~ msgid "unrecognized proxy format"
  1991. #~ msgstr "Μη αναγνωρίσιμο φορμά proxy."
  1992. #~ msgid "Unrecognized format"
  1993. #~ msgstr "Μη αναγνωρίσιμος τύπος"