zh_CN.po 77 KB

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