vi.po 65 KB

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