zh_TW.po 49 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983
  1. # 先進包裝工具 (apt) 繁體中文訊息
  2. # 黃思文 <steven.huang@upcursor.org>, 2002.
  3. #
  4. # $Id: zh_TW.po,v 1.6 2003/07/26 00:08:58 mdz Exp $
  5. msgid ""
  6. msgstr ""
  7. "Project-Id-Version: 0.5.4\n"
  8. "POT-Creation-Date: 2003-01-11 21:19-0500\n"
  9. "PO-Revision-Date: 2002-12-22 00:01+PST\n"
  10. "Last-Translator: 黃思文 <szuwen_huang@yahoo.com>\n"
  11. "Language-Team: 繁體中文 <zh@li.org>\n"
  12. "MIME-Version: 1.0\n"
  13. "Content-Type: text/plain; charset=big5\n"
  14. "Content-Transfer-Encoding: 8bit\n"
  15. #: cmdline/apt-cache.cc:133
  16. #, c-format
  17. msgid "Package %s version %s has an unmet dep:\n"
  18. msgstr ""
  19. #: cmdline/apt-cache.cc:173 cmdline/apt-cache.cc:525 cmdline/apt-cache.cc:671
  20. #: cmdline/apt-cache.cc:885 cmdline/apt-cache.cc:1257
  21. #: cmdline/apt-cache.cc:1403
  22. #, c-format
  23. msgid "Unable to locate package %s"
  24. msgstr ""
  25. #: cmdline/apt-cache.cc:230
  26. msgid "Total Package Names : "
  27. msgstr ""
  28. #: cmdline/apt-cache.cc:270
  29. msgid " Normal Packages: "
  30. msgstr " 普通套件:"
  31. #: cmdline/apt-cache.cc:271
  32. msgid " Pure Virtual Packages: "
  33. msgstr " 虛擬套件:"
  34. #: cmdline/apt-cache.cc:272
  35. msgid " Single Virtual Packages: "
  36. msgstr " 單虛擬套件:"
  37. #: cmdline/apt-cache.cc:273
  38. msgid " Mixed Virtual Packages: "
  39. msgstr " 混合虛擬套件:"
  40. #: cmdline/apt-cache.cc:274
  41. msgid " Missing: "
  42. msgstr " 失蹤:"
  43. #: cmdline/apt-cache.cc:276
  44. msgid "Total Distinct Versions: "
  45. msgstr ""
  46. #: cmdline/apt-cache.cc:278
  47. msgid "Total Dependencies: "
  48. msgstr "所有依存關係:"
  49. #: cmdline/apt-cache.cc:281
  50. msgid "Total Ver/File relations: "
  51. msgstr ""
  52. #: cmdline/apt-cache.cc:283
  53. msgid "Total Provides Mappings: "
  54. msgstr ""
  55. #: cmdline/apt-cache.cc:295
  56. msgid "Total Globbed Strings: "
  57. msgstr ""
  58. #: cmdline/apt-cache.cc:309
  59. msgid "Total Dependency Version space: "
  60. msgstr ""
  61. #: cmdline/apt-cache.cc:314
  62. msgid "Total Slack space: "
  63. msgstr ""
  64. #: cmdline/apt-cache.cc:322
  65. msgid "Total Space Accounted for: "
  66. msgstr ""
  67. #: cmdline/apt-cache.cc:444 cmdline/apt-cache.cc:1091
  68. #, c-format
  69. msgid "Package file %s is out of sync."
  70. msgstr ""
  71. #: cmdline/apt-cache.cc:1133
  72. msgid "You must give exactly one pattern"
  73. msgstr ""
  74. #: cmdline/apt-cache.cc:1357
  75. msgid "Package Files:"
  76. msgstr ""
  77. #: cmdline/apt-cache.cc:1364 cmdline/apt-cache.cc:1450
  78. msgid "Cache is out of sync, can't x-ref a package file"
  79. msgstr ""
  80. #: cmdline/apt-cache.cc:1365
  81. #, c-format
  82. msgid "%4i %s\n"
  83. msgstr "%4i %s\n"
  84. #. Show any packages have explicit pins
  85. #: cmdline/apt-cache.cc:1377
  86. msgid "Pinned Packages:"
  87. msgstr ""
  88. #: cmdline/apt-cache.cc:1389 cmdline/apt-cache.cc:1430
  89. msgid "(not found)"
  90. msgstr ""
  91. #. Installed version
  92. #: cmdline/apt-cache.cc:1410
  93. msgid " Installed: "
  94. msgstr ""
  95. #: cmdline/apt-cache.cc:1412 cmdline/apt-cache.cc:1420
  96. msgid "(none)"
  97. msgstr ""
  98. #. Candidate Version
  99. #: cmdline/apt-cache.cc:1417
  100. msgid " Candidate: "
  101. msgstr ""
  102. #: cmdline/apt-cache.cc:1427
  103. msgid " Package Pin: "
  104. msgstr ""
  105. #. Show the priority tables
  106. #: cmdline/apt-cache.cc:1436
  107. msgid " Version Table:"
  108. msgstr ""
  109. #: cmdline/apt-cache.cc:1451
  110. #, c-format
  111. msgid " %4i %s\n"
  112. msgstr ""
  113. #: cmdline/apt-cache.cc:1478 cmdline/apt-cdrom.cc:730 cmdline/apt-config.cc:70
  114. #: cmdline/apt-extracttemplates.cc:225 cmdline/apt-get.cc:2015
  115. #: cmdline/apt-sortpkgs.cc:144
  116. #, c-format
  117. msgid "%s %s for %s %s compiled on %s %s\n"
  118. msgstr ""
  119. #: cmdline/apt-cache.cc:1482
  120. msgid ""
  121. "Usage: apt-cache [options] command\n"
  122. " apt-cache [options] add file1 [file1 ...]\n"
  123. " apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
  124. " apt-cache [options] showsrc pkg1 [pkg2 ...]\n"
  125. "\n"
  126. "apt-cache is a low-level tool used to manipulate APT's binary\n"
  127. "cache files, and query information from them\n"
  128. "\n"
  129. "Commands:\n"
  130. " add - Add an package file to the source cache\n"
  131. " gencaches - Build both the package and source cache\n"
  132. " showpkg - Show some general information for a single package\n"
  133. " showsrc - Show source records\n"
  134. " stats - Show some basic statistics\n"
  135. " dump - Show the entire file in a terse form\n"
  136. " dumpavail - Print an available file to stdout\n"
  137. " unmet - Show unmet dependencies\n"
  138. " search - Search the package list for a regex pattern\n"
  139. " show - Show a readable record for the package\n"
  140. " depends - Show raw dependency information for a package\n"
  141. " pkgnames - List the names of all packages\n"
  142. " dotty - Generate package graphs for GraphVis\n"
  143. " policy - Show policy settings\n"
  144. "\n"
  145. "Options:\n"
  146. " -h This help text.\n"
  147. " -p=? The package cache.\n"
  148. " -s=? The source cache.\n"
  149. " -q Disable progress indicator.\n"
  150. " -i Show only important deps for the unmet command.\n"
  151. " -c=? Read this configuration file\n"
  152. " -o=? Set an arbitary configuration option, eg -o dir::cache=/tmp\n"
  153. "See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
  154. msgstr ""
  155. #: cmdline/apt-config.cc:41
  156. msgid "Arguments not in pairs"
  157. msgstr ""
  158. #: cmdline/apt-config.cc:76
  159. msgid ""
  160. "Usage: apt-config [options] command\n"
  161. "\n"
  162. "apt-config is a simple tool to read the APT config file\n"
  163. "\n"
  164. "Commands:\n"
  165. " shell - Shell mode\n"
  166. " dump - Show the configuration\n"
  167. "\n"
  168. "Options:\n"
  169. " -h This help text.\n"
  170. " -c=? Read this configuration file\n"
  171. " -o=? Set an arbitary configuration option, eg -o dir::cache=/tmp\n"
  172. msgstr ""
  173. #: cmdline/apt-extracttemplates.cc:98
  174. #, c-format
  175. msgid "%s not a valid DEB package."
  176. msgstr ""
  177. #: cmdline/apt-extracttemplates.cc:232
  178. msgid ""
  179. "Usage: apt-extracttemplates file1 [file2 ...]\n"
  180. "\n"
  181. "apt-extracttemplates is a tool to extract config and template info\n"
  182. "from debian packages\n"
  183. "\n"
  184. "Options:\n"
  185. " -h This help text\n"
  186. " -t Set the temp dir\n"
  187. " -c=? Read this configuration file\n"
  188. " -o=? Set an arbitary configuration option, eg -o dir::cache=/tmp\n"
  189. msgstr ""
  190. #: cmdline/apt-extracttemplates.cc:259 apt-pkg/pkgcachegen.cc:699
  191. #, c-format
  192. msgid "Unable to write to %s"
  193. msgstr "無法寫入『%s』。"
  194. #: cmdline/apt-extracttemplates.cc:302
  195. msgid "Cannot get debconf version. Is debconf installed?"
  196. msgstr ""
  197. #. This needs to be a capital
  198. #: cmdline/apt-get.cc:116
  199. msgid "Y"
  200. msgstr "Y"
  201. #: cmdline/apt-get.cc:193
  202. msgid "The following packages have unmet dependencies:"
  203. msgstr "下列的套件有無法滿足的依存關係:"
  204. #: cmdline/apt-get.cc:283
  205. #, c-format
  206. msgid "but %s is installed"
  207. msgstr "但是『%s』卻已經安裝好了。"
  208. #: cmdline/apt-get.cc:285
  209. #, c-format
  210. msgid "but %s is to be installed"
  211. msgstr "但是『%s』卻將被安裝。"
  212. #: cmdline/apt-get.cc:292
  213. msgid "but it is not installable"
  214. msgstr "但是它卻無法安裝。"
  215. #: cmdline/apt-get.cc:294
  216. msgid "but it is a virtual package"
  217. msgstr "但是它只是虛擬的套件"
  218. #: cmdline/apt-get.cc:297
  219. msgid "but it is not installed"
  220. msgstr "但是『%s』卻還沒有安裝。"
  221. #: cmdline/apt-get.cc:297
  222. msgid "but it is not going to be installed"
  223. msgstr "但是它卻不會被安裝。"
  224. #: cmdline/apt-get.cc:302
  225. msgid " or"
  226. msgstr "或"
  227. #: cmdline/apt-get.cc:328
  228. msgid "The following NEW packages will be installed:"
  229. msgstr "下列的【新】套件都將被安裝:"
  230. #: cmdline/apt-get.cc:351
  231. msgid "The following packages will be REMOVED:"
  232. msgstr "下列的套件都將被【刪除】:"
  233. #: cmdline/apt-get.cc:371
  234. msgid "The following packages have been kept back"
  235. msgstr "下列的套件都將被押後:"
  236. #: cmdline/apt-get.cc:390
  237. msgid "The following packages will be upgraded"
  238. msgstr "下列的套件都將被更新:"
  239. #: cmdline/apt-get.cc:409
  240. msgid "The following packages will be DOWNGRADED"
  241. msgstr "下列的套件都將被【降版】:"
  242. #: cmdline/apt-get.cc:426
  243. msgid "The following held packages will be changed:"
  244. msgstr "下列押後的套件都將被更改:"
  245. #: cmdline/apt-get.cc:477
  246. #, c-format
  247. msgid "%s (due to %s) "
  248. msgstr "%s(因為 %s)"
  249. #: cmdline/apt-get.cc:484
  250. msgid ""
  251. "WARNING: The following essential packages will be removed\n"
  252. "This should NOT be done unless you know exactly what you are doing!"
  253. msgstr "注意:下列的重要套件都將被刪除,請勿輕易嘗試。"
  254. #: cmdline/apt-get.cc:514
  255. #, c-format
  256. msgid "%lu packages upgraded, %lu newly installed, "
  257. msgstr "更新 %lu 個套件,新安裝 %lu 個套件,"
  258. #: cmdline/apt-get.cc:518
  259. #, c-format
  260. msgid "%lu reinstalled, "
  261. msgstr "重新安裝 %lu 個套件,"
  262. #: cmdline/apt-get.cc:520
  263. #, c-format
  264. msgid "%lu downgraded, "
  265. msgstr "降 %lu 個套件的版,"
  266. #: cmdline/apt-get.cc:522
  267. #, c-format
  268. msgid "%lu to remove and %lu not upgraded.\n"
  269. msgstr "刪除 %lu 個套件,另不更新 %lu 個套件。\n"
  270. #: cmdline/apt-get.cc:526
  271. #, c-format
  272. msgid "%lu packages not fully installed or removed.\n"
  273. msgstr "%lu 個套件沒有完全安裝或刪除完畢。\n"
  274. #: cmdline/apt-get.cc:586
  275. msgid "Correcting dependencies..."
  276. msgstr "更正依存關係中..."
  277. #: cmdline/apt-get.cc:589
  278. msgid " failed."
  279. msgstr ""
  280. #: cmdline/apt-get.cc:592
  281. msgid "Unable to correct dependencies"
  282. msgstr "無法更正依存關係。"
  283. #: cmdline/apt-get.cc:595
  284. msgid "Unable to minimize the upgrade set"
  285. msgstr ""
  286. #: cmdline/apt-get.cc:597
  287. msgid " Done"
  288. msgstr " 完成"
  289. #: cmdline/apt-get.cc:601
  290. msgid "You might want to run `apt-get -f install' to correct these."
  291. msgstr "用『apt-get -f install』指令或許能修正這些問題。"
  292. #: cmdline/apt-get.cc:604
  293. msgid "Unmet dependencies. Try using -f."
  294. msgstr ""
  295. #: cmdline/apt-get.cc:657
  296. msgid "Packages need to be removed but Remove is disabled."
  297. msgstr ""
  298. #: cmdline/apt-get.cc:683 cmdline/apt-get.cc:1578 cmdline/apt-get.cc:1611
  299. msgid "Unable to lock the download directory"
  300. msgstr ""
  301. #: cmdline/apt-get.cc:693 cmdline/apt-get.cc:1659 cmdline/apt-get.cc:1870
  302. #: apt-pkg/cachefile.cc:67
  303. msgid "The list of sources could not be read."
  304. msgstr "無法讀取來源單。"
  305. #: cmdline/apt-get.cc:713
  306. #, c-format
  307. msgid "Need to get %sB/%sB of archives.\n"
  308. msgstr "需要下載 %2$sB 中 %1$sB 的檔案。\n"
  309. #: cmdline/apt-get.cc:716
  310. #, c-format
  311. msgid "Need to get %sB of archives.\n"
  312. msgstr "需要下載 %sB 的檔案。\n"
  313. #: cmdline/apt-get.cc:721
  314. #, c-format
  315. msgid "After unpacking %sB of additional disk space will be used.\n"
  316. msgstr "解壓縮後將消耗 %sB 的空間。\n"
  317. #: cmdline/apt-get.cc:724
  318. #, c-format
  319. msgid "After unpacking %sB disk space will be freed.\n"
  320. msgstr "解壓縮後將空出 %sB 的空間。\n"
  321. #: cmdline/apt-get.cc:741
  322. #, c-format
  323. msgid "You don't have enough free space in %s."
  324. msgstr "『%s』內沒有足夠的空間。"
  325. #: cmdline/apt-get.cc:750
  326. msgid "There are problems and -y was used without --force-yes"
  327. msgstr ""
  328. #: cmdline/apt-get.cc:756 cmdline/apt-get.cc:776
  329. msgid "Trivial Only specified but this is not a trivial operation."
  330. msgstr ""
  331. #: cmdline/apt-get.cc:758
  332. msgid "Yes, do as I say!"
  333. msgstr ""
  334. #: cmdline/apt-get.cc:760
  335. #, c-format
  336. msgid ""
  337. "You are about to do something potentially harmful\n"
  338. "To continue type in the phrase '%s'\n"
  339. " ?] "
  340. msgstr ""
  341. #: cmdline/apt-get.cc:766 cmdline/apt-get.cc:785
  342. msgid "Abort."
  343. msgstr "放棄執行。"
  344. #: cmdline/apt-get.cc:781
  345. msgid "Do you want to continue? [Y/n] "
  346. msgstr "繼續執行嗎? 是按 [Y] 鍵,否按 [n] 鍵 "
  347. #: cmdline/apt-get.cc:850 cmdline/apt-get.cc:1219 cmdline/apt-get.cc:1768
  348. #, c-format
  349. msgid "Failed to fetch %s %s\n"
  350. msgstr "無法下載『%s』檔案。%s\n"
  351. #: cmdline/apt-get.cc:868
  352. msgid "Some files failed to download"
  353. msgstr ""
  354. #: cmdline/apt-get.cc:869 cmdline/apt-get.cc:1777
  355. msgid "Download complete and in download only mode"
  356. msgstr ""
  357. #: cmdline/apt-get.cc:875
  358. msgid ""
  359. "Unable to fetch some archives, maybe run apt-get update or try with --fix-"
  360. "missing?"
  361. msgstr ""
  362. #: cmdline/apt-get.cc:879
  363. msgid "--fix-missing and media swapping is not currently supported"
  364. msgstr ""
  365. #: cmdline/apt-get.cc:884
  366. msgid "Unable to correct missing packages."
  367. msgstr ""
  368. #: cmdline/apt-get.cc:885
  369. msgid "Aborting Install."
  370. msgstr ""
  371. #: cmdline/apt-get.cc:918
  372. #, c-format
  373. msgid "Note, selecting %s instead of %s\n"
  374. msgstr ""
  375. #: cmdline/apt-get.cc:928
  376. #, c-format
  377. msgid "Skipping %s, it is already installed and upgrade is not set.\n"
  378. msgstr ""
  379. #: cmdline/apt-get.cc:946
  380. #, c-format
  381. msgid "Package %s is not installed, so not removed\n"
  382. msgstr "套件『%s』沒有安裝,所以無法刪除。\n"
  383. #: cmdline/apt-get.cc:957
  384. #, c-format
  385. msgid "Package %s is a virtual package provided by:\n"
  386. msgstr "虛擬套件『%s』的提供者是:\n"
  387. #: cmdline/apt-get.cc:969
  388. msgid " [Installed]"
  389. msgstr "【已安裝】"
  390. #: cmdline/apt-get.cc:974
  391. msgid "You should explicitly select one to install."
  392. msgstr ""
  393. #: cmdline/apt-get.cc:979
  394. #, c-format
  395. msgid ""
  396. "Package %s has no available version, but exists in the database.\n"
  397. "This typically means that the package was mentioned in a dependency and\n"
  398. "never uploaded, has been obsoleted or is not available with the contents\n"
  399. "of sources.list\n"
  400. msgstr ""
  401. #: cmdline/apt-get.cc:997
  402. msgid "However the following packages replace it:"
  403. msgstr "但是下列的套件將取代它:"
  404. #: cmdline/apt-get.cc:1000
  405. #, c-format
  406. msgid "Package %s has no installation candidate"
  407. msgstr ""
  408. #: cmdline/apt-get.cc:1020
  409. #, c-format
  410. msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
  411. msgstr ""
  412. #: cmdline/apt-get.cc:1028
  413. #, c-format
  414. msgid "%s is already the newest version.\n"
  415. msgstr "『%s』已經是最新版本了。\n"
  416. #: cmdline/apt-get.cc:1055
  417. #, c-format
  418. msgid "Release '%s' for '%s' was not found"
  419. msgstr ""
  420. #: cmdline/apt-get.cc:1057
  421. #, c-format
  422. msgid "Version '%s' for '%s' was not found"
  423. msgstr ""
  424. #: cmdline/apt-get.cc:1063
  425. #, c-format
  426. msgid "Selected version %s (%s) for %s\n"
  427. msgstr ""
  428. #: cmdline/apt-get.cc:1173
  429. msgid "The update command takes no arguments"
  430. msgstr ""
  431. #: cmdline/apt-get.cc:1186
  432. msgid "Unable to lock the list directory"
  433. msgstr ""
  434. #: cmdline/apt-get.cc:1238
  435. msgid ""
  436. "Some index files failed to download, they have been ignored, or old ones "
  437. "used instead."
  438. msgstr ""
  439. #: cmdline/apt-get.cc:1257
  440. msgid "Internal Error, AllUpgrade broke stuff"
  441. msgstr ""
  442. #: cmdline/apt-get.cc:1347 cmdline/apt-get.cc:1383
  443. #, c-format
  444. msgid "Couldn't find package %s"
  445. msgstr ""
  446. #: cmdline/apt-get.cc:1360
  447. #, c-format
  448. msgid "Regex compilation error - %s"
  449. msgstr ""
  450. #: cmdline/apt-get.cc:1370
  451. #, c-format
  452. msgid "Note, selecting %s for regex '%s'\n"
  453. msgstr ""
  454. #: cmdline/apt-get.cc:1400
  455. msgid "You might want to run `apt-get -f install' to correct these:"
  456. msgstr "用『apt-get -f install』指令或許能修正這些問題。"
  457. #: cmdline/apt-get.cc:1403
  458. msgid ""
  459. "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
  460. "solution)."
  461. msgstr ""
  462. #: cmdline/apt-get.cc:1415
  463. msgid ""
  464. "Some packages could not be installed. This may mean that you have\n"
  465. "requested an impossible situation or if you are using the unstable\n"
  466. "distribution that some required packages have not yet been created\n"
  467. "or been moved out of Incoming."
  468. msgstr ""
  469. #: cmdline/apt-get.cc:1423
  470. msgid ""
  471. "Since you only requested a single operation it is extremely likely that\n"
  472. "the package is simply not installable and a bug report against\n"
  473. "that package should be filed."
  474. msgstr ""
  475. #: cmdline/apt-get.cc:1428
  476. msgid "The following information may help to resolve the situation:"
  477. msgstr ""
  478. #: cmdline/apt-get.cc:1431
  479. msgid "Broken packages"
  480. msgstr ""
  481. #: cmdline/apt-get.cc:1454
  482. msgid "The following extra packages will be installed:"
  483. msgstr "下列的【新】套件都將被安裝:"
  484. #: cmdline/apt-get.cc:1473
  485. msgid "Calculating Upgrade... "
  486. msgstr ""
  487. #: cmdline/apt-get.cc:1476
  488. msgid "Failed"
  489. msgstr "失敗"
  490. #: cmdline/apt-get.cc:1481
  491. msgid "Done"
  492. msgstr "完成"
  493. #: cmdline/apt-get.cc:1654
  494. msgid "Must specify at least one package to fetch source for"
  495. msgstr ""
  496. #: cmdline/apt-get.cc:1681 cmdline/apt-get.cc:1888
  497. #, c-format
  498. msgid "Unable to find a source package for %s"
  499. msgstr ""
  500. #: cmdline/apt-get.cc:1728
  501. #, c-format
  502. msgid "You don't have enough free space in %s"
  503. msgstr "『%s』內沒有足夠的空間。"
  504. #: cmdline/apt-get.cc:1733
  505. #, c-format
  506. msgid "Need to get %sB/%sB of source archives.\n"
  507. msgstr "需要下載 %2$sB 中 %1$sB 的原始檔案。\n"
  508. #: cmdline/apt-get.cc:1736
  509. #, c-format
  510. msgid "Need to get %sB of source archives.\n"
  511. msgstr "需要下載 %sB 的原始檔案。\n"
  512. #: cmdline/apt-get.cc:1742
  513. #, c-format
  514. msgid "Fetch Source %s\n"
  515. msgstr ""
  516. #: cmdline/apt-get.cc:1773
  517. msgid "Failed to fetch some archives."
  518. msgstr "無法下載某些檔案。"
  519. #: cmdline/apt-get.cc:1801
  520. #, c-format
  521. msgid "Skipping unpack of already unpacked source in %s\n"
  522. msgstr ""
  523. #: cmdline/apt-get.cc:1813
  524. #, c-format
  525. msgid "Unpack command '%s' failed.\n"
  526. msgstr ""
  527. #: cmdline/apt-get.cc:1830
  528. #, c-format
  529. msgid "Build command '%s' failed.\n"
  530. msgstr ""
  531. #: cmdline/apt-get.cc:1849
  532. msgid "Child process failed"
  533. msgstr ""
  534. #: cmdline/apt-get.cc:1865
  535. msgid "Must specify at least one package to check builddeps for"
  536. msgstr ""
  537. #: cmdline/apt-get.cc:1893
  538. #, c-format
  539. msgid "Unable to get build-dependency information for %s"
  540. msgstr ""
  541. #: cmdline/apt-get.cc:1913
  542. #, c-format
  543. msgid "%s has no build depends.\n"
  544. msgstr ""
  545. #: cmdline/apt-get.cc:1931
  546. #, c-format
  547. msgid ""
  548. "%s dependency on %s cannot be satisfied because the package %s cannot be "
  549. "found"
  550. msgstr ""
  551. #: cmdline/apt-get.cc:1983
  552. msgid ""
  553. "Some broken packages were found while trying to process build-dependencies.\n"
  554. "You might want to run `apt-get -f install' to correct these."
  555. msgstr ""
  556. "處理依存關係時發現了一些損毀的套件。\n"
  557. "用『apt-get -f install』指令或許能修正這些問題。"
  558. #: cmdline/apt-get.cc:1988
  559. msgid "Failed to process build dependencies"
  560. msgstr ""
  561. #: cmdline/apt-get.cc:2020
  562. msgid "Supported Modules:"
  563. msgstr ""
  564. #: cmdline/apt-get.cc:2061
  565. msgid ""
  566. "Usage: apt-get [options] command\n"
  567. " apt-get [options] install|remove pkg1 [pkg2 ...]\n"
  568. " apt-get [options] source pkg1 [pkg2 ...]\n"
  569. "\n"
  570. "apt-get is a simple command line interface for downloading and\n"
  571. "installing packages. The most frequently used commands are update\n"
  572. "and install.\n"
  573. "\n"
  574. "Commands:\n"
  575. " update - Retrieve new lists of packages\n"
  576. " upgrade - Perform an upgrade\n"
  577. " install - Install new packages (pkg is libc6 not libc6.deb)\n"
  578. " remove - Remove packages\n"
  579. " source - Download source archives\n"
  580. " build-dep - Configure build-dependencies for source packages\n"
  581. " dist-upgrade - Distribution upgrade, see apt-get(8)\n"
  582. " dselect-upgrade - Follow dselect selections\n"
  583. " clean - Erase downloaded archive files\n"
  584. " autoclean - Erase old downloaded archive files\n"
  585. " check - Verify that there are no broken dependencies\n"
  586. "\n"
  587. "Options:\n"
  588. " -h This help text.\n"
  589. " -q Loggable output - no progress indicator\n"
  590. " -qq No output except for errors\n"
  591. " -d Download only - do NOT install or unpack archives\n"
  592. " -s No-act. Perform ordering simulation\n"
  593. " -y Assume Yes to all queries and do not prompt\n"
  594. " -f Attempt to continue if the integrity check fails\n"
  595. " -m Attempt to continue if archives are unlocatable\n"
  596. " -u Show a list of upgraded packages as well\n"
  597. " -b Build the source package after fetching it\n"
  598. " -c=? Read this configuration file\n"
  599. " -o=? Set an arbitary configuration option, eg -o dir::cache=/tmp\n"
  600. "See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
  601. "pages for more information and options.\n"
  602. " This APT has Super Cow Powers.\n"
  603. msgstr ""
  604. #: cmdline/acqprogress.cc:55
  605. msgid "Hit "
  606. msgstr "接觸 "
  607. #: cmdline/acqprogress.cc:79
  608. msgid "Get:"
  609. msgstr "讀取:"
  610. #: cmdline/acqprogress.cc:110
  611. msgid "Ign "
  612. msgstr "不理 "
  613. #: cmdline/acqprogress.cc:114
  614. msgid "Err "
  615. msgstr "錯誤 "
  616. #: cmdline/acqprogress.cc:135
  617. #, c-format
  618. msgid "Fetched %sB in %s (%sB/s)\n"
  619. msgstr "讀取 %sB 用了 %s (%sB/s)\n"
  620. #: cmdline/acqprogress.cc:225
  621. msgid " [Working]"
  622. msgstr " [工作中]"
  623. #: cmdline/acqprogress.cc:271
  624. #, fuzzy, c-format
  625. msgid ""
  626. "Media Change: Please insert the disc labeled '%s' in the drive '%s' and "
  627. "press enter\n"
  628. msgstr "更換媒體:請把名為『%s』的碟片插入『%s』碟機,然後按 [Enter] 鍵。\n"
  629. #: cmdline/apt-sortpkgs.cc:86
  630. msgid "Unknown package record!"
  631. msgstr ""
  632. #: cmdline/apt-sortpkgs.cc:150
  633. msgid ""
  634. "Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
  635. "\n"
  636. "apt-sortpkgs is a simple tool to sort package files. The -s option is used\n"
  637. "to indicate what kind of file it is.\n"
  638. "\n"
  639. "Options:\n"
  640. " -h This help text\n"
  641. " -s Use source file sorting\n"
  642. " -c=? Read this configuration file\n"
  643. " -o=? Set an arbitary configuration option, eg -o dir::cache=/tmp\n"
  644. msgstr ""
  645. #: dselect/install:32
  646. msgid "Bad default setting!"
  647. msgstr ""
  648. #: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:93
  649. #: dselect/install:104 dselect/update:45
  650. msgid "Press enter to continue."
  651. msgstr "請按 [Enter] 鍵繼續。"
  652. #: dselect/install:100
  653. msgid "Some errors occurred while unpacking. I'm going to configure the"
  654. msgstr ""
  655. #: dselect/install:101
  656. msgid "packages that were installed. This may result in duplicate errors"
  657. msgstr ""
  658. #: dselect/install:102
  659. msgid "or errors caused by missing dependencies. This is OK, only the errors"
  660. msgstr ""
  661. #: dselect/install:103
  662. msgid ""
  663. "above this message are important. Please fix them and run [I]nstall again"
  664. msgstr ""
  665. #: dselect/update:30
  666. msgid "Merging Available information"
  667. msgstr "結合現有資料中"
  668. #: apt-inst/contrib/extracttar.cc:115
  669. #, fuzzy
  670. msgid "Failed to create pipes"
  671. msgstr "無法下載某些檔案。"
  672. #: apt-inst/contrib/extracttar.cc:140
  673. #, fuzzy
  674. msgid "Failed to exec gzip "
  675. msgstr "無法下載『%s』檔案。%s\n"
  676. #: apt-inst/contrib/extracttar.cc:177 apt-inst/contrib/extracttar.cc:203
  677. msgid "Corrupted archive"
  678. msgstr ""
  679. #: apt-inst/contrib/extracttar.cc:192
  680. #, fuzzy
  681. msgid "Tar Checksum failed, archive corrupted"
  682. msgstr "套件暫存檔損壞。"
  683. #: apt-inst/contrib/extracttar.cc:295
  684. #, c-format
  685. msgid "Unknown TAR header type %u, member %s"
  686. msgstr ""
  687. #: apt-inst/contrib/arfile.cc:73
  688. msgid "Invalid archive signature"
  689. msgstr ""
  690. #: apt-inst/contrib/arfile.cc:81
  691. msgid "Error reading archive member header"
  692. msgstr ""
  693. #: apt-inst/contrib/arfile.cc:93 apt-inst/contrib/arfile.cc:105
  694. msgid "Invalid archive member header"
  695. msgstr ""
  696. #: apt-inst/contrib/arfile.cc:131
  697. msgid "Archive is too short"
  698. msgstr ""
  699. #: apt-inst/contrib/arfile.cc:135
  700. #, fuzzy
  701. msgid "Failed to read the archive headers"
  702. msgstr "無法下載某些檔案。"
  703. #: apt-inst/filelist.cc:384
  704. msgid "DropNode called on still linked node"
  705. msgstr ""
  706. #: apt-inst/filelist.cc:416
  707. #, fuzzy
  708. msgid "Failed to locate the hash element!"
  709. msgstr "CD-ROM 狀況讀取失敗"
  710. #: apt-inst/filelist.cc:463
  711. #, fuzzy
  712. msgid "Failed to allocate diversion"
  713. msgstr "CD-ROM 狀況讀取失敗"
  714. #: apt-inst/filelist.cc:468
  715. msgid "Internal Error in AddDiversion"
  716. msgstr ""
  717. #: apt-inst/filelist.cc:481
  718. #, c-format
  719. msgid "Trying to overwrite a diversion, %s -> %s and %s/%s"
  720. msgstr ""
  721. #: apt-inst/filelist.cc:510
  722. #, c-format
  723. msgid "Double add of diversion %s -> %s"
  724. msgstr ""
  725. #: apt-inst/filelist.cc:553
  726. #, c-format
  727. msgid "Duplicate conf file %s/%s"
  728. msgstr ""
  729. #: apt-inst/dirstream.cc:45 apt-inst/dirstream.cc:50 apt-inst/dirstream.cc:53
  730. #, fuzzy, c-format
  731. msgid "Failed write file %s"
  732. msgstr "無法下載『%s』檔案。%s\n"
  733. #: apt-inst/dirstream.cc:80 apt-inst/dirstream.cc:88
  734. #, fuzzy, c-format
  735. msgid "Failed to close file %s"
  736. msgstr "無法下載『%s』檔案。%s\n"
  737. #: apt-inst/extract.cc:96 apt-inst/extract.cc:167
  738. #, c-format
  739. msgid "The path %s is too long"
  740. msgstr ""
  741. #: apt-inst/extract.cc:127
  742. #, c-format
  743. msgid "Unpacking %s more than once"
  744. msgstr ""
  745. #: apt-inst/extract.cc:137
  746. #, c-format
  747. msgid "The directory %s is diverted"
  748. msgstr ""
  749. #: apt-inst/extract.cc:147
  750. #, c-format
  751. msgid "The package is trying to write to the diversion target %s/%s"
  752. msgstr ""
  753. #: apt-inst/extract.cc:157 apt-inst/extract.cc:300
  754. msgid "The diversion path is too long"
  755. msgstr ""
  756. #: apt-inst/extract.cc:181 apt-inst/extract.cc:193 apt-inst/extract.cc:210
  757. #: apt-inst/deb/dpkgdb.cc:121
  758. #, fuzzy, c-format
  759. msgid "Failed to stat %s"
  760. msgstr "無法讀取『%s』的目錄資料。"
  761. #: apt-inst/extract.cc:188
  762. #, fuzzy, c-format
  763. msgid "Failed to rename %s to %s"
  764. msgstr "無法下載『%s』檔案。%s\n"
  765. #: apt-inst/extract.cc:243
  766. #, c-format
  767. msgid "The directory %s is being replaced by a non-directory"
  768. msgstr ""
  769. #: apt-inst/extract.cc:283
  770. msgid "Failed to locate node in its hash bucket"
  771. msgstr ""
  772. #: apt-inst/extract.cc:287
  773. msgid "The path is too long"
  774. msgstr ""
  775. #: apt-inst/extract.cc:417
  776. #, c-format
  777. msgid "Overwrite package match with no version for %s"
  778. msgstr ""
  779. #: apt-inst/extract.cc:434
  780. #, c-format
  781. msgid "File %s/%s overwrites the one in the package %s"
  782. msgstr ""
  783. #: apt-inst/extract.cc:467 apt-pkg/contrib/configuration.cc:701
  784. #: apt-pkg/contrib/cdromutl.cc:153 apt-pkg/acquire.cc:412 apt-pkg/clean.cc:38
  785. #, c-format
  786. msgid "Unable to read %s"
  787. msgstr "無法讀取『%s』。"
  788. #: apt-inst/extract.cc:494
  789. #, fuzzy, c-format
  790. msgid "Unable to stat %s"
  791. msgstr "無法讀取『%s』的目錄資料。"
  792. #: apt-inst/deb/dpkgdb.cc:55 apt-inst/deb/dpkgdb.cc:61
  793. #, fuzzy, c-format
  794. msgid "Failed to remove %s"
  795. msgstr "無法讀取『%s』。"
  796. #: apt-inst/deb/dpkgdb.cc:110 apt-inst/deb/dpkgdb.cc:112
  797. #, fuzzy, c-format
  798. msgid "Unable to create %s"
  799. msgstr "無法讀取『%s』。"
  800. #: apt-inst/deb/dpkgdb.cc:118
  801. #, fuzzy, c-format
  802. msgid "Failed to stat %sinfo"
  803. msgstr "無法讀取『%s』的目錄資料。"
  804. #: apt-inst/deb/dpkgdb.cc:123
  805. msgid "The info and temp directories need to be on the same filesystem"
  806. msgstr ""
  807. #. Build the status cache
  808. #: apt-inst/deb/dpkgdb.cc:139 apt-pkg/pkgcachegen.cc:643
  809. #: apt-pkg/pkgcachegen.cc:701 apt-pkg/pkgcachegen.cc:706
  810. #: apt-pkg/pkgcachegen.cc:829
  811. msgid "Reading Package Lists"
  812. msgstr "讀取套件清單中"
  813. #: apt-inst/deb/dpkgdb.cc:180
  814. #, fuzzy, c-format
  815. msgid "Failed to change to the admin dir %sinfo"
  816. msgstr "CD-ROM 狀況讀取失敗"
  817. #: apt-inst/deb/dpkgdb.cc:201 apt-inst/deb/dpkgdb.cc:355
  818. #: apt-inst/deb/dpkgdb.cc:448
  819. msgid "Internal Error getting a Package Name"
  820. msgstr ""
  821. #: apt-inst/deb/dpkgdb.cc:205
  822. msgid "Reading File Listing"
  823. msgstr "讀取軟件表中"
  824. #: apt-inst/deb/dpkgdb.cc:216
  825. #, c-format
  826. msgid ""
  827. "Failed to open the list file '%sinfo/%s'. If you cannot restore this file "
  828. "then make it empty and immediately re-install the same version of the "
  829. "package!"
  830. msgstr ""
  831. #: apt-inst/deb/dpkgdb.cc:229 apt-inst/deb/dpkgdb.cc:242
  832. #, c-format
  833. msgid "Failed reading the list file %sinfo/%s"
  834. msgstr ""
  835. #: apt-inst/deb/dpkgdb.cc:266
  836. msgid "Internal Error getting a Node"
  837. msgstr ""
  838. #: apt-inst/deb/dpkgdb.cc:309
  839. #, c-format
  840. msgid "Failed to open the diversions file %sdiversions"
  841. msgstr ""
  842. #: apt-inst/deb/dpkgdb.cc:324
  843. #, fuzzy
  844. msgid "The diversion file is corrupted"
  845. msgstr "套件暫存檔損壞。"
  846. #: apt-inst/deb/dpkgdb.cc:331 apt-inst/deb/dpkgdb.cc:336
  847. #: apt-inst/deb/dpkgdb.cc:341
  848. #, c-format
  849. msgid "Invalid line in the diversion file: %s"
  850. msgstr ""
  851. #: apt-inst/deb/dpkgdb.cc:362
  852. msgid "Internal Error adding a diversion"
  853. msgstr ""
  854. #: apt-inst/deb/dpkgdb.cc:383
  855. msgid "The pkg cache must be initialize first"
  856. msgstr ""
  857. #: apt-inst/deb/dpkgdb.cc:386
  858. msgid "Reading File List"
  859. msgstr "讀取軟件表中"
  860. #: apt-inst/deb/dpkgdb.cc:443
  861. #, c-format
  862. msgid "Failed to find a Package: Header, offset %lu"
  863. msgstr ""
  864. #: apt-inst/deb/dpkgdb.cc:465
  865. #, c-format
  866. msgid "Bad ConfFile section in the status file. Offset %lu"
  867. msgstr ""
  868. #: apt-inst/deb/dpkgdb.cc:470
  869. #, c-format
  870. msgid "Error parsing MD5. Offset %lu"
  871. msgstr ""
  872. #: apt-inst/deb/debfile.cc:55
  873. #, c-format
  874. msgid "This is not a valid DEB archive, missing '%s' member"
  875. msgstr ""
  876. #: apt-inst/deb/debfile.cc:72
  877. #, c-format
  878. msgid "Internal Error, could not locate member %s"
  879. msgstr ""
  880. #: apt-inst/deb/debfile.cc:104
  881. #, fuzzy, c-format
  882. msgid "Couldn't change to %s"
  883. msgstr "無法取得『%s』鎖。"
  884. #: apt-inst/deb/debfile.cc:125
  885. msgid "Internal Error, could not locate member"
  886. msgstr ""
  887. #: apt-inst/deb/debfile.cc:158
  888. msgid "Failed to locate a valid control file"
  889. msgstr ""
  890. #: apt-inst/deb/debfile.cc:243
  891. msgid "Unparsible control file"
  892. msgstr ""
  893. #: apt-pkg/contrib/mmap.cc:82
  894. msgid "Can't mmap an empty file"
  895. msgstr ""
  896. #: apt-pkg/contrib/mmap.cc:87
  897. #, c-format
  898. msgid "Couldn't make mmap of %lu bytes"
  899. msgstr ""
  900. #: apt-pkg/contrib/strutl.cc:941
  901. #, c-format
  902. msgid "Selection %s not found"
  903. msgstr "選項『%s』找不到。"
  904. #: apt-pkg/contrib/configuration.cc:449
  905. #, c-format
  906. msgid "Opening configuration file %s"
  907. msgstr ""
  908. #: apt-pkg/contrib/configuration.cc:559
  909. #, c-format
  910. msgid "Syntax error %s:%u: Block starts with no name."
  911. msgstr ""
  912. #: apt-pkg/contrib/configuration.cc:578
  913. #, c-format
  914. msgid "Syntax error %s:%u: Malformed Tag"
  915. msgstr ""
  916. #: apt-pkg/contrib/configuration.cc:595
  917. #, c-format
  918. msgid "Syntax error %s:%u: Extra junk after value"
  919. msgstr ""
  920. #: apt-pkg/contrib/configuration.cc:635
  921. #, c-format
  922. msgid "Syntax error %s:%u: Directives can only be done at the top level"
  923. msgstr ""
  924. #: apt-pkg/contrib/configuration.cc:642
  925. #, c-format
  926. msgid "Syntax error %s:%u: Too many nested includes"
  927. msgstr ""
  928. #: apt-pkg/contrib/configuration.cc:646 apt-pkg/contrib/configuration.cc:651
  929. #, c-format
  930. msgid "Syntax error %s:%u: Included from here"
  931. msgstr ""
  932. #: apt-pkg/contrib/configuration.cc:655
  933. #, c-format
  934. msgid "Syntax error %s:%u: Unsupported directive '%s'"
  935. msgstr ""
  936. #: apt-pkg/contrib/configuration.cc:689
  937. #, c-format
  938. msgid "Syntax error %s:%u: Extra junk at end of file"
  939. msgstr ""
  940. #: apt-pkg/contrib/progress.cc:154
  941. #, c-format
  942. msgid "%c%s... Error!"
  943. msgstr ""
  944. #: apt-pkg/contrib/progress.cc:156
  945. #, fuzzy, c-format
  946. msgid "%c%s... Done"
  947. msgstr "%s... 完成"
  948. #: apt-pkg/contrib/cmndline.cc:80
  949. #, c-format
  950. msgid "Command line option '%c' [from %s] is not known."
  951. msgstr ""
  952. #: apt-pkg/contrib/cmndline.cc:106 apt-pkg/contrib/cmndline.cc:114
  953. #: apt-pkg/contrib/cmndline.cc:122
  954. #, c-format
  955. msgid "Command line option %s is not understood"
  956. msgstr ""
  957. #: apt-pkg/contrib/cmndline.cc:127
  958. #, c-format
  959. msgid "Command line option %s is not boolean"
  960. msgstr ""
  961. #: apt-pkg/contrib/cmndline.cc:166 apt-pkg/contrib/cmndline.cc:187
  962. #, c-format
  963. msgid "Option %s requires an argument."
  964. msgstr ""
  965. #: apt-pkg/contrib/cmndline.cc:201 apt-pkg/contrib/cmndline.cc:207
  966. #, c-format
  967. msgid "Option %s: Configuration item sepecification must have an =<val>."
  968. msgstr ""
  969. #: apt-pkg/contrib/cmndline.cc:237
  970. #, c-format
  971. msgid "Option %s requires an integer argument, not '%s'"
  972. msgstr ""
  973. #: apt-pkg/contrib/cmndline.cc:268
  974. #, c-format
  975. msgid "Option '%s' is too long"
  976. msgstr ""
  977. #: apt-pkg/contrib/cmndline.cc:301
  978. #, c-format
  979. msgid "Sense %s is not understood, try true or false."
  980. msgstr ""
  981. #: apt-pkg/contrib/cmndline.cc:351
  982. #, c-format
  983. msgid "Invalid operation %s"
  984. msgstr ""
  985. #: apt-pkg/contrib/cdromutl.cc:55
  986. #, c-format
  987. msgid "Unable to stat the mount point %s"
  988. msgstr ""
  989. #: apt-pkg/contrib/cdromutl.cc:149 apt-pkg/acquire.cc:418 apt-pkg/clean.cc:44
  990. #, c-format
  991. msgid "Unable to change to %s"
  992. msgstr "無法進入『%s』目錄。"
  993. #: apt-pkg/contrib/cdromutl.cc:190
  994. msgid "Failed to stat the cdrom"
  995. msgstr "CD-ROM 狀況讀取失敗"
  996. #: apt-pkg/contrib/fileutl.cc:80
  997. #, c-format
  998. msgid "Not using locking for read only lock file %s"
  999. msgstr ""
  1000. #: apt-pkg/contrib/fileutl.cc:85
  1001. #, c-format
  1002. msgid "Could not open lock file %s"
  1003. msgstr "無法開啟『%s』鎖檔。"
  1004. #: apt-pkg/contrib/fileutl.cc:103
  1005. #, c-format
  1006. msgid "Not using locking for nfs mounted lock file %s"
  1007. msgstr ""
  1008. #: apt-pkg/contrib/fileutl.cc:107
  1009. #, c-format
  1010. msgid "Could not get lock %s"
  1011. msgstr "無法取得『%s』鎖。"
  1012. #: apt-pkg/contrib/fileutl.cc:358
  1013. #, c-format
  1014. msgid "Waited, for %s but it wasn't there"
  1015. msgstr ""
  1016. #: apt-pkg/contrib/fileutl.cc:368
  1017. #, c-format
  1018. msgid "Sub-process %s received a segmentation fault."
  1019. msgstr ""
  1020. #: apt-pkg/contrib/fileutl.cc:371
  1021. #, c-format
  1022. msgid "Sub-process %s returned an error code (%u)"
  1023. msgstr ""
  1024. #: apt-pkg/contrib/fileutl.cc:373
  1025. #, c-format
  1026. msgid "Sub-process %s exited unexpectedly"
  1027. msgstr ""
  1028. #: apt-pkg/contrib/fileutl.cc:417
  1029. #, c-format
  1030. msgid "Could not open file %s"
  1031. msgstr "無法開啟『%s』檔案。"
  1032. #: apt-pkg/contrib/fileutl.cc:452
  1033. msgid "Read error"
  1034. msgstr "讀取失敗。"
  1035. #: apt-pkg/contrib/fileutl.cc:473
  1036. #, c-format
  1037. msgid "read, still have %lu to read but none left"
  1038. msgstr ""
  1039. #: apt-pkg/contrib/fileutl.cc:491
  1040. msgid "Write error"
  1041. msgstr "寫入失敗。"
  1042. #: apt-pkg/contrib/fileutl.cc:503
  1043. #, c-format
  1044. msgid "write, still have %lu to write but couldn't"
  1045. msgstr ""
  1046. #: apt-pkg/contrib/fileutl.cc:578
  1047. msgid "Problem closing the file"
  1048. msgstr ""
  1049. #: apt-pkg/contrib/fileutl.cc:584
  1050. msgid "Problem unlinking the file"
  1051. msgstr ""
  1052. #: apt-pkg/contrib/fileutl.cc:595
  1053. msgid "Problem syncing the file"
  1054. msgstr ""
  1055. #: apt-pkg/pkgcache.cc:126
  1056. msgid "Empty package cache"
  1057. msgstr "套件暫存檔是空的。"
  1058. #: apt-pkg/pkgcache.cc:132
  1059. msgid "The package cache file is corrupted"
  1060. msgstr "套件暫存檔損壞。"
  1061. #: apt-pkg/pkgcache.cc:137
  1062. msgid "The package cache file is an incompatible version"
  1063. msgstr "套件暫存檔版本不符合。"
  1064. #: apt-pkg/pkgcache.cc:142
  1065. #, c-format
  1066. msgid "This APT does not support the Versioning System '%s'"
  1067. msgstr "本軟體不支持『%s』版本系統。"
  1068. #: apt-pkg/pkgcache.cc:147
  1069. #, fuzzy
  1070. msgid "The package cache was build for a different architecture"
  1071. msgstr "套件暫存檔是在另一種系統上產生的。"
  1072. #: apt-pkg/pkgcache.cc:218
  1073. msgid "Depends"
  1074. msgstr "依存關係"
  1075. #: apt-pkg/pkgcache.cc:218
  1076. msgid "PreDepends"
  1077. msgstr "特別依存關係"
  1078. #: apt-pkg/pkgcache.cc:218
  1079. msgid "Suggests"
  1080. msgstr "建議"
  1081. #: apt-pkg/pkgcache.cc:219
  1082. msgid "Recommends"
  1083. msgstr "推薦"
  1084. #: apt-pkg/pkgcache.cc:219
  1085. msgid "Conflicts"
  1086. msgstr "衝突"
  1087. #: apt-pkg/pkgcache.cc:219
  1088. msgid "Replaces"
  1089. msgstr "取代"
  1090. #: apt-pkg/pkgcache.cc:220
  1091. msgid "Obsoletes"
  1092. msgstr "淘汰"
  1093. #: apt-pkg/pkgcache.cc:231
  1094. msgid "important"
  1095. msgstr "重要"
  1096. #: apt-pkg/pkgcache.cc:231
  1097. msgid "required"
  1098. msgstr "必要"
  1099. #: apt-pkg/pkgcache.cc:231
  1100. msgid "standard"
  1101. msgstr "標準"
  1102. #: apt-pkg/pkgcache.cc:232
  1103. msgid "optional"
  1104. msgstr "次要"
  1105. #: apt-pkg/pkgcache.cc:232
  1106. msgid "extra"
  1107. msgstr "添加"
  1108. #: apt-pkg/depcache.cc:60 apt-pkg/depcache.cc:89
  1109. msgid "Building Dependency Tree"
  1110. msgstr "了解套件依存關係中"
  1111. #: apt-pkg/depcache.cc:61
  1112. msgid "Candidate Versions"
  1113. msgstr "候選版本"
  1114. #: apt-pkg/depcache.cc:90
  1115. msgid "Dependency Generation"
  1116. msgstr "產生套件依存關係"
  1117. #: apt-pkg/tagfile.cc:72
  1118. #, c-format
  1119. msgid "Unable to parse package file %s (1)"
  1120. msgstr "無法辨識套件『%s』(1)。"
  1121. #: apt-pkg/tagfile.cc:159
  1122. #, c-format
  1123. msgid "Unable to parse package file %s (2)"
  1124. msgstr "無法辨識套件『%s』(1)。"
  1125. #: apt-pkg/sourcelist.cc:88
  1126. #, c-format
  1127. msgid "Malformed line %lu in source list %s (URI)"
  1128. msgstr "來源檔『%2$s』第 %1$lu 行有錯誤 (通用資源識別號)。"
  1129. #: apt-pkg/sourcelist.cc:90
  1130. #, c-format
  1131. msgid "Malformed line %lu in source list %s (dist)"
  1132. msgstr "來源檔『%2$s』第 %1$lu 行有錯誤 (版本)。"
  1133. #: apt-pkg/sourcelist.cc:93
  1134. #, c-format
  1135. msgid "Malformed line %lu in source list %s (URI parse)"
  1136. msgstr "來源檔『%2$s』第 %1$lu 行有錯誤 (通用資源識別號分辨)。"
  1137. #: apt-pkg/sourcelist.cc:99
  1138. #, c-format
  1139. msgid "Malformed line %lu in source list %s (Absolute dist)"
  1140. msgstr "來源檔『%2$s』第 %1$lu 行有錯誤 (特定版本)。"
  1141. #: apt-pkg/sourcelist.cc:106
  1142. #, c-format
  1143. msgid "Malformed line %lu in source list %s (dist parse)"
  1144. msgstr "來源檔『%2$s』第 %1$lu 行有錯誤 (版本分辨)。"
  1145. #: apt-pkg/sourcelist.cc:183 apt-pkg/sourcelist.cc:207
  1146. #, c-format
  1147. msgid "Vendor block %s is invalid"
  1148. msgstr "『%s』商家區段有錯誤。"
  1149. #: apt-pkg/sourcelist.cc:235
  1150. #, c-format
  1151. msgid "Opening %s"
  1152. msgstr "開啟『%s』中"
  1153. #: apt-pkg/sourcelist.cc:249
  1154. #, c-format
  1155. msgid "Line %u too long in source list %s."
  1156. msgstr "來源檔『%2$s』第 %1$u 行太長。"
  1157. #: apt-pkg/sourcelist.cc:266
  1158. #, c-format
  1159. msgid "Malformed line %u in source list %s (type)"
  1160. msgstr "來源檔『%2$s』第 %1$u 行有錯誤 (類別)。"
  1161. #: apt-pkg/sourcelist.cc:270
  1162. #, c-format
  1163. msgid "Type '%s' is not known in on line %u in source list %s"
  1164. msgstr "來源檔『%3$s』第 %2$u 行的『%1$s』類別有錯誤。"
  1165. #: apt-pkg/sourcelist.cc:279 apt-pkg/sourcelist.cc:282
  1166. #, c-format
  1167. msgid "Malformed line %u in source list %s (vendor id)"
  1168. msgstr "來源檔『%2$s』第 %1$u 行有錯誤 (商家名稱)。"
  1169. #: apt-pkg/sourcelist.cc:296
  1170. #, c-format
  1171. msgid "Unknown vendor ID '%s' in line %u of source list %s"
  1172. msgstr "來源檔『%3$s』第 %2$u 行的『%1$s』商家名稱有錯誤。"
  1173. #: apt-pkg/packagemanager.cc:402
  1174. #, c-format
  1175. msgid ""
  1176. "This installation run will require temporarily removing the essential "
  1177. "package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
  1178. "you really want to do it, activate the APT::Force-LoopBreak option."
  1179. msgstr ""
  1180. "此安裝因衝突或特別依存關係,需暫時刪除『%s』這個重要套件。這種情形通常有問"
  1181. "題,但您確定的話請啟動『APT::Force-LoopBreak』選項。"
  1182. #: apt-pkg/pkgrecords.cc:37
  1183. #, c-format
  1184. msgid "Index file type '%s' is not supported"
  1185. msgstr "本軟體不支持『%s』型的索引檔。"
  1186. #: apt-pkg/algorithms.cc:238
  1187. #, c-format
  1188. msgid ""
  1189. "The package %s needs to be reinstalled, but I can't find an archive for it."
  1190. msgstr "套件『%s』需要重新安裝,但找不到軟件檔案。"
  1191. #: apt-pkg/algorithms.cc:1056
  1192. msgid ""
  1193. "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
  1194. "held packages."
  1195. msgstr "無法解決依存關係。可能原因是某些套件被押後。"
  1196. #: apt-pkg/algorithms.cc:1058
  1197. msgid "Unable to correct problems, you have held broken packages."
  1198. msgstr "無法解決問題,因為某些損毀的套件被押後。"
  1199. #: apt-pkg/acquire.cc:61
  1200. #, c-format
  1201. msgid "Lists directory %spartial is missing."
  1202. msgstr "找不到『%spartial』清單目錄。"
  1203. #: apt-pkg/acquire.cc:65
  1204. #, c-format
  1205. msgid "Archive directory %spartial is missing."
  1206. msgstr "找不到『%spartial』檔案目錄。"
  1207. #: apt-pkg/acquire-worker.cc:112
  1208. #, c-format
  1209. msgid "The method driver %s could not be found."
  1210. msgstr "找不到安裝方式『%s』的驅動程式。"
  1211. #: apt-pkg/acquire-worker.cc:161
  1212. #, c-format
  1213. msgid "Method %s did not start correctly"
  1214. msgstr "安裝方式『%s』沒有正確啟動。"
  1215. #: apt-pkg/init.cc:117
  1216. #, c-format
  1217. msgid "Packaging system '%s' is not supported"
  1218. msgstr "本軟體不支持『%s』包裝法。"
  1219. #: apt-pkg/init.cc:133
  1220. msgid "Unable to determine a suitable system type"
  1221. msgstr "無法明白系統類別。"
  1222. #: apt-pkg/clean.cc:61
  1223. #, c-format
  1224. msgid "Unable to stat %s."
  1225. msgstr "無法讀取『%s』的目錄資料。"
  1226. #: apt-pkg/srcrecords.cc:49
  1227. msgid "You must put some 'source' URIs in your sources.list"
  1228. msgstr "『sources.list』檔中必須有一些『source』指令。"
  1229. #: apt-pkg/cachefile.cc:73
  1230. msgid "The package lists or status file could not be parsed or opened."
  1231. msgstr "無法讀取套件清單或狀況檔。"
  1232. #: apt-pkg/cachefile.cc:77
  1233. msgid "You may want to run apt-get update to correct these problems"
  1234. msgstr "用『apt-get -f install』指令或許能修正這些問題。"
  1235. #: apt-pkg/policy.cc:269
  1236. msgid "Invalid record in the preferences file, no Package header"
  1237. msgstr "喜好檔有錯誤—缺少套件前置檔。"
  1238. #: apt-pkg/policy.cc:291
  1239. #, c-format
  1240. msgid "Did not understand pin type %s"
  1241. msgstr "本軟體不支持『%s』型的版本釘子。"
  1242. #: apt-pkg/pkgcachegen.cc:74
  1243. msgid "Cache has an incompatible versioning system"
  1244. msgstr "套件暫存檔使用的是不相容的版本系統。"
  1245. #: apt-pkg/pkgcachegen.cc:117
  1246. #, c-format
  1247. msgid "Error occured while processing %s (NewPackage)"
  1248. msgstr "處理『%s』時發生錯誤 (NewPackage)。"
  1249. #: apt-pkg/pkgcachegen.cc:129
  1250. #, c-format
  1251. msgid "Error occured while processing %s (UsePackage1)"
  1252. msgstr "處理『%s』時發生錯誤 (UsePackage1)。"
  1253. #: apt-pkg/pkgcachegen.cc:150
  1254. #, c-format
  1255. msgid "Error occured while processing %s (UsePackage2)"
  1256. msgstr "處理『%s』時發生錯誤 (UsePackage2)。"
  1257. #: apt-pkg/pkgcachegen.cc:154
  1258. #, c-format
  1259. msgid "Error occured while processing %s (NewFileVer1)"
  1260. msgstr "處理『%s』時發生錯誤 (NewFileVer1)。"
  1261. #: apt-pkg/pkgcachegen.cc:184
  1262. #, c-format
  1263. msgid "Error occured while processing %s (NewVersion1)"
  1264. msgstr "處理『%s』時發生錯誤 (NewVersion1)。"
  1265. #: apt-pkg/pkgcachegen.cc:188
  1266. #, c-format
  1267. msgid "Error occured while processing %s (UsePackage3)"
  1268. msgstr "處理『%s』時發生錯誤 (UsePackage3)。"
  1269. #: apt-pkg/pkgcachegen.cc:192
  1270. #, c-format
  1271. msgid "Error occured while processing %s (NewVersion2)"
  1272. msgstr "處理『%s』時發生錯誤 (NewVersion2)。"
  1273. #: apt-pkg/pkgcachegen.cc:207
  1274. msgid "Wow, you exceeded the number of package names this APT is capable of."
  1275. msgstr "套件數量超過本程式的能力。"
  1276. #: apt-pkg/pkgcachegen.cc:210
  1277. msgid "Wow, you exceeded the number of versions this APT is capable of."
  1278. msgstr "套件版本數量超過本程式的能力。"
  1279. #: apt-pkg/pkgcachegen.cc:213
  1280. msgid "Wow, you exceeded the number of dependencies this APT is capable of."
  1281. msgstr "依存關係數量超過本程式的能力。"
  1282. #: apt-pkg/pkgcachegen.cc:241
  1283. #, c-format
  1284. msgid "Error occured while processing %s (FindPkg)"
  1285. msgstr "處理『%s』時發生錯誤 (FindPkg)。"
  1286. #: apt-pkg/pkgcachegen.cc:254
  1287. #, c-format
  1288. msgid "Error occured while processing %s (CollectFileProvides)"
  1289. msgstr "處理『%s』時發生錯誤 (CollectFileProvides)。"
  1290. #: apt-pkg/pkgcachegen.cc:260
  1291. #, c-format
  1292. msgid "Package %s %s was not found while processing file dependencies"
  1293. msgstr ""
  1294. #: apt-pkg/pkgcachegen.cc:574
  1295. #, c-format
  1296. msgid "Couldn't stat source package list %s"
  1297. msgstr "無法讀取來源檔『%s』的目錄資料。"
  1298. #: apt-pkg/pkgcachegen.cc:658
  1299. msgid "Collecting File Provides"
  1300. msgstr ""
  1301. #: apt-pkg/pkgcachegen.cc:774 apt-pkg/pkgcachegen.cc:781
  1302. msgid "IO Error saving source cache"
  1303. msgstr "無法寫入來源暫存檔。"
  1304. #: apt-pkg/acquire-item.cc:124
  1305. #, c-format
  1306. msgid "rename failed, %s (%s -> %s)."
  1307. msgstr "檔名因『%s』更換失敗 (%s → %s)。"
  1308. #: apt-pkg/acquire-item.cc:353
  1309. #, c-format
  1310. msgid ""
  1311. "I wasn't able to locate a file for the %s package. This might mean you need "
  1312. "to manually fix this package. (due to missing arch)"
  1313. msgstr "找不到套件『%s』需要的某檔案。請您修理這個套件再試試。"
  1314. #: apt-pkg/acquire-item.cc:388
  1315. #, c-format
  1316. msgid ""
  1317. "I wasn't able to locate file for the %s package. This might mean you need to "
  1318. "manually fix this package."
  1319. msgstr "找不到套件『%s』需要的某檔案。請您修理這個套件再試試。"
  1320. #: apt-pkg/acquire-item.cc:419
  1321. #, c-format
  1322. msgid ""
  1323. "The package index files are corrupted. No Filename: field for package %s."
  1324. msgstr "套件『%s』索引檔損壞—缺少『Filename:』欄。"
  1325. #: apt-pkg/acquire-item.cc:501
  1326. msgid "Size mismatch"
  1327. msgstr "檔案大小不符合。"
  1328. #: apt-pkg/acquire-item.cc:511
  1329. msgid "MD5Sum mismatch"
  1330. msgstr "MD5 檢查碼不符合。"
  1331. #, fuzzy
  1332. #~ msgid ""
  1333. #~ "Usage: apt-ftparchive [options] command\n"
  1334. #~ "Commands: packges binarypath [overridefile [pathprefix]]\n"
  1335. #~ " sources srcpath [overridefile [pathprefix]]\n"
  1336. #~ " contents path\n"
  1337. #~ " generate config [groups]\n"
  1338. #~ " clean config\n"
  1339. #~ "\n"
  1340. #~ "apt-ftparchive generates index files for Debian archives. It supports\n"
  1341. #~ "many styles of generation from fully automated to functional "
  1342. #~ "replacements\n"
  1343. #~ "for dpkg-scanpackages and dpkg-scansources\n"
  1344. #~ "\n"
  1345. #~ "apt-ftparchive generates Package files from a tree of .debs. The\n"
  1346. #~ "Package file contains the contents of all the control fields from\n"
  1347. #~ "each package as well as the MD5 hash and filesize. An override file\n"
  1348. #~ "is supported to force the value of Priority and Section.\n"
  1349. #~ "\n"
  1350. #~ "Similarly apt-ftparchive generates Sources files from a tree of .dscs.\n"
  1351. #~ "The --source-override option can be used to specify a src override file\n"
  1352. #~ "\n"
  1353. #~ "The 'packages' and 'sources' command should be run in the root of the\n"
  1354. #~ "tree. BinaryPath should point to the base of the recursive search and \n"
  1355. #~ "override file should contian the override flags. Pathprefix is\n"
  1356. #~ "appended to the filename fields if present. Example usage from the \n"
  1357. #~ "debian archive:\n"
  1358. #~ " apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
  1359. #~ " dists/potato/main/binary-i386/Packages\n"
  1360. #~ "\n"
  1361. #~ "Options:\n"
  1362. #~ " -h This help text\n"
  1363. #~ " --md5 Control MD5 generation\n"
  1364. #~ " -s=? Source override file\n"
  1365. #~ " -q Quiet\n"
  1366. #~ " -d=? Select the optional caching database\n"
  1367. #~ " --no-delink Enable delinking debug mode\n"
  1368. #~ " --contents Control contents file generation\n"
  1369. #~ " -c=? Read this configuration file\n"
  1370. #~ " -o=? Set an arbitary configuration option"
  1371. #~ msgstr ""
  1372. #~ "『apt-ftparchive』是用來建立索引檔的工具。它從全自動到取代\n"
  1373. #~ "『dpkg-scanpackages』及『dpkg-scansources』等多種方式都支援。\n"
  1374. #~ "\n"
  1375. #~ "『apt-ftparchive』利用一個由『.deb』檔案組成的樹狀結構來建立套件檔案。\n"
  1376. #~ "套件檔內包含各種控制欄位、MD5 檢查碼、及檔案大小。另外本程式也支援一個\n"
  1377. #~ "[FIXME]\n"
  1378. #, fuzzy
  1379. #~ msgid "Unable to open DB2 file %s"
  1380. #~ msgstr "無法辨識套件『%s』(1)。"
  1381. #, fuzzy
  1382. #~ msgid "File date has changed %s"
  1383. #~ msgstr "無法進入『%s』目錄。"
  1384. #, fuzzy
  1385. #~ msgid "Unable to get a cursor"
  1386. #~ msgstr "無法讀取『%s』。"
  1387. #, fuzzy
  1388. #~ msgid "W: Unable to read directory %s\n"
  1389. #~ msgstr "無法讀取『%s』。"
  1390. #, fuzzy
  1391. #~ msgid "W: Unable to stat %s\n"
  1392. #~ msgstr "無法讀取『%s』的目錄資料。"
  1393. #~ msgid "E: "
  1394. #~ msgstr "錯誤:"
  1395. #~ msgid "W: "
  1396. #~ msgstr "警告:"
  1397. #, fuzzy
  1398. #~ msgid "Failed to resolve %s"
  1399. #~ msgstr "無法下載『%s』檔案。%s\n"
  1400. #, fuzzy
  1401. #~ msgid "Failed to open %s"
  1402. #~ msgstr "無法下載『%s』檔案。%s\n"
  1403. #, fuzzy
  1404. #~ msgid "Failed to readlink %s"
  1405. #~ msgstr "無法讀取『%s』。"
  1406. #, fuzzy
  1407. #~ msgid "Failed to unlink %s"
  1408. #~ msgstr "無法下載『%s』檔案。%s\n"
  1409. #, fuzzy
  1410. #~ msgid "*** Failed to link %s to %s"
  1411. #~ msgstr "無法下載『%s』檔案。%s\n"
  1412. #, fuzzy
  1413. #~ msgid "Unable to open %s"
  1414. #~ msgstr "無法讀取『%s』。"
  1415. #, fuzzy
  1416. #~ msgid "Failed to read the override file %s"
  1417. #~ msgstr "無法下載『%s』檔案。%s\n"
  1418. #, fuzzy
  1419. #~ msgid "Failed to create FILE*"
  1420. #~ msgstr "CD-ROM 狀況讀取失敗"
  1421. #, fuzzy
  1422. #~ msgid "Failed to fork"
  1423. #~ msgstr "失敗"
  1424. #, fuzzy
  1425. #~ msgid "Failed to exec compressor "
  1426. #~ msgstr "無法下載某些檔案。"
  1427. #, fuzzy
  1428. #~ msgid "Failed to read while computing MD5"
  1429. #~ msgstr "CD-ROM 狀況讀取失敗"
  1430. #, fuzzy
  1431. #~ msgid "Recommended packages:"
  1432. #~ msgstr "推薦"
  1433. #~ msgid "Unable to read the cdrom database %s"
  1434. #~ msgstr "無法讀取碟片資料庫『%s』。"
  1435. #~ msgid ""
  1436. #~ "Please use apt-cdrom to make this CD recognized by APT. apt-get update "
  1437. #~ "cannot be used to add new CDs"
  1438. #~ msgstr ""
  1439. #~ "要讓本程式辨認此碟片,請用『apt-cdrom』工具。『apt-get update』不能用來製"
  1440. #~ "造新的碟片。"
  1441. #~ msgid "Wrong CD"
  1442. #~ msgstr "碟片不正確。"
  1443. #~ msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
  1444. #~ msgstr "無法下駕『%s』內的碟片,或許它仍在使用中。"
  1445. #, fuzzy
  1446. #~ msgid "File not found"
  1447. #~ msgstr "選項『%s』找不到。"
  1448. #, fuzzy
  1449. #~ msgid "Failed to stat"
  1450. #~ msgstr "CD-ROM 狀況讀取失敗"
  1451. #~ msgid "Failed to set modification time"
  1452. #~ msgstr "日期更新失敗"
  1453. #~ msgid "Invalid URI, local URIS must not start with //"
  1454. #~ msgstr "通用資源識別號錯誤。本機資源識別號不應以『//』起頭。"
  1455. #~ msgid "Logging in"
  1456. #~ msgstr "登入中"
  1457. #~ msgid "Unable to determine the peer name"
  1458. #~ msgstr "無法解析對方主機名稱。"
  1459. #~ msgid "Unable to determine the local name"
  1460. #~ msgstr "無法解析本機名稱。"
  1461. #~ msgid "Server refused our connection and said: %s"
  1462. #~ msgstr "伺服器因『%s』不受理。"
  1463. #~ msgid "USER failed, server said: %s"
  1464. #~ msgstr "『USER』指令因『%s』失敗。"
  1465. #~ msgid "PASS failed, server said: %s"
  1466. #~ msgstr "『PASS』指令因『%s』失敗。"
  1467. #~ msgid ""
  1468. #~ "A proxy server was specified but no login script, Acquire::ftp::"
  1469. #~ "ProxyLogin is empty."
  1470. #~ msgstr "媒介伺服器設定應包括登入稿。"
  1471. #~ msgid "Login script command '%s' failed, server said: %s"
  1472. #~ msgstr "登入稿『%s』因『%s』失敗。"
  1473. #~ msgid "TYPE failed, server said: %s"
  1474. #~ msgstr "『TYPE』指令因『%s』失敗。"
  1475. #~ msgid "Connection timeout"
  1476. #~ msgstr "聯線超過時限。"
  1477. #~ msgid "Server closed the connection"
  1478. #~ msgstr "伺服器關閉聯線。"
  1479. #~ msgid "A response overflowed the buffer."
  1480. #~ msgstr "答覆超過緩衝區長度。"
  1481. #~ msgid "Protocol corruption"
  1482. #~ msgstr "協定失敗。"
  1483. #, fuzzy
  1484. #~ msgid "Write Error"
  1485. #~ msgstr "寫入失敗。"
  1486. #~ msgid "Could not create a socket"
  1487. #~ msgstr "無法建立網路插座。"
  1488. #, fuzzy
  1489. #~ msgid "Could not connect data socket, connection timed out"
  1490. #~ msgstr "無法聯絡到主機『%s:%s (%s)』。"
  1491. #, fuzzy
  1492. #~ msgid "Could not connect passive socket."
  1493. #~ msgstr "無法建立網路插座。"
  1494. #~ msgid "Could not bind a socket"
  1495. #~ msgstr "無法連上網路插座。"
  1496. #, fuzzy
  1497. #~ msgid "Could not listen on the socket"
  1498. #~ msgstr "無法連上網路插座。"
  1499. #, fuzzy
  1500. #~ msgid "Could not determine the socket's name"
  1501. #~ msgstr "無法解析本機名稱。"
  1502. #, fuzzy
  1503. #~ msgid "EPRT failed, server said: %s"
  1504. #~ msgstr "『USER』指令因『%s』失敗。"
  1505. #, fuzzy
  1506. #~ msgid "Unable to accept connection"
  1507. #~ msgstr "無法聯絡到主機『%s %s』:"
  1508. #, fuzzy
  1509. #~ msgid "Unable to fetch file, server said '%s'"
  1510. #~ msgstr "『USER』指令因『%s』失敗。"
  1511. #, fuzzy
  1512. #~ msgid "Data transfer failed, server said '%s'"
  1513. #~ msgstr "『USER』指令因『%s』失敗。"
  1514. #, fuzzy
  1515. #~ msgid "Unable to invoke "
  1516. #~ msgstr "無法讀取『%s』。"
  1517. #~ msgid "Connecting to %s (%s)"
  1518. #~ msgstr "連絡『%s (%s)』中"
  1519. #~ msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
  1520. #~ msgstr "無法建立到『%s』的網路插座 (族=%u 型=%u 協定=%u)。"
  1521. #~ msgid "Cannot initiate the connection to %s:%s (%s)."
  1522. #~ msgstr "無法聯絡到主機『%s:%s (%s)』。"
  1523. #~ msgid "Could not connect to %s:%s (%s), connection timed out"
  1524. #~ msgstr "無法聯絡到主機『%s:%s (%s)』。"
  1525. #~ msgid "Could not connect to %s:%s (%s)."
  1526. #~ msgstr "無法聯絡到主機『%s:%s (%s)』。"
  1527. #~ msgid "Connecting to %s"
  1528. #~ msgstr "聯絡主機『%s』中"
  1529. #, fuzzy
  1530. #~ msgid "Could not resolve '%s'"
  1531. #~ msgstr "無法開啟『%s』檔案。"
  1532. #~ msgid "Something wicked happened resolving '%s:%s' (%i)"
  1533. #~ msgstr "無法解析『%s:%s (%i)』。"
  1534. #~ msgid "Unable to connect to %s %s:"
  1535. #~ msgstr "無法聯絡到主機『%s %s』:"
  1536. #, fuzzy
  1537. #~ msgid "Couldn't open pipe for %s"
  1538. #~ msgstr "無法開啟『%s』檔案。"
  1539. #, fuzzy
  1540. #~ msgid "Connection timed out"
  1541. #~ msgstr "聯線超過時限。"
  1542. #, fuzzy
  1543. #~ msgid "Connection failed"
  1544. #~ msgstr "聯線超過時限。"
  1545. #, fuzzy
  1546. #~ msgid "Internal error"
  1547. #~ msgstr "讀取失敗。"
  1548. #~ msgid "Please insert a Disc in the drive and press enter"
  1549. #~ msgstr "請把碟片插入碟機,然後按 [Enter] 鍵。"
  1550. #~ msgid "This Disc is called:"
  1551. #~ msgstr "這個碟片名為:"
  1552. #~ msgid "Done. "
  1553. #~ msgstr "完成。"
  1554. #~ msgid "<- '"
  1555. #~ msgstr "←『"
  1556. #~ msgid "'"
  1557. #~ msgstr "』"
  1558. #~ msgid "-> '"
  1559. #~ msgstr "→『"
  1560. #~ msgid ""
  1561. #~ "Options:\n"
  1562. #~ " -h This help text\n"
  1563. #~ " --md5 Control MD5 generation\n"
  1564. #~ " -s=? Source override file\n"
  1565. #~ " -q Quiet\n"
  1566. #~ " -d=? Select the optional caching database\n"
  1567. #~ " --no-delink Enable delinking debug mode\n"
  1568. #~ " --contents Control contents file generation\n"
  1569. #~ " -c=? Read this configuration file\n"
  1570. #~ " -o=? Set an arbitary configuration option\n"
  1571. #~ msgstr ""
  1572. #~ "選項:\n"
  1573. #~ " -h 本頁\n"
  1574. #~ " --md5 控制 MD5 檢查碼的產生\n"
  1575. #~ " -s=? 來源抑制檔案\n"
  1576. #~ " -q 安靜\n"
  1577. #~ " -d=? 選擇暫存的檔案庫\n"
  1578. #~ " --no-delink [FIXME]\n"
  1579. #~ " --contents 控制目錄檔的產生\n"
  1580. #~ " -c=? 讀指定的配置檔\n"
  1581. #~ " -o=? 設定某個配置選項\n"