zh_CN.po 82 KB

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