aria2.pot 65 KB

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