aria2.pot 64 KB

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