aria2.pot 56 KB

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