zh_CN.po 50 KB

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