aria2.pot 60 KB

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