zh_TW.po 58 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959
  1. # Traditional Chinese translation for aria2
  2. # Copyright (c) 2008 Rosetta Contributors and Canonical Ltd 2008
  3. # This file is distributed under the same license as the aria2 package.
  4. # FIRST AUTHOR <EMAIL@ADDRESS>, 2008.
  5. #
  6. msgid ""
  7. msgstr ""
  8. "Project-Id-Version: aria2\n"
  9. "Report-Msgid-Bugs-To: http://aria2.sourceforge.net/\n"
  10. "POT-Creation-Date: 2009-02-01 13:03+0900\n"
  11. "PO-Revision-Date: 2008-10-08 08:24+0000\n"
  12. "Last-Translator: snufkinto <Unknown>\n"
  13. "Language-Team: Traditional Chinese <zh_TW@li.org>\n"
  14. "MIME-Version: 1.0\n"
  15. "Content-Type: text/plain; charset=UTF-8\n"
  16. "Content-Transfer-Encoding: 8bit\n"
  17. "X-Launchpad-Export-Date: 2008-10-14 11:24+0000\n"
  18. "X-Generator: Launchpad (build Unknown)\n"
  19. #: src/DownloadEngine.cc:208
  20. msgid ""
  21. "Shutdown sequence commencing... Press Ctrl-C again for emergency shutdown."
  22. msgstr "關閉序列開始...如要緊急關閉,請再次按Ctrl-C。"
  23. #: src/DownloadEngine.cc:214
  24. msgid "Emergency shutdown sequence commencing..."
  25. msgstr "緊急關閉序列開始..."
  26. #: src/MultiUrlRequestInfo.cc:96
  27. msgid "aria2 will resume download if the transfer is restarted."
  28. msgstr "aria2將於傳輸重新開始後恢復下載。"
  29. #: src/MultiUrlRequestInfo.cc:98
  30. msgid ""
  31. "If there are any errors, then see the log file. See '-l' option in help/man "
  32. "page for details."
  33. msgstr ""
  34. "如有錯誤,請查看日誌記錄檔案。詳細資訊請參考幫助/man page內的 '-l' 選項。"
  35. #: src/RequestGroupMan.cc:417
  36. msgid "Download Results:"
  37. msgstr "下載結果:"
  38. #: src/RequestGroupMan.cc:458
  39. msgid "Status Legend:"
  40. msgstr "狀態說明:"
  41. #: src/OptionHandler.cc:38
  42. msgid " Default: "
  43. msgstr " 預設值: "
  44. #: src/OptionHandler.cc:39
  45. msgid " Tags: "
  46. msgstr " 標籤: "
  47. #: src/OptionHandler.cc:40
  48. msgid " Possible Values: "
  49. msgstr " 有效值: "
  50. #: src/OptionHandlerImpl.h:99
  51. msgid "must be either 'true' or 'false'."
  52. msgstr "必須為'true'或'false'。"
  53. #: src/OptionHandlerImpl.h:130 src/OptionHandlerImpl.h:177
  54. #, c-format
  55. msgid "must be between %s and %s."
  56. msgstr "必須在%s和%s之間。"
  57. #: src/OptionHandlerImpl.h:174
  58. #, c-format
  59. msgid "must be smaller than or equal to %s."
  60. msgstr "必須小於或等於%s。"
  61. #: src/OptionHandlerImpl.h:180
  62. #, c-format
  63. msgid "must be greater than or equal to %s."
  64. msgstr "必須大於或等於%s。"
  65. #: src/OptionHandlerImpl.h:183 src/OptionHandlerImpl.h:246
  66. msgid "must be a number."
  67. msgstr "必須是一個數字。"
  68. #: src/OptionHandlerImpl.h:237
  69. #, c-format
  70. msgid "must be smaller than or equal to %.1f."
  71. msgstr "必須小於或等於%.1f。"
  72. #: src/OptionHandlerImpl.h:240
  73. #, c-format
  74. msgid "must be between %.1f and %.1f."
  75. msgstr "必須在%.1f和%.1f之間。"
  76. #: src/OptionHandlerImpl.h:243
  77. #, c-format
  78. msgid "must be greater than or equal to %.1f."
  79. msgstr "必須大於或等於%.1f。"
  80. #: src/OptionHandlerImpl.h:380
  81. msgid "must be one of the following:"
  82. msgstr "必須為以下其中之一:"
  83. #: src/OptionHandlerImpl.h:427 src/OptionHandlerImpl.h:468
  84. msgid "unrecognized proxy format"
  85. msgstr "無法識別的代理伺服器格式"
  86. #: src/usage_text.h:37
  87. msgid ""
  88. " -d, --dir=DIR The directory to store the downloaded file."
  89. msgstr " -d, --dir=DIR 指定儲存下載檔案的目錄。"
  90. #: src/usage_text.h:39
  91. msgid " -o, --out=FILE The file name of the downloaded file."
  92. msgstr " -o, --out=FILE 指定儲存下載檔案的名稱。"
  93. #: src/usage_text.h:41
  94. msgid ""
  95. " -l, --log=LOG The file name of the log file. If '-' is\n"
  96. " specified, log is written to stdout."
  97. msgstr ""
  98. #: src/usage_text.h:44
  99. msgid " -D, --daemon Run as daemon."
  100. msgstr " -D, --daemon 背景運行。"
  101. #: src/usage_text.h:46
  102. msgid ""
  103. " -s, --split=N Download a file using N connections. If more\n"
  104. " than N URLs are given, first N URLs are used "
  105. "and\n"
  106. " remaining URLs are used for backup. If less "
  107. "than\n"
  108. " N URLs are given, those URLs are used more "
  109. "than\n"
  110. " once so that N connections total are made\n"
  111. " simultaneously. Please see -j option too.\n"
  112. " Please note that in Metalink download, this\n"
  113. " option has no effect and use -C option instead."
  114. msgstr ""
  115. #: src/usage_text.h:55
  116. msgid ""
  117. " --retry-wait=SEC Set the seconds to wait to retry after an "
  118. "error\n"
  119. " has occured."
  120. msgstr ""
  121. #: src/usage_text.h:58
  122. msgid " -t, --timeout=SEC Set timeout in seconds."
  123. msgstr " -t, --timeout=SEC 設定超時(秒)。"
  124. #: src/usage_text.h:60
  125. msgid " -m, --max-tries=N Set number of tries. 0 means unlimited."
  126. msgstr " -m, --max-tries=N 設定重試次數,0表示不限次數。"
  127. #: src/usage_text.h:62
  128. msgid ""
  129. " --http-proxy=PROXY Use this proxy server for HTTP.\n"
  130. " See also --all-proxy option.\n"
  131. " This affects all URLs."
  132. msgstr ""
  133. #: src/usage_text.h:66
  134. msgid ""
  135. " --https-proxy=PROXY Use this proxy server for HTTPS.\n"
  136. " See also --all-proxy option.\n"
  137. " This affects all URLs."
  138. msgstr ""
  139. #: src/usage_text.h:70
  140. msgid ""
  141. " --ftp-proxy=PROXY Use this proxy server for FTP.\n"
  142. " See also --all-proxy option.\n"
  143. " This affects all URLs."
  144. msgstr ""
  145. #: src/usage_text.h:74
  146. msgid ""
  147. " --all-proxy=PROXY Use this proxy server for all protocols.\n"
  148. " You can override this setting and specify a\n"
  149. " proxy server for a particular protocol using\n"
  150. " --http-proxy, --https-proxy and --ftp-proxy\n"
  151. " options.\n"
  152. " This affects all URLs."
  153. msgstr ""
  154. #: src/usage_text.h:81
  155. msgid " --http-user=USER Set HTTP user. This affects all URLs."
  156. msgstr " --http-user=USER 設定HTTP用戶(對所有URL有效)。"
  157. #: src/usage_text.h:83
  158. msgid " --http-passwd=PASSWD Set HTTP password. This affects all URLs."
  159. msgstr " --http-passwd=PASSWD 設定HTTP密碼(對所有URL有效)。"
  160. #: src/usage_text.h:85
  161. #, fuzzy
  162. msgid " --proxy-method=METHOD Set the method to use in proxy request."
  163. msgstr " --http-proxy-method=METHOD 設定代理請求所使用的方法。"
  164. #: src/usage_text.h:87
  165. msgid ""
  166. " --http-auth-scheme=SCHEME Set HTTP authentication scheme. Currently, "
  167. "basic\n"
  168. " is the only supported scheme."
  169. msgstr ""
  170. #: src/usage_text.h:90
  171. msgid " --referer=REFERER Set Referer. This affects all URLs."
  172. msgstr " --referer=REFERER 設定Referer(對所有URL有效)。"
  173. #: src/usage_text.h:92
  174. msgid " --ftp-user=USER Set FTP user. This affects all URLs."
  175. msgstr " --ftp-user=USER 設定FTP用戶(對所有URL有效)。"
  176. #: src/usage_text.h:94
  177. msgid " --ftp-passwd=PASSWD Set FTP password. This affects all URLs."
  178. msgstr " --ftp-passwd=PASSWD 設定FTP密碼(對所有URL有效)。"
  179. #: src/usage_text.h:96
  180. msgid " --ftp-type=TYPE Set FTP transfer type."
  181. msgstr " --ftp-type=TYPE 設定FTP傳輸類型。"
  182. #: src/usage_text.h:98
  183. msgid ""
  184. " -p, --ftp-pasv[=true|false] Use the passive mode in FTP. If false is "
  185. "given,\n"
  186. " the active mode will be used."
  187. msgstr ""
  188. #: src/usage_text.h:101
  189. msgid ""
  190. " --lowest-speed-limit=SPEED Close connection if download speed is lower "
  191. "than\n"
  192. " or equal to this value(bytes per sec).\n"
  193. " 0 means aria2 does not have a lowest speed "
  194. "limit.\n"
  195. " You can append K or M(1K = 1024, 1M = 1024K).\n"
  196. " This option does not affect BitTorrent "
  197. "downloads."
  198. msgstr ""
  199. #: src/usage_text.h:107
  200. msgid ""
  201. " --max-download-limit=SPEED Set max download speed in bytes per sec.\n"
  202. " 0 means unrestricted.\n"
  203. " You can append K or M(1K = 1024, 1M = 1024K)."
  204. msgstr ""
  205. #: src/usage_text.h:111
  206. msgid ""
  207. " --file-allocation=METHOD Specify file allocation method.\n"
  208. " 'none' doesn't pre-allocate file space. "
  209. "'prealloc'\n"
  210. " pre-allocates file space before download "
  211. "begins.\n"
  212. " This may take some time depending on the size "
  213. "of\n"
  214. " the file."
  215. msgstr ""
  216. #: src/usage_text.h:117
  217. msgid ""
  218. " --no-file-allocation-limit=SIZE No file allocation is made for files whose\n"
  219. " size is smaller than SIZE.\n"
  220. " You can append K or M(1K = 1024, 1M = 1024K)."
  221. msgstr ""
  222. #: src/usage_text.h:121
  223. msgid ""
  224. " --enable-direct-io[=true|false] Enable directI/O, which lowers cpu usage "
  225. "while\n"
  226. " allocating files.\n"
  227. " Turn off if you encounter any error"
  228. msgstr ""
  229. #: src/usage_text.h:125
  230. msgid ""
  231. " --allow-overwrite=true|false If false, aria2 doesn't download a file which\n"
  232. " already exists but the corresponding .aria2 "
  233. "file\n"
  234. " doesn't exist."
  235. msgstr ""
  236. #: src/usage_text.h:129
  237. msgid ""
  238. " --allow-piece-length-change=true|false If false is given, aria2 aborts "
  239. "download\n"
  240. " when a piece length is different from one in\n"
  241. " a control file. If true is given, you can "
  242. "proceed\n"
  243. " but some download progress will be lost."
  244. msgstr ""
  245. #: src/usage_text.h:134
  246. msgid ""
  247. " -Z, --force-sequential[=true|false] Fetch URIs in the command-line "
  248. "sequentially\n"
  249. " and download each URI in a separate session, "
  250. "like\n"
  251. " the usual command-line download utilities."
  252. msgstr ""
  253. #: src/usage_text.h:138
  254. msgid ""
  255. " --auto-file-renaming[=true|false] Rename file name if the same file "
  256. "already\n"
  257. " exists. This option works only in http(s)/ftp\n"
  258. " download.\n"
  259. " The new file name has a dot and a number"
  260. "(1..9999)\n"
  261. " appended."
  262. msgstr ""
  263. #: src/usage_text.h:144
  264. msgid ""
  265. " -P, --parameterized-uri[=true|false] Enable parameterized URI support.\n"
  266. " You can specify set of parts:\n"
  267. " http://{sv1,sv2,sv3}/foo.iso\n"
  268. " Also you can specify numeric sequences with "
  269. "step\n"
  270. " counter:\n"
  271. " http://host/image[000-100:2].img\n"
  272. " A step counter can be omitted.\n"
  273. " If all URIs do not point to the same file, "
  274. "such\n"
  275. " as the second example above, -Z option is\n"
  276. " required."
  277. msgstr ""
  278. #: src/usage_text.h:155
  279. msgid ""
  280. " --enable-http-keep-alive[=true|false] Enable HTTP/1.1 persistent connection."
  281. msgstr ""
  282. " --enable-http-keep-alive[=true|false] 使用HTTP/1.1 persistent connection。"
  283. #: src/usage_text.h:157
  284. msgid " --enable-http-pipelining[=true|false] Enable HTTP/1.1 pipelining."
  285. msgstr " --enable-http-pipelining[=true|false] 使用HTTP/1.1 pipelining。"
  286. #: src/usage_text.h:159
  287. msgid ""
  288. " -V, --check-integrity[=true|false] Check file integrity by validating "
  289. "piece\n"
  290. " hashes. This option has effect only in "
  291. "BitTorrent\n"
  292. " and Metalink downloads with chunk checksums.\n"
  293. " Use this option to re-download a damaged "
  294. "portion\n"
  295. " of a file. See also --bt-hash-check-seed "
  296. "option."
  297. msgstr ""
  298. #: src/usage_text.h:165
  299. msgid ""
  300. " --bt-hash-check-seed[=true|false] If true is given, after hash check using\n"
  301. " --check-integrity option and file is "
  302. "complete,\n"
  303. " continue to seed file. If you want to check "
  304. "file\n"
  305. " and download it only when it is damaged or\n"
  306. " incomplete, set this option to false.\n"
  307. " This option has effect only on BitTorrent\n"
  308. " download."
  309. msgstr ""
  310. #: src/usage_text.h:173
  311. msgid ""
  312. " --realtime-chunk-checksum=true|false Validate chunk of data by "
  313. "calculating\n"
  314. " checksum while downloading a file if chunk\n"
  315. " checksums are provided."
  316. msgstr ""
  317. #: src/usage_text.h:177
  318. msgid ""
  319. " -c, --continue Continue downloading a partially downloaded\n"
  320. " file. Use this option to resume a download\n"
  321. " started by a web browser or another program\n"
  322. " which downloads files sequentially from the\n"
  323. " beginning. Currently this option is only\n"
  324. " applicable to http(s)/ftp downloads."
  325. msgstr ""
  326. #: src/usage_text.h:184
  327. msgid " -U, --user-agent=USER_AGENT Set user agent for http(s) downloads."
  328. msgstr " -U, --user-agent=USER_AGENT 為http(s)下載設定使用者識別字串。"
  329. #: src/usage_text.h:186
  330. msgid " -n, --no-netrc Disables netrc support."
  331. msgstr " -n, --no-netrc 停用netrc支援。"
  332. #: src/usage_text.h:188
  333. msgid ""
  334. " -i, --input-file=FILE Downloads URIs found in FILE. You can specify\n"
  335. " multiple URIs for a single entity: separate\n"
  336. " URIs on a single line using the TAB "
  337. "character.\n"
  338. " Reads input from stdin when '-' is specified.\n"
  339. " The additional out and dir options can be\n"
  340. " specified after each line of URIs. This "
  341. "optional\n"
  342. " line must start with white space(s). See "
  343. "INPUT\n"
  344. " FILE section of man page for details."
  345. msgstr ""
  346. #: src/usage_text.h:197
  347. msgid ""
  348. " -j, --max-concurrent-downloads=N Set maximum number of parallel downloads "
  349. "for\n"
  350. " every static (HTTP/FTP) URL, torrent and "
  351. "metalink.\n"
  352. " See also -s and -C options."
  353. msgstr ""
  354. #: src/usage_text.h:201
  355. msgid ""
  356. " --load-cookies=FILE Load Cookies from FILE using the Firefox3 "
  357. "format\n"
  358. " and Mozilla/Firefox(1.x/2.x)/Netscape format."
  359. msgstr ""
  360. #: src/usage_text.h:204
  361. msgid ""
  362. " -S, --show-files Print file listing of .torrent or .metalink "
  363. "file\n"
  364. " and exit. More detailed information will be "
  365. "listed\n"
  366. " in case of torrent file."
  367. msgstr ""
  368. #: src/usage_text.h:208
  369. msgid ""
  370. " --select-file=INDEX... Set file to download by specifying its index.\n"
  371. " You can find the file index using the\n"
  372. " --show-files option. Multiple indexes can be\n"
  373. " specified by using ',', for example: \"3,6\".\n"
  374. " You can also use '-' to specify a range: \"1-5"
  375. "\".\n"
  376. " ',' and '-' can be used together.\n"
  377. " When used with the -M option, index may vary\n"
  378. " depending on the query(see --metalink-* "
  379. "options)."
  380. msgstr ""
  381. #: src/usage_text.h:217
  382. msgid " -T, --torrent-file=TORRENT_FILE The path to the .torrent file."
  383. msgstr " -T, --torrent-file=TORRENT_FILE .torrent檔案路徑。"
  384. #: src/usage_text.h:219
  385. msgid ""
  386. " --follow-torrent=true|false|mem If true or mem is specified, when a file\n"
  387. " whose suffix is .torrent or content type is\n"
  388. " application/x-bittorrent is downloaded, aria2\n"
  389. " parses it as a torrent file and downloads "
  390. "files\n"
  391. " mentioned in it.\n"
  392. " If mem is specified, a torrent file is not\n"
  393. " written to the disk, but is just kept in "
  394. "memory.\n"
  395. " If false is specified, the action mentioned "
  396. "above\n"
  397. " is not taken."
  398. msgstr ""
  399. #: src/usage_text.h:229
  400. msgid ""
  401. " --direct-file-mapping=true|false Directly read from and write to each file\n"
  402. " mentioned in .torrent file."
  403. msgstr ""
  404. #: src/usage_text.h:232
  405. msgid ""
  406. " --listen-port=PORT... Set TCP port number for BitTorrent downloads.\n"
  407. " Multiple ports can be specified by using ',',\n"
  408. " for example: \"6881,6885\". You can also use "
  409. "'-'\n"
  410. " to specify a range: \"6881-6999\". ',' and '-' "
  411. "can\n"
  412. " be used together."
  413. msgstr ""
  414. #: src/usage_text.h:238
  415. msgid ""
  416. " --max-overall-upload-limit=SPEED Set max overall upload speed in bytes/"
  417. "sec.\n"
  418. " 0 means unrestricted.\n"
  419. " You can append K or M(1K = 1024, 1M = 1024K).\n"
  420. " To limit the upload speed per torrent, use\n"
  421. " --max-upload-limit option. If non-zero value "
  422. "is\n"
  423. " specified, --max-upload-limit option is "
  424. "ignored."
  425. msgstr ""
  426. #: src/usage_text.h:245
  427. msgid ""
  428. " -u, --max-upload-limit=SPEED Set max upload speed per each torrent in\n"
  429. " bytes/sec. 0 means unrestricted.\n"
  430. " You can append K or M(1K = 1024, 1M = 1024K).\n"
  431. " To limit the overall upload speed, use\n"
  432. " --max-overall-upload-limit option."
  433. msgstr ""
  434. #: src/usage_text.h:251
  435. msgid ""
  436. " --seed-time=MINUTES Specify seeding time in minutes. Also see the\n"
  437. " --seed-ratio option."
  438. msgstr ""
  439. #: src/usage_text.h:254
  440. msgid ""
  441. " --seed-ratio=RATIO Specify share ratio. Seed completed torrents\n"
  442. " until share ratio reaches RATIO.\n"
  443. " You are strongly encouraged to specify equals "
  444. "or\n"
  445. " more than 1.0 here. Specify 0.0 if you intend "
  446. "to\n"
  447. " do seeding regardless of share ratio.\n"
  448. " If --seed-time option is specified along with\n"
  449. " this option, seeding ends when at least one "
  450. "of\n"
  451. " the conditions is satisfied."
  452. msgstr ""
  453. #: src/usage_text.h:263
  454. msgid ""
  455. " --peer-id-prefix=PEERI_ID_PREFIX Specify the prefix of peer ID. The peer ID "
  456. "in\n"
  457. " BitTorrent is 20 byte length. If more than 20\n"
  458. " bytes are specified, only first 20\n"
  459. " bytes are used. If less than 20 bytes are\n"
  460. " specified, the random alphabet characters are\n"
  461. " added to make it's length 20 bytes."
  462. msgstr ""
  463. #: src/usage_text.h:270
  464. msgid " --enable-peer-exchange[=true|false] Enable Peer Exchange extension."
  465. msgstr " --enable-peer-exchange[=true|false] 使用Peer Exchange擴充套件。"
  466. #: src/usage_text.h:272
  467. msgid " --enable-dht[=true|false] Enable DHT functionality."
  468. msgstr " --enable-dht[=true|false] 使用DHT功能。"
  469. #: src/usage_text.h:274
  470. msgid ""
  471. " --dht-listen-port=PORT... Set UDP listening port for DHT.\n"
  472. " Multiple ports can be specified by using ',',\n"
  473. " for example: \"6881,6885\". You can also use "
  474. "'-'\n"
  475. " to specify a range: \"6881-6999\". ',' and '-' "
  476. "can\n"
  477. " be used together."
  478. msgstr ""
  479. #: src/usage_text.h:280
  480. msgid ""
  481. " --dht-entry-point=HOST:PORT Set host and port as an entry point to DHT\n"
  482. " network."
  483. msgstr ""
  484. #: src/usage_text.h:283
  485. msgid ""
  486. " --dht-file-path=PATH Change the DHT routing table file to PATH."
  487. msgstr ""
  488. #: src/usage_text.h:285
  489. msgid ""
  490. " --bt-min-crypto-level=plain|arc4 Set minimum level of encryption method.\n"
  491. " If several encryption methods are provided by "
  492. "a\n"
  493. " peer, aria2 chooses the lowest one which "
  494. "satisfies\n"
  495. " the given level."
  496. msgstr ""
  497. #: src/usage_text.h:290
  498. msgid ""
  499. " --bt-require-crypto=true|false If true is given, aria2 doesn't accept and\n"
  500. " establish connection with legacy BitTorrent\n"
  501. " handshake. Thus aria2 always uses Obfuscation\n"
  502. " handshake."
  503. msgstr ""
  504. #: src/usage_text.h:295
  505. msgid ""
  506. " --bt-request-peer-speed-limit=SPEED If the whole download speed of every\n"
  507. " torrent is lower than SPEED, aria2 "
  508. "temporarily\n"
  509. " increases the number of peers to try for more\n"
  510. " download speed. Configuring this option with "
  511. "your\n"
  512. " preferred download speed can increase your\n"
  513. " download speed in some cases.\n"
  514. " You can append K or M(1K = 1024, 1M = 1024K)."
  515. msgstr ""
  516. #: src/usage_text.h:303
  517. msgid ""
  518. " --bt-max-open-files=NUM Specify maximum number of files to open in "
  519. "each\n"
  520. " BitTorrent download."
  521. msgstr ""
  522. #: src/usage_text.h:306
  523. msgid ""
  524. " --bt-seed-unverified[=true|false] Seed previously downloaded files without\n"
  525. " verifying piece hashes."
  526. msgstr ""
  527. #: src/usage_text.h:309
  528. msgid ""
  529. " --bt-max-peers=NUM Specify the maximum number of peers per "
  530. "torrent.\n"
  531. " 0 means unlimited.\n"
  532. " See also --bt-request-peer-speed-limit option."
  533. msgstr ""
  534. #: src/usage_text.h:313
  535. msgid " -M, --metalink-file=METALINK_FILE The file path to the .metalink file."
  536. msgstr " -M, --metalink-file=METALINK_FILE .metalink檔案路徑。"
  537. #: src/usage_text.h:315
  538. msgid ""
  539. " -C, --metalink-servers=NUM_SERVERS The number of servers to connect to\n"
  540. " simultaneously. Some Metalinks regulate the\n"
  541. " number of servers to connect. aria2 strictly\n"
  542. " respects them. This means that if Metalink "
  543. "defines\n"
  544. " the maxconnections attribute lower than\n"
  545. " NUM_SERVERS, then aria2 uses the value of\n"
  546. " maxconnections attribute instead of "
  547. "NUM_SERVERS.\n"
  548. " See also -s and -j options."
  549. msgstr ""
  550. #: src/usage_text.h:324
  551. msgid " --metalink-version=VERSION The version of the file to download."
  552. msgstr " --metalink-version=VERSION 指定要下載的檔案版本。"
  553. #: src/usage_text.h:326
  554. msgid " --metalink-language=LANGUAGE The language of the file to download."
  555. msgstr " --metalink-language=LANGUAGE 指定要下載的檔案語言。"
  556. #: src/usage_text.h:328
  557. msgid ""
  558. " --metalink-os=OS The operating system of the file to download."
  559. msgstr " --metalink-os=OS 指定要下載的檔案作業系統。"
  560. #: src/usage_text.h:330
  561. msgid ""
  562. " --metalink-location=LOCATION[,...] The location of the preferred server.\n"
  563. " A comma-delimited list of locations is\n"
  564. " acceptable."
  565. msgstr ""
  566. #: src/usage_text.h:334
  567. msgid ""
  568. " --metalink-preferred-protocol=PROTO Specify preferred protocol. Specify "
  569. "'none'\n"
  570. " if you don't have any preferred protocol."
  571. msgstr ""
  572. #: src/usage_text.h:337
  573. msgid ""
  574. " --follow-metalink=true|false|mem If true or mem is specified, when a file\n"
  575. " whose suffix is .metaink or content type of\n"
  576. " application/metalink+xml is downloaded, aria2\n"
  577. " parses it as a metalink file and downloads "
  578. "files\n"
  579. " mentioned in it.\n"
  580. " If mem is specified, a metalink file is not\n"
  581. " written to the disk, but is just kept in "
  582. "memory.\n"
  583. " If false is specified, the action mentioned "
  584. "above\n"
  585. " is not taken."
  586. msgstr ""
  587. #: src/usage_text.h:347
  588. msgid ""
  589. " --metalink-enable-unique-protocol=true|false If true is given and several\n"
  590. " protocols are available for a mirror in a "
  591. "metalink\n"
  592. " file, aria2 uses one of them.\n"
  593. " Use --metalink-preferred-protocol option to\n"
  594. " specify the preference of protocol."
  595. msgstr ""
  596. #: src/usage_text.h:353
  597. msgid " -v, --version Print the version number and exit."
  598. msgstr " -v, --version 列印版本號後退出。"
  599. #: src/usage_text.h:355
  600. msgid ""
  601. " -h, --help[=CATEGORY] Print usage and exit.\n"
  602. " The help messages are classified in several\n"
  603. " categories. For example, type \"--help=http\" "
  604. "for\n"
  605. " detailed explanation for the options related "
  606. "to\n"
  607. " http. If no matching category is found, "
  608. "search\n"
  609. " option name using a given word in middle "
  610. "match\n"
  611. " and print the result."
  612. msgstr ""
  613. #: src/usage_text.h:363
  614. msgid " --no-conf Disable loading aria2.conf file."
  615. msgstr " --no-conf 停止載入aria2.conf設定檔。"
  616. #: src/usage_text.h:365
  617. msgid ""
  618. " --conf-path=PATH Change the configuration file path to PATH."
  619. msgstr " --conf-path=PATH 更改設定檔案路徑至PATH。"
  620. #: src/usage_text.h:367
  621. msgid ""
  622. " --stop=SEC Stop application after SEC seconds has "
  623. "passed.\n"
  624. " If 0 is given, this feature is disabled."
  625. msgstr ""
  626. #: src/usage_text.h:370
  627. msgid ""
  628. " --header=HEADER Append HEADER to HTTP request header. You can "
  629. "use\n"
  630. " this option repeatedly to specify more than "
  631. "one\n"
  632. " header:\n"
  633. " aria2c --header=\"X-A: b78\" --header=\"X-B: "
  634. "9J1\"\n"
  635. " http://host/file"
  636. msgstr ""
  637. #: src/usage_text.h:376
  638. #, fuzzy
  639. msgid " -q, --quiet[=true|false] Make aria2 quiet(no console output)."
  640. msgstr " -q, --quiet[=true|false] 使用aria2安靜模式(無終端輸出)。"
  641. #: src/usage_text.h:378
  642. msgid " --async-dns[=true|false] Enable asynchronous DNS."
  643. msgstr " --async-dns[=true|false] 使用非同步DNS。"
  644. #: src/usage_text.h:380
  645. msgid " --ftp-reuse-connection[=true|false] Reuse connection in FTP."
  646. msgstr " --ftp-reuse-connection[=true|false] 重用FTP的連接。"
  647. #: src/usage_text.h:382
  648. msgid ""
  649. " --summary-interval=SEC Set interval to output download progress "
  650. "summary.\n"
  651. " Setting 0 suppresses the output."
  652. msgstr " --summary-interval=SEC 設定輸出下載進度摘要的間隔。"
  653. #: src/usage_text.h:385
  654. msgid " --log-level=LEVEL Set log level to output."
  655. msgstr " --log-level=LEVEL 設定輸出記錄日誌級別。"
  656. #: src/usage_text.h:387
  657. msgid ""
  658. " -R, --remote-time[=true|false] Retrieve timestamp of the remote file from "
  659. "the\n"
  660. " remote HTTP/FTP server and if it is "
  661. "available,\n"
  662. " apply it to the local file."
  663. msgstr ""
  664. #: src/usage_text.h:391
  665. msgid ""
  666. " --connect-timeout=SEC Set the connect timeout in seconds to "
  667. "establish\n"
  668. " connection to HTTP/FTP/proxy server. After "
  669. "the\n"
  670. " connection is established, this option makes "
  671. "no\n"
  672. " effect and --timeout option is used instead."
  673. msgstr ""
  674. #: src/usage_text.h:396
  675. msgid ""
  676. " --max-file-not-found=NUM If aria2 receives `file not found' status from "
  677. "the\n"
  678. " remote HTTP/FTP servers NUM times without "
  679. "getting\n"
  680. " a single byte, then force the download to "
  681. "fail.\n"
  682. " Specify 0 to disable this option.\n"
  683. " This options is effective only when using\n"
  684. " HTTP/FTP servers."
  685. msgstr ""
  686. #: src/usage_text.h:403
  687. msgid ""
  688. " --uri-selector=SELECTOR Specify URI selection algorithm.\n"
  689. " If 'inorder' is given, URI is tried in the "
  690. "order\n"
  691. " appeared in the URI list.\n"
  692. " If 'feedback' is given, aria2 uses download "
  693. "speed\n"
  694. " observed in the previous downloads and choose\n"
  695. " fastest server in the URI list. This also\n"
  696. " effectively skips dead mirrors. The observed\n"
  697. " download speed is a part of performance "
  698. "profile\n"
  699. " of servers mentioned in --server-stat-of and\n"
  700. " --server-stat-if options.\n"
  701. " If 'adaptive' is given, selects one of the "
  702. "best\n"
  703. " mirrors for the first and reserved "
  704. "connections.\n"
  705. " For supplementary ones, it returns mirrors "
  706. "which\n"
  707. " has not been tested yet, and if each of them "
  708. "has\n"
  709. " already been tested, returns mirrors which has "
  710. "to\n"
  711. " be tested again. Otherwise, it doesn't select\n"
  712. " anymore mirrors. Like 'feedback', it uses a\n"
  713. " performance profile of servers."
  714. msgstr ""
  715. #: src/usage_text.h:422
  716. msgid ""
  717. " --server-stat-of=FILE Specify the filename to which performance "
  718. "profile\n"
  719. " of the servers is saved. You can load saved "
  720. "data\n"
  721. " using --server-stat-if option."
  722. msgstr ""
  723. #: src/usage_text.h:426
  724. msgid ""
  725. " --server-stat-if=FILE Specify the filename to load performance "
  726. "profile\n"
  727. " of the servers. The loaded data will be used "
  728. "in\n"
  729. " some URI selector such as 'feedback'.\n"
  730. " See also --uri-selector option"
  731. msgstr ""
  732. #: src/usage_text.h:431
  733. msgid ""
  734. " --server-stat-timeout=SEC Specifies timeout in seconds to invalidate\n"
  735. " performance profile of the servers since the "
  736. "last\n"
  737. " contact to them."
  738. msgstr ""
  739. #: src/usage_text.h:435
  740. msgid ""
  741. " --auto-save-interval=SEC Save a control file(*.aria2) every SEC "
  742. "seconds.\n"
  743. " If 0 is given, a control file is not saved "
  744. "during\n"
  745. " download. aria2 saves a control file when it "
  746. "stops\n"
  747. " regardless of the value."
  748. msgstr ""
  749. #: src/usage_text.h:440
  750. msgid ""
  751. " --certificate=FILE Use the client certificate in FILE.\n"
  752. " The certificate must be in PEM format.\n"
  753. " You may use --private-key option to specify "
  754. "the\n"
  755. " private key."
  756. msgstr ""
  757. #: src/usage_text.h:445
  758. msgid ""
  759. " --private-key=FILE Use the private key in FILE.\n"
  760. " The private key must be decrypted and in PEM\n"
  761. " format. See also --certificate option."
  762. msgstr ""
  763. #: src/usage_text.h:449
  764. msgid ""
  765. " --ca-certificate=FILE Use the certificate authorities in FILE to "
  766. "verify\n"
  767. " the peers. The certificate file must be in "
  768. "PEM\n"
  769. " format and can contain multiple CA "
  770. "certificates.\n"
  771. " Use --check-certificate option to enable\n"
  772. " verification."
  773. msgstr ""
  774. #: src/usage_text.h:455
  775. msgid ""
  776. " --check-certificate[=true|false] Verify the peer using certificates "
  777. "specified\n"
  778. " in --ca-certificate option."
  779. msgstr ""
  780. #: src/usage_text.h:458
  781. msgid ""
  782. " --no-proxy=DOMAINS Specify comma separated hostnames or domains "
  783. "where\n"
  784. " proxy should not be used."
  785. msgstr ""
  786. #: src/usage_text.h:461
  787. msgid ""
  788. " --use-head[=true|false] Use HEAD method for the first request to the "
  789. "HTTP\n"
  790. " server."
  791. msgstr ""
  792. #: src/usage_text.h:464
  793. msgid " --event-poll=POLL Specify the method for polling events."
  794. msgstr ""
  795. #: src/usage_text.h:466
  796. msgid ""
  797. " --http-server-listen-port=PORT Specify a port number for the built-in HTTP\n"
  798. " Server to listen to."
  799. msgstr ""
  800. #: src/version_usage.cc:54
  801. msgid " version "
  802. msgstr " 版本 "
  803. #: src/version_usage.cc:71
  804. #, c-format
  805. msgid "Report bugs to %s"
  806. msgstr "向%s回報bugs"
  807. #: src/version_usage.cc:76
  808. #, c-format
  809. msgid "Usage: %s [OPTIONS] [URL | TORRENT_FILE | METALINK_FILE]..."
  810. msgstr "用法: %s [OPTIONS] [URL | TORRENT_FILE | METALINK_FILE]..."
  811. #: src/version_usage.cc:86
  812. #, c-format
  813. msgid "Printing options whose name includes '%s'."
  814. msgstr "列出包含'%s'的選項。"
  815. #: src/version_usage.cc:89 src/version_usage.cc:111
  816. msgid "Options:"
  817. msgstr "選項:"
  818. #: src/version_usage.cc:94
  819. #, c-format
  820. msgid "No help category or option name matching with '%s'."
  821. msgstr "沒有幫助分類或選項名稱符合'%s'。"
  822. #: src/version_usage.cc:100
  823. msgid "Printing all options."
  824. msgstr "列出所有選項。"
  825. #: src/version_usage.cc:102
  826. #, c-format
  827. msgid "Printing options tagged with '%s'."
  828. msgstr "列出附有標籤'%s'的選項。"
  829. #: src/version_usage.cc:106
  830. #, c-format
  831. msgid "See -h option to know other command-line options(%s)."
  832. msgstr "參考 -h 選項以了解其他指令行選項(%s)。"
  833. #: src/version_usage.cc:121
  834. msgid ""
  835. " You can specify multiple URLs. Unless you specify -Z option, all URLs must\n"
  836. " point to the same file or downloading will fail."
  837. msgstr ""
  838. " 你可指定多個URL。除非使用了 -Z 選項,所有URL所指向的須為同一檔案,\n"
  839. " 否則將下載失敗。"
  840. #: src/version_usage.cc:123
  841. msgid ""
  842. " You can also specify arbitrary number of torrent files and metalink files\n"
  843. " stored in a local drive. Please note that they are always treated as a\n"
  844. " separate download."
  845. msgstr ""
  846. #: src/version_usage.cc:128
  847. msgid ""
  848. " You can specify both torrent file with -T option and URLs. By doing this,\n"
  849. " download a file from both torrent swarm and http/ftp server at the same "
  850. "time,\n"
  851. " while the data from http/ftp are uploaded to the torrent swarm. Note that\n"
  852. " only single file torrent can be integrated with http/ftp."
  853. msgstr ""
  854. #: src/version_usage.cc:133
  855. msgid ""
  856. " Make sure that URL is quoted with single(') or double(\") quotation if it\n"
  857. " contains \"&\" or any characters that have special meaning in shell."
  858. msgstr ""
  859. #: src/version_usage.cc:137
  860. msgid "Refer to man page for more information."
  861. msgstr "參考man page以獲取更多資訊。"
  862. #: src/message.h:40
  863. #, c-format
  864. msgid "CUID#%d - The download for one segment completed successfully."
  865. msgstr "CUID#%d - 一個分塊已成功下載完畢。"
  866. #: src/message.h:41
  867. #, c-format
  868. msgid "CUID#%d - No segment available."
  869. msgstr "CUID#%d - 已經沒有多餘的分塊。"
  870. #: src/message.h:42
  871. #, c-format
  872. msgid "CUID#%d - Connecting to %s:%d"
  873. msgstr "CUID#%d - 連接到 %s:%d"
  874. #: src/message.h:43
  875. #, c-format
  876. msgid ""
  877. "CUID#%d - The segment changed. We send the request again with new Range "
  878. "header."
  879. msgstr "CUID#%d - 分塊發生變化。將以新的Range header再次發送請求。"
  880. #: src/message.h:44
  881. #, c-format
  882. msgid "CUID#%d - Redirecting to %s"
  883. msgstr "CUID#%d - 重新定向到 %s"
  884. #: src/message.h:45
  885. #, c-format
  886. msgid ""
  887. "CUID#%d - Requesting:\n"
  888. "%s"
  889. msgstr ""
  890. "CUID#%d - 正在請求:\n"
  891. "%s"
  892. #: src/message.h:46
  893. #, c-format
  894. msgid ""
  895. "CUID#%d - Response received:\n"
  896. "%s"
  897. msgstr ""
  898. "CUID#%d - 收到回應:\n"
  899. "%s"
  900. #: src/message.h:47
  901. #, c-format
  902. msgid "CUID#%d - Download aborted. URI=%s"
  903. msgstr "CUID#%d - 下載中斷。 URI=%s"
  904. #: src/message.h:48
  905. #, c-format
  906. msgid "CUID#%d - Restarting the download. URI=%s"
  907. msgstr "CUID#%d - 重新開始下載。 URI=%s"
  908. #: src/message.h:49
  909. #, c-format
  910. msgid "CUID#%d - Download aborted."
  911. msgstr "CUID#%d - 下載中斷。"
  912. #: src/message.h:50
  913. #, c-format
  914. msgid "CUID#%d - %d times attempted, but no success. Download aborted."
  915. msgstr "CUID#%d - %d 次嘗試均失敗,下載中斷。"
  916. #: src/message.h:51
  917. #, c-format
  918. msgid "CUID#%d - Unregistering cuid from segmentManager."
  919. msgstr "CUID#%d - 正在從segmentManager中鉒銷cuid。"
  920. #: src/message.h:57
  921. #, c-format
  922. msgid "CUID#%d - we got new piece. index=%d"
  923. msgstr "CUID#%d - 獲得新的分片,index=%d"
  924. #: src/message.h:58
  925. #, c-format
  926. msgid "CUID#%d - we got wrong piece. index=%d"
  927. msgstr "CUID#%d - 獲得錯誤的分片,index=%d"
  928. #: src/message.h:59
  929. #, c-format
  930. msgid "CUID#%d - Download not complete: %s"
  931. msgstr "CUID#%d - 下載未完成:%s"
  932. #: src/message.h:60
  933. #, c-format
  934. msgid "#%d - Download has already completed: %s"
  935. msgstr "#%d - 下載已完成:%s"
  936. #: src/message.h:61
  937. #, c-format
  938. msgid "CUID#%d - Good checksum: %s"
  939. msgstr "CUID#%d - 正確的checksum:%s"
  940. #: src/message.h:62
  941. #, c-format
  942. msgid "CUID#%d - Bad checksum: %s"
  943. msgstr "CUID#%d - 錯誤的checksum:%s"
  944. #: src/message.h:63
  945. #, c-format
  946. msgid "CUID#%d - Resolving hostname %s"
  947. msgstr "CUID#%d - 正在解析主機名稱 %s"
  948. #: src/message.h:64
  949. #, c-format
  950. msgid "CUID#%d - Name resolution complete: %s -> %s"
  951. msgstr "CUID#%d - 解析名稱完成:%s -> %s"
  952. #: src/message.h:65
  953. #, c-format
  954. msgid "CUID#%d - Name resolution for %s failed:%s"
  955. msgstr "CUID#%d - %s的名稱解析失敗,原因:%s"
  956. #: src/message.h:66
  957. #, c-format
  958. msgid "CUID#%d - DNS cache hit: %s -> %s"
  959. msgstr "CUID#%d - DNS快取命中: %s -> %s"
  960. #: src/message.h:67
  961. #, c-format
  962. msgid "CUID#%d - Abort requested."
  963. msgstr "CUID#%d - 已請求中斷。"
  964. #: src/message.h:68
  965. #, c-format
  966. msgid "CUID#%d - Connecting to the peer %s"
  967. msgstr "CUID#%d - 連接到peer %s"
  968. #: src/message.h:69
  969. #, c-format
  970. msgid ""
  971. "CUID#%d - Piece received. index=%d, begin=%d, length=%d, offset=%llu, "
  972. "blockIndex=%d"
  973. msgstr ""
  974. "CUID#%d - 已收到分片。 index=%d, begin=%d, length=%d, offset=%llu, "
  975. "blockIndex=%d"
  976. #: src/message.h:70
  977. #, c-format
  978. msgid "CUID#%d - Piece bitfield %s"
  979. msgstr "CUID#%d - 分片 bitfield %s"
  980. #: src/message.h:71
  981. #, c-format
  982. msgid ""
  983. "CUID#%d - Reject piece message in queue because the peer has been choked. "
  984. "index=%d, begin=%d, length=%d"
  985. msgstr ""
  986. #: src/message.h:72
  987. #, c-format
  988. msgid ""
  989. "CUID#%d - Reject piece message in queue because cancel message received. "
  990. "index=%d, begin=%d, length=%d"
  991. msgstr ""
  992. #: src/message.h:73
  993. #, c-format
  994. msgid "CUID#%d - Exception caught while validating file integrity."
  995. msgstr "CUID#%d - 驗證檔案完整性時出現錯誤。"
  996. #: src/message.h:74
  997. #, c-format
  998. msgid "CUID#%d - Interested in the peer"
  999. msgstr ""
  1000. #: src/message.h:75
  1001. #, c-format
  1002. msgid "CUID#%d - Not interested in the peer"
  1003. msgstr ""
  1004. #: src/message.h:76
  1005. #, c-format
  1006. msgid "CUID#%d - Deleting request slot index=%d, blockIndex=%d"
  1007. msgstr ""
  1008. #: src/message.h:77
  1009. #, c-format
  1010. msgid ""
  1011. "CUID#%d - Deleting request slot index=%d, blockIndex=%d because localhost "
  1012. "got choked."
  1013. msgstr ""
  1014. #: src/message.h:78
  1015. #, c-format
  1016. msgid "CUID#%d - Deleting request slot blockIndex=%d because of time out"
  1017. msgstr ""
  1018. #: src/message.h:79
  1019. #, c-format
  1020. msgid ""
  1021. "CUID#%d - Deleting request slot blockIndex=%d because the block has been "
  1022. "acquired."
  1023. msgstr ""
  1024. #: src/message.h:80
  1025. #, c-format
  1026. msgid "CUID#%d - Fast extension enabled."
  1027. msgstr "CUID#%d - 已啟用Fast extension。"
  1028. #: src/message.h:81
  1029. #, c-format
  1030. msgid "CUID#%d - Extended Messaging enabled."
  1031. msgstr "CUID#%d - 已啟用Extended Messaging。"
  1032. #: src/message.h:82
  1033. #, c-format
  1034. msgid "CUID#%d - Exception caught while allocating file space."
  1035. msgstr "CUID#%d - 分配檔案空間時出現錯誤。"
  1036. #: src/message.h:83
  1037. #, c-format
  1038. msgid "CUID#%d - Content-Disposition detected. Use %s as filename"
  1039. msgstr "CUID#%d - 偵測到Content-Disposition。使用 %s 作為檔案名稱"
  1040. #: src/message.h:84
  1041. #, c-format
  1042. msgid "CUID#%d - Peer %s:%d banned."
  1043. msgstr "CUID#%d - Peer %s:%d 已被禁止。"
  1044. #: src/message.h:85
  1045. #, c-format
  1046. msgid "CUID#%d - Using port %d for accepting new connections"
  1047. msgstr "CUID#%d - 新連接將使用連接埠 %d"
  1048. #: src/message.h:86
  1049. #, c-format
  1050. msgid "CUID#%d - An error occurred while binding port=%d"
  1051. msgstr "CUID#%d - 嘗試使用連接埠 %d 時發生錯誤"
  1052. #: src/message.h:87
  1053. #, c-format
  1054. msgid "CUID#%d - Incoming connection, adding new command CUID#%d"
  1055. msgstr ""
  1056. #: src/message.h:88
  1057. #, c-format
  1058. msgid "CUID#%d - Error in accepting connection"
  1059. msgstr "CUID#%d - 接受連接時發生錯誤"
  1060. #: src/message.h:89
  1061. #, c-format
  1062. msgid "CUID#%d - Error occurred while processing tracker response."
  1063. msgstr "CUID#%d - 處理tracker回應時發生錯誤。"
  1064. #: src/message.h:90
  1065. #, c-format
  1066. msgid "CUID#%d - Cannot create tracker request."
  1067. msgstr "CUID#%d - 無法建立tracker請求。"
  1068. #: src/message.h:91
  1069. #, c-format
  1070. msgid "CUID#%d - Creating new tracker request command #%d"
  1071. msgstr "CUID#%d - 建立新tracker請求命令 #%d"
  1072. #: src/message.h:92
  1073. #, c-format
  1074. msgid "CUID#%d - The peer is DHT-enabled."
  1075. msgstr ""
  1076. #: src/message.h:94
  1077. #, c-format
  1078. msgid "Unrecognized URI or unsupported protocol: %s"
  1079. msgstr "未知的URI或不支援的通訊協定:%s"
  1080. #: src/message.h:95
  1081. #, c-format
  1082. msgid "Tracker returned warning message: %s"
  1083. msgstr "Tracker返回警告訊息:%s"
  1084. #: src/message.h:96
  1085. #, c-format
  1086. msgid "The segment file %s exists."
  1087. msgstr "存在檔案分塊 %s 。"
  1088. #: src/message.h:97
  1089. #, c-format
  1090. msgid "The segment file %s does not exist."
  1091. msgstr "不存在檔案分塊 %s 。"
  1092. #: src/message.h:98
  1093. #, c-format
  1094. msgid "Saving the segment file %s"
  1095. msgstr "正在儲存檔案分塊 %s"
  1096. #: src/message.h:99
  1097. msgid "The segment file was saved successfully."
  1098. msgstr "已成功儲存檔案分塊 。"
  1099. #: src/message.h:100
  1100. #, c-format
  1101. msgid "Loading the segment file %s."
  1102. msgstr "正在載入檔案分塊 %s 。"
  1103. #: src/message.h:101
  1104. msgid "The segment file was loaded successfully."
  1105. msgstr "已成功載入檔案分塊 。"
  1106. #: src/message.h:102
  1107. msgid "No URI to download. Download aborted."
  1108. msgstr "沒有 URI 下載,下載中止。"
  1109. #: src/message.h:103
  1110. #, c-format
  1111. msgid ""
  1112. "File %s exists, but a control file(*.aria2) does not exist. Download was "
  1113. "canceled in order to prevent your file from being truncated to 0. If you are "
  1114. "sure to download the file all over again, then delete it or add --allow-"
  1115. "overwrite=true option and restart aria2."
  1116. msgstr ""
  1117. "檔案 %s 已存在,但已遺失控制檔案(*.aria2)。已取消下載以避免刪除檔案資料。如確"
  1118. "定重新下載檔案,請先刪除該檔案,或加入選項 --allow-overwrite=true,再執行"
  1119. "aria2。"
  1120. #: src/message.h:104
  1121. #, c-format
  1122. msgid "Allocating file %s, %s bytes"
  1123. msgstr "正在分配檔案 %s, %s bytes"
  1124. #: src/message.h:105
  1125. msgid "File not found"
  1126. msgstr "找不到檔案"
  1127. #: src/message.h:106
  1128. msgid "Not a directory"
  1129. msgstr "並不是一個目錄"
  1130. #: src/message.h:107
  1131. #, c-format
  1132. msgid "Insufficient checksums. checksumLength=%d, numChecksum=%d"
  1133. msgstr ""
  1134. #: src/message.h:108
  1135. #, c-format
  1136. msgid "Writing file %s"
  1137. msgstr "正寫入檔案 %s"
  1138. #: src/message.h:109
  1139. msgid "No peer list received."
  1140. msgstr "找不到使用者列表。"
  1141. #: src/message.h:110
  1142. #, c-format
  1143. msgid "Adding peer %s:%d"
  1144. msgstr "加入使用者 %s:%d"
  1145. #: src/message.h:111
  1146. #, c-format
  1147. msgid "Deleting used piece index=%d, fillRate(%%)=%d<=%d"
  1148. msgstr "刪除已用分片 index=%d, fillRate(%%)=%d<=%d"
  1149. #: src/message.h:112
  1150. msgid "Download of selected files was complete."
  1151. msgstr "所選檔案已下載完畢。"
  1152. #: src/message.h:113
  1153. msgid "The download was complete."
  1154. msgstr "下載完畢。"
  1155. #: src/message.h:114
  1156. #, c-format
  1157. msgid "Removed %d have entries."
  1158. msgstr ""
  1159. #: src/message.h:115
  1160. #, c-format
  1161. msgid "Validating file %s"
  1162. msgstr "正驗證檔案 %s"
  1163. #: src/message.h:116
  1164. #, c-format
  1165. msgid "%d seconds to allocate %s byte(s)"
  1166. msgstr ""
  1167. #: src/message.h:117
  1168. #, c-format
  1169. msgid "Dispatching FileAllocationCommand for CUID#%d."
  1170. msgstr ""
  1171. #: src/message.h:118
  1172. #, c-format
  1173. msgid "Metalink: Queueing %s for download."
  1174. msgstr ""
  1175. #: src/message.h:119
  1176. #, c-format
  1177. msgid "Download complete: %s"
  1178. msgstr "下載完畢:%s"
  1179. #: src/message.h:120
  1180. msgid "Seeding is over."
  1181. msgstr "作種完畢。"
  1182. #: src/message.h:121
  1183. #, c-format
  1184. msgid "CUID#%d cancels segment index=%d. CUID#%d handles it instead."
  1185. msgstr ""
  1186. #: src/message.h:122
  1187. msgid "No chunk to verify."
  1188. msgstr "沒有區塊要驗證。"
  1189. #: src/message.h:123
  1190. #, c-format
  1191. msgid "Good chunk checksum. hash=%s"
  1192. msgstr "正確的區塊checksum。 hash=%s"
  1193. #: src/message.h:124
  1194. #, c-format
  1195. msgid "Failed to load cookies from %s"
  1196. msgstr "從%s載入cookies失敗"
  1197. #: src/message.h:125
  1198. #, c-format
  1199. msgid ""
  1200. ".netrc file %s does not have correct permissions. It should be 600. netrc "
  1201. "support disabled."
  1202. msgstr ".netrc 檔案 %s 權限設置不正確,.netrc支援已停止。正確的權限應為600。"
  1203. #: src/message.h:126
  1204. msgid "Logging started."
  1205. msgstr "已開始日誌記錄。"
  1206. #: src/message.h:127
  1207. msgid "Specify at least one URL."
  1208. msgstr "須指定最少一個URL。"
  1209. #: src/message.h:128
  1210. msgid "daemon failed."
  1211. msgstr "背景運行失敗。"
  1212. #: src/message.h:129
  1213. #, c-format
  1214. msgid "Verification finished successfully. file=%s"
  1215. msgstr "驗證已成功完成。 file=%s"
  1216. #: src/message.h:130
  1217. #, c-format
  1218. msgid "Checksum error detected. file=%s"
  1219. msgstr "發現錯誤Checksum。 file=%s"
  1220. #: src/message.h:131
  1221. #, c-format
  1222. msgid "Incomplete range specified. %s"
  1223. msgstr "所指定的範圍不完整。 %s"
  1224. #: src/message.h:132
  1225. #, c-format
  1226. msgid "Failed to convert string into value: %s"
  1227. msgstr "數值轉換失敗: %s"
  1228. #: src/message.h:133
  1229. msgid "Resource not found"
  1230. msgstr "找不到資源"
  1231. #: src/message.h:134
  1232. #, c-format
  1233. msgid "File already exists. Renamed to %s."
  1234. msgstr "檔案已存在。更名為 %s 。"
  1235. #: src/message.h:135
  1236. msgid "Cannot parse metalink XML file. XML may be malformed."
  1237. msgstr "解析metalink XML檔案失敗,XML格式可能有錯誤。"
  1238. #: src/message.h:136
  1239. #, c-format
  1240. msgid "Too small payload size for %s, size=%d."
  1241. msgstr ""
  1242. #: src/message.h:137
  1243. #, c-format
  1244. msgid ""
  1245. "Removed the defunct control file %s because the download file %s doesn't "
  1246. "exist."
  1247. msgstr ""
  1248. #: src/message.h:138
  1249. #, c-format
  1250. msgid "Your share ratio was %.1f, uploaded/downloaded=%sB/%sB"
  1251. msgstr "分享率 %.1f, 已上載/已下載=%sB/%sB"
  1252. #: src/message.h:139
  1253. #, c-format
  1254. msgid "Missing %s in torrent metainfo."
  1255. msgstr ""
  1256. #: src/message.h:140
  1257. msgid "Tracker returned null data."
  1258. msgstr ""
  1259. #: src/message.h:141
  1260. msgid "Windows socket library initialization failed"
  1261. msgstr "Windows socket library初始化失敗"
  1262. #: src/message.h:142
  1263. #, c-format
  1264. msgid "%d second(s) has passed. Stopping application."
  1265. msgstr "已過%d 秒,正在終止程式。"
  1266. #: src/message.h:143
  1267. #, c-format
  1268. msgid ""
  1269. "Saved signature as %s. Please note that aria2 doesn't verify signatures."
  1270. msgstr "已儲存簽名 %s。請注意aria2不驗證簽加。"
  1271. #: src/message.h:145
  1272. #, c-format
  1273. msgid "Saving signature as %s failed. Maybe file already exists."
  1274. msgstr "儲存簽名 %s 失敗,檔案可能已存在。"
  1275. #: src/message.h:148
  1276. #, c-format
  1277. msgid "Failed to open ServerStat file %s for read."
  1278. msgstr "開啟ServerStat檔案 %s 失敗。"
  1279. #: src/message.h:149
  1280. #, c-format
  1281. msgid "ServerStat file %s loaded successfully."
  1282. msgstr "已成功載入ServerStat檔案 %s 。"
  1283. #: src/message.h:150
  1284. #, c-format
  1285. msgid "Failed to read ServerStat from %s."
  1286. msgstr "從%s載入ServerStat失敗。"
  1287. #: src/message.h:153
  1288. #, c-format
  1289. msgid "Failed to open ServerStat file %s for write."
  1290. msgstr "寫入ServerStat檔案 %s 失敗。"
  1291. #: src/message.h:154
  1292. #, c-format
  1293. msgid "ServerStat file %s saved successfully."
  1294. msgstr "ServerStat檔案 %s 儲存成功。"
  1295. #: src/message.h:155
  1296. #, c-format
  1297. msgid "Failed to write ServerStat to %s."
  1298. msgstr "寫入ServerStat至 %s 失敗。"
  1299. #: src/message.h:158
  1300. #, c-format
  1301. msgid "Failed to establish connection, cause: %s"
  1302. msgstr "建立連接失敗,原因: %s"
  1303. #: src/message.h:159
  1304. #, c-format
  1305. msgid "Network problem has occurred. cause:%s"
  1306. msgstr "發生網絡問題,原因: %s"
  1307. #: src/message.h:161
  1308. #, fuzzy, c-format
  1309. msgid "Failed to load trusted CA certificates from %s. Cause: %s"
  1310. msgstr "讀取檔案 %s 失敗,原因:%s"
  1311. #: src/message.h:163
  1312. #, c-format
  1313. msgid "Certificate verification failed. Cause: %s"
  1314. msgstr ""
  1315. #: src/message.h:164
  1316. #, fuzzy
  1317. msgid "No certificate found."
  1318. msgstr "找不到header。"
  1319. #: src/message.h:165
  1320. msgid "Hostname not match."
  1321. msgstr ""
  1322. #: src/message.h:166
  1323. msgid "No files to download."
  1324. msgstr ""
  1325. #: src/message.h:168
  1326. msgid ""
  1327. "You may encounter the certificate verification error with HTTPS server. See "
  1328. "--ca-certificate and --check-certificate option."
  1329. msgstr ""
  1330. #: src/message.h:170
  1331. #, fuzzy, c-format
  1332. msgid "Printing the contents of file '%s'..."
  1333. msgstr "列出包含'%s'的選項。"
  1334. #: src/message.h:171
  1335. msgid "This file is neither Torrent nor Metalink file. Skipping."
  1336. msgstr ""
  1337. #: src/message.h:174
  1338. msgid "Timeout."
  1339. msgstr "連線逾時。"
  1340. #: src/message.h:175
  1341. msgid "Invalid chunk size."
  1342. msgstr "無效的區塊大小。"
  1343. #: src/message.h:176
  1344. #, c-format
  1345. msgid "Too large chunk. size=%d"
  1346. msgstr "區塊大小太大。 size=%d"
  1347. #: src/message.h:177
  1348. msgid "Invalid header."
  1349. msgstr "無效的header。"
  1350. #: src/message.h:178
  1351. msgid "Invalid response."
  1352. msgstr "無效的回應。"
  1353. #: src/message.h:179
  1354. msgid "No header found."
  1355. msgstr "找不到header。"
  1356. #: src/message.h:180
  1357. msgid "No status header."
  1358. msgstr "找不到狀態header。"
  1359. #: src/message.h:181
  1360. msgid "Proxy connection failed."
  1361. msgstr "代理伺服器連接失敗。"
  1362. #: src/message.h:182
  1363. msgid "Connection failed."
  1364. msgstr "連線失敗。"
  1365. #: src/message.h:183
  1366. #, c-format
  1367. msgid ""
  1368. "The requested filename and the previously registered one are not same. "
  1369. "Expected:%s Actual:%s"
  1370. msgstr "所請求的檔案名稱與已登記的名稱不相符。 期望:%s 真實:%s"
  1371. #: src/message.h:184
  1372. #, c-format
  1373. msgid "The response status is not successful. status=%d"
  1374. msgstr "回覆狀態不成功。 狀態=%d"
  1375. #: src/message.h:185
  1376. #, c-format
  1377. msgid "Too large file size. size=%s"
  1378. msgstr "檔案大小太大。size=%s"
  1379. #: src/message.h:186
  1380. #, c-format
  1381. msgid "Transfer encoding %s is not supported."
  1382. msgstr "不支援傳輸編碼 %s 。"
  1383. #: src/message.h:187
  1384. #, c-format
  1385. msgid "SSL initialization failed: %s"
  1386. msgstr "SSL初始化失敗:%s"
  1387. #: src/message.h:188
  1388. msgid "SSL I/O error"
  1389. msgstr "SSL I/O錯誤"
  1390. #: src/message.h:189
  1391. msgid "SSL protocol error"
  1392. msgstr "SSL協議錯誤"
  1393. #: src/message.h:190
  1394. #, c-format
  1395. msgid "SSL unknown error %d"
  1396. msgstr "SSL不明錯誤 %d"
  1397. #: src/message.h:191
  1398. #, c-format
  1399. msgid "SSL initialization failed: OpenSSL connect error %d"
  1400. msgstr "SSL初始化失敗:OpenSSL連接錯誤 %d"
  1401. #: src/message.h:192
  1402. #, c-format
  1403. msgid "Size mismatch Expected:%s Actual:%s"
  1404. msgstr "大小不相符 期望:%s 真實:%s"
  1405. #: src/message.h:193
  1406. msgid "Authorization failed."
  1407. msgstr "認證失敗"
  1408. #: src/message.h:194
  1409. msgid "Got EOF from the server."
  1410. msgstr "伺服器傳回EOF"
  1411. #: src/message.h:195
  1412. msgid "Got EOF from peer."
  1413. msgstr "使用者傳回EOF"
  1414. #: src/message.h:196
  1415. msgid "Malformed meta info."
  1416. msgstr "meta訊息格式錯誤。"
  1417. #: src/message.h:198
  1418. #, c-format
  1419. msgid "Failed to open the file %s, cause: %s"
  1420. msgstr "開啟檔案 %s 失敗,原因:%s"
  1421. #: src/message.h:199
  1422. #, c-format
  1423. msgid "Failed to write into the file %s, cause: %s"
  1424. msgstr "寫入檔案 %s 失敗,原因:%s"
  1425. #: src/message.h:200
  1426. #, c-format
  1427. msgid "Failed to read from the file %s, cause: %s"
  1428. msgstr "讀取檔案 %s 失敗,原因:%s"
  1429. #: src/message.h:201
  1430. msgid "Failed to read data from disk."
  1431. msgstr "從磁碟讀取資料失敗。"
  1432. #: src/message.h:202
  1433. #, c-format
  1434. msgid "Failed to calculate SHA1 digest of or a part of the file %s, cause: %s"
  1435. msgstr "計算檔案 %s 的SHA1值失敗,原因:%s"
  1436. #: src/message.h:203
  1437. #, c-format
  1438. msgid "Failed to seek the file %s, cause: %s"
  1439. msgstr "找尋檔案 %s 失敗,原因:%s"
  1440. #: src/message.h:204
  1441. #, c-format
  1442. msgid "The offset is out of range, offset=%s"
  1443. msgstr ""
  1444. #: src/message.h:205
  1445. #, c-format
  1446. msgid "%s is not a directory."
  1447. msgstr "%s 不是一個目錄。"
  1448. #: src/message.h:206
  1449. #, c-format
  1450. msgid "Failed to make the directory %s, cause: %s"
  1451. msgstr "建立目錄 %s 失敗,原因:%s"
  1452. #: src/message.h:207
  1453. #, c-format
  1454. msgid "Failed to open the segment file %s, cause: %s"
  1455. msgstr "開啟分塊檔案 %s 失敗,原因:%s"
  1456. #: src/message.h:208
  1457. #, c-format
  1458. msgid "Failed to write into the segment file %s, cause: %s"
  1459. msgstr "寫入分塊檔案 %s 失敗,原因:%s"
  1460. #: src/message.h:209
  1461. #, c-format
  1462. msgid "Failed to read from the segment file %s, cause: %s"
  1463. msgstr "讀取分塊檔案 %s 失敗,原因:%s"
  1464. #: src/message.h:211
  1465. #, c-format
  1466. msgid "Failed to open a socket, cause: %s"
  1467. msgstr "開啟通訊連接失敗,原因:%s"
  1468. #: src/message.h:212
  1469. #, c-format
  1470. msgid "Failed to set a socket option, cause: %s"
  1471. msgstr "設定通訊連接選項失敗,原因:%s"
  1472. #: src/message.h:213
  1473. #, c-format
  1474. msgid "Failed to set a socket as blocking, cause: %s"
  1475. msgstr ""
  1476. #: src/message.h:214
  1477. #, c-format
  1478. msgid "Failed to set a socket as non-blocking, cause: %s"
  1479. msgstr ""
  1480. #: src/message.h:215
  1481. #, c-format
  1482. msgid "Failed to bind a socket, cause: %s"
  1483. msgstr ""
  1484. #: src/message.h:216
  1485. #, c-format
  1486. msgid "Failed to listen to a socket, cause: %s"
  1487. msgstr ""
  1488. #: src/message.h:217
  1489. #, c-format
  1490. msgid "Failed to accept a peer connection, cause: %s"
  1491. msgstr "接受使用者連接失敗,原因:%s"
  1492. #: src/message.h:218
  1493. #, c-format
  1494. msgid "Failed to get the name of socket, cause: %s"
  1495. msgstr "取得通訊連接名稱失敗,原因:%s"
  1496. #: src/message.h:219
  1497. #, c-format
  1498. msgid "Failed to get the name of connected peer, cause: %s"
  1499. msgstr "取得已連接使用者名稱失敗,原因:%s"
  1500. #: src/message.h:220
  1501. #, c-format
  1502. msgid "Failed to resolve the hostname %s, cause: %s"
  1503. msgstr "解析主機名稱 %s 失敗,原因:%s"
  1504. #: src/message.h:221
  1505. #, c-format
  1506. msgid "Failed to connect to the host %s, cause: %s"
  1507. msgstr "連接主機 %s 失敗,原因:%s"
  1508. #: src/message.h:222
  1509. #, c-format
  1510. msgid "Failed to check whether the socket is writable, cause: %s"
  1511. msgstr "檢查通訊連接是否可寫時失敗,原因:%s"
  1512. #: src/message.h:223
  1513. #, c-format
  1514. msgid "Failed to check whether the socket is readable, cause: %s"
  1515. msgstr "檢查通訊連接是否可讀時失敗,原因:%s"
  1516. #: src/message.h:224
  1517. #, c-format
  1518. msgid "Failed to send data, cause: %s"
  1519. msgstr "傳送資料失敗,原因:%s"
  1520. #: src/message.h:225
  1521. #, c-format
  1522. msgid "Failed to receive data, cause: %s"
  1523. msgstr "接受資料失敗,原因:%s"
  1524. #: src/message.h:226
  1525. #, c-format
  1526. msgid "Failed to peek data, cause: %s"
  1527. msgstr ""
  1528. #: src/message.h:227
  1529. #, c-format
  1530. msgid "Unknown socket error %d (0x%x)"
  1531. msgstr "未知的通訊連接錯誤 %d (0x%x)"
  1532. #: src/message.h:228
  1533. #, c-format
  1534. msgid "File %s exists, but %s does not exist."
  1535. msgstr "找到檔案 %s ,但找不到 %s 。"
  1536. #: src/message.h:229
  1537. #, c-format
  1538. msgid "Invalid payload size for %s, size=%d. It should be %d."
  1539. msgstr ""
  1540. #: src/message.h:230
  1541. #, c-format
  1542. msgid "Invalid ID=%d for %s. It should be %d."
  1543. msgstr ""
  1544. #: src/message.h:231
  1545. #, c-format
  1546. msgid ""
  1547. "Chunk checksum validation failed. checksumIndex=%d, offset=%s, expectedHash=%"
  1548. "s, actualHash=%s"
  1549. msgstr ""
  1550. "區塊checksum驗證失敗。checksumIndex=%d, offset=%s, expectedHash=%s, "
  1551. "actualHash=%s"
  1552. #: src/message.h:232
  1553. msgid "Download aborted."
  1554. msgstr "下載已中斷。"
  1555. #: src/message.h:233
  1556. #, c-format
  1557. msgid "File %s is being downloaded by other command."
  1558. msgstr "檔案 %s 正被其他命令下載中。"
  1559. #: src/message.h:234
  1560. msgid "Insufficient checksums."
  1561. msgstr ""
  1562. #: src/message.h:235
  1563. #, c-format
  1564. msgid "Tracker returned failure reason: %s"
  1565. msgstr "Tracker返回錯誤原因:%s"
  1566. #: src/message.h:236
  1567. msgid "Flooding detected."
  1568. msgstr ""
  1569. #: src/message.h:237
  1570. #, c-format
  1571. msgid ""
  1572. "Drop connection because no request/piece messages were exchanged in a "
  1573. "certain period(%d seconds)."
  1574. msgstr ""
  1575. #: src/message.h:238
  1576. msgid "The infoHash in torrent file doesn't match to one in .aria2 file."
  1577. msgstr "torrent檔案中的infoHash與.aria2檔案內的不相符。"
  1578. #: src/message.h:239
  1579. #, c-format
  1580. msgid "No such file entry %s"
  1581. msgstr "無相關檔案項目 %s"
  1582. #: src/message.h:240
  1583. #, c-format
  1584. msgid "Too slow Downloading speed: %d <= %d(B/s), host:%s"
  1585. msgstr "下載速度太慢:%d <= %d(B/s), host:%s"
  1586. #: src/message.h:241
  1587. msgid "No HttpRequestEntry found."
  1588. msgstr "找不到HttpRequestEntry。"
  1589. #: src/message.h:242
  1590. #, c-format
  1591. msgid "Got %d status, but no location header provided."
  1592. msgstr ""
  1593. #: src/message.h:243
  1594. #, c-format
  1595. msgid "Invalid range header. Request: %s-%s/%s, Response: %s-%s/%s"
  1596. msgstr ""
  1597. #: src/message.h:244
  1598. msgid "No file matched with your preference."
  1599. msgstr "沒有符合的檔案。"
  1600. #: src/message.h:245
  1601. msgid "Exception caught"
  1602. msgstr ""
  1603. #: src/message.h:246
  1604. #, c-format
  1605. msgid "Max payload length exceeded or invalid. length = %u"
  1606. msgstr ""
  1607. #: src/message.h:247
  1608. #, c-format
  1609. msgid "Invalid file length. Cannot continue download %s: local %s, remote %s"
  1610. msgstr "無效的檔案長度,無法繼續下載 %s: local %s, remote %s"
  1611. #: src/BtSetup.cc:160
  1612. msgid "Errors occurred while binding port.\n"
  1613. msgstr ""
  1614. #: src/Util.cc:724
  1615. msgid "Files:"
  1616. msgstr "檔案:"
  1617. #~ msgid ""
  1618. #~ " --http-proxy=HOST:PORT Use HTTP proxy server. This affects all "
  1619. #~ "URLs."
  1620. #~ msgstr " --http-proxy=HOST:PORT 使用HTTP代理伺服器(對所有URL有效)。"
  1621. #~ msgid ""
  1622. #~ " --http-proxy-user=USER Set HTTP proxy user. This affects all URLs."
  1623. #~ msgstr " --http-proxy-user=USER 設定HTTP代理伺服器用戶(對所有URL有效)。"
  1624. #~ msgid ""
  1625. #~ " --http-proxy-passwd=PASSWD Set HTTP proxy password. This affects all "
  1626. #~ "URLs."
  1627. #~ msgstr ""
  1628. #~ " --http-proxy-passwd=PASSWD 設定HTTP代理伺服器密碼(對所有URL有效)。"
  1629. #~ msgid " -p, --ftp-pasv Use passive mode in FTP."
  1630. #~ msgstr " -p, --ftp-pasv 使用FTP passive模式。"
  1631. #~ msgid " --ftp-via-http-proxy=METHOD Use HTTP proxy in FTP."
  1632. #~ msgstr " --ftp-via-http-proxy=METHOD 在FTP中使用HTTP代理伺服器。"