zh_TW.po 56 KB

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