aria2.pot 63 KB

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