aria2.pot 49 KB

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