zh_CN.po 79 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442
  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: 2009-12-27 14:43+0900\n"
  11. "PO-Revision-Date: 2009-09-30 14:01+0000\n"
  12. "Last-Translator: aerowolf <aerowolf@tom.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: 2009-10-06 14:08+0000\n"
  18. "X-Generator: Launchpad (build Unknown)\n"
  19. #: src/DownloadEngine.cc:212
  20. msgid ""
  21. "Shutdown sequence commencing... Press Ctrl-C again for emergency shutdown."
  22. msgstr "关闭顺序开始... 紧急关闭请再按Ctrl-C。"
  23. #: src/DownloadEngine.cc:218
  24. msgid "Emergency shutdown sequence commencing..."
  25. msgstr "紧急关闭序列开始..."
  26. #: src/MultiUrlRequestInfo.cc:97
  27. msgid "aria2 will resume download if the transfer is restarted."
  28. msgstr "如果重启aria2,下载将恢复(续传)。"
  29. #: src/MultiUrlRequestInfo.cc:99
  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. "如果发生任何错误,请参阅日志文件。要了解详细信息,请在help/man页面中参阅'-"
  35. "l'选项。"
  36. #: src/RequestGroupMan.cc:578
  37. msgid "Download Results:"
  38. msgstr "下载结果:"
  39. #: src/RequestGroupMan.cc:622
  40. msgid "Status Legend:"
  41. msgstr "状态标识:"
  42. #: src/OptionHandler.cc:38
  43. msgid " Default: "
  44. msgstr " 默认: "
  45. #: src/OptionHandler.cc:39
  46. msgid " Tags: "
  47. msgstr " 标记: "
  48. #: src/OptionHandler.cc:40
  49. msgid " Possible Values: "
  50. msgstr " 可能的取值: "
  51. #: src/OptionHandlerImpl.h:135
  52. msgid "must be either 'true' or 'false'."
  53. msgstr "必须为'true'或'false'."
  54. #: src/OptionHandlerImpl.h:169 src/OptionHandlerImpl.h:218
  55. #, c-format
  56. msgid "must be between %s and %s."
  57. msgstr "必须在%s和%s之间。"
  58. #: src/OptionHandlerImpl.h:215
  59. #, c-format
  60. msgid "must be smaller than or equal to %s."
  61. msgstr "必须小于或等于%s。"
  62. #: src/OptionHandlerImpl.h:221
  63. #, c-format
  64. msgid "must be greater than or equal to %s."
  65. msgstr "必须大于或等于%s。"
  66. #: src/OptionHandlerImpl.h:224 src/OptionHandlerImpl.h:302
  67. msgid "must be a number."
  68. msgstr "必须是一个数字。"
  69. #: src/OptionHandlerImpl.h:293
  70. #, c-format
  71. msgid "must be smaller than or equal to %.1f."
  72. msgstr "必须小于或等于%.1f。"
  73. #: src/OptionHandlerImpl.h:296
  74. #, c-format
  75. msgid "must be between %.1f and %.1f."
  76. msgstr "必须在%.1f 和%.1f之间。"
  77. #: src/OptionHandlerImpl.h:299
  78. #, c-format
  79. msgid "must be greater than or equal to %.1f."
  80. msgstr "必须大于或等于%.1f。"
  81. #: src/OptionHandlerImpl.h:477
  82. msgid "must be one of the following:"
  83. msgstr "必须是下列取值之一:"
  84. #: src/OptionHandlerImpl.h:526 src/OptionHandlerImpl.h:569
  85. msgid "unrecognized proxy format"
  86. msgstr "无法识别的代理格式"
  87. #: src/usage_text.h:37
  88. msgid ""
  89. " -d, --dir=DIR The directory to store the downloaded file."
  90. msgstr " -d, --dir=DIR 用于存储已下载文件的目录。"
  91. #: src/usage_text.h:39
  92. msgid " -o, --out=FILE The file name of the downloaded file."
  93. msgstr " -o, --out=FILE 已下载文件的名称。"
  94. #: src/usage_text.h:41
  95. msgid ""
  96. " -l, --log=LOG The file name of the log file. If '-' is\n"
  97. " specified, log is written to stdout."
  98. msgstr ""
  99. " -l, --log=LOG 日志文件名称。如果指定'-',\n"
  100. " 日志将被写到标准输出(通常是显示器)。"
  101. #: src/usage_text.h:44
  102. msgid ""
  103. " -D, --daemon Run as daemon. The current working directory "
  104. "will\n"
  105. " be changed to \"/\" and standard input, "
  106. "standard\n"
  107. " output and standard error will be redirected "
  108. "to\n"
  109. " \"/dev/null\"."
  110. msgstr ""
  111. #: src/usage_text.h:49
  112. msgid ""
  113. " -s, --split=N Download a file using N connections. If more\n"
  114. " than N URLs are given, first N URLs are used "
  115. "and\n"
  116. " remaining URLs are used for backup. If less "
  117. "than\n"
  118. " N URLs are given, those URLs are used more "
  119. "than\n"
  120. " once so that N connections total are made\n"
  121. " simultaneously. Please see -j option too.\n"
  122. " Please note that in Metalink download, this\n"
  123. " option has no effect and use -C option instead."
  124. msgstr ""
  125. " -s, --split=N 使用N个链接下载同一个文件。如果给定的链接多于\n"
  126. " N个,前N个链接将被使用,剩余\n"
  127. " 的链接将被用作备份。如果给定\n"
  128. " 的链接小于N个,这些链接将被\n"
  129. " 使用不只一次,因此同时会有总\n"
  130. " 计N个链接。也请参阅-j选项。\n"
  131. " 请注意,在Metalink下载中,这个\n"
  132. " 选项无效,可以使用-C选项替换。"
  133. #: src/usage_text.h:58
  134. msgid ""
  135. " --retry-wait=SEC Set the seconds to wait to retry after an "
  136. "error\n"
  137. " has occured."
  138. msgstr ""
  139. " --retry-wait=SEC 设置第二个等待以便在发生错误时重试\n"
  140. " 已经存在。"
  141. #: src/usage_text.h:61
  142. msgid " -t, --timeout=SEC Set timeout in seconds."
  143. msgstr " -t, --timeout=SEC 设置超时(以秒计)。"
  144. #: src/usage_text.h:63
  145. msgid " -m, --max-tries=N Set number of tries. 0 means unlimited."
  146. msgstr " -m, --max-tries=N 设置重试次数。0意味着不限次数。"
  147. #: src/usage_text.h:65
  148. msgid ""
  149. " --http-proxy=PROXY Use this proxy server for HTTP.\n"
  150. " See also --all-proxy option.\n"
  151. " This affects all URLs."
  152. msgstr ""
  153. " --http-proxy=PROXY 为HTTP使用此代理服务器。\n"
  154. " 也可以参阅--all-proxy选项。\n"
  155. " 此设置对所有链接有效。"
  156. #: src/usage_text.h:69
  157. msgid ""
  158. " --https-proxy=PROXY Use this proxy server for HTTPS.\n"
  159. " See also --all-proxy option.\n"
  160. " This affects all URLs."
  161. msgstr ""
  162. " --https-proxy=PROXY 为HTTPS使用此代理服务器。\n"
  163. " 也可以参阅--all-proxy选项。\n"
  164. " 此设置对所有链接有效。"
  165. #: src/usage_text.h:73
  166. msgid ""
  167. " --ftp-proxy=PROXY Use this proxy server for FTP.\n"
  168. " See also --all-proxy option.\n"
  169. " This affects all URLs."
  170. msgstr ""
  171. " --ftp-proxy=PROXY 为FTP使用此代理服务器。\n"
  172. " 也可以参阅--all-proxy选项。\n"
  173. " 此设置对所有链接有效。"
  174. #: src/usage_text.h:77
  175. msgid ""
  176. " --all-proxy=PROXY Use this proxy server for all protocols.\n"
  177. " You can override this setting and specify a\n"
  178. " proxy server for a particular protocol using\n"
  179. " --http-proxy, --https-proxy and --ftp-proxy\n"
  180. " options.\n"
  181. " This affects all URLs."
  182. msgstr ""
  183. " --all-proxy=PROXY 对于所有协议都使用此代理服务器。\n"
  184. " 您可以修改此设置并使用--http-proxy、\n"
  185. " --https-proxy和--ftp-proxy选项为\n"
  186. " 为特定的协议指定代理服务器。\n"
  187. " \n"
  188. " 此设置对所有链接有效。"
  189. #: src/usage_text.h:84
  190. msgid " --http-user=USER Set HTTP user. This affects all URLs."
  191. msgstr " --http-user=USER 设置HTTP用户。此设置对所有链接有效。"
  192. #: src/usage_text.h:86
  193. msgid " --http-passwd=PASSWD Set HTTP password. This affects all URLs."
  194. msgstr " --http-passwd=PASSWD 设置HTTP密码。此设置对所有链接有效。"
  195. #: src/usage_text.h:88
  196. msgid " --proxy-method=METHOD Set the method to use in proxy request."
  197. msgstr " --proxy-method=METHOD 设置使用在代理请求中的方法。"
  198. #: src/usage_text.h:90
  199. msgid " --referer=REFERER Set Referer. This affects all URLs."
  200. msgstr " --referer=REFERER Set 设置Referer。此设置对所有链接有效。"
  201. #: src/usage_text.h:92
  202. msgid " --ftp-user=USER Set FTP user. This affects all URLs."
  203. msgstr " --ftp-user=USER 设置FTP用户。此设置对所有链接有效。"
  204. #: src/usage_text.h:94
  205. msgid " --ftp-passwd=PASSWD Set FTP password. This affects all URLs."
  206. msgstr " --ftp-passwd=PASSWD 设置FTP密码。此设置对所有链接有效。"
  207. #: src/usage_text.h:96
  208. msgid " --ftp-type=TYPE Set FTP transfer type."
  209. msgstr " --ftp-type=TYPE 设置FTP传输类型。"
  210. #: src/usage_text.h:98
  211. msgid ""
  212. " -p, --ftp-pasv[=true|false] Use the passive mode in FTP. If false is "
  213. "given,\n"
  214. " the active mode will be used."
  215. msgstr ""
  216. " -p, --ftp-pasv[=true|false] 在FTP中使用被动模式。如果选择false,\n"
  217. " 将使用主动模式。"
  218. #: src/usage_text.h:101
  219. msgid ""
  220. " --lowest-speed-limit=SPEED Close connection if download speed is lower "
  221. "than\n"
  222. " or equal to this value(bytes per sec).\n"
  223. " 0 means aria2 does not have a lowest speed "
  224. "limit.\n"
  225. " You can append K or M(1K = 1024, 1M = 1024K).\n"
  226. " This option does not affect BitTorrent "
  227. "downloads."
  228. msgstr ""
  229. " --lowest-speed-limit=SPEED 如果下载速度低于或等于此值,则\n"
  230. " 关闭链接(b/s)。\n"
  231. " 0意味着aria2没有最低速度限制。\n"
  232. " 您可以附加K或M(1K=1024,1M=1024K)。\n"
  233. " 此选项对BT下载无效。"
  234. #: src/usage_text.h:107
  235. msgid ""
  236. " --max-overall-download-limit=SPEED Set max overall download speed in bytes/"
  237. "sec.\n"
  238. " 0 means unrestricted.\n"
  239. " You can append K or M(1K = 1024, 1M = 1024K).\n"
  240. " To limit the download speed per download, use\n"
  241. " --max-download-limit option."
  242. msgstr ""
  243. " --max-overall-download-limit=SPEED 设置最大总体下载速度,以b/秒计。\n"
  244. " 0意味着不限制。\n"
  245. " 您可以附加K或M(1K = 1024, 1M = 1024K)。\n"
  246. " 要限制每个下载的下载速度,请使用\n"
  247. " --max-download-limit选项。"
  248. #: src/usage_text.h:113
  249. msgid ""
  250. " --max-download-limit=SPEED Set max download speed per each download in\n"
  251. " bytes/sec. 0 means unrestricted.\n"
  252. " You can append K or M(1K = 1024, 1M = 1024K).\n"
  253. " To limit the overall download speed, use\n"
  254. " --max-overall-download-limit option."
  255. msgstr ""
  256. #: src/usage_text.h:119
  257. msgid ""
  258. " --file-allocation=METHOD Specify file allocation method.\n"
  259. " 'none' doesn't pre-allocate file space. "
  260. "'prealloc'\n"
  261. " pre-allocates file space before download "
  262. "begins.\n"
  263. " This may take some time depending on the size "
  264. "of\n"
  265. " the file.\n"
  266. " If you are using newer file systems such as "
  267. "ext4\n"
  268. " (with extents support), btrfs or xfs, 'falloc' "
  269. "is\n"
  270. " your best choice. It allocates large(few GiB)\n"
  271. " files almost instantly. Don't use 'falloc' "
  272. "with\n"
  273. " legacy file systems such as ext3 because it "
  274. "takes\n"
  275. " almost same time as 'prealloc' and it blocks "
  276. "aria2\n"
  277. " entirely until allocation finishes. 'falloc' "
  278. "may\n"
  279. " not be available if your system doesn't have\n"
  280. " posix_fallocate() function."
  281. msgstr ""
  282. #: src/usage_text.h:134
  283. msgid ""
  284. " --no-file-allocation-limit=SIZE No file allocation is made for files whose\n"
  285. " size is smaller than SIZE.\n"
  286. " You can append K or M(1K = 1024, 1M = 1024K)."
  287. msgstr ""
  288. " --no-file-allocation-limit=SIZE 小于SIZE大小的文件\n"
  289. " 不预先分配文件空间。\n"
  290. " 您可以附加K或M(1K=1024,1M=1024K)。"
  291. #: src/usage_text.h:138
  292. msgid ""
  293. " --enable-direct-io[=true|false] Enable directI/O, which lowers cpu usage "
  294. "while\n"
  295. " allocating files.\n"
  296. " Turn off if you encounter any error"
  297. msgstr ""
  298. " --enable-direct-io[=true|false] 启用直接I/O,在分配文件空间时,\n"
  299. " 这可以降低CPU负载。\n"
  300. " 如果遇到任何错误,请关闭。"
  301. #: src/usage_text.h:142
  302. msgid ""
  303. " --allow-overwrite=true|false If false is given, and a file already exists "
  304. "but\n"
  305. " the corresponding control file (filename."
  306. "aria2)\n"
  307. " doesn't exist, then aria2 will not re-"
  308. "download\n"
  309. " the file. See also --auto-file-renaming option."
  310. msgstr ""
  311. #: src/usage_text.h:147
  312. msgid ""
  313. " --allow-piece-length-change=true|false If false is given, aria2 aborts "
  314. "download\n"
  315. " when a piece length is different from one in\n"
  316. " a control file. If true is given, you can "
  317. "proceed\n"
  318. " but some download progress will be lost."
  319. msgstr ""
  320. " --allow-piece-length-change=true|false 如果选择false,当来自控制文件\n"
  321. " 中的片段长度不相同时,aria2会放弃下\n"
  322. " 载。如果选择true,您可以继续进行下\n"
  323. " 载,但某些下载进度会丢失。"
  324. #: src/usage_text.h:152
  325. msgid ""
  326. " -Z, --force-sequential[=true|false] Fetch URIs in the command-line "
  327. "sequentially\n"
  328. " and download each URI in a separate session, "
  329. "like\n"
  330. " the usual command-line download utilities."
  331. msgstr ""
  332. " -Z, --force-sequential[=true|false] 继续从命令行获取链接,\n"
  333. " 并以单独的会话下载每个链接,\n"
  334. " 如同常见的命令行下载工具。"
  335. #: src/usage_text.h:156
  336. msgid ""
  337. " --auto-file-renaming[=true|false] Rename file name if the same file "
  338. "already\n"
  339. " exists. This option works only in http(s)/ftp\n"
  340. " download.\n"
  341. " The new file name has a dot and a number"
  342. "(1..9999)\n"
  343. " appended."
  344. msgstr ""
  345. " --auto-file-renaming[=true|false] 如果相同名称的文件已经存在,\n"
  346. " 则重命名文件。此选项只能在\n"
  347. " http(s)/ftp下载中使用。\n"
  348. " 新的文件名将被附加一个点和数字\n"
  349. " (1至9999)。"
  350. #: src/usage_text.h:162
  351. msgid ""
  352. " -P, --parameterized-uri[=true|false] Enable parameterized URI support.\n"
  353. " You can specify set of parts:\n"
  354. " http://{sv1,sv2,sv3}/foo.iso\n"
  355. " Also you can specify numeric sequences with "
  356. "step\n"
  357. " counter:\n"
  358. " http://host/image[000-100:2].img\n"
  359. " A step counter can be omitted.\n"
  360. " If all URIs do not point to the same file, "
  361. "such\n"
  362. " as the second example above, -Z option is\n"
  363. " required."
  364. msgstr ""
  365. " -P, --parameterized-uri[=true|false] 启用对有参数URI的支持。\n"
  366. " 您可以指定某些部分:\n"
  367. " http://{sv1,sv2,sv3}/foo.iso\n"
  368. " 您也可以使用步进计数器指定数\n"
  369. " 字顺序:\n"
  370. " http://host/image[000-100:2].img\n"
  371. " 步进计数器可以被省略。\n"
  372. " 如果所有的链接没有指向同一个文件,\n"
  373. " 就像上面第二个例子一样,则需要-Z\n"
  374. " 选项。"
  375. #: src/usage_text.h:173
  376. msgid ""
  377. " --enable-http-keep-alive[=true|false] Enable HTTP/1.1 persistent connection."
  378. msgstr " --enable-http-keep-alive[=true|false] 启用HTTP/1.1持续连接。"
  379. #: src/usage_text.h:175
  380. msgid " --enable-http-pipelining[=true|false] Enable HTTP/1.1 pipelining."
  381. msgstr " --enable-http-pipelining[=true|false] 启用HTTP/1.1流水线。"
  382. #: src/usage_text.h:177
  383. msgid ""
  384. " -V, --check-integrity[=true|false] Check file integrity by validating "
  385. "piece\n"
  386. " hashes. This option has effect only in "
  387. "BitTorrent\n"
  388. " and Metalink downloads with chunk checksums.\n"
  389. " Use this option to re-download a damaged "
  390. "portion\n"
  391. " of a file. See also --bt-hash-check-seed "
  392. "option."
  393. msgstr ""
  394. " -V, --check-integrity[=true|false] 以验证片段哈希值来检查文件完整性。\n"
  395. " 此选项仅中BT和Metalink下载中选择\n"
  396. " chunk checksum(大块和)时才有效。\n"
  397. " 使用此选项可以重新下载文件的受损\n"
  398. " 坏部分。也可以参阅--bt-hash-check-seed选项。"
  399. #: src/usage_text.h:183
  400. msgid ""
  401. " --bt-hash-check-seed[=true|false] If true is given, after hash check using\n"
  402. " --check-integrity option and file is "
  403. "complete,\n"
  404. " continue to seed file. If you want to check "
  405. "file\n"
  406. " and download it only when it is damaged or\n"
  407. " incomplete, set this option to false.\n"
  408. " This option has effect only on BitTorrent\n"
  409. " download."
  410. msgstr ""
  411. " --bt-hash-check-seed[=true|false] 如果选择true,在使用--check-integrityer\n"
  412. " 选项进行哈希检查后,且文件完整时,\n"
  413. " 继续提供文件种子。如果您仅仅想检查并下\n"
  414. " 载文件,当文件被损坏或不完整时,\n"
  415. " 请设置此选项为false。\n"
  416. " 此设置仅对BT下载有效。"
  417. #: src/usage_text.h:191
  418. msgid ""
  419. " --realtime-chunk-checksum=true|false Validate chunk of data by "
  420. "calculating\n"
  421. " checksum while downloading a file if chunk\n"
  422. " checksums are provided."
  423. msgstr ""
  424. " --realtime-chunk-checksum=true|false 如果提供校验和,下载\n"
  425. " 文件时以计算检验和的方式\n"
  426. " 校验数据块。"
  427. #: src/usage_text.h:195
  428. msgid ""
  429. " -c, --continue Continue downloading a partially downloaded\n"
  430. " file. Use this option to resume a download\n"
  431. " started by a web browser or another program\n"
  432. " which downloads files sequentially from the\n"
  433. " beginning. Currently this option is only\n"
  434. " applicable to http(s)/ftp downloads."
  435. msgstr ""
  436. " -c, --continue 继续下载部分下载的文件(即续传)。\n"
  437. " 使用此选项可以从开始部分恢复继续\n"
  438. " 以前的下载,这些下载通常由网络浏\n"
  439. " 览器由其它启动。目前,此选项只对\n"
  440. " http(s)/ftp下载有效。"
  441. #: src/usage_text.h:202
  442. msgid " -U, --user-agent=USER_AGENT Set user agent for http(s) downloads."
  443. msgstr " -U, --user-agent=USER_AGENT 为http(s)下载设置用户代理。"
  444. #: src/usage_text.h:204
  445. msgid " -n, --no-netrc Disables netrc support."
  446. msgstr " -n, --no-netrc 禁止netrc支持。"
  447. #: src/usage_text.h:206
  448. msgid ""
  449. " -i, --input-file=FILE Downloads URIs found in FILE. You can specify\n"
  450. " multiple URIs for a single entity: separate\n"
  451. " URIs on a single line using the TAB "
  452. "character.\n"
  453. " Reads input from stdin when '-' is specified.\n"
  454. " The additional out and dir options can be\n"
  455. " specified after each line of URIs. This "
  456. "optional\n"
  457. " line must start with white space(s). See "
  458. "INPUT\n"
  459. " FILE section of man page for details."
  460. msgstr ""
  461. " -i, --input-file=FILE 下载在FILE中找到的链接。您可以为单个实体指定\n"
  462. " 多个链接:在同一行中使用TAB制表符\n"
  463. " 分隔多个链接。指定'-'时则从标准输\n"
  464. " 入(通常是键盘、鼠标)读取输入。\n"
  465. " 可以在每行链接的后面指定附加的out\n"
  466. " 和dir选项。此选项行以空白开始。参\n"
  467. " 阅man页面的INPUT FILE小节可以了\n"
  468. " 解详细信息。"
  469. #: src/usage_text.h:215
  470. msgid ""
  471. " -j, --max-concurrent-downloads=N Set maximum number of parallel downloads "
  472. "for\n"
  473. " every static (HTTP/FTP) URL, torrent and "
  474. "metalink.\n"
  475. " See also -s and -C options."
  476. msgstr ""
  477. " -j, --max-concurrent-downloads=N 为每个静态(HTTP/FTP)链接、torrent\n"
  478. " 和metalink设置并行下载最大数目。\n"
  479. " 也可以参阅-s和-C选项。"
  480. #: src/usage_text.h:219
  481. msgid ""
  482. " --load-cookies=FILE Load Cookies from FILE using the Firefox3 "
  483. "format\n"
  484. " and Mozilla/Firefox(1.x/2.x)/Netscape format."
  485. msgstr ""
  486. " --load-cookies=FILE 从FILE中载入Cookies,这些FILE通常使用Firefox3格式\n"
  487. " 和Mozilla/Firefox(1.x/2.x)/Netscape格式。"
  488. #: src/usage_text.h:222
  489. msgid ""
  490. " --save-cookies=FILE Save Cookies to FILE in Mozilla/Firefox(1.x/2."
  491. "x)/\n"
  492. " Netscape format. If FILE already exists, it "
  493. "is\n"
  494. " overwritten. Session Cookies are also saved "
  495. "and\n"
  496. " their expiry values are treated as 0."
  497. msgstr ""
  498. #: src/usage_text.h:227
  499. msgid ""
  500. " -S, --show-files Print file listing of .torrent or .metalink "
  501. "file\n"
  502. " and exit. More detailed information will be "
  503. "listed\n"
  504. " in case of torrent file."
  505. msgstr ""
  506. " -S, --show-files 打印.torrent或.metalink文件的列表并退出。\n"
  507. " 更多详细信息将在torrent文件\n"
  508. " 的实例中列出。"
  509. #: src/usage_text.h:231
  510. msgid ""
  511. " --select-file=INDEX... Set file to download by specifying its index.\n"
  512. " You can find the file index using the\n"
  513. " --show-files option. Multiple indexes can be\n"
  514. " specified by using ',', for example: \"3,6\".\n"
  515. " You can also use '-' to specify a range: \"1-5"
  516. "\".\n"
  517. " ',' and '-' can be used together.\n"
  518. " When used with the -M option, index may vary\n"
  519. " depending on the query(see --metalink-* "
  520. "options)."
  521. msgstr ""
  522. " --select-file=INDEX... 指定文件的索引来设定下载文件。\n"
  523. " 使用--show-files选项,您可以查\n"
  524. " 找文件索引。使用','可以指定多\n"
  525. " 个索引,例如:\"3,6\"。您也可以\n"
  526. " 使用'-'来指定一个范围:\"1-5\"。\n"
  527. " ','和'-'可以一起使用。当使用-M\n"
  528. " 选项时,索引可以由查询改变\n"
  529. " (参阅--metalink-*选项)。"
  530. #: src/usage_text.h:240
  531. msgid " -T, --torrent-file=TORRENT_FILE The path to the .torrent file."
  532. msgstr " -T, --torrent-file=TORRENT_FILE 指定.torrent文件的路径。"
  533. #: src/usage_text.h:242
  534. msgid ""
  535. " --follow-torrent=true|false|mem If true or mem is specified, when a file\n"
  536. " whose suffix is .torrent or content type is\n"
  537. " application/x-bittorrent is downloaded, aria2\n"
  538. " parses it as a torrent file and downloads "
  539. "files\n"
  540. " mentioned in it.\n"
  541. " If mem is specified, a torrent file is not\n"
  542. " written to the disk, but is just kept in "
  543. "memory.\n"
  544. " If false is specified, the action mentioned "
  545. "above\n"
  546. " is not taken."
  547. msgstr ""
  548. " --follow-torrent=true|false|mem 如果指定true或mem,当后缀为.torrent\n"
  549. " 或内容类型是application/x-bittorrent的文\n"
  550. " 件被下载时,aria2将分析其为torrent文件\n"
  551. " 并下载其中提及的文件。\n"
  552. " \n"
  553. " 如果指定mem,torrent文件不会被写入\n"
  554. " 到磁盘,但只保留在内存中。\n"
  555. " 如果指定false,上面提到的动作\n"
  556. " 将不会被采取。"
  557. #: src/usage_text.h:252
  558. msgid ""
  559. " --direct-file-mapping=true|false Directly read from and write to each file\n"
  560. " mentioned in .torrent file."
  561. msgstr ""
  562. " --direct-file-mapping=true|false 直接读写.torrent文件中\n"
  563. " 提及的每个文件。"
  564. #: src/usage_text.h:255
  565. msgid ""
  566. " --listen-port=PORT... Set TCP port number for BitTorrent downloads.\n"
  567. " Multiple ports can be specified by using ',',\n"
  568. " for example: \"6881,6885\". You can also use "
  569. "'-'\n"
  570. " to specify a range: \"6881-6999\". ',' and '-' "
  571. "can\n"
  572. " be used together."
  573. msgstr ""
  574. " --listen-port=PORT... 为BT下载设置TCP端口。\n"
  575. " 使用','可以指定多个端口,例如:\n"
  576. " \"6881,6885\"。您也可以使用'-'\n"
  577. " 指定一个范围:\"6881-6999\"。','\n"
  578. " 和'-'可以一起使用。"
  579. #: src/usage_text.h:261
  580. msgid ""
  581. " --max-overall-upload-limit=SPEED Set max overall upload speed in bytes/"
  582. "sec.\n"
  583. " 0 means unrestricted.\n"
  584. " You can append K or M(1K = 1024, 1M = 1024K).\n"
  585. " To limit the upload speed per torrent, use\n"
  586. " --max-upload-limit option."
  587. msgstr ""
  588. #: src/usage_text.h:267
  589. msgid ""
  590. " -u, --max-upload-limit=SPEED Set max upload speed per each torrent in\n"
  591. " bytes/sec. 0 means unrestricted.\n"
  592. " You can append K or M(1K = 1024, 1M = 1024K).\n"
  593. " To limit the overall upload speed, use\n"
  594. " --max-overall-upload-limit option."
  595. msgstr ""
  596. " -u, --max-upload-limit=SPEED 设置每个torrent上传速度最大值(b/s)。\n"
  597. " 0意味着不限制。\n"
  598. " 您可以附加K或M(1K=1024,1M=1024K)。\n"
  599. " 要限制总体上传速度,使用\n"
  600. " --max-overall-upload-limit option.选项。"
  601. #: src/usage_text.h:273
  602. msgid ""
  603. " --seed-time=MINUTES Specify seeding time in minutes. Also see the\n"
  604. " --seed-ratio option."
  605. msgstr ""
  606. " --seed-time=MINUTES 指定做种时间(以分钟计)。也可以\n"
  607. " 参阅--seed-ratio选项。"
  608. #: src/usage_text.h:276
  609. msgid ""
  610. " --seed-ratio=RATIO Specify share ratio. Seed completed torrents\n"
  611. " until share ratio reaches RATIO.\n"
  612. " You are strongly encouraged to specify equals "
  613. "or\n"
  614. " more than 1.0 here. Specify 0.0 if you intend "
  615. "to\n"
  616. " do seeding regardless of share ratio.\n"
  617. " If --seed-time option is specified along with\n"
  618. " this option, seeding ends when at least one "
  619. "of\n"
  620. " the conditions is satisfied."
  621. msgstr ""
  622. " --seed-ratio=RATIO 指定共享比率种子完成torrents,直到共\n"
  623. " 享比率达到RATIO。支持您\n"
  624. " 在此指定等于或大于1.0。如\n"
  625. " 果您愿意不在意共享比率而\n"
  626. " 做种子,则指定0.0。如果与\n"
  627. " 此选项同时,指定--seed-time\n"
  628. " 选项,在链接中至少有一个被\n"
  629. " 满足时,做种结束。"
  630. #: src/usage_text.h:285
  631. msgid ""
  632. " --peer-id-prefix=PEER_ID_PREFIX Specify the prefix of peer ID. The peer ID "
  633. "in\n"
  634. " BitTorrent is 20 byte length. If more than 20\n"
  635. " bytes are specified, only first 20 bytes are\n"
  636. " used. If less than 20 bytes are specified, "
  637. "random\n"
  638. " byte data are added to make its length 20 "
  639. "bytes."
  640. msgstr ""
  641. #: src/usage_text.h:291
  642. msgid " --enable-peer-exchange[=true|false] Enable Peer Exchange extension."
  643. msgstr " --enable-peer-exchange[=true|false] 启用Peer交换扩展。"
  644. #: src/usage_text.h:293
  645. msgid " --enable-dht[=true|false] Enable DHT functionality."
  646. msgstr " --enable-dht[=true|false] 启用DHT功能。"
  647. #: src/usage_text.h:295
  648. msgid ""
  649. " --dht-listen-port=PORT... Set UDP listening port for DHT.\n"
  650. " Multiple ports can be specified by using ',',\n"
  651. " for example: \"6881,6885\". You can also use "
  652. "'-'\n"
  653. " to specify a range: \"6881-6999\". ',' and '-' "
  654. "can\n"
  655. " be used together."
  656. msgstr ""
  657. " --dht-listen-port=PORT... 为DHT设置UDP侦听端口。\n"
  658. " 使用','可以指定多个端口,例\n"
  659. " 如:\"6881,6885\"。您也可以使\n"
  660. " 用'-'指定一个范围:\"6881-6999\"。\n"
  661. " ','和'-'可以一起使用。"
  662. #: src/usage_text.h:301
  663. msgid ""
  664. " --dht-entry-point=HOST:PORT Set host and port as an entry point to DHT\n"
  665. " network."
  666. msgstr ""
  667. " --dht-entry-point=HOST:PORT 设置主机和端口作为进入DHT网络的进入点。\n"
  668. " 网络的进入点。"
  669. #: src/usage_text.h:304
  670. msgid ""
  671. " --dht-file-path=PATH Change the DHT routing table file to PATH."
  672. msgstr " --dht-file-path=PATH 修改DHT路由表文件,保存到PATH。"
  673. #: src/usage_text.h:306
  674. msgid ""
  675. " --bt-min-crypto-level=plain|arc4 Set minimum level of encryption method.\n"
  676. " If several encryption methods are provided by "
  677. "a\n"
  678. " peer, aria2 chooses the lowest one which "
  679. "satisfies\n"
  680. " the given level."
  681. msgstr ""
  682. " --bt-min-crypto-level=plain|arc4 设置加密方法的最小级别。\n"
  683. " 如果某个peer提供几个加密方法,\n"
  684. " aria2会选择满足给定级别中最低\n"
  685. " 的一个。"
  686. #: src/usage_text.h:311
  687. msgid ""
  688. " --bt-require-crypto=true|false If true is given, aria2 doesn't accept and\n"
  689. " establish connection with legacy BitTorrent\n"
  690. " handshake. Thus aria2 always uses Obfuscation\n"
  691. " handshake."
  692. msgstr ""
  693. " --bt-require-crypto=true|false 如果选择true,aria2将不会\n"
  694. " 和遗留的握手接受并建立\n"
  695. " 连接。因此aria2问题使用\n"
  696. " 模糊握手。"
  697. #: src/usage_text.h:316
  698. msgid ""
  699. " --bt-request-peer-speed-limit=SPEED If the whole download speed of every\n"
  700. " torrent is lower than SPEED, aria2 "
  701. "temporarily\n"
  702. " increases the number of peers to try for more\n"
  703. " download speed. Configuring this option with "
  704. "your\n"
  705. " preferred download speed can increase your\n"
  706. " download speed in some cases.\n"
  707. " You can append K or M(1K = 1024, 1M = 1024K)."
  708. msgstr ""
  709. " --bt-request-peer-speed-limit=SPEED 如果每个torrent的总下载速\n"
  710. " 度低于SPEED,aria2会临时提高peer\n"
  711. " 数目来尝试更大的下载速度。使用\n"
  712. " 您喜欢的下载速度来配置此选项,\n"
  713. " 在某些时候能够提高下载速度。\n"
  714. " \n"
  715. " 您可以附加K或M(1K=1024,1M=1024K)。"
  716. #: src/usage_text.h:324
  717. msgid ""
  718. " --bt-max-open-files=NUM Specify maximum number of files to open in "
  719. "each\n"
  720. " BitTorrent download."
  721. msgstr ""
  722. " --bt-max-open-files=NUM 指定每个BT下载可以打开的\n"
  723. " 文件的最多数目。"
  724. #: src/usage_text.h:327
  725. msgid ""
  726. " --bt-seed-unverified[=true|false] Seed previously downloaded files without\n"
  727. " verifying piece hashes."
  728. msgstr ""
  729. " --bt-seed-unverified[=true|false] 不验证片段的哈希值,直接以上\n"
  730. " 一个下载文件做种子。"
  731. #: src/usage_text.h:330
  732. msgid ""
  733. " --bt-max-peers=NUM Specify the maximum number of peers per "
  734. "torrent.\n"
  735. " 0 means unlimited.\n"
  736. " See also --bt-request-peer-speed-limit option."
  737. msgstr ""
  738. " --bt-max-peers=NUM 指定每个torrent的peer的最大数目。\n"
  739. " 0意味着不限制。\n"
  740. " 也可以参阅--bt-request-peer-speed-limit选项。"
  741. #: src/usage_text.h:334
  742. #, fuzzy
  743. msgid ""
  744. " -M, --metalink-file=METALINK_FILE The file path to the .metalink file. "
  745. "Reads\n"
  746. " input from stdin when '-' is specified."
  747. msgstr " -M, --metalink-file=METALINK_FILE 到.metalink文件的文件路径。"
  748. #: src/usage_text.h:337
  749. msgid ""
  750. " -C, --metalink-servers=NUM_SERVERS The number of servers to connect to\n"
  751. " simultaneously. Some Metalinks regulate the\n"
  752. " number of servers to connect. aria2 strictly\n"
  753. " respects them. This means that if Metalink "
  754. "defines\n"
  755. " the maxconnections attribute lower than\n"
  756. " NUM_SERVERS, then aria2 uses the value of\n"
  757. " maxconnections attribute instead of "
  758. "NUM_SERVERS.\n"
  759. " See also -s and -j options."
  760. msgstr ""
  761. " -C, --metalink-servers=NUM_SERVERS 同时连接的服务器数目。\n"
  762. " 有些Metalink对连接的服务器数目\n"
  763. " 有要求。aria2严格遵守这些要求。\n"
  764. " 这意味着如果Metalink定义的最大\n"
  765. " 连接数目低于NUM_SERVERS,\n"
  766. " aria2将以定义的最大连接数目代\n"
  767. " 替NUM_SERVERS。\n"
  768. " 也可以参阅-s和-j选项。"
  769. #: src/usage_text.h:346
  770. msgid " --metalink-version=VERSION The version of the file to download."
  771. msgstr " --metalink-version=VERSION 要下载的文件的版本。"
  772. #: src/usage_text.h:348
  773. msgid " --metalink-language=LANGUAGE The language of the file to download."
  774. msgstr " --metalink-language=LANGUAGE 要下载的文件的语言。"
  775. #: src/usage_text.h:350
  776. msgid ""
  777. " --metalink-os=OS The operating system of the file to download."
  778. msgstr " --metalink-os=OS 要下载的文件的操作系统。"
  779. #: src/usage_text.h:352
  780. msgid ""
  781. " --metalink-location=LOCATION[,...] The location of the preferred server.\n"
  782. " A comma-delimited list of locations is\n"
  783. " acceptable."
  784. msgstr ""
  785. " --metalink-location=LOCATION[,...] 首选服务器的位置。\n"
  786. " 可以使用以英文逗号分隔\n"
  787. " 位置的列表。"
  788. #: src/usage_text.h:356
  789. msgid ""
  790. " --metalink-preferred-protocol=PROTO Specify preferred protocol. Specify "
  791. "'none'\n"
  792. " if you don't have any preferred protocol."
  793. msgstr ""
  794. " --metalink-preferred-protocol=PROTO 指定首选的协议。如果没\n"
  795. " 有首选协议,请指定'none'。"
  796. #: src/usage_text.h:359
  797. #, fuzzy
  798. msgid ""
  799. " --follow-metalink=true|false|mem If true or mem is specified, when a file\n"
  800. " whose suffix is .metalink or content type of\n"
  801. " application/metalink+xml is downloaded, aria2\n"
  802. " parses it as a metalink file and downloads "
  803. "files\n"
  804. " mentioned in it.\n"
  805. " If mem is specified, a metalink file is not\n"
  806. " written to the disk, but is just kept in "
  807. "memory.\n"
  808. " If false is specified, the action mentioned "
  809. "above\n"
  810. " is not taken."
  811. msgstr ""
  812. " --follow-metalink=true|false|mem 如果指定true或mem,当下载后缀为\n"
  813. " .metaink或内容类型为\n"
  814. " application/metalink+xml的文件时,\n"
  815. " aria2将分析其为metalink文件并其中的\n"
  816. " 文件。\n"
  817. " 如果指定mem,metalink文件将不被写\n"
  818. " 入磁盘,但只保留其在内存当中。\n"
  819. " 如果指定false,将不会采取上述提及\n"
  820. " 的动作。"
  821. #: src/usage_text.h:369
  822. msgid ""
  823. " --metalink-enable-unique-protocol=true|false If true is given and several\n"
  824. " protocols are available for a mirror in a "
  825. "metalink\n"
  826. " file, aria2 uses one of them.\n"
  827. " Use --metalink-preferred-protocol option to\n"
  828. " specify the preference of protocol."
  829. msgstr ""
  830. " --metalink-enable-unique-protocol=true|false 如果给定true,并且metalink中的"
  831. "几个协议\n"
  832. " 有效对于镜像, \n"
  833. " aria2将使用其中之一。\n"
  834. " 使用--metalink-preferred-protocol选项可\n"
  835. " 以指定协议的首选项。"
  836. #: src/usage_text.h:375
  837. msgid " -v, --version Print the version number and exit."
  838. msgstr " -v, --version 打印版本号并退出。"
  839. #: src/usage_text.h:377
  840. msgid ""
  841. " -h, --help[=TAG|KEYWORD] Print usage and exit.\n"
  842. " The help messages are classified with tags. A "
  843. "tag\n"
  844. " starts with \"#\". For example, type \"--"
  845. "help=#http\"\n"
  846. " to get the usage for the options tagged with\n"
  847. " \"#http\". If non-tag word is given, print the "
  848. "usage\n"
  849. " for the options whose name includes that word."
  850. msgstr ""
  851. #: src/usage_text.h:384
  852. msgid " --no-conf Disable loading aria2.conf file."
  853. msgstr " --no-conf 禁止加载aria2.conf文件。"
  854. #: src/usage_text.h:386
  855. msgid ""
  856. " --conf-path=PATH Change the configuration file path to PATH."
  857. msgstr " --conf-path=PATH 将配置文件的路径修改为PATH的值。"
  858. #: src/usage_text.h:388
  859. msgid ""
  860. " --stop=SEC Stop application after SEC seconds has "
  861. "passed.\n"
  862. " If 0 is given, this feature is disabled."
  863. msgstr ""
  864. " --stop=SEC 在经过SEC秒之后停止程序。\n"
  865. " 如果给定的值是0,此功能将被禁止。"
  866. #: src/usage_text.h:391
  867. msgid ""
  868. " --header=HEADER Append HEADER to HTTP request header. You can "
  869. "use\n"
  870. " this option repeatedly to specify more than "
  871. "one\n"
  872. " header:\n"
  873. " aria2c --header=\"X-A: b78\" --header=\"X-B: "
  874. "9J1\"\n"
  875. " http://host/file"
  876. msgstr ""
  877. " --header=HEADER 附加HEADER到HTTP请求header。您可以\n"
  878. " 重复使用此选项来指定多个\n"
  879. " header,比如:\n"
  880. " aria2c --header=\"X-A: b78\" --header=\"X-B: "
  881. "9J1\"\n"
  882. " http://host/file"
  883. #: src/usage_text.h:397
  884. msgid " -q, --quiet[=true|false] Make aria2 quiet(no console output)."
  885. msgstr " -q, --quiet[=true|false] 使aria2安静(即不在控制台输出)。"
  886. #: src/usage_text.h:399
  887. msgid " --async-dns[=true|false] Enable asynchronous DNS."
  888. msgstr " --async-dns[=true|false] 启用异步DNS。"
  889. #: src/usage_text.h:401
  890. msgid " --ftp-reuse-connection[=true|false] Reuse connection in FTP."
  891. msgstr " --ftp-reuse-connection[=true|false] 重新使用FTP中的链接。"
  892. #: src/usage_text.h:403
  893. msgid ""
  894. " --summary-interval=SEC Set interval to output download progress "
  895. "summary.\n"
  896. " Setting 0 suppresses the output."
  897. msgstr ""
  898. " --summary-interval=SEC 设置下载过程摘要的输出间隔。\n"
  899. " 设置0会禁止输出。"
  900. #: src/usage_text.h:406
  901. msgid " --log-level=LEVEL Set log level to output."
  902. msgstr " --log-level=LEVEL 设置输出的日志级别。"
  903. #: src/usage_text.h:408
  904. msgid ""
  905. " -R, --remote-time[=true|false] Retrieve timestamp of the remote file from "
  906. "the\n"
  907. " remote HTTP/FTP server and if it is "
  908. "available,\n"
  909. " apply it to the local file."
  910. msgstr ""
  911. " -R, --remote-time[=true|false] 从远程HTTP/FTP服务器检索远程\n"
  912. " 文件的时间戳以及其是否有效,将\n"
  913. " 之应用到本地文件。"
  914. #: src/usage_text.h:412
  915. msgid ""
  916. " --connect-timeout=SEC Set the connect timeout in seconds to "
  917. "establish\n"
  918. " connection to HTTP/FTP/proxy server. After "
  919. "the\n"
  920. " connection is established, this option makes "
  921. "no\n"
  922. " effect and --timeout option is used instead."
  923. msgstr ""
  924. " --connect-timeout=SEC 设置建立到HTTP/FTP/代理服务器的\n"
  925. " 链接超时(以秒计)。在链\n"
  926. " 接建立之后,此选项将失效\n"
  927. " 并以--timeout选项替代。"
  928. #: src/usage_text.h:417
  929. msgid ""
  930. " --max-file-not-found=NUM If aria2 receives `file not found' status from "
  931. "the\n"
  932. " remote HTTP/FTP servers NUM times without "
  933. "getting\n"
  934. " a single byte, then force the download to "
  935. "fail.\n"
  936. " Specify 0 to disable this option.\n"
  937. " This options is effective only when using\n"
  938. " HTTP/FTP servers."
  939. msgstr ""
  940. " --max-file-not-found=NUM 如果aria2从远程HTTP/FTP服务器收到\n"
  941. " `未发现文件'状态达到NUM次,没\n"
  942. " 有下载到1byte,则强制结束下载。\n"
  943. " 指定0则禁止此选项。\n"
  944. " 此选项仅在使用HTTP/FTP服务器\n"
  945. " 时有效。"
  946. #: src/usage_text.h:424
  947. msgid ""
  948. " --uri-selector=SELECTOR Specify URI selection algorithm.\n"
  949. " If 'inorder' is given, URI is tried in the "
  950. "order\n"
  951. " appeared in the URI list.\n"
  952. " If 'feedback' is given, aria2 uses download "
  953. "speed\n"
  954. " observed in the previous downloads and choose\n"
  955. " fastest server in the URI list. This also\n"
  956. " effectively skips dead mirrors. The observed\n"
  957. " download speed is a part of performance "
  958. "profile\n"
  959. " of servers mentioned in --server-stat-of and\n"
  960. " --server-stat-if options.\n"
  961. " If 'adaptive' is given, selects one of the "
  962. "best\n"
  963. " mirrors for the first and reserved "
  964. "connections.\n"
  965. " For supplementary ones, it returns mirrors "
  966. "which\n"
  967. " has not been tested yet, and if each of them "
  968. "has\n"
  969. " already been tested, returns mirrors which has "
  970. "to\n"
  971. " be tested again. Otherwise, it doesn't select\n"
  972. " anymore mirrors. Like 'feedback', it uses a\n"
  973. " performance profile of servers."
  974. msgstr ""
  975. " --uri-selector=SELECTOR 指定URI选择算法。\n"
  976. " 如果给定'inorder',将以URI列表\n"
  977. " 中显示的顺序尝试URI。\n"
  978. " 如果给定'feedback',aria2将使用\n"
  979. " 在上个下载中监测到的下载速度并\n"
  980. " 选择URI列表中最快的服务器。这\n"
  981. " 也可以有效地跳过死镜像。监测到\n"
  982. " 的下载速度是--server-stat-of和\n"
  983. " --server-stat-if选项中提到的服务\n"
  984. " 器性能配置文件的一部分。\n"
  985. " 如果给定'adaptive',则为第一个\n"
  986. " 和保留的链接选择最好的镜像。\n"
  987. " 对于追回的一个,将返回未经测试\n"
  988. " 的镜像,并且,如果如果它们中的\n"
  989. " 每一个都经过测,则返回经过再次\n"
  990. " 测试的镜像。否则,不再选择镜像。\n"
  991. " 就像'feedback',将使用服务器的\n"
  992. " 性能配置文件。"
  993. #: src/usage_text.h:443
  994. msgid ""
  995. " --server-stat-of=FILE Specify the filename to which performance "
  996. "profile\n"
  997. " of the servers is saved. You can load saved "
  998. "data\n"
  999. " using --server-stat-if option."
  1000. msgstr ""
  1001. " --server-stat-of=FILE 指定服务器保存的性能配置文件的名称。\n"
  1002. " 您也可以使用--server-stat-if\n"
  1003. " 选项加载保存的数据。"
  1004. #: src/usage_text.h:447
  1005. msgid ""
  1006. " --server-stat-if=FILE Specify the filename to load performance "
  1007. "profile\n"
  1008. " of the servers. The loaded data will be used "
  1009. "in\n"
  1010. " some URI selector such as 'feedback'.\n"
  1011. " See also --uri-selector option"
  1012. msgstr ""
  1013. " --server-stat-if=FILE 指定要加载的服务器的性能配置文件的名称。\n"
  1014. " 加载的数据将被用在\n"
  1015. " 某些URI选择器之中,比如'feedback'。\n"
  1016. " 也可以参阅--uri-selector选项"
  1017. #: src/usage_text.h:452
  1018. msgid ""
  1019. " --server-stat-timeout=SEC Specifies timeout in seconds to invalidate\n"
  1020. " performance profile of the servers since the "
  1021. "last\n"
  1022. " contact to them."
  1023. msgstr ""
  1024. " --server-stat-timeout=SEC 指定自从上次连接服务器以\n"
  1025. " 来,废止性能配置文件\n"
  1026. " 的超时(以秒计)。"
  1027. #: src/usage_text.h:456
  1028. msgid ""
  1029. " --auto-save-interval=SEC Save a control file(*.aria2) every SEC "
  1030. "seconds.\n"
  1031. " If 0 is given, a control file is not saved "
  1032. "during\n"
  1033. " download. aria2 saves a control file when it "
  1034. "stops\n"
  1035. " regardless of the value."
  1036. msgstr ""
  1037. #: src/usage_text.h:461
  1038. msgid ""
  1039. " --certificate=FILE Use the client certificate in FILE.\n"
  1040. " The certificate must be in PEM format.\n"
  1041. " You may use --private-key option to specify "
  1042. "the\n"
  1043. " private key."
  1044. msgstr ""
  1045. #: src/usage_text.h:466
  1046. msgid ""
  1047. " --private-key=FILE Use the private key in FILE.\n"
  1048. " The private key must be decrypted and in PEM\n"
  1049. " format. See also --certificate option."
  1050. msgstr ""
  1051. #: src/usage_text.h:470
  1052. msgid ""
  1053. " --ca-certificate=FILE Use the certificate authorities in FILE to "
  1054. "verify\n"
  1055. " the peers. The certificate file must be in "
  1056. "PEM\n"
  1057. " format and can contain multiple CA "
  1058. "certificates.\n"
  1059. " Use --check-certificate option to enable\n"
  1060. " verification."
  1061. msgstr ""
  1062. #: src/usage_text.h:476
  1063. msgid ""
  1064. " --check-certificate[=true|false] Verify the peer using certificates "
  1065. "specified\n"
  1066. " in --ca-certificate option."
  1067. msgstr ""
  1068. #: src/usage_text.h:479
  1069. msgid ""
  1070. " --no-proxy=DOMAINS Specify comma separated hostnames or domains "
  1071. "where\n"
  1072. " proxy should not be used."
  1073. msgstr ""
  1074. #: src/usage_text.h:482
  1075. msgid ""
  1076. " --use-head[=true|false] Use HEAD method for the first request to the "
  1077. "HTTP\n"
  1078. " server."
  1079. msgstr ""
  1080. #: src/usage_text.h:485
  1081. msgid " --event-poll=POLL Specify the method for polling events."
  1082. msgstr ""
  1083. #: src/usage_text.h:487
  1084. msgid ""
  1085. " --xml-rpc-listen-port=PORT Specify a port number for XML-RPC server to "
  1086. "listen\n"
  1087. " to."
  1088. msgstr ""
  1089. #: src/usage_text.h:490
  1090. msgid ""
  1091. " --enable-xml-rpc[=true|false] Enable XML-RPC server.\n"
  1092. " It is strongly recommended to set username "
  1093. "and\n"
  1094. " password using --xml-rpc-user and --xml-rpc-"
  1095. "passwd\n"
  1096. " option. See also --xml-rpc-listen-port option."
  1097. msgstr ""
  1098. #: src/usage_text.h:495
  1099. msgid ""
  1100. " --xml-rpc-max-request-size=SIZE Set max size of XML-RPC request. If aria2\n"
  1101. " detects the request is more than SIZE bytes, "
  1102. "it\n"
  1103. " drops connection."
  1104. msgstr ""
  1105. #: src/usage_text.h:499
  1106. msgid " --xml-rpc-user=USER Set XML-RPC user."
  1107. msgstr ""
  1108. #: src/usage_text.h:501
  1109. msgid " --xml-rpc-passwd=PASSWD Set XML-RPC password."
  1110. msgstr ""
  1111. #: src/usage_text.h:503
  1112. msgid ""
  1113. " --bt-external-ip=IPADDRESS Specify the external IP address to report to "
  1114. "a\n"
  1115. " BitTorrent tracker. Although this function is\n"
  1116. " named 'external', it can accept any kind of "
  1117. "IP\n"
  1118. " addresses."
  1119. msgstr ""
  1120. #: src/usage_text.h:508
  1121. msgid ""
  1122. " --http-auth-challenge[=true|false] Send HTTP authorization header only when "
  1123. "it\n"
  1124. " is requested by the server. If false is set, "
  1125. "then\n"
  1126. " authorization header is always sent to the "
  1127. "server.\n"
  1128. " There is an exception: if username and "
  1129. "password\n"
  1130. " are embedded in URI, authorization header is\n"
  1131. " always sent to the server regardless of this\n"
  1132. " option."
  1133. msgstr ""
  1134. #: src/usage_text.h:516
  1135. msgid ""
  1136. " -O, --index-out=INDEX=PATH Set file path for file with index=INDEX. You "
  1137. "can\n"
  1138. " find the file index using the --show-files "
  1139. "option.\n"
  1140. " PATH is a relative path to the path specified "
  1141. "in\n"
  1142. " --dir option. You can use this option "
  1143. "multiple\n"
  1144. " times."
  1145. msgstr ""
  1146. #: src/usage_text.h:522
  1147. msgid ""
  1148. " --dry-run[=true|false] If true is given, aria2 just checks whether "
  1149. "the\n"
  1150. " remote file is available and doesn't download\n"
  1151. " data. This option has effect on HTTP/FTP "
  1152. "download.\n"
  1153. " BitTorrent downloads are canceled if true is\n"
  1154. " specified."
  1155. msgstr ""
  1156. #: src/usage_text.h:528
  1157. msgid ""
  1158. " --bt-tracker-interval=SEC Set the interval in seconds between tracker\n"
  1159. " requests. This completely overrides interval "
  1160. "value\n"
  1161. " and aria2 just uses this value and ignores "
  1162. "the\n"
  1163. " min interval and interval value in the "
  1164. "response of\n"
  1165. " tracker. If 0 is set, aria2 determines "
  1166. "interval\n"
  1167. " based on the response of tracker and the "
  1168. "download\n"
  1169. " progress."
  1170. msgstr ""
  1171. #: src/usage_text.h:536
  1172. msgid ""
  1173. " --on-download-complete=COMMAND Set the command to be executed when "
  1174. "download\n"
  1175. " completes.\n"
  1176. " See --on-download-start option for the\n"
  1177. " requirement of COMMAND.\n"
  1178. " See also --on-download-stop option."
  1179. msgstr ""
  1180. #: src/usage_text.h:542
  1181. msgid ""
  1182. " --on-download-start=COMMAND Set the command to be executed when download\n"
  1183. " starts up. COMMAND must take just one argument "
  1184. "and\n"
  1185. " GID is passed to COMMAND as a first argument."
  1186. msgstr ""
  1187. #: src/usage_text.h:546
  1188. msgid ""
  1189. " --on-download-error=COMMAND Set the command to be executed when download\n"
  1190. " aborts due to error.\n"
  1191. " See --on-download-start option for the\n"
  1192. " requirement of COMMAND.\n"
  1193. " See also --on-download-stop option."
  1194. msgstr ""
  1195. #: src/usage_text.h:552
  1196. msgid ""
  1197. " --on-download-stop=COMMAND Set the command to be executed when download\n"
  1198. " stops. You can override the command to be "
  1199. "executed\n"
  1200. " for particular download result using\n"
  1201. " --on-download-complete and --on-download-"
  1202. "error. If\n"
  1203. " they are specified, command specified in this\n"
  1204. " option is not executed.\n"
  1205. " See --on-download-start option for the\n"
  1206. " requirement of COMMAND."
  1207. msgstr ""
  1208. #: src/usage_text.h:561
  1209. msgid ""
  1210. " --bt-stop-timeout=SEC Stop BitTorrent download if download speed is "
  1211. "0 in\n"
  1212. " consecutive SEC seconds. If 0 is given, this\n"
  1213. " feature is disabled."
  1214. msgstr ""
  1215. #: src/usage_text.h:565
  1216. msgid ""
  1217. " --xml-rpc-listen-all[=true|false] Listen incoming XML-RPC requests on all\n"
  1218. " network interfaces. If false is given, listen "
  1219. "only\n"
  1220. " on local loopback interface."
  1221. msgstr ""
  1222. #: src/usage_text.h:569
  1223. msgid ""
  1224. " --bt-prioritize-piece=head[=SIZE],tail[=SIZE] Try to download first and "
  1225. "last\n"
  1226. " pieces of each file first. This is useful for\n"
  1227. " previewing files. The argument can contain 2\n"
  1228. " keywords:head and tail. To include both "
  1229. "keywords,\n"
  1230. " they must be separated by comma. These "
  1231. "keywords\n"
  1232. " can take one parameter, SIZE. For example, if\n"
  1233. " head=SIZE is specified, pieces in the range "
  1234. "of\n"
  1235. " first SIZE bytes of each file get higher "
  1236. "priority.\n"
  1237. " tail=SIZE means the range of last SIZE bytes "
  1238. "of\n"
  1239. " each file. SIZE can include K or M(1K = 1024, "
  1240. "1M =\n"
  1241. " 1024K). If SIZE is omitted, SIZE=1M is used."
  1242. msgstr ""
  1243. #: src/usage_text.h:581
  1244. msgid ""
  1245. " --interface=INTERFACE Bind sockets to given interface. You can "
  1246. "specify\n"
  1247. " interface name, IP address and hostname."
  1248. msgstr ""
  1249. #: src/usage_text.h:584
  1250. msgid " --disable-ipv6[=true|false] Disable IPv6."
  1251. msgstr ""
  1252. #: src/usage_text.h:586
  1253. msgid ""
  1254. " --bt-save-metadata[=true|false] Save metadata as .torrent file. This option "
  1255. "has\n"
  1256. " effect only when BitTorrent Magnet URI is "
  1257. "used.\n"
  1258. " The filename is hex encoded info hash with "
  1259. "suffix\n"
  1260. " .torrent. The directory to be saved is the "
  1261. "same\n"
  1262. " directory where download file is saved. If "
  1263. "the\n"
  1264. " same file already exists, metadata is not "
  1265. "saved."
  1266. msgstr ""
  1267. #: src/version_usage.cc:57
  1268. msgid " version "
  1269. msgstr ""
  1270. #: src/version_usage.cc:80
  1271. #, c-format
  1272. msgid "Report bugs to %s"
  1273. msgstr ""
  1274. #: src/version_usage.cc:85
  1275. msgid ""
  1276. "Usage: aria2c [OPTIONS] [URI | MAGNET | TORRENT_FILE | METALINK_FILE]..."
  1277. msgstr ""
  1278. #: src/version_usage.cc:92
  1279. msgid "Printing all options."
  1280. msgstr ""
  1281. #: src/version_usage.cc:94
  1282. #, c-format
  1283. msgid "Printing options tagged with '%s'."
  1284. msgstr ""
  1285. #: src/version_usage.cc:98
  1286. #, c-format
  1287. msgid "See -h option to know other command-line options(%s)."
  1288. msgstr ""
  1289. #: src/version_usage.cc:103 src/version_usage.cc:115
  1290. msgid "Options:"
  1291. msgstr ""
  1292. #: src/version_usage.cc:112
  1293. #, c-format
  1294. msgid "Printing options whose name includes '%s'."
  1295. msgstr ""
  1296. #: src/version_usage.cc:120
  1297. #, c-format
  1298. msgid "No option matching with '%s'."
  1299. msgstr ""
  1300. #: src/version_usage.cc:128
  1301. msgid ""
  1302. " You can specify multiple HTTP(S)/FTP URIs. Unless you specify -Z option, "
  1303. "all\n"
  1304. " URIs must point to the same file or downloading will fail."
  1305. msgstr ""
  1306. #: src/version_usage.cc:130
  1307. msgid ""
  1308. " You can also specify arbitrary number of BitTorrent Magnet URIs, torrent/\n"
  1309. " metalink files stored in a local drive. Please note that they are always\n"
  1310. " treated as a separate download."
  1311. msgstr ""
  1312. #: src/version_usage.cc:135
  1313. msgid ""
  1314. " You can specify both torrent file with -T option and URIs. By doing this,\n"
  1315. " download a file from both torrent swarm and HTTP/FTP server at the same "
  1316. "time,\n"
  1317. " while the data from HTTP/FTP are uploaded to the torrent swarm. For single "
  1318. "file\n"
  1319. " torrents, URI can be a complete URI pointing to the resource or if URI "
  1320. "ends\n"
  1321. " with '/', 'name' in torrent file is added. For multi-file torrents, 'name' "
  1322. "and\n"
  1323. " 'path' in torrent are added to form a URI for each file."
  1324. msgstr ""
  1325. #: src/version_usage.cc:142
  1326. msgid ""
  1327. " Make sure that URI is quoted with single(') or double(\") quotation if it\n"
  1328. " contains \"&\" or any characters that have special meaning in shell."
  1329. msgstr ""
  1330. #: src/version_usage.cc:146
  1331. msgid "Refer to man page for more information."
  1332. msgstr ""
  1333. #: src/message.h:40
  1334. #, c-format
  1335. msgid "CUID#%d - The download for one segment completed successfully."
  1336. msgstr "CUID#%d - 一个分块的下载成功的完成了."
  1337. #: src/message.h:41
  1338. #, c-format
  1339. msgid "CUID#%d - No segment available."
  1340. msgstr "CUID#%d - 已经没有多余的分块"
  1341. #: src/message.h:42
  1342. #, c-format
  1343. msgid "CUID#%d - Connecting to %s:%d"
  1344. msgstr "CUID#%d - 连接到 %s:%d"
  1345. #: src/message.h:43
  1346. #, c-format
  1347. msgid ""
  1348. "CUID#%d - The segment changed. We send the request again with new Range "
  1349. "header."
  1350. msgstr "CUID#%d - 分块发生变化。将使用新的范围报头再次发送请求。"
  1351. #: src/message.h:44
  1352. #, c-format
  1353. msgid "CUID#%d - Redirecting to %s"
  1354. msgstr "CUID#%d - 重定向到%s"
  1355. #: src/message.h:45
  1356. #, c-format
  1357. msgid ""
  1358. "CUID#%d - Requesting:\n"
  1359. "%s"
  1360. msgstr ""
  1361. "CUID#%d - 正在请求:\n"
  1362. "%s"
  1363. #: src/message.h:46
  1364. #, c-format
  1365. msgid ""
  1366. "CUID#%d - Response received:\n"
  1367. "%s"
  1368. msgstr ""
  1369. "CUID#%d - 收到应答:\n"
  1370. "%s"
  1371. #: src/message.h:47
  1372. #, c-format
  1373. msgid "CUID#%d - Download aborted. URI=%s"
  1374. msgstr "CUID#%d - 下载中断。URI=%s"
  1375. #: src/message.h:48
  1376. #, c-format
  1377. msgid "CUID#%d - Restarting the download. URI=%s"
  1378. msgstr "CUID#%d - 重新开始下载。URI=%s"
  1379. #: src/message.h:49
  1380. #, c-format
  1381. msgid "CUID#%d - Download aborted."
  1382. msgstr "CUID#%d - 下载中断。"
  1383. #: src/message.h:50
  1384. #, c-format
  1385. msgid "CUID#%d - %d times attempted, but no success. Download aborted."
  1386. msgstr "CUID#%d - %d 次尝试均告失败.下载终止."
  1387. #: src/message.h:56
  1388. #, c-format
  1389. msgid "CUID#%d - we got new piece. index=%d"
  1390. msgstr "CUID#%d - 获得新的分片. index=%d"
  1391. #: src/message.h:57
  1392. #, c-format
  1393. msgid "CUID#%d - we got wrong piece. index=%d"
  1394. msgstr "CUID#%d - 获得错误的分片. index=%d"
  1395. #: src/message.h:58
  1396. #, c-format
  1397. msgid "CUID#%d - Download not complete: %s"
  1398. msgstr "CUID#%d - 下载未完成: %s"
  1399. #: src/message.h:59
  1400. #, c-format
  1401. msgid "#%d - Download has already completed: %s"
  1402. msgstr "#%d - 下载已完成: %s"
  1403. #: src/message.h:60
  1404. #, c-format
  1405. msgid "CUID#%d - Good checksum: %s"
  1406. msgstr "CUID#%d - 正确的校验和: %s"
  1407. #: src/message.h:61
  1408. #, c-format
  1409. msgid "CUID#%d - Bad checksum: %s"
  1410. msgstr "CUID#%d - 错误的校验和: %s"
  1411. #: src/message.h:62
  1412. #, c-format
  1413. msgid "CUID#%d - Resolving hostname %s"
  1414. msgstr "CUID#%d - 正在解析主机名 %s"
  1415. #: src/message.h:63
  1416. #, c-format
  1417. msgid "CUID#%d - Name resolution complete: %s -> %s"
  1418. msgstr "CUID#%d - 名字解析完成: %s -> %s"
  1419. #: src/message.h:64
  1420. #, c-format
  1421. msgid "CUID#%d - Name resolution for %s failed:%s"
  1422. msgstr "CUID#%d - %s的名字解析失败,原因:%s"
  1423. #: src/message.h:65
  1424. #, c-format
  1425. msgid "CUID#%d - DNS cache hit: %s -> %s"
  1426. msgstr "CUID#%d - DNS cache 命中: %s -> %s"
  1427. #: src/message.h:66
  1428. #, c-format
  1429. msgid "CUID#%d - Abort requested."
  1430. msgstr "CUID#%d - 被请求中止。"
  1431. #: src/message.h:67
  1432. #, c-format
  1433. msgid "CUID#%d - Connecting to the peer %s"
  1434. msgstr ""
  1435. #: src/message.h:68
  1436. #, c-format
  1437. msgid ""
  1438. "CUID#%d - Piece received. index=%d, begin=%d, length=%d, offset=%llu, "
  1439. "blockIndex=%d"
  1440. msgstr "CUID#%d - 接收的块。索引=%d,开始=%d,长度=%d,补偿=%llu,块索引=%d"
  1441. #: src/message.h:69
  1442. #, c-format
  1443. msgid "CUID#%d - Piece bitfield %s"
  1444. msgstr ""
  1445. #: src/message.h:70
  1446. #, c-format
  1447. msgid ""
  1448. "CUID#%d - Reject piece message in queue because the peer has been choked. "
  1449. "index=%d, begin=%d, length=%d"
  1450. msgstr ""
  1451. "CUID#%d - 拒绝队列中的块信息,因为对等机已经被堵塞。索引=%d,开始=%d,长度=%d"
  1452. #: src/message.h:71
  1453. #, c-format
  1454. msgid ""
  1455. "CUID#%d - Reject piece message in queue because cancel message received. "
  1456. "index=%d, begin=%d, length=%d"
  1457. msgstr ""
  1458. "CUID#%d - 拒绝队列中的块信息,因为取消了信息接收。索引=%d,开始=%d,长度=%d"
  1459. #: src/message.h:72
  1460. #, c-format
  1461. msgid "CUID#%d - Exception caught while validating file integrity."
  1462. msgstr "CUID#%d - 在确认文件完整时,例外被捕获。"
  1463. #: src/message.h:73
  1464. #, c-format
  1465. msgid "CUID#%d - Interested in the peer"
  1466. msgstr ""
  1467. #: src/message.h:74
  1468. #, c-format
  1469. msgid "CUID#%d - Not interested in the peer"
  1470. msgstr ""
  1471. #: src/message.h:75
  1472. #, c-format
  1473. msgid "CUID#%d - Deleting request slot index=%d, blockIndex=%d"
  1474. msgstr ""
  1475. #: src/message.h:76
  1476. #, c-format
  1477. msgid ""
  1478. "CUID#%d - Deleting request slot index=%d, blockIndex=%d because localhost "
  1479. "got choked."
  1480. msgstr ""
  1481. #: src/message.h:77
  1482. #, c-format
  1483. msgid "CUID#%d - Deleting request slot blockIndex=%d because of time out"
  1484. msgstr ""
  1485. #: src/message.h:78
  1486. #, c-format
  1487. msgid ""
  1488. "CUID#%d - Deleting request slot blockIndex=%d because the block has been "
  1489. "acquired."
  1490. msgstr ""
  1491. #: src/message.h:79
  1492. #, c-format
  1493. msgid "CUID#%d - Fast extension enabled."
  1494. msgstr ""
  1495. #: src/message.h:80
  1496. #, c-format
  1497. msgid "CUID#%d - Extended Messaging enabled."
  1498. msgstr ""
  1499. #: src/message.h:81
  1500. #, c-format
  1501. msgid "CUID#%d - Exception caught while allocating file space."
  1502. msgstr ""
  1503. #: src/message.h:82
  1504. #, c-format
  1505. msgid "CUID#%d - Content-Disposition detected. Use %s as filename"
  1506. msgstr ""
  1507. #: src/message.h:83
  1508. #, c-format
  1509. msgid "CUID#%d - Peer %s:%d banned."
  1510. msgstr ""
  1511. #: src/message.h:84
  1512. #, c-format
  1513. msgid "CUID#%d - Using port %d for accepting new connections"
  1514. msgstr ""
  1515. #: src/message.h:85
  1516. #, c-format
  1517. msgid "CUID#%d - An error occurred while binding port=%d"
  1518. msgstr ""
  1519. #: src/message.h:86
  1520. #, c-format
  1521. msgid "CUID#%d - Incoming connection, adding new command CUID#%d"
  1522. msgstr ""
  1523. #: src/message.h:87
  1524. #, c-format
  1525. msgid "CUID#%d - Error in accepting connection"
  1526. msgstr ""
  1527. #: src/message.h:88
  1528. #, c-format
  1529. msgid "CUID#%d - Error occurred while processing tracker response."
  1530. msgstr ""
  1531. #: src/message.h:89
  1532. #, c-format
  1533. msgid "CUID#%d - Cannot create tracker request."
  1534. msgstr ""
  1535. #: src/message.h:90
  1536. #, c-format
  1537. msgid "CUID#%d - Creating new tracker request command #%d"
  1538. msgstr ""
  1539. #: src/message.h:91
  1540. #, c-format
  1541. msgid "CUID#%d - The peer is DHT-enabled."
  1542. msgstr ""
  1543. #: src/message.h:95
  1544. #, c-format
  1545. msgid "Unrecognized URI or unsupported protocol: %s"
  1546. msgstr ""
  1547. #: src/message.h:96
  1548. #, c-format
  1549. msgid "Tracker returned warning message: %s"
  1550. msgstr ""
  1551. #: src/message.h:97
  1552. #, c-format
  1553. msgid "The segment file %s exists."
  1554. msgstr ""
  1555. #: src/message.h:98
  1556. #, c-format
  1557. msgid "The segment file %s does not exist."
  1558. msgstr ""
  1559. #: src/message.h:99
  1560. #, c-format
  1561. msgid "Saving the segment file %s"
  1562. msgstr ""
  1563. #: src/message.h:100
  1564. msgid "The segment file was saved successfully."
  1565. msgstr ""
  1566. #: src/message.h:101
  1567. #, c-format
  1568. msgid "Loading the segment file %s."
  1569. msgstr ""
  1570. #: src/message.h:102
  1571. msgid "The segment file was loaded successfully."
  1572. msgstr ""
  1573. #: src/message.h:103
  1574. msgid "No URI to download. Download aborted."
  1575. msgstr ""
  1576. #: src/message.h:104
  1577. #, c-format
  1578. msgid ""
  1579. "File %s exists, but a control file(*.aria2) does not exist. Download was "
  1580. "canceled in order to prevent your file from being truncated to 0. If you are "
  1581. "sure to download the file all over again, then delete it or add --allow-"
  1582. "overwrite=true option and restart aria2."
  1583. msgstr ""
  1584. #: src/message.h:105
  1585. #, c-format
  1586. msgid "Allocating file %s, %s bytes"
  1587. msgstr ""
  1588. #: src/message.h:106
  1589. msgid "File not found"
  1590. msgstr ""
  1591. #: src/message.h:107
  1592. msgid "Not a directory"
  1593. msgstr ""
  1594. #: src/message.h:108
  1595. #, c-format
  1596. msgid "Insufficient checksums. checksumLength=%d, numChecksum=%d"
  1597. msgstr ""
  1598. #: src/message.h:109
  1599. #, c-format
  1600. msgid "Writing file %s"
  1601. msgstr ""
  1602. #: src/message.h:110
  1603. msgid "No peer list received."
  1604. msgstr ""
  1605. #: src/message.h:111
  1606. #, c-format
  1607. msgid "Adding peer %s:%d"
  1608. msgstr ""
  1609. #: src/message.h:112
  1610. #, c-format
  1611. msgid "Deleting used piece index=%d, fillRate(%%)=%d<=%d"
  1612. msgstr ""
  1613. #: src/message.h:113
  1614. msgid "Download of selected files was complete."
  1615. msgstr ""
  1616. #: src/message.h:114
  1617. msgid "The download was complete."
  1618. msgstr ""
  1619. #: src/message.h:115
  1620. #, c-format
  1621. msgid "Removed %d have entries."
  1622. msgstr ""
  1623. #: src/message.h:116
  1624. #, c-format
  1625. msgid "Validating file %s"
  1626. msgstr ""
  1627. #: src/message.h:117
  1628. #, c-format
  1629. msgid "%d seconds to allocate %s byte(s)"
  1630. msgstr ""
  1631. #: src/message.h:118
  1632. #, c-format
  1633. msgid "Dispatching FileAllocationCommand for CUID#%d."
  1634. msgstr ""
  1635. #: src/message.h:119
  1636. #, c-format
  1637. msgid "Metalink: Queueing %s for download."
  1638. msgstr ""
  1639. #: src/message.h:120
  1640. #, c-format
  1641. msgid "Download complete: %s"
  1642. msgstr ""
  1643. #: src/message.h:121
  1644. msgid "Seeding is over."
  1645. msgstr ""
  1646. #: src/message.h:122
  1647. #, c-format
  1648. msgid "CUID#%d cancels segment index=%d. CUID#%d handles it instead."
  1649. msgstr ""
  1650. #: src/message.h:123
  1651. msgid "No chunk to verify."
  1652. msgstr ""
  1653. #: src/message.h:124
  1654. #, c-format
  1655. msgid "Good chunk checksum. hash=%s"
  1656. msgstr ""
  1657. #: src/message.h:125
  1658. #, c-format
  1659. msgid "Failed to load cookies from %s"
  1660. msgstr ""
  1661. #: src/message.h:126
  1662. #, c-format
  1663. msgid ""
  1664. ".netrc file %s does not have correct permissions. It should be 600. netrc "
  1665. "support disabled."
  1666. msgstr ""
  1667. #: src/message.h:127
  1668. msgid "Logging started."
  1669. msgstr ""
  1670. #: src/message.h:128
  1671. msgid "Specify at least one URL."
  1672. msgstr ""
  1673. #: src/message.h:129
  1674. msgid "daemon failed."
  1675. msgstr ""
  1676. #: src/message.h:130
  1677. #, c-format
  1678. msgid "Verification finished successfully. file=%s"
  1679. msgstr ""
  1680. #: src/message.h:131
  1681. #, c-format
  1682. msgid "Checksum error detected. file=%s"
  1683. msgstr ""
  1684. #: src/message.h:132
  1685. #, c-format
  1686. msgid "Incomplete range specified. %s"
  1687. msgstr ""
  1688. #: src/message.h:133
  1689. #, c-format
  1690. msgid "Failed to convert string into value: %s"
  1691. msgstr ""
  1692. #: src/message.h:134
  1693. msgid "Resource not found"
  1694. msgstr ""
  1695. #: src/message.h:135
  1696. #, c-format
  1697. msgid "File already exists. Renamed to %s."
  1698. msgstr ""
  1699. #: src/message.h:136
  1700. msgid "Cannot parse metalink XML file. XML may be malformed."
  1701. msgstr ""
  1702. #: src/message.h:137
  1703. #, c-format
  1704. msgid "Too small payload size for %s, size=%d."
  1705. msgstr ""
  1706. #: src/message.h:138
  1707. #, c-format
  1708. msgid ""
  1709. "Removed the defunct control file %s because the download file %s doesn't "
  1710. "exist."
  1711. msgstr ""
  1712. #: src/message.h:139
  1713. #, c-format
  1714. msgid "Your share ratio was %.1f, uploaded/downloaded=%sB/%sB"
  1715. msgstr ""
  1716. #: src/message.h:140
  1717. #, c-format
  1718. msgid "Missing %s in torrent metainfo."
  1719. msgstr ""
  1720. #: src/message.h:141
  1721. msgid "Tracker returned null data."
  1722. msgstr ""
  1723. #: src/message.h:142
  1724. msgid "Windows socket library initialization failed"
  1725. msgstr ""
  1726. #: src/message.h:143
  1727. #, c-format
  1728. msgid "%d second(s) has passed. Stopping application."
  1729. msgstr ""
  1730. #: src/message.h:144
  1731. #, c-format
  1732. msgid ""
  1733. "Saved signature as %s. Please note that aria2 doesn't verify signatures."
  1734. msgstr ""
  1735. #: src/message.h:146
  1736. #, c-format
  1737. msgid "Saving signature as %s failed. Maybe file already exists."
  1738. msgstr ""
  1739. #: src/message.h:149
  1740. #, c-format
  1741. msgid "Failed to open ServerStat file %s for read."
  1742. msgstr ""
  1743. #: src/message.h:150
  1744. #, c-format
  1745. msgid "ServerStat file %s loaded successfully."
  1746. msgstr ""
  1747. #: src/message.h:151
  1748. #, c-format
  1749. msgid "Failed to read ServerStat from %s."
  1750. msgstr ""
  1751. #: src/message.h:154
  1752. #, c-format
  1753. msgid "Failed to open ServerStat file %s for write."
  1754. msgstr ""
  1755. #: src/message.h:155
  1756. #, c-format
  1757. msgid "ServerStat file %s saved successfully."
  1758. msgstr ""
  1759. #: src/message.h:156
  1760. #, c-format
  1761. msgid "Failed to write ServerStat to %s."
  1762. msgstr ""
  1763. #: src/message.h:159
  1764. #, c-format
  1765. msgid "Failed to establish connection, cause: %s"
  1766. msgstr ""
  1767. #: src/message.h:160
  1768. #, c-format
  1769. msgid "Network problem has occurred. cause:%s"
  1770. msgstr ""
  1771. #: src/message.h:162
  1772. #, c-format
  1773. msgid "Failed to load trusted CA certificates from %s. Cause: %s"
  1774. msgstr ""
  1775. #: src/message.h:164
  1776. #, c-format
  1777. msgid "Certificate verification failed. Cause: %s"
  1778. msgstr ""
  1779. #: src/message.h:165
  1780. msgid "No certificate found."
  1781. msgstr ""
  1782. #: src/message.h:166
  1783. msgid "Hostname not match."
  1784. msgstr ""
  1785. #: src/message.h:167
  1786. msgid "No files to download."
  1787. msgstr ""
  1788. #: src/message.h:169
  1789. msgid ""
  1790. "You may encounter the certificate verification error with HTTPS server. See "
  1791. "--ca-certificate and --check-certificate option."
  1792. msgstr ""
  1793. #: src/message.h:171
  1794. #, c-format
  1795. msgid "Printing the contents of file '%s'..."
  1796. msgstr ""
  1797. #: src/message.h:172
  1798. msgid "This file is neither Torrent nor Metalink file. Skipping."
  1799. msgstr ""
  1800. #: src/message.h:177
  1801. #, c-format
  1802. msgid "Is '%s' a file?"
  1803. msgstr ""
  1804. #: src/message.h:178
  1805. #, c-format
  1806. msgid "Failed to find given interface %s, cause: %s"
  1807. msgstr ""
  1808. #: src/message.h:180
  1809. #, c-format
  1810. msgid "Saved metadata as %s."
  1811. msgstr ""
  1812. #: src/message.h:181
  1813. #, c-format
  1814. msgid "Saving metadata as %s failed. Maybe file already exists."
  1815. msgstr ""
  1816. #: src/message.h:184
  1817. msgid "Timeout."
  1818. msgstr ""
  1819. #: src/message.h:185
  1820. msgid "Invalid chunk size."
  1821. msgstr ""
  1822. #: src/message.h:186
  1823. #, c-format
  1824. msgid "Too large chunk. size=%d"
  1825. msgstr ""
  1826. #: src/message.h:187
  1827. msgid "Invalid header."
  1828. msgstr ""
  1829. #: src/message.h:188
  1830. msgid "Invalid response."
  1831. msgstr ""
  1832. #: src/message.h:189
  1833. msgid "No header found."
  1834. msgstr ""
  1835. #: src/message.h:190
  1836. msgid "No status header."
  1837. msgstr ""
  1838. #: src/message.h:191
  1839. msgid "Proxy connection failed."
  1840. msgstr ""
  1841. #: src/message.h:192
  1842. msgid "Connection failed."
  1843. msgstr ""
  1844. #: src/message.h:193
  1845. #, c-format
  1846. msgid ""
  1847. "The requested filename and the previously registered one are not same. "
  1848. "Expected:%s Actual:%s"
  1849. msgstr ""
  1850. #: src/message.h:194
  1851. #, c-format
  1852. msgid "The response status is not successful. status=%d"
  1853. msgstr ""
  1854. #: src/message.h:195
  1855. #, c-format
  1856. msgid "Too large file size. size=%s"
  1857. msgstr ""
  1858. #: src/message.h:196
  1859. #, c-format
  1860. msgid "Transfer encoding %s is not supported."
  1861. msgstr ""
  1862. #: src/message.h:197
  1863. #, c-format
  1864. msgid "SSL initialization failed: %s"
  1865. msgstr ""
  1866. #: src/message.h:198
  1867. msgid "SSL I/O error"
  1868. msgstr ""
  1869. #: src/message.h:199
  1870. msgid "SSL protocol error"
  1871. msgstr ""
  1872. #: src/message.h:200
  1873. #, c-format
  1874. msgid "SSL unknown error %d"
  1875. msgstr ""
  1876. #: src/message.h:201
  1877. #, c-format
  1878. msgid "SSL initialization failed: OpenSSL connect error %d"
  1879. msgstr ""
  1880. #: src/message.h:202
  1881. #, c-format
  1882. msgid "Size mismatch Expected:%s Actual:%s"
  1883. msgstr ""
  1884. #: src/message.h:203
  1885. msgid "Authorization failed."
  1886. msgstr ""
  1887. #: src/message.h:204
  1888. msgid "Got EOF from the server."
  1889. msgstr ""
  1890. #: src/message.h:205
  1891. msgid "Got EOF from peer."
  1892. msgstr ""
  1893. #: src/message.h:206
  1894. msgid "Malformed meta info."
  1895. msgstr ""
  1896. #: src/message.h:208
  1897. #, c-format
  1898. msgid "Failed to open the file %s, cause: %s"
  1899. msgstr ""
  1900. #: src/message.h:209
  1901. #, c-format
  1902. msgid "Failed to write into the file %s, cause: %s"
  1903. msgstr ""
  1904. #: src/message.h:210
  1905. #, c-format
  1906. msgid "Failed to read from the file %s, cause: %s"
  1907. msgstr ""
  1908. #: src/message.h:211
  1909. msgid "Failed to read data from disk."
  1910. msgstr ""
  1911. #: src/message.h:212
  1912. #, c-format
  1913. msgid "Failed to calculate SHA1 digest of or a part of the file %s, cause: %s"
  1914. msgstr ""
  1915. #: src/message.h:213
  1916. #, c-format
  1917. msgid "Failed to seek the file %s, cause: %s"
  1918. msgstr ""
  1919. #: src/message.h:214
  1920. #, c-format
  1921. msgid "The offset is out of range, offset=%s"
  1922. msgstr ""
  1923. #: src/message.h:215
  1924. #, c-format
  1925. msgid "%s is not a directory."
  1926. msgstr ""
  1927. #: src/message.h:216
  1928. #, c-format
  1929. msgid "Failed to make the directory %s, cause: %s"
  1930. msgstr ""
  1931. #: src/message.h:217
  1932. #, c-format
  1933. msgid "Failed to open the segment file %s, cause: %s"
  1934. msgstr ""
  1935. #: src/message.h:218
  1936. #, c-format
  1937. msgid "Failed to write into the segment file %s, cause: %s"
  1938. msgstr ""
  1939. #: src/message.h:219
  1940. #, c-format
  1941. msgid "Failed to read from the segment file %s, cause: %s"
  1942. msgstr ""
  1943. #: src/message.h:221
  1944. #, c-format
  1945. msgid "Failed to open a socket, cause: %s"
  1946. msgstr ""
  1947. #: src/message.h:222
  1948. #, c-format
  1949. msgid "Failed to set a socket option, cause: %s"
  1950. msgstr ""
  1951. #: src/message.h:223
  1952. #, c-format
  1953. msgid "Failed to set a socket as blocking, cause: %s"
  1954. msgstr ""
  1955. #: src/message.h:224
  1956. #, c-format
  1957. msgid "Failed to set a socket as non-blocking, cause: %s"
  1958. msgstr ""
  1959. #: src/message.h:225
  1960. #, c-format
  1961. msgid "Failed to bind a socket, cause: %s"
  1962. msgstr ""
  1963. #: src/message.h:226
  1964. #, c-format
  1965. msgid "Failed to listen to a socket, cause: %s"
  1966. msgstr ""
  1967. #: src/message.h:227
  1968. #, c-format
  1969. msgid "Failed to accept a peer connection, cause: %s"
  1970. msgstr ""
  1971. #: src/message.h:228
  1972. #, c-format
  1973. msgid "Failed to get the name of socket, cause: %s"
  1974. msgstr ""
  1975. #: src/message.h:229
  1976. #, c-format
  1977. msgid "Failed to get the name of connected peer, cause: %s"
  1978. msgstr ""
  1979. #: src/message.h:230
  1980. #, c-format
  1981. msgid "Failed to resolve the hostname %s, cause: %s"
  1982. msgstr ""
  1983. #: src/message.h:231
  1984. #, c-format
  1985. msgid "Failed to connect to the host %s, cause: %s"
  1986. msgstr ""
  1987. #: src/message.h:232
  1988. #, c-format
  1989. msgid "Failed to check whether the socket is writable, cause: %s"
  1990. msgstr ""
  1991. #: src/message.h:233
  1992. #, c-format
  1993. msgid "Failed to check whether the socket is readable, cause: %s"
  1994. msgstr ""
  1995. #: src/message.h:234
  1996. #, c-format
  1997. msgid "Failed to send data, cause: %s"
  1998. msgstr ""
  1999. #: src/message.h:235
  2000. #, c-format
  2001. msgid "Failed to receive data, cause: %s"
  2002. msgstr ""
  2003. #: src/message.h:236
  2004. #, c-format
  2005. msgid "Failed to peek data, cause: %s"
  2006. msgstr ""
  2007. #: src/message.h:237
  2008. #, c-format
  2009. msgid "Unknown socket error %d (0x%x)"
  2010. msgstr ""
  2011. #: src/message.h:238
  2012. #, c-format
  2013. msgid "File %s exists, but %s does not exist."
  2014. msgstr ""
  2015. #: src/message.h:239
  2016. #, c-format
  2017. msgid "Invalid payload size for %s, size=%d. It should be %d."
  2018. msgstr ""
  2019. #: src/message.h:240
  2020. #, c-format
  2021. msgid "Invalid ID=%d for %s. It should be %d."
  2022. msgstr ""
  2023. #: src/message.h:241
  2024. #, c-format
  2025. msgid ""
  2026. "Chunk checksum validation failed. checksumIndex=%d, offset=%s, expectedHash=%"
  2027. "s, actualHash=%s"
  2028. msgstr ""
  2029. #: src/message.h:242
  2030. msgid "Download aborted."
  2031. msgstr ""
  2032. #: src/message.h:243
  2033. #, c-format
  2034. msgid "File %s is being downloaded by other command."
  2035. msgstr ""
  2036. #: src/message.h:244
  2037. msgid "Insufficient checksums."
  2038. msgstr ""
  2039. #: src/message.h:245
  2040. #, c-format
  2041. msgid "Tracker returned failure reason: %s"
  2042. msgstr ""
  2043. #: src/message.h:246
  2044. msgid "Flooding detected."
  2045. msgstr ""
  2046. #: src/message.h:247
  2047. #, c-format
  2048. msgid ""
  2049. "Drop connection because no request/piece messages were exchanged in a "
  2050. "certain period(%d seconds)."
  2051. msgstr ""
  2052. #: src/message.h:248
  2053. msgid "The infoHash in torrent file doesn't match to one in .aria2 file."
  2054. msgstr ""
  2055. #: src/message.h:249
  2056. #, c-format
  2057. msgid "No such file entry %s"
  2058. msgstr ""
  2059. #: src/message.h:250
  2060. #, c-format
  2061. msgid "Too slow Downloading speed: %d <= %d(B/s), host:%s"
  2062. msgstr ""
  2063. #: src/message.h:251
  2064. msgid "No HttpRequestEntry found."
  2065. msgstr ""
  2066. #: src/message.h:252
  2067. #, c-format
  2068. msgid "Got %d status, but no location header provided."
  2069. msgstr ""
  2070. #: src/message.h:253
  2071. #, c-format
  2072. msgid "Invalid range header. Request: %s-%s/%s, Response: %s-%s/%s"
  2073. msgstr ""
  2074. #: src/message.h:254
  2075. msgid "No file matched with your preference."
  2076. msgstr ""
  2077. #: src/message.h:255
  2078. msgid "Exception caught"
  2079. msgstr ""
  2080. #: src/message.h:256
  2081. #, c-format
  2082. msgid "Max payload length exceeded or invalid. length = %u"
  2083. msgstr ""
  2084. #: src/message.h:257
  2085. #, c-format
  2086. msgid "Invalid file length. Cannot continue download %s: local %s, remote %s"
  2087. msgstr ""
  2088. #: src/BtSetup.cc:161
  2089. msgid "Errors occurred while binding port.\n"
  2090. msgstr "绑定端口时发生错误。\n"
  2091. #~ msgid ""
  2092. #~ " --http-auth-scheme=SCHEME Set HTTP authentication scheme. Currently, "
  2093. #~ "basic\n"
  2094. #~ " is the only supported scheme."
  2095. #~ msgstr ""
  2096. #~ " --http-auth-scheme=SCHEME 设置HTTP验证方案。当前,基本的\n"
  2097. #~ " 是仅支持的方案。"