zh_CN.po 101 KB

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