el.po 49 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815
  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: 2008-09-22 19:31+0900\n"
  11. "PO-Revision-Date: 2008-08-16 00:00+0900\n"
  12. "Last-Translator: jimmyz <Unknown>\n"
  13. "Language-Team: Greek <el@li.org>\n"
  14. "MIME-Version: 1.0\n"
  15. "Content-Type: text/plain; charset=UTF-8\n"
  16. "Content-Transfer-Encoding: 8bit\n"
  17. "X-Launchpad-Export-Date: 2008-08-15 12:32+0000\n"
  18. "X-Generator: Launchpad (build Unknown)\n"
  19. #: src/DownloadEngine.cc:800
  20. msgid ""
  21. "Shutdown sequence commencing... Press Ctrl-C again for emergency shutdown."
  22. msgstr ""
  23. "Η διαδικασία απενεργοποίησης ξεκινα... Πατήστε Ctrl-C ξανά για άμεση "
  24. "απενεργοποίηση."
  25. #: src/DownloadEngine.cc:804
  26. msgid "Emergency shutdown sequence commencing..."
  27. msgstr "Η διαδικασία άμεσης απενεργοποίησης ξεκινα..."
  28. #: src/MultiUrlRequestInfo.cc:88
  29. msgid "aria2 will resume download if the transfer is restarted."
  30. msgstr "Το aria2 θα συνεχίσει το κατέβασμα εάν η μεταφορά επανεκινηθεί."
  31. #: src/MultiUrlRequestInfo.cc:90
  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:379
  39. msgid "Download Results:"
  40. msgstr "Αποτελέσματα μεταφορτώσεων:"
  41. #: src/RequestGroupMan.cc:394
  42. #, fuzzy
  43. msgid "Status Legend:"
  44. msgstr "Ιστορικό κατάστασης:"
  45. #: src/OptionHandler.cc:38
  46. msgid " Default: "
  47. msgstr " Προκαθορισμένο: "
  48. #: src/OptionHandler.cc:39
  49. #, fuzzy
  50. msgid " Tags: "
  51. msgstr " Tags: "
  52. #: src/OptionHandler.cc:40
  53. #, fuzzy
  54. msgid " Possible Values: "
  55. msgstr " Διαθέσιμες τιμές: "
  56. #: src/OptionHandlerImpl.h:95
  57. msgid "must be either 'true' or 'false'."
  58. msgstr "πρέπει να είναι \"true\" ή \"false\""
  59. #: src/OptionHandlerImpl.h:126 src/OptionHandlerImpl.h:173
  60. #, c-format
  61. msgid "must be between %s and %s."
  62. msgstr ""
  63. #: src/OptionHandlerImpl.h:170
  64. #, c-format
  65. msgid "must be smaller than or equal to %s."
  66. msgstr "πρέπει να είναι μικρότερο ή ίσο με το %s."
  67. #: src/OptionHandlerImpl.h:176
  68. #, c-format
  69. msgid "must be greater than or equal to %s."
  70. msgstr "πρέπει να είναι μεγαλύτερο ή ίσο με %s."
  71. #: src/OptionHandlerImpl.h:179 src/OptionHandlerImpl.h:242
  72. msgid "must be a number."
  73. msgstr "πρέπει να είναι αριθμός."
  74. #: src/OptionHandlerImpl.h:233
  75. #, c-format
  76. msgid "must be smaller than or equal to %.1f."
  77. msgstr "πρέπει να είναι μικρότερο ή ίσο με %.1f."
  78. #: src/OptionHandlerImpl.h:236
  79. #, c-format
  80. msgid "must be between %.1f and %.1f."
  81. msgstr "πρέπει να είναι μεταξύ %.1f και %.1f."
  82. #: src/OptionHandlerImpl.h:239
  83. #, c-format
  84. msgid "must be greater than or equal to %.1f."
  85. msgstr "πρέπει να είναι μεγαλύτερο ή ίσο με το %.1f."
  86. #: src/OptionHandlerImpl.h:376
  87. msgid "must be one of the following:"
  88. msgstr "πρέπει να είναι ένα από τα ακόλουθα:"
  89. #: src/OptionHandlerImpl.h:423
  90. msgid "unrecognized proxy format"
  91. msgstr "Μη αναγνωρίσιμο φορμά proxy."
  92. #: src/usage_text.h:37
  93. msgid ""
  94. " -d, --dir=DIR The directory to store the downloaded file."
  95. msgstr " -d, --dir=DIR Το directory για αποθήκευση του κατεβασμένου αρχείου."
  96. #: src/usage_text.h:39
  97. msgid " -o, --out=FILE The file name of the downloaded file."
  98. msgstr " -o, --out=FILE Το όνομα αποθήκευσης του αρχείου."
  99. #: src/usage_text.h:41
  100. msgid ""
  101. " -l, --log=LOG The file name of the log file. If '-' is\n"
  102. " specified, log is written to stdout."
  103. msgstr ""
  104. " -l, --log=LOG Το όνομα του αρχείου καταγραφής. Εάν προσθέσατε '-',\n"
  105. " η καταγραφή γίνετε στο stdout."
  106. #: src/usage_text.h:44
  107. msgid " -D, --daemon Run as daemon."
  108. msgstr " -D, --daemon. Εκτέλεση σαν daemon."
  109. #: src/usage_text.h:46
  110. #, fuzzy
  111. msgid ""
  112. " -s, --split=N Download a file using N connections. If more\n"
  113. " than N URLs are given, first N URLs are used "
  114. "and\n"
  115. " remaining URLs are used for backup. If less "
  116. "than\n"
  117. " N URLs are given, those URLs are used more "
  118. "than\n"
  119. " once so that N connections total are made\n"
  120. " simultaneously. Please see -j option too."
  121. msgstr ""
  122. " -s, --split=N. Μεταφόρτωση αρχείου χρησιμοποιώντας πλήθος N συνδέσεων. Αν "
  123. "δίδονται περισσότερα\n"
  124. " από N URLs, τα πρώτα είναι σε χρήση και τα "
  125. "υπόλοιπα είναι εφεδρικά. Αν\n"
  126. " δίδονται λιγότερα, τότε χρησιμοποιούνται κατ' "
  127. "επανάληψη, μέχρι να γίνουν\n"
  128. " συνολικά Ν συνδέσεις. Παρακαλώ δείτε και την "
  129. "παραμετρο -j."
  130. #: src/usage_text.h:53
  131. #, fuzzy
  132. msgid ""
  133. " --retry-wait=SEC Set the seconds to wait to retry after an "
  134. "error\n"
  135. " has occured."
  136. msgstr ""
  137. " --retry-wait=SEC Χρόνος αναμονής για επανάληψη μετά από σφάλμα.\n"
  138. " Τιμή από 0 εώς 60 δευτ..\n"
  139. " Προκαθορισμένο: 5"
  140. #: src/usage_text.h:56
  141. #, fuzzy
  142. msgid " -t, --timeout=SEC Set timeout in seconds."
  143. msgstr ""
  144. " -t, --timeout=SEC Ορίστε το χρονικό όριο λήξης. Προκαθορισμένο: 60 δευτ."
  145. #: src/usage_text.h:58
  146. #, fuzzy
  147. msgid " -m, --max-tries=N Set number of tries. 0 means unlimited."
  148. msgstr ""
  149. " -m, --max-tries=N Ορίστε το πλήθος των προσπαθειών. 0 σημαίνει άπειρες.\n"
  150. " Προκαθορισμένο: 5"
  151. #: src/usage_text.h:60
  152. msgid ""
  153. " --http-proxy=HOST:PORT Use HTTP proxy server. This affects all URLs."
  154. msgstr ""
  155. " --http-proxy=HOST:PORT Χρήση HTTP διακομιστή proxy. Επιδρα σε όλα τα URLs."
  156. #: src/usage_text.h:62
  157. msgid " --http-user=USER Set HTTP user. This affects all URLs."
  158. msgstr " --http-user=USER Ορίστε χρήστη HTTP. Επιδρα σε όλα τα URLs."
  159. #: src/usage_text.h:64
  160. msgid " --http-passwd=PASSWD Set HTTP password. This affects all URLs."
  161. msgstr " --http-passwd=PASSWD Ορίστε τον κωδικό HTTP. Επιδρα σε όλα τα URLs."
  162. #: src/usage_text.h:66
  163. msgid ""
  164. " --http-proxy-user=USER Set HTTP proxy user. This affects all URLs."
  165. msgstr ""
  166. " --http-proxy-user=USER Ορίστε όνομα χρήστη proxy HTTP. Επιδρα σε όλα τα "
  167. "URLs."
  168. #: src/usage_text.h:68
  169. msgid ""
  170. " --http-proxy-passwd=PASSWD Set HTTP proxy password. This affects all URLs."
  171. msgstr ""
  172. " --http-proxy-passwd=PASSWD Ορίστε κωδικό proxy HTTP. Επιδρα σε όλα τα URLs."
  173. #: src/usage_text.h:70
  174. msgid " --http-proxy-method=METHOD Set the method to use in proxy request."
  175. msgstr ""
  176. #: src/usage_text.h:72
  177. #, fuzzy
  178. msgid ""
  179. " --http-auth-scheme=SCHEME Set HTTP authentication scheme. Currently, "
  180. "basic\n"
  181. " is the only supported scheme."
  182. msgstr ""
  183. " --http-auth-scheme=SCHEME Ορίστε σχήμα διαπίστευσης HTTP. Προς στιγμην, το "
  184. "basic\n"
  185. " είναι το μόνο υποστηριζόμενο.\n"
  186. " Προκαθορισμένο: basic"
  187. #: src/usage_text.h:75
  188. msgid " --referer=REFERER Set Referer. This affects all URLs."
  189. msgstr " --referer=REFERER Ορίστε το Referer. Επιδρα σε όλα τα URLs."
  190. #: src/usage_text.h:77
  191. #, fuzzy
  192. msgid " --ftp-user=USER Set FTP user. This affects all URLs."
  193. msgstr " --http-user=USER Ορίστε χρήστη HTTP. Επιδρα σε όλα τα URLs."
  194. #: src/usage_text.h:79
  195. #, fuzzy
  196. msgid " --ftp-passwd=PASSWD Set FTP password. This affects all URLs."
  197. msgstr " --http-passwd=PASSWD Ορίστε τον κωδικό HTTP. Επιδρα σε όλα τα URLs."
  198. #: src/usage_text.h:81
  199. msgid " --ftp-type=TYPE Set FTP transfer type."
  200. msgstr ""
  201. #: src/usage_text.h:83
  202. msgid " -p, --ftp-pasv Use passive mode in FTP."
  203. msgstr " -p, --ftp-pasv Χρησιμοποίησε παθητική λειτουργία FTP."
  204. #: src/usage_text.h:85
  205. msgid " --ftp-via-http-proxy=METHOD Use HTTP proxy in FTP."
  206. msgstr ""
  207. #: src/usage_text.h:87
  208. msgid ""
  209. " --lowest-speed-limit=SPEED Close connection if download speed is lower "
  210. "than\n"
  211. " or equal to this value(bytes per sec).\n"
  212. " 0 means aria2 does not have a lowest speed "
  213. "limit.\n"
  214. " You can append K or M(1K = 1024, 1M = 1024K).\n"
  215. " This option does not affect BitTorrent "
  216. "downloads."
  217. msgstr ""
  218. #: src/usage_text.h:93
  219. msgid ""
  220. " --max-download-limit=SPEED Set max download speed in bytes per sec.\n"
  221. " 0 means unrestricted.\n"
  222. " You can append K or M(1K = 1024, 1M = 1024K)."
  223. msgstr ""
  224. #: src/usage_text.h:97
  225. msgid ""
  226. " --file-allocation=METHOD Specify file allocation method.\n"
  227. " 'none' doesn't pre-allocate file space. "
  228. "'prealloc'\n"
  229. " pre-allocates file space before download "
  230. "begins.\n"
  231. " This may take some time depending on the size "
  232. "of\n"
  233. " the file."
  234. msgstr ""
  235. #: src/usage_text.h:103
  236. msgid ""
  237. " --no-file-allocation-limit=SIZE No file allocation is made for files whose\n"
  238. " size is smaller than SIZE.\n"
  239. " You can append K or M(1K = 1024, 1M = 1024K)."
  240. msgstr ""
  241. #: src/usage_text.h:107
  242. msgid ""
  243. " --enable-direct-io[=true|false] Enable directI/O, which lowers cpu usage "
  244. "while\n"
  245. " allocating files.\n"
  246. " Turn off if you encounter any error"
  247. msgstr ""
  248. #: src/usage_text.h:111
  249. msgid ""
  250. " --allow-overwrite=true|false If false, aria2 doesn't download a file which\n"
  251. " already exists but the corresponding .aria2 "
  252. "file\n"
  253. " doesn't exist."
  254. msgstr ""
  255. #: src/usage_text.h:115
  256. msgid ""
  257. " --allow-piece-length-change=true|false If false is given, aria2 aborts "
  258. "download\n"
  259. " when a piece length is different from one in\n"
  260. " a control file. If true is given, you can "
  261. "proceed\n"
  262. " but some download progress will be lost."
  263. msgstr ""
  264. #: src/usage_text.h:120
  265. msgid ""
  266. " -Z, --force-sequential[=true|false] Fetch URIs in the command-line "
  267. "sequentially\n"
  268. " and download each URI in a separate session, "
  269. "like\n"
  270. " the usual command-line download utilities."
  271. msgstr ""
  272. #: src/usage_text.h:124
  273. msgid ""
  274. " --auto-file-renaming[=true|false] Rename file name if the same file "
  275. "already\n"
  276. " exists. This option works only in http(s)/ftp\n"
  277. " download.\n"
  278. " The new file name has a dot and a number"
  279. "(1..9999)\n"
  280. " appended."
  281. msgstr ""
  282. #: src/usage_text.h:130
  283. msgid ""
  284. " -P, --parameterized-uri[=true|false] Enable parameterized URI support.\n"
  285. " You can specify set of parts:\n"
  286. " http://{sv1,sv2,sv3}/foo.iso\n"
  287. " Also you can specify numeric sequences with "
  288. "step\n"
  289. " counter:\n"
  290. " http://host/image[000-100:2].img\n"
  291. " A step counter can be omitted.\n"
  292. " If all URIs do not point to the same file, "
  293. "such\n"
  294. " as the second example above, -Z option is\n"
  295. " required."
  296. msgstr ""
  297. #: src/usage_text.h:141
  298. msgid ""
  299. " --enable-http-keep-alive[=true|false] Enable HTTP/1.1 persistent connection."
  300. msgstr ""
  301. #: src/usage_text.h:143
  302. msgid " --enable-http-pipelining[=true|false] Enable HTTP/1.1 pipelining."
  303. msgstr ""
  304. #: src/usage_text.h:145
  305. msgid ""
  306. " --check-integrity=true|false Check file integrity by validating piece "
  307. "hash.\n"
  308. " This option only affects in BitTorrent "
  309. "downloads\n"
  310. " and Metalink downloads with chunk checksums.\n"
  311. " Use this option to re-download a damaged "
  312. "portion\n"
  313. " of a file."
  314. msgstr ""
  315. #: src/usage_text.h:151
  316. msgid ""
  317. " --realtime-chunk-checksum=true|false Validate chunk checksum while\n"
  318. " downloading a file in Metalink mode. This "
  319. "option\n"
  320. " on affects Metalink mode with chunk checksums."
  321. msgstr ""
  322. #: src/usage_text.h:155
  323. msgid ""
  324. " -c, --continue Continue downloading a partially downloaded\n"
  325. " file. Use this option to resume a download\n"
  326. " started by a web browser or another program\n"
  327. " which downloads files sequentially from the\n"
  328. " beginning. Currently this option is only\n"
  329. " applicable to http(s)/ftp downloads."
  330. msgstr ""
  331. #: src/usage_text.h:162
  332. msgid " -U, --user-agent=USER_AGENT Set user agent for http(s) downloads."
  333. msgstr ""
  334. #: src/usage_text.h:164
  335. msgid " -n, --no-netrc Disables netrc support."
  336. msgstr ""
  337. #: src/usage_text.h:166
  338. msgid ""
  339. " -i, --input-file=FILE Downloads URIs found in FILE. You can specify\n"
  340. " multiple URIs for a single entity: separate\n"
  341. " URIs on a single line using the TAB "
  342. "character.\n"
  343. " Reads input from stdin when '-' is specified."
  344. msgstr ""
  345. #: src/usage_text.h:171
  346. msgid ""
  347. " -j, --max-concurrent-downloads=N Set maximum number of parallel downloads "
  348. "for\n"
  349. " every static (HTTP/FTP) URL, torrent and "
  350. "metalink."
  351. msgstr ""
  352. #: src/usage_text.h:174
  353. msgid ""
  354. " --load-cookies=FILE Load Cookies from FILE using the Firefox3 "
  355. "format\n"
  356. " and Mozilla/Firefox(1.x/2.x)/Netscape format."
  357. msgstr ""
  358. #: src/usage_text.h:177
  359. msgid ""
  360. " -S, --show-files Print file listing of .torrent or .metalink "
  361. "file\n"
  362. " and exit. More detailed information will be "
  363. "listed\n"
  364. " in case of torrent file."
  365. msgstr ""
  366. #: src/usage_text.h:181
  367. msgid ""
  368. " --select-file=INDEX... Set file to download by specifing its index.\n"
  369. " You can find the file index using the\n"
  370. " --show-files option. Multiple indexes can be\n"
  371. " specified by using ',', for example: \"3,6\".\n"
  372. " You can also use '-' to specify a range: \"1-5"
  373. "\".\n"
  374. " ',' and '-' can be used together.\n"
  375. " When used with the -M option, index may vary\n"
  376. " depending on the query(see --metalink-* "
  377. "options)."
  378. msgstr ""
  379. #: src/usage_text.h:190
  380. msgid " -T, --torrent-file=TORRENT_FILE The path to the .torrent file."
  381. msgstr ""
  382. #: src/usage_text.h:192
  383. msgid ""
  384. " --follow-torrent=true|false|mem If true or mem is specified, when a file\n"
  385. " whose suffix is .torrent or content type is\n"
  386. " application/x-bittorrent is downloaded, aria2\n"
  387. " parses it as a torrent file and downloads "
  388. "files\n"
  389. " mentioned in it.\n"
  390. " If mem is specified, a torrent file is not\n"
  391. " written to the disk, but is just kept in "
  392. "memory.\n"
  393. " If false is specified, the action mentioned "
  394. "above\n"
  395. " is not taken."
  396. msgstr ""
  397. #: src/usage_text.h:202
  398. msgid ""
  399. " --direct-file-mapping=true|false Directly read from and write to each file\n"
  400. " mentioned in .torrent file."
  401. msgstr ""
  402. #: src/usage_text.h:205
  403. msgid ""
  404. " --listen-port=PORT... Set TCP port number for BitTorrent downloads.\n"
  405. " Multiple ports can be specified by using ',',\n"
  406. " for example: \"6881,6885\". You can also use "
  407. "'-'\n"
  408. " to specify a range: \"6881-6999\". ',' and '-' "
  409. "can\n"
  410. " be used together."
  411. msgstr ""
  412. #: src/usage_text.h:211
  413. msgid ""
  414. " --max-upload-limit=SPEED Set max upload speed in bytes per sec.\n"
  415. " 0 means unrestricted.\n"
  416. " You can append K or M(1K = 1024, 1M = 1024K)."
  417. msgstr ""
  418. #: src/usage_text.h:215
  419. msgid ""
  420. " --seed-time=MINUTES Specify seeding time in minutes. Also see the\n"
  421. " --seed-ratio option."
  422. msgstr ""
  423. #: src/usage_text.h:218
  424. msgid ""
  425. " --seed-ratio=RATIO Specify share ratio. Seed completed torrents\n"
  426. " until share ratio reaches RATIO. 1.0 is\n"
  427. " encouraged. Specify 0.0 if you intend to do\n"
  428. " seeding regardless of share ratio.\n"
  429. " If --seed-time option is specified along with\n"
  430. " this option, seeding ends when at least one "
  431. "of\n"
  432. " the conditions is satisfied."
  433. msgstr ""
  434. #: src/usage_text.h:226
  435. msgid ""
  436. " --peer-id-prefix=PEERI_ID_PREFIX Specify the prefix of peer ID. The peer ID "
  437. "in\n"
  438. " BitTorrent is 20 byte length. If more than 20\n"
  439. " bytes are specified, only first 20\n"
  440. " bytes are used. If less than 20 bytes are\n"
  441. " specified, the random alphabet characters are\n"
  442. " added to make it's length 20 bytes."
  443. msgstr ""
  444. #: src/usage_text.h:233
  445. msgid " --enable-peer-exchange[=true|false] Enable Peer Exchange extension."
  446. msgstr ""
  447. #: src/usage_text.h:235
  448. msgid " --enable-dht[=true|false] Enable DHT functionality."
  449. msgstr ""
  450. #: src/usage_text.h:237
  451. msgid ""
  452. " --dht-listen-port=PORT... Set UDP listening port for DHT.\n"
  453. " Multiple ports can be specified by using ',',\n"
  454. " for example: \"6881,6885\". You can also use "
  455. "'-'\n"
  456. " to specify a range: \"6881-6999\". ',' and '-' "
  457. "can\n"
  458. " be used together."
  459. msgstr ""
  460. #: src/usage_text.h:243
  461. msgid ""
  462. " --dht-entry-point=HOST:PORT Set host and port as an entry point to DHT\n"
  463. " network."
  464. msgstr ""
  465. #: src/usage_text.h:246
  466. msgid ""
  467. " --bt-min-crypto-level=plain|arc4 Set minimum level of encryption method.\n"
  468. " If several encryption methods are provided by "
  469. "a\n"
  470. " peer, aria2 chooses a lowest one which "
  471. "satisfies\n"
  472. " the given level."
  473. msgstr ""
  474. #: src/usage_text.h:251
  475. msgid ""
  476. " --bt-require-crypto=true|false If true is given, aria2 doesn't accept and\n"
  477. " establish connection with legacy BitTorrent\n"
  478. " handshake. Thus aria2 always uses Obfuscation\n"
  479. " handshake."
  480. msgstr ""
  481. #: src/usage_text.h:256
  482. msgid ""
  483. " --bt-request-peer-speed-limit=SPEED In BitTorrent downloads, if the "
  484. "download\n"
  485. " speed is lower than SPEED, aria2 initiates "
  486. "and\n"
  487. " accepts connections ignoring max peer cap.\n"
  488. " You can append K or M(1K = 1024, 1M = 1024K)."
  489. msgstr ""
  490. #: src/usage_text.h:261
  491. msgid ""
  492. " --bt-max-open-files=NUM Specify maximum number of files to open in "
  493. "each\n"
  494. " BitTorrent download."
  495. msgstr ""
  496. #: src/usage_text.h:264
  497. msgid ""
  498. " --bt-seed-unverified[=true|false] Seed previously downloaded files without\n"
  499. " verifying piece hashes."
  500. msgstr ""
  501. #: src/usage_text.h:267
  502. msgid " -M, --metalink-file=METALINK_FILE The file path to the .metalink file."
  503. msgstr ""
  504. #: src/usage_text.h:269
  505. msgid ""
  506. " -C, --metalink-servers=NUM_SERVERS The number of servers to connect to\n"
  507. " simultaneously."
  508. msgstr ""
  509. #: src/usage_text.h:272
  510. msgid " --metalink-version=VERSION The version of the file to download."
  511. msgstr ""
  512. #: src/usage_text.h:274
  513. msgid " --metalink-language=LANGUAGE The language of the file to download."
  514. msgstr ""
  515. #: src/usage_text.h:276
  516. msgid ""
  517. " --metalink-os=OS The operating system of the file to download."
  518. msgstr ""
  519. #: src/usage_text.h:278
  520. msgid ""
  521. " --metalink-location=LOCATION[,...] The location of the preferred server.\n"
  522. " A comma-deliminated list of locations is\n"
  523. " acceptable."
  524. msgstr ""
  525. #: src/usage_text.h:282
  526. msgid ""
  527. " --metalink-preferred-protocol=PROTO Specify preferred protocol. Specifiy "
  528. "'none'\n"
  529. " if you don't have any preferred protocol."
  530. msgstr ""
  531. #: src/usage_text.h:285
  532. msgid ""
  533. " --follow-metalink=true|false|mem If true or mem is specified, when a file\n"
  534. " whose suffix is .metaink or content type is\n"
  535. " application/metalink+xml is downloaded, aria2\n"
  536. " parses it as a metalink file and downloads "
  537. "files\n"
  538. " mentioned in it.\n"
  539. " If mem is specified, a metalink file is not\n"
  540. " written to the disk, but is just kept in "
  541. "memory.\n"
  542. " If false is specified, the action mentioned "
  543. "above\n"
  544. " is not taken."
  545. msgstr ""
  546. #: src/usage_text.h:295
  547. msgid ""
  548. " --metalink-enable-unique-protocol=true|false If true is given and several\n"
  549. " protocols are available for a mirror in a "
  550. "metalink\n"
  551. " file, aria2 uses one of them.\n"
  552. " Use --metalink-preferred-protocol option to\n"
  553. " specify the preference of protocol."
  554. msgstr ""
  555. #: src/usage_text.h:301
  556. msgid " -v, --version Print the version number and exit."
  557. msgstr ""
  558. #: src/usage_text.h:303
  559. msgid ""
  560. " -h, --help[=CATEGORY] Print usage and exit.\n"
  561. " The help messages are classified in several\n"
  562. " categories. For example, type \"--help=http\" "
  563. "for\n"
  564. " detailed explanation for the options related "
  565. "to\n"
  566. " http. If no matching category is found, "
  567. "search\n"
  568. " option name using a given word in middle "
  569. "match\n"
  570. " and print the result."
  571. msgstr ""
  572. #: src/usage_text.h:311
  573. msgid " --no-conf Disable loading aria2.conf file."
  574. msgstr ""
  575. #: src/usage_text.h:313
  576. msgid ""
  577. " --conf-path=PATH Change the configuration file path to PATH."
  578. msgstr ""
  579. #: src/usage_text.h:315
  580. msgid ""
  581. " --stop=SEC Stop application after SEC seconds has "
  582. "passed.\n"
  583. " If 0 is given, this feature is disabled."
  584. msgstr ""
  585. #: src/usage_text.h:318
  586. msgid ""
  587. " --header=HEADER Append HEADER to HTTP request header. You can "
  588. "use\n"
  589. " this option repeatedly to specify more than "
  590. "one\n"
  591. " header:\n"
  592. " aria2c --header=\"X-A: b78\" --header=\"X-B: "
  593. "9J1\"\n"
  594. " http://host/file"
  595. msgstr ""
  596. #: src/usage_text.h:324
  597. msgid " -q, --quiet[=true|false] Make aria2 quite (no console output)."
  598. msgstr ""
  599. #: src/usage_text.h:326
  600. msgid " --async-dns[=true|false] Enable asynchronous DNS."
  601. msgstr ""
  602. #: src/usage_text.h:328
  603. msgid " --ftp-reuse-connection[=true|false] Reuse connection in FTP."
  604. msgstr ""
  605. #: src/usage_text.h:330
  606. msgid ""
  607. " --summary-interval=SEC Set interval to output download progress "
  608. "summary.\n"
  609. " Setting 0 suppresses the output."
  610. msgstr ""
  611. #: src/usage_text.h:333
  612. msgid " --log-level=LEVEL Set log level to output."
  613. msgstr ""
  614. #: src/usage_text.h:335
  615. msgid ""
  616. " -R, --remote-time[=true|false] Retrieve timestamp of the remote file from "
  617. "the\n"
  618. " remote HTTP/FTP server and if it is "
  619. "available,\n"
  620. " apply it to the local file."
  621. msgstr ""
  622. #: src/usage_text.h:339
  623. msgid ""
  624. " --connect-timeout=SEC Set the connect timeout in seconds to "
  625. "establish\n"
  626. " connection to HTTP/FTP/proxy server. After "
  627. "the\n"
  628. " connection is established, this option makes "
  629. "no\n"
  630. " effect and --timeout option is used instead."
  631. msgstr ""
  632. #: src/usage_text.h:344
  633. msgid ""
  634. " --max-file-not-found=NUM If aria2 recieves `file not found' status from "
  635. "the\n"
  636. " remote HTTP/FTP servers NUM times without "
  637. "getting\n"
  638. " a single byte, then force the download to "
  639. "fail.\n"
  640. " Specify 0 to disable this option.\n"
  641. " This options is only effective only when "
  642. "using\n"
  643. " HTTP/FTP servers."
  644. msgstr ""
  645. #: src/usage_text.h:351
  646. msgid ""
  647. " --uri-selector=SELECTOR Specify URI selection algorithm.\n"
  648. " If 'inorder' is given, URI is tried in the "
  649. "order\n"
  650. " appeared in the URI list.\n"
  651. " If 'feedback' is given, aria2 uses download "
  652. "speed\n"
  653. " observed in the previous downloads and choose\n"
  654. " fastest server in the URI list. This also\n"
  655. " effectively skips dead mirrors. The observed\n"
  656. " download speed is a part of performance "
  657. "profile\n"
  658. " of servers mentioned in --server-stat-of and\n"
  659. " --server-stat-if options."
  660. msgstr ""
  661. #: src/usage_text.h:362
  662. #, fuzzy
  663. msgid ""
  664. " --server-stat-of=FILE Specify the filename to which performance "
  665. "profile\n"
  666. " of the servers is saved. You can load saved "
  667. "data\n"
  668. " using --server-stat-if option."
  669. msgstr ""
  670. " --retry-wait=SEC Χρόνος αναμονής για επανάληψη μετά από σφάλμα.\n"
  671. " Τιμή από 0 εώς 60 δευτ..\n"
  672. " Προκαθορισμένο: 5"
  673. #: src/usage_text.h:366
  674. msgid ""
  675. " --server-stat-if=FILE Specify the filename to load performance "
  676. "profile\n"
  677. " of the servers. The loaded data will be used "
  678. "in\n"
  679. " some URI selector such as 'feedback'.\n"
  680. " See also --uri-selector option"
  681. msgstr ""
  682. #: src/usage_text.h:371
  683. #, fuzzy
  684. msgid ""
  685. " --server-stat-timeout=SEC Specifies timeout in seconds to invalidate\n"
  686. " performance profile of the servers since the "
  687. "last\n"
  688. " contact to them."
  689. msgstr ""
  690. " --retry-wait=SEC Χρόνος αναμονής για επανάληψη μετά από σφάλμα.\n"
  691. " Τιμή από 0 εώς 60 δευτ..\n"
  692. " Προκαθορισμένο: 5"
  693. #: src/version_usage.cc:54
  694. msgid " version "
  695. msgstr ""
  696. #: src/version_usage.cc:71
  697. #, c-format
  698. msgid "Report bugs to %s"
  699. msgstr ""
  700. #: src/version_usage.cc:76
  701. #, c-format
  702. msgid "Usage: %s [OPTIONS] [URL | TORRENT_FILE | METALINK_FILE]..."
  703. msgstr ""
  704. #: src/version_usage.cc:86
  705. #, c-format
  706. msgid "Printing options whose name includes '%s'."
  707. msgstr ""
  708. #: src/version_usage.cc:89 src/version_usage.cc:111
  709. msgid "Options:"
  710. msgstr ""
  711. #: src/version_usage.cc:94
  712. #, c-format
  713. msgid "No help category or option name matching with '%s'."
  714. msgstr ""
  715. #: src/version_usage.cc:100
  716. msgid "Printing all options."
  717. msgstr ""
  718. #: src/version_usage.cc:102
  719. #, c-format
  720. msgid "Printing options tagged with '%s'."
  721. msgstr ""
  722. #: src/version_usage.cc:106
  723. #, c-format
  724. msgid "See -h option to know other command-line options(%s)."
  725. msgstr ""
  726. #: src/version_usage.cc:121
  727. msgid ""
  728. " You can specify multiple URLs. Unless you specify -Z option, all URLs must\n"
  729. " point to the same file or downloading will fail."
  730. msgstr ""
  731. #: src/version_usage.cc:123
  732. msgid ""
  733. " You can also specify arbitrary number of torrent files and metalink files\n"
  734. " stored in a local drive. Please note that they are always treated as a\n"
  735. " separate download."
  736. msgstr ""
  737. #: src/version_usage.cc:128
  738. msgid ""
  739. " You can specify both torrent file with -T option and URLs. By doing this,\n"
  740. " download a file from both torrent swarm and http/ftp server at the same "
  741. "time,\n"
  742. " while the data from http/ftp are uploaded to the torrent swarm. Note that\n"
  743. " only single file torrent can be integrated with http/ftp."
  744. msgstr ""
  745. #: src/version_usage.cc:133
  746. msgid ""
  747. " Make sure that URL is quoted with single(') or double(\") quotation if it\n"
  748. " contains \"&\" or any characters that have special meaning in shell."
  749. msgstr ""
  750. #: src/version_usage.cc:137
  751. msgid "Refer to man page for more information."
  752. msgstr ""
  753. #: src/message.h:40
  754. #, c-format
  755. msgid "CUID#%d - The download for one segment completed successfully."
  756. msgstr "CUID#%d - Η μεταφόρτωση για ένα τμήμα ολοκληρώθηκε επιτυχώς."
  757. #: src/message.h:41
  758. #, c-format
  759. msgid "CUID#%d - No segment available."
  760. msgstr "CUID#%d - Κανένα τμήμα δεν είναι διαθέσιμο."
  761. #: src/message.h:42
  762. #, c-format
  763. msgid "CUID#%d - Connecting to %s:%d"
  764. msgstr "CUID#%d - Συνδέομαι στο %s:%d"
  765. #: src/message.h:43
  766. #, c-format
  767. msgid ""
  768. "CUID#%d - The segment changed. We send the request again with new Range "
  769. "header."
  770. msgstr ""
  771. "CUID#%d - Το τμήμα άλλαξε. 'Εστειλα ξανά την αίτηση με νέα επικεφαλίδα."
  772. #: src/message.h:44
  773. #, c-format
  774. msgid "CUID#%d - Redirecting to %s"
  775. msgstr "CUID#%d - Ανακατεύθυνση στο %s"
  776. #: src/message.h:45
  777. #, c-format
  778. msgid ""
  779. "CUID#%d - Requesting:\n"
  780. "%s"
  781. msgstr ""
  782. "CUID#%d - Ζητώ:\n"
  783. "%s"
  784. #: src/message.h:46
  785. #, c-format
  786. msgid ""
  787. "CUID#%d - Response received:\n"
  788. "%s"
  789. msgstr ""
  790. "Copy text \t\n"
  791. "CUID#%d - Ελήφθη απόκριση:\n"
  792. "%s"
  793. #: src/message.h:47
  794. #, c-format
  795. msgid "CUID#%d - Download aborted. URI=%s"
  796. msgstr "CUID#%d - Η μεταφόρτβση απορρίφθηκε. URI=%s"
  797. #: src/message.h:48
  798. #, c-format
  799. msgid "CUID#%d - Restarting the download. URI=%s"
  800. msgstr "CUID#%d - Επανεκκινώ την μεταφόρτωση. URI=%s"
  801. #: src/message.h:49
  802. #, c-format
  803. msgid "CUID#%d - Download aborted."
  804. msgstr "CUID#%d - Η μεταφόρτωση απορρίφθηκε."
  805. #: src/message.h:50
  806. #, c-format
  807. msgid "CUID#%d - %d times attempted, but no success. Download aborted."
  808. msgstr ""
  809. #: src/message.h:51
  810. #, c-format
  811. msgid "CUID#%d - Unregistering cuid from segmentManager."
  812. msgstr ""
  813. #: src/message.h:57
  814. #, c-format
  815. msgid "CUID#%d - we got new piece. index=%d"
  816. msgstr ""
  817. #: src/message.h:58
  818. #, c-format
  819. msgid "CUID#%d - we got wrong piece. index=%d"
  820. msgstr ""
  821. #: src/message.h:59
  822. #, c-format
  823. msgid "CUID#%d - Download not complete: %s"
  824. msgstr ""
  825. #: src/message.h:60
  826. #, c-format
  827. msgid "#%d - Download has already completed: %s"
  828. msgstr ""
  829. #: src/message.h:61
  830. #, c-format
  831. msgid "CUID#%d - Good checksum: %s"
  832. msgstr ""
  833. #: src/message.h:62
  834. #, c-format
  835. msgid "CUID#%d - Bad checksum: %s"
  836. msgstr ""
  837. #: src/message.h:63
  838. #, c-format
  839. msgid "CUID#%d - Resolving hostname %s"
  840. msgstr ""
  841. #: src/message.h:64
  842. #, c-format
  843. msgid "CUID#%d - Name resolution complete: %s -> %s"
  844. msgstr ""
  845. #: src/message.h:65
  846. #, c-format
  847. msgid "CUID#%d - Name resolution for %s failed:%s"
  848. msgstr ""
  849. #: src/message.h:66
  850. #, c-format
  851. msgid "CUID#%d - DNS cache hit: %s -> %s"
  852. msgstr ""
  853. #: src/message.h:67
  854. #, c-format
  855. msgid "CUID#%d - Abort requested."
  856. msgstr ""
  857. #: src/message.h:68
  858. #, c-format
  859. msgid "CUID#%d - Connecting to the peer %s"
  860. msgstr ""
  861. #: src/message.h:69
  862. #, c-format
  863. msgid ""
  864. "CUID#%d - Piece received. index=%d, begin=%d, length=%d, offset=%llu, "
  865. "blockIndex=%d"
  866. msgstr ""
  867. #: src/message.h:70
  868. #, c-format
  869. msgid "CUID#%d - Piece bitfield %s"
  870. msgstr ""
  871. #: src/message.h:71
  872. #, c-format
  873. msgid ""
  874. "CUID#%d - Reject piece message in queue because the peer has been choked. "
  875. "index=%d, begin=%d, length=%d"
  876. msgstr ""
  877. #: src/message.h:72
  878. #, c-format
  879. msgid ""
  880. "CUID#%d - Reject piece message in queue because cancel message received. "
  881. "index=%d, begin=%d, length=%d"
  882. msgstr ""
  883. #: src/message.h:73
  884. #, c-format
  885. msgid "CUID#%d - Exception caught while validating file integrity."
  886. msgstr ""
  887. #: src/message.h:74
  888. #, c-format
  889. msgid "CUID#%d - Interested in the peer"
  890. msgstr ""
  891. #: src/message.h:75
  892. #, c-format
  893. msgid "CUID#%d - Not interested in the peer"
  894. msgstr ""
  895. #: src/message.h:76
  896. #, c-format
  897. msgid "CUID#%d - Deleting request slot index=%d, blockIndex=%d"
  898. msgstr ""
  899. #: src/message.h:77
  900. #, c-format
  901. msgid ""
  902. "CUID#%d - Deleting request slot index=%d, blockIndex=%d because localhost "
  903. "got choked."
  904. msgstr ""
  905. #: src/message.h:78
  906. #, c-format
  907. msgid "CUID#%d - Deleting request slot blockIndex=%d because of time out"
  908. msgstr ""
  909. #: src/message.h:79
  910. #, c-format
  911. msgid ""
  912. "CUID#%d - Deleting request slot blockIndex=%d because the block has been "
  913. "acquired."
  914. msgstr ""
  915. #: src/message.h:80
  916. #, c-format
  917. msgid "CUID#%d - Fast extension enabled."
  918. msgstr ""
  919. #: src/message.h:81
  920. #, c-format
  921. msgid "CUID#%d - Extended Messaging enabled."
  922. msgstr ""
  923. #: src/message.h:82
  924. #, c-format
  925. msgid "CUID#%d - Exception caught while allocating file space."
  926. msgstr ""
  927. #: src/message.h:83
  928. #, c-format
  929. msgid "CUID#%d - Content-Disposition detected. Use %s as filename"
  930. msgstr ""
  931. #: src/message.h:84
  932. #, c-format
  933. msgid "CUID#%d - Peer %s:%d banned."
  934. msgstr ""
  935. #: src/message.h:85
  936. #, c-format
  937. msgid "CUID#%d - Using port %d for accepting new connections"
  938. msgstr ""
  939. #: src/message.h:86
  940. #, c-format
  941. msgid "CUID#%d - An error occurred while binding port=%d"
  942. msgstr ""
  943. #: src/message.h:87
  944. #, c-format
  945. msgid "CUID#%d - Incoming connection, adding new command CUID#%d"
  946. msgstr ""
  947. #: src/message.h:88
  948. #, c-format
  949. msgid "CUID#%d - Error in accepting connection"
  950. msgstr ""
  951. #: src/message.h:89
  952. #, c-format
  953. msgid "CUID#%d - Error occurred while processing tracker response."
  954. msgstr ""
  955. #: src/message.h:90
  956. #, c-format
  957. msgid "CUID#%d - Cannot create tracker request."
  958. msgstr ""
  959. #: src/message.h:91
  960. #, c-format
  961. msgid "CUID#%d - Creating new tracker request command #%d"
  962. msgstr ""
  963. #: src/message.h:92
  964. #, c-format
  965. msgid "CUID#%d - The peer is DHT-enabled."
  966. msgstr ""
  967. #: src/message.h:94
  968. #, c-format
  969. msgid "Unrecognized URI or unsupported protocol: %s"
  970. msgstr ""
  971. #: src/message.h:95
  972. #, c-format
  973. msgid "Tracker returned warning message: %s"
  974. msgstr ""
  975. #: src/message.h:96
  976. #, c-format
  977. msgid "The segment file %s exists."
  978. msgstr ""
  979. #: src/message.h:97
  980. #, c-format
  981. msgid "The segment file %s does not exist."
  982. msgstr ""
  983. #: src/message.h:98
  984. #, c-format
  985. msgid "Saving the segment file %s"
  986. msgstr ""
  987. #: src/message.h:99
  988. msgid "The segment file was saved successfully."
  989. msgstr ""
  990. #: src/message.h:100
  991. #, c-format
  992. msgid "Loading the segment file %s."
  993. msgstr ""
  994. #: src/message.h:101
  995. msgid "The segment file was loaded successfully."
  996. msgstr ""
  997. #: src/message.h:102
  998. msgid "No URI to download. Download aborted."
  999. msgstr ""
  1000. #: src/message.h:103
  1001. #, c-format
  1002. msgid ""
  1003. "File %s exists, but a control file(*.aria2) does not exist. Download was "
  1004. "canceled in order to prevent your file from being truncated to 0. If you are "
  1005. "sure to download the file all over again, then delete it or add --allow-"
  1006. "overwrite=true option and restart aria2."
  1007. msgstr ""
  1008. #: src/message.h:104
  1009. #, c-format
  1010. msgid "Allocating file %s, %s bytes"
  1011. msgstr ""
  1012. #: src/message.h:105
  1013. msgid "File not found"
  1014. msgstr ""
  1015. #: src/message.h:106
  1016. msgid "Not a directory"
  1017. msgstr ""
  1018. #: src/message.h:107
  1019. #, c-format
  1020. msgid "Insufficient checksums. checksumLength=%d, numChecksum=%d"
  1021. msgstr ""
  1022. #: src/message.h:108
  1023. #, c-format
  1024. msgid "Writing file %s"
  1025. msgstr ""
  1026. #: src/message.h:109
  1027. msgid "No peer list received."
  1028. msgstr ""
  1029. #: src/message.h:110
  1030. #, c-format
  1031. msgid "Adding peer %s:%d"
  1032. msgstr ""
  1033. #: src/message.h:111
  1034. #, c-format
  1035. msgid "Deleting used piece index=%d, fillRate(%%)=%d<=%d"
  1036. msgstr ""
  1037. #: src/message.h:112
  1038. msgid "Download of selected files was complete."
  1039. msgstr ""
  1040. #: src/message.h:113
  1041. msgid "The download was complete."
  1042. msgstr ""
  1043. #: src/message.h:114
  1044. #, c-format
  1045. msgid "Removed %d have entries."
  1046. msgstr ""
  1047. #: src/message.h:115
  1048. #, c-format
  1049. msgid "Validating file %s"
  1050. msgstr ""
  1051. #: src/message.h:116
  1052. #, c-format
  1053. msgid "%d seconds to allocate %s byte(s)"
  1054. msgstr ""
  1055. #: src/message.h:117
  1056. #, c-format
  1057. msgid "Dispatching FileAllocationCommand for CUID#%d."
  1058. msgstr ""
  1059. #: src/message.h:118
  1060. #, c-format
  1061. msgid "Metalink: Queueing %s for download."
  1062. msgstr ""
  1063. #: src/message.h:119
  1064. #, c-format
  1065. msgid "Download complete: %s"
  1066. msgstr ""
  1067. #: src/message.h:120
  1068. msgid "Seeding is over."
  1069. msgstr ""
  1070. #: src/message.h:121
  1071. #, c-format
  1072. msgid "CUID#%d cancels segment index=%d. CUID#%d handles it instead."
  1073. msgstr ""
  1074. #: src/message.h:122
  1075. msgid "No chunk to verify."
  1076. msgstr ""
  1077. #: src/message.h:123
  1078. #, c-format
  1079. msgid "Good chunk checksum. hash=%s"
  1080. msgstr ""
  1081. #: src/message.h:124
  1082. #, c-format
  1083. msgid "Failed to load cookies from %s"
  1084. msgstr ""
  1085. #: src/message.h:125
  1086. #, c-format
  1087. msgid ""
  1088. ".netrc file %s does not have correct permissions. It should be 600. netrc "
  1089. "support disabled."
  1090. msgstr ""
  1091. #: src/message.h:126
  1092. msgid "Logging started."
  1093. msgstr ""
  1094. #: src/message.h:127
  1095. msgid "Specify at least one URL."
  1096. msgstr ""
  1097. #: src/message.h:128
  1098. msgid "daemon failed."
  1099. msgstr ""
  1100. #: src/message.h:129
  1101. #, c-format
  1102. msgid "Verification finished successfully. file=%s"
  1103. msgstr ""
  1104. #: src/message.h:130
  1105. #, c-format
  1106. msgid "Checksum error detected. file=%s"
  1107. msgstr ""
  1108. #: src/message.h:131
  1109. #, c-format
  1110. msgid "Incomplete range specified. %s"
  1111. msgstr ""
  1112. #: src/message.h:132
  1113. #, c-format
  1114. msgid "Failed to convert string into value: %s"
  1115. msgstr ""
  1116. #: src/message.h:133
  1117. msgid "Resource not found"
  1118. msgstr ""
  1119. #: src/message.h:134
  1120. #, c-format
  1121. msgid "File already exists. Renamed to %s."
  1122. msgstr ""
  1123. #: src/message.h:135
  1124. msgid "Cannot parse metalink XML file. XML may be malformed."
  1125. msgstr ""
  1126. #: src/message.h:136
  1127. #, c-format
  1128. msgid "Too small payload size for %s, size=%d."
  1129. msgstr ""
  1130. #: src/message.h:137
  1131. #, c-format
  1132. msgid ""
  1133. "Removed the defunct control file %s because the download file %s doesn't "
  1134. "exist."
  1135. msgstr ""
  1136. #: src/message.h:138
  1137. #, c-format
  1138. msgid "Your share ratio was %.1f, uploaded/downloaded=%sB/%sB"
  1139. msgstr ""
  1140. #: src/message.h:139
  1141. #, c-format
  1142. msgid "Missing %s in torrent metainfo."
  1143. msgstr ""
  1144. #: src/message.h:140
  1145. msgid "Tracker returned null data."
  1146. msgstr ""
  1147. #: src/message.h:141
  1148. msgid "Windows socket library initialization failed"
  1149. msgstr ""
  1150. #: src/message.h:142
  1151. #, c-format
  1152. msgid "%d second(s) has passed. Stopping application."
  1153. msgstr ""
  1154. #: src/message.h:143
  1155. #, c-format
  1156. msgid ""
  1157. "Saved signature as %s. Please note that aria2 doesn't verify signatures."
  1158. msgstr ""
  1159. #: src/message.h:145
  1160. #, c-format
  1161. msgid "Saving signature as %s failed. Maybe file already exists."
  1162. msgstr ""
  1163. #: src/message.h:148
  1164. #, c-format
  1165. msgid "Failed to open ServerStat file %s for read."
  1166. msgstr ""
  1167. #: src/message.h:149
  1168. #, c-format
  1169. msgid "ServerStat file %s loaded successfully."
  1170. msgstr ""
  1171. #: src/message.h:150
  1172. #, c-format
  1173. msgid "Failed to read ServerStat from %s."
  1174. msgstr ""
  1175. #: src/message.h:153
  1176. #, c-format
  1177. msgid "Failed to open ServerStat file %s for write."
  1178. msgstr ""
  1179. #: src/message.h:154
  1180. #, c-format
  1181. msgid "ServerStat file %s saved successfully."
  1182. msgstr ""
  1183. #: src/message.h:155
  1184. #, c-format
  1185. msgid "Failed to write ServerStat to %s."
  1186. msgstr ""
  1187. #: src/message.h:158
  1188. #, c-format
  1189. msgid "Failed to establish connection, cause: %s"
  1190. msgstr ""
  1191. #: src/message.h:159
  1192. #, c-format
  1193. msgid "Network problem has occurred. cause:%s"
  1194. msgstr ""
  1195. #: src/message.h:161
  1196. msgid "Timeout."
  1197. msgstr ""
  1198. #: src/message.h:162
  1199. msgid "Invalid chunk size."
  1200. msgstr ""
  1201. #: src/message.h:163
  1202. #, c-format
  1203. msgid "Too large chunk. size=%d"
  1204. msgstr ""
  1205. #: src/message.h:164
  1206. msgid "Invalid header."
  1207. msgstr ""
  1208. #: src/message.h:165
  1209. msgid "Invalid response."
  1210. msgstr ""
  1211. #: src/message.h:166
  1212. msgid "No header found."
  1213. msgstr ""
  1214. #: src/message.h:167
  1215. msgid "No status header."
  1216. msgstr ""
  1217. #: src/message.h:168
  1218. msgid "Proxy connection failed."
  1219. msgstr ""
  1220. #: src/message.h:169
  1221. msgid "Connection failed."
  1222. msgstr ""
  1223. #: src/message.h:170
  1224. #, c-format
  1225. msgid ""
  1226. "The requested filename and the previously registered one are not same. "
  1227. "Expected:%s Actual:%s"
  1228. msgstr ""
  1229. #: src/message.h:171
  1230. #, c-format
  1231. msgid "The response status is not successful. status=%d"
  1232. msgstr ""
  1233. #: src/message.h:172
  1234. #, c-format
  1235. msgid "Too large file size. size=%s"
  1236. msgstr ""
  1237. #: src/message.h:173
  1238. #, c-format
  1239. msgid "Transfer encoding %s is not supported."
  1240. msgstr ""
  1241. #: src/message.h:174
  1242. #, c-format
  1243. msgid "SSL initialization failed: %s"
  1244. msgstr ""
  1245. #: src/message.h:175
  1246. msgid "SSL I/O error"
  1247. msgstr ""
  1248. #: src/message.h:176
  1249. msgid "SSL protocol error"
  1250. msgstr ""
  1251. #: src/message.h:177
  1252. #, c-format
  1253. msgid "SSL unknown error %d"
  1254. msgstr ""
  1255. #: src/message.h:178
  1256. #, c-format
  1257. msgid "SSL initialization failed: OpenSSL connect error %d"
  1258. msgstr ""
  1259. #: src/message.h:179
  1260. #, c-format
  1261. msgid "Size mismatch Expected:%s Actual:%s"
  1262. msgstr ""
  1263. #: src/message.h:180
  1264. msgid "Authorization failed."
  1265. msgstr ""
  1266. #: src/message.h:181
  1267. msgid "Got EOF from the server."
  1268. msgstr ""
  1269. #: src/message.h:182
  1270. msgid "Got EOF from peer."
  1271. msgstr ""
  1272. #: src/message.h:183
  1273. msgid "Malformed meta info."
  1274. msgstr ""
  1275. #: src/message.h:185
  1276. #, c-format
  1277. msgid "Failed to open the file %s, cause: %s"
  1278. msgstr ""
  1279. #: src/message.h:186
  1280. #, c-format
  1281. msgid "Failed to write into the file %s, cause: %s"
  1282. msgstr ""
  1283. #: src/message.h:187
  1284. #, c-format
  1285. msgid "Failed to read from the file %s, cause: %s"
  1286. msgstr ""
  1287. #: src/message.h:188
  1288. msgid "Failed to read data from disk."
  1289. msgstr ""
  1290. #: src/message.h:189
  1291. #, c-format
  1292. msgid "Failed to calculate SHA1 digest of or a part of the file %s, cause: %s"
  1293. msgstr ""
  1294. #: src/message.h:190
  1295. #, c-format
  1296. msgid "Failed to seek the file %s, cause: %s"
  1297. msgstr ""
  1298. #: src/message.h:191
  1299. #, c-format
  1300. msgid "The offset is out of range, offset=%s"
  1301. msgstr ""
  1302. #: src/message.h:192
  1303. #, c-format
  1304. msgid "%s is not a directory."
  1305. msgstr ""
  1306. #: src/message.h:193
  1307. #, c-format
  1308. msgid "Failed to make the directory %s, cause: %s"
  1309. msgstr ""
  1310. #: src/message.h:194
  1311. #, c-format
  1312. msgid "Failed to open the segment file %s, cause: %s"
  1313. msgstr ""
  1314. #: src/message.h:195
  1315. #, c-format
  1316. msgid "Failed to write into the segment file %s, cause: %s"
  1317. msgstr ""
  1318. #: src/message.h:196
  1319. #, c-format
  1320. msgid "Failed to read from the segment file %s, cause: %s"
  1321. msgstr ""
  1322. #: src/message.h:198
  1323. #, c-format
  1324. msgid "Failed to open a socket, cause: %s"
  1325. msgstr ""
  1326. #: src/message.h:199
  1327. #, c-format
  1328. msgid "Failed to set a socket option, cause: %s"
  1329. msgstr ""
  1330. #: src/message.h:200
  1331. #, c-format
  1332. msgid "Failed to set a socket as blocking, cause: %s"
  1333. msgstr ""
  1334. #: src/message.h:201
  1335. #, c-format
  1336. msgid "Failed to set a socket as non-blocking, cause: %s"
  1337. msgstr ""
  1338. #: src/message.h:202
  1339. #, c-format
  1340. msgid "Failed to bind a socket, cause: %s"
  1341. msgstr ""
  1342. #: src/message.h:203
  1343. #, c-format
  1344. msgid "Failed to listen to a socket, cause: %s"
  1345. msgstr ""
  1346. #: src/message.h:204
  1347. #, c-format
  1348. msgid "Failed to accept a peer connection, cause: %s"
  1349. msgstr ""
  1350. #: src/message.h:205
  1351. #, c-format
  1352. msgid "Failed to get the name of socket, cause: %s"
  1353. msgstr ""
  1354. #: src/message.h:206
  1355. #, c-format
  1356. msgid "Failed to get the name of connected peer, cause: %s"
  1357. msgstr ""
  1358. #: src/message.h:207
  1359. #, c-format
  1360. msgid "Failed to resolve the hostname %s, cause: %s"
  1361. msgstr ""
  1362. #: src/message.h:208
  1363. #, c-format
  1364. msgid "Failed to connect to the host %s, cause: %s"
  1365. msgstr ""
  1366. #: src/message.h:209
  1367. #, c-format
  1368. msgid "Failed to check whether the socket is writable, cause: %s"
  1369. msgstr ""
  1370. #: src/message.h:210
  1371. #, c-format
  1372. msgid "Failed to check whether the socket is readable, cause: %s"
  1373. msgstr ""
  1374. #: src/message.h:211
  1375. #, c-format
  1376. msgid "Failed to send data, cause: %s"
  1377. msgstr ""
  1378. #: src/message.h:212
  1379. #, c-format
  1380. msgid "Failed to receive data, cause: %s"
  1381. msgstr ""
  1382. #: src/message.h:213
  1383. #, c-format
  1384. msgid "Failed to peek data, cause: %s"
  1385. msgstr ""
  1386. #: src/message.h:214
  1387. #, c-format
  1388. msgid "Unknown socket error %d (0x%x)"
  1389. msgstr ""
  1390. #: src/message.h:215
  1391. #, c-format
  1392. msgid "File %s exists, but %s does not exist."
  1393. msgstr ""
  1394. #: src/message.h:216
  1395. #, c-format
  1396. msgid "Invalid payload size for %s, size=%d. It should be %d."
  1397. msgstr ""
  1398. #: src/message.h:217
  1399. #, c-format
  1400. msgid "Invalid ID=%d for %s. It should be %d."
  1401. msgstr ""
  1402. #: src/message.h:218
  1403. #, c-format
  1404. msgid ""
  1405. "Chunk checksum validation failed. checksumIndex=%d, offset=%s, expectedHash=%"
  1406. "s, actualHash=%s"
  1407. msgstr ""
  1408. #: src/message.h:219
  1409. msgid "Download aborted."
  1410. msgstr ""
  1411. #: src/message.h:220
  1412. #, c-format
  1413. msgid "File %s is being downloaded by other command."
  1414. msgstr ""
  1415. #: src/message.h:221
  1416. msgid "Insufficient checksums."
  1417. msgstr ""
  1418. #: src/message.h:222
  1419. #, c-format
  1420. msgid "Tracker returned failure reason: %s"
  1421. msgstr ""
  1422. #: src/message.h:223
  1423. msgid "Flooding detected."
  1424. msgstr ""
  1425. #: src/message.h:224
  1426. #, c-format
  1427. msgid ""
  1428. "Drop connection because no request/piece messages were exchanged in a "
  1429. "certain period(%d seconds)."
  1430. msgstr ""
  1431. #: src/message.h:225
  1432. msgid "The infoHash in torrent file doesn't match to one in .aria2 file."
  1433. msgstr ""
  1434. #: src/message.h:226
  1435. #, c-format
  1436. msgid "No such file entry %s"
  1437. msgstr ""
  1438. #: src/message.h:227
  1439. #, c-format
  1440. msgid "Too slow Downloading speed: %d <= %d(B/s), host:%s"
  1441. msgstr ""
  1442. #: src/message.h:228
  1443. msgid "No HttpRequestEntry found."
  1444. msgstr ""
  1445. #: src/message.h:229
  1446. #, c-format
  1447. msgid "Got %d status, but no location header provided."
  1448. msgstr ""
  1449. #: src/message.h:230
  1450. #, c-format
  1451. msgid "Invalid range header. Request: %s-%s/%s, Response: %s-%s/%s"
  1452. msgstr ""
  1453. #: src/message.h:231
  1454. msgid "No file matched with your preference."
  1455. msgstr ""
  1456. #: src/message.h:232
  1457. msgid "Exception caught"
  1458. msgstr ""
  1459. #: src/message.h:233
  1460. #, c-format
  1461. msgid "Max payload length exceeded or invalid. length = %u"
  1462. msgstr ""
  1463. #: src/message.h:234
  1464. #, c-format
  1465. msgid "Invalid file length. Cannot continue download %s: local %s, remote %s"
  1466. msgstr ""
  1467. #: src/BtSetup.cc:123
  1468. msgid "Errors occurred while binding port.\n"
  1469. msgstr ""
  1470. #: src/Util.cc:713
  1471. msgid "Files:"
  1472. msgstr ""
  1473. #~ msgid ""
  1474. #~ " --http-proxy-method=METHOD Set the method to use in proxy request.\n"
  1475. #~ " METHOD is either 'get' or 'tunnel'.\n"
  1476. #~ " Default: tunnel"
  1477. #~ msgstr ""
  1478. #~ " --http-proxy-method=METHOD Ορίστε μέθοδο για αιτήματα proxy.\n"
  1479. #~ " Το METHOD είναι είτε 'get', είτε tunnel'\n"
  1480. #~ " Προκαθορισμένο: tunnel"
  1481. #~ msgid ""
  1482. #~ " --ftp-user=USER Set FTP user. This affects all URLs.\n"
  1483. #~ " Default: anonymous"
  1484. #~ msgstr " --ftp-user=USER Ορίστε χρήστη FTP. Επιδρα σε όλα τα URLs."
  1485. #~ msgid ""
  1486. #~ " --ftp-passwd=PASSWD Set FTP password. This affects all URLs.\n"
  1487. #~ " Default: ARIA2USER@"
  1488. #~ msgstr ""
  1489. #~ " --ftp-passwd=PASSWD Ορίστε κωδικό FTP. Επιδρα σε όλα τα URLs.\n"
  1490. #~ " Προκαθορισμένο: ARIA2USER@"
  1491. #~ msgid ""
  1492. #~ " --ftp-type=TYPE Set FTP transfer type. TYPE is either "
  1493. #~ "'binary'\n"
  1494. #~ " or 'ascii'.\n"
  1495. #~ " Default: binary"
  1496. #~ msgstr ""
  1497. #~ " --ftp-type=TYPE Ορίστε τύπο μεταφορών FTP. Το TYPE είναι 'binary'\n"
  1498. #~ " ή 'ascii'.\n"
  1499. #~ " Προκαθορισμένο: binary"
  1500. #~ msgid ""
  1501. #~ " --ftp-via-http-proxy=METHOD Use HTTP proxy in FTP. METHOD is either "
  1502. #~ "'get' or\n"
  1503. #~ " 'tunnel'.\n"
  1504. #~ " Default: tunnel"
  1505. #~ msgstr ""
  1506. #~ " --ftp-via-http-proxy=METHOD Χρησιμοποίησε τον HTTP proxy στο FTP. Το "
  1507. #~ "METHOD είναι 'get' ή\n"
  1508. #~ " 'tunnel'.\n"
  1509. #~ " Προκαθορισμένο: tunnel"