aria2.pot 58 KB

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