zh_CN.po 105 KB

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