vi.po 59 KB

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