zh_CN.po 82 KB

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