zh_CN.po 49 KB

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