zh_TW.po 74 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553
  1. # 先進包裝工具 (apt) 繁體中文訊息
  2. # Translators: 黃思文 <steven.huang@upcursor.org>
  3. # Asho Yeh <asho@debian.org.tw>
  4. # Kanru Chen <kanru.96@stu.csie.ncnu.edu.tw>
  5. #
  6. # $Id: zh_TW.po,v 1.11 2004/04/30 04:50:38 mdz Exp $
  7. msgid ""
  8. msgstr ""
  9. "Project-Id-Version: 0.5.4\n"
  10. "Report-Msgid-Bugs-To: \n"
  11. "POT-Creation-Date: 2005-03-05 22:10+0100\n"
  12. "PO-Revision-Date: 2005-02-19 22:24+0800\n"
  13. "Last-Translator: Asho Yeh <asho@debian.org.tw>\n"
  14. "Language-Team: Chinese/Traditional <zh-l10n@linux.org.tw>\n"
  15. "MIME-Version: 1.0\n"
  16. "Content-Type: text/plain; charset=UTF-8\n"
  17. "Content-Transfer-Encoding: 8bit\n"
  18. #: cmdline/apt-cache.cc:135
  19. #, c-format
  20. msgid "Package %s version %s has an unmet dep:\n"
  21. msgstr "套件 %s 版本 %s 有未解決的相依問題:\n"
  22. #: cmdline/apt-cache.cc:175 cmdline/apt-cache.cc:527 cmdline/apt-cache.cc:615
  23. #: cmdline/apt-cache.cc:771 cmdline/apt-cache.cc:989 cmdline/apt-cache.cc:1357
  24. #: cmdline/apt-cache.cc:1508
  25. #, c-format
  26. msgid "Unable to locate package %s"
  27. msgstr "無法找出套件 %s 的位置"
  28. #: cmdline/apt-cache.cc:232
  29. msgid "Total package names : "
  30. msgstr "所有套件的名稱"
  31. #: cmdline/apt-cache.cc:272
  32. msgid " Normal packages: "
  33. msgstr " 普通套件:"
  34. #: cmdline/apt-cache.cc:273
  35. msgid " Pure virtual packages: "
  36. msgstr " 虛擬套件:"
  37. #: cmdline/apt-cache.cc:274
  38. msgid " Single virtual packages: "
  39. msgstr " 單虛擬套件:"
  40. #: cmdline/apt-cache.cc:275
  41. msgid " Mixed virtual packages: "
  42. msgstr " 混合虛擬套件:"
  43. #: cmdline/apt-cache.cc:276
  44. msgid " Missing: "
  45. msgstr " 失蹤:"
  46. #: cmdline/apt-cache.cc:278
  47. msgid "Total distinct versions: "
  48. msgstr "所有不同版本"
  49. #: cmdline/apt-cache.cc:280
  50. msgid "Total dependencies: "
  51. msgstr "所有依存關係:"
  52. #: cmdline/apt-cache.cc:283
  53. msgid "Total ver/file relations: "
  54. msgstr "所有版本/檔案關聯:"
  55. #: cmdline/apt-cache.cc:285
  56. msgid "Total Provides mappings: "
  57. msgstr "所有提供套件對應:"
  58. #: cmdline/apt-cache.cc:297
  59. msgid "Total globbed strings: "
  60. msgstr "Glob 字串共計:"
  61. #: cmdline/apt-cache.cc:311
  62. msgid "Total dependency version space: "
  63. msgstr "所有相依版本空間:"
  64. #: cmdline/apt-cache.cc:316
  65. msgid "Total slack space: "
  66. msgstr "Slack 空間共計:"
  67. #: cmdline/apt-cache.cc:324
  68. msgid "Total space accounted for: "
  69. msgstr "所有統計後的空間:"
  70. #: cmdline/apt-cache.cc:446 cmdline/apt-cache.cc:1189
  71. #, c-format
  72. msgid "Package file %s is out of sync."
  73. msgstr "套件檔案 %s 已失去同步。"
  74. #: cmdline/apt-cache.cc:1231
  75. msgid "You must give exactly one pattern"
  76. msgstr "您必須給定一完整的樣式"
  77. #: cmdline/apt-cache.cc:1385
  78. msgid "No packages found"
  79. msgstr "未找到套件"
  80. #: cmdline/apt-cache.cc:1462
  81. msgid "Package files:"
  82. msgstr "套件檔案:"
  83. #: cmdline/apt-cache.cc:1469 cmdline/apt-cache.cc:1555
  84. msgid "Cache is out of sync, can't x-ref a package file"
  85. msgstr "快取資料同步過時,無法 x-ref 套件檔案"
  86. #: cmdline/apt-cache.cc:1470
  87. #, c-format
  88. msgid "%4i %s\n"
  89. msgstr "%4i %s\n"
  90. #. Show any packages have explicit pins
  91. #: cmdline/apt-cache.cc:1482
  92. msgid "Pinned packages:"
  93. msgstr "鎖定的套件:"
  94. #: cmdline/apt-cache.cc:1494 cmdline/apt-cache.cc:1535
  95. msgid "(not found)"
  96. msgstr "(未找到)"
  97. #. Installed version
  98. #: cmdline/apt-cache.cc:1515
  99. msgid " Installed: "
  100. msgstr "已安裝:"
  101. #: cmdline/apt-cache.cc:1517 cmdline/apt-cache.cc:1525
  102. msgid "(none)"
  103. msgstr "(沒有)"
  104. #. Candidate Version
  105. #: cmdline/apt-cache.cc:1522
  106. msgid " Candidate: "
  107. msgstr " 候選:"
  108. #: cmdline/apt-cache.cc:1532
  109. msgid " Package pin: "
  110. msgstr " 套件鎖定: "
  111. #. Show the priority tables
  112. #: cmdline/apt-cache.cc:1541
  113. msgid " Version table:"
  114. msgstr " 版本表格:"
  115. #: cmdline/apt-cache.cc:1556
  116. #, c-format
  117. msgid " %4i %s\n"
  118. msgstr " %4i %s\n"
  119. #: cmdline/apt-cache.cc:1651 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70
  120. #: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:545
  121. #: cmdline/apt-get.cc:2313 cmdline/apt-sortpkgs.cc:144
  122. #, c-format
  123. msgid "%s %s for %s %s compiled on %s %s\n"
  124. msgstr "%s %s 是針對於 %s %s 並編譯在 %s %s\n"
  125. #: cmdline/apt-cache.cc:1658
  126. msgid ""
  127. "Usage: apt-cache [options] command\n"
  128. " apt-cache [options] add file1 [file2 ...]\n"
  129. " apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
  130. " apt-cache [options] showsrc pkg1 [pkg2 ...]\n"
  131. "\n"
  132. "apt-cache is a low-level tool used to manipulate APT's binary\n"
  133. "cache files, and query information from them\n"
  134. "\n"
  135. "Commands:\n"
  136. " add - Add a package file to the source cache\n"
  137. " gencaches - Build both the package and source cache\n"
  138. " showpkg - Show some general information for a single package\n"
  139. " showsrc - Show source records\n"
  140. " stats - Show some basic statistics\n"
  141. " dump - Show the entire file in a terse form\n"
  142. " dumpavail - Print an available file to stdout\n"
  143. " unmet - Show unmet dependencies\n"
  144. " search - Search the package list for a regex pattern\n"
  145. " show - Show a readable record for the package\n"
  146. " depends - Show raw dependency information for a package\n"
  147. " rdepends - Show reverse dependency information for a package\n"
  148. " pkgnames - List the names of all packages\n"
  149. " dotty - Generate package graphs for GraphVis\n"
  150. " xvcg - Generate package graphs for xvcg\n"
  151. " policy - Show policy settings\n"
  152. "\n"
  153. "Options:\n"
  154. " -h This help text.\n"
  155. " -p=? The package cache.\n"
  156. " -s=? The source cache.\n"
  157. " -q Disable progress indicator.\n"
  158. " -i Show only important deps for the unmet command.\n"
  159. " -c=? Read this configuration file\n"
  160. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  161. "See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
  162. msgstr ""
  163. "用法: apt-cache [選項] 命令\n"
  164. " apt-cache [選項] add file1 [file2 ...]\n"
  165. " apt-cache [選項] showpkg 套件1 [套件2 ...]\n"
  166. " apt-cache [選項] showsrc 套件1 [套件2 ...]\n"
  167. "\n"
  168. "apt-cache 是一個底層的工具,我們用它來操縱 APT 的二進制\n"
  169. "快取檔案,也用來查詢那些檔案中的相關訊息\n"
  170. "\n"
  171. "命令:\n"
  172. " add - 往源碼快取中加入一個套件檔案\n"
  173. " gencaches - 產生套件和源碼的快取\n"
  174. " showpkg - 顯示套件的全面訊息\n"
  175. " showsrc - 顯示源碼檔案的各項記錄\n"
  176. " stats - 顯示一些基本的統計訊息\n"
  177. " dump - 簡要顯示整個緩存文件的內容\n"
  178. " dumpavail - 印出可取得的檔案到標準輸出(stdout)\n"
  179. " unmet - 顯示所有未滿足的相依關係\n"
  180. " search - 根據正規表示法搜索套件列表\n"
  181. " show - 顯示關於該套件的易於閱讀的報告\n"
  182. " depends - 原原本本的顯示該套件的相依關係的訊息\n"
  183. " rdepends - 顯示所有相依於該套件的套件名字\n"
  184. " pkgnames - 列出所有套件的名稱\n"
  185. " dotty - 產生 GraphVis 處理的套件關係圖\n"
  186. " xvcg - 產生 xvcg 處理的套件的關係圖\n"
  187. " policy - 顯示套件的安裝設定狀態\n"
  188. "\n"
  189. "選項:\n"
  190. " -h 本幫助訊息。\n"
  191. " -p=? 套件的快取。\n"
  192. " -s=? 源碼的快取。\n"
  193. " -q 關閉進度顯示。\n"
  194. " -i 僅為 unmet 命令顯示重要的相依關係。\n"
  195. " -c=? 讀取指定的設定檔\n"
  196. " -o=? 設定任意指定的設定選項,例如 -o dir::cache=/tmp\n"
  197. "若要深入了解,您還可以查閱 apt-cache(8) 和 apt.conf(5) 參考手冊。\n"
  198. #: cmdline/apt-config.cc:41
  199. msgid "Arguments not in pairs"
  200. msgstr "參數並非一對"
  201. #: cmdline/apt-config.cc:76
  202. msgid ""
  203. "Usage: apt-config [options] command\n"
  204. "\n"
  205. "apt-config is a simple tool to read the APT config file\n"
  206. "\n"
  207. "Commands:\n"
  208. " shell - Shell mode\n"
  209. " dump - Show the configuration\n"
  210. "\n"
  211. "Options:\n"
  212. " -h This help text.\n"
  213. " -c=? Read this configuration file\n"
  214. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  215. msgstr ""
  216. "用法:apt-config [選項] 命令\n"
  217. "\n"
  218. "apt-config 是一個用於讀取 APT 設定檔案的簡單工具\n"
  219. "\n"
  220. "命令:\n"
  221. " shell - Shell 模式\n"
  222. " dump - 顯示設定檔案\n"
  223. "\n"
  224. "選項:\n"
  225. " -h 本幫助訊息。\n"
  226. " -c=? 讀取指定的設定檔案\n"
  227. " -o=? 設定任意指定的設定選項,例如:-o dir::cache=/tmp\n"
  228. #: cmdline/apt-extracttemplates.cc:98
  229. #, c-format
  230. msgid "%s not a valid DEB package."
  231. msgstr "%s 不是合法的 DEB 套件"
  232. #: cmdline/apt-extracttemplates.cc:232
  233. msgid ""
  234. "Usage: apt-extracttemplates file1 [file2 ...]\n"
  235. "\n"
  236. "apt-extracttemplates is a tool to extract config and template info\n"
  237. "from debian packages\n"
  238. "\n"
  239. "Options:\n"
  240. " -h This help text\n"
  241. " -t Set the temp dir\n"
  242. " -c=? Read this configuration file\n"
  243. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  244. msgstr ""
  245. "用法: apt-extracttemplates file1 [file2 ...]\n"
  246. "\n"
  247. "apt-extracttemplates 是用來從 debian 套件中解壓出設定檔和模板\n"
  248. "信息的工具\n"
  249. "\n"
  250. "選項:\n"
  251. " -h 本幫助訊息。\n"
  252. " -t 設定 temp 目錄\n"
  253. " -c=? 讀取指定的設定檔案\n"
  254. " -o=? 設定任意指定的設定選項,例如:-o dir::cache=/tmp\n"
  255. #: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:710
  256. #, c-format
  257. msgid "Unable to write to %s"
  258. msgstr "無法寫入『%s』。"
  259. #: cmdline/apt-extracttemplates.cc:310
  260. msgid "Cannot get debconf version. Is debconf installed?"
  261. msgstr "無法取得 debconf 版本。debconf 是否安裝?"
  262. #: ftparchive/apt-ftparchive.cc:163 ftparchive/apt-ftparchive.cc:337
  263. msgid "Package extension list is too long"
  264. msgstr "套件延伸列表過長"
  265. #: ftparchive/apt-ftparchive.cc:165 ftparchive/apt-ftparchive.cc:179
  266. #: ftparchive/apt-ftparchive.cc:202 ftparchive/apt-ftparchive.cc:252
  267. #: ftparchive/apt-ftparchive.cc:266 ftparchive/apt-ftparchive.cc:288
  268. #, c-format
  269. msgid "Error processing directory %s"
  270. msgstr "處理目錄 %s 時錯誤"
  271. #: ftparchive/apt-ftparchive.cc:250
  272. msgid "Source extension list is too long"
  273. msgstr "原碼的延伸列表太長"
  274. #: ftparchive/apt-ftparchive.cc:367
  275. msgid "Error writing header to contents file"
  276. msgstr "寫入標頭資訊到目錄檔案時出錯"
  277. #: ftparchive/apt-ftparchive.cc:397
  278. #, c-format
  279. msgid "Error processing contents %s"
  280. msgstr "處理目錄 %s 時出錯"
  281. #: ftparchive/apt-ftparchive.cc:551
  282. msgid ""
  283. "Usage: apt-ftparchive [options] command\n"
  284. "Commands: packages binarypath [overridefile [pathprefix]]\n"
  285. " sources srcpath [overridefile [pathprefix]]\n"
  286. " contents path\n"
  287. " release path\n"
  288. " generate config [groups]\n"
  289. " clean config\n"
  290. "\n"
  291. "apt-ftparchive generates index files for Debian archives. It supports\n"
  292. "many styles of generation from fully automated to functional replacements\n"
  293. "for dpkg-scanpackages and dpkg-scansources\n"
  294. "\n"
  295. "apt-ftparchive generates Package files from a tree of .debs. The\n"
  296. "Package file contains the contents of all the control fields from\n"
  297. "each package as well as the MD5 hash and filesize. An override file\n"
  298. "is supported to force the value of Priority and Section.\n"
  299. "\n"
  300. "Similarly apt-ftparchive generates Sources files from a tree of .dscs.\n"
  301. "The --source-override option can be used to specify a src override file\n"
  302. "\n"
  303. "The 'packages' and 'sources' command should be run in the root of the\n"
  304. "tree. BinaryPath should point to the base of the recursive search and \n"
  305. "override file should contain the override flags. Pathprefix is\n"
  306. "appended to the filename fields if present. Example usage from the \n"
  307. "Debian archive:\n"
  308. " apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
  309. " dists/potato/main/binary-i386/Packages\n"
  310. "\n"
  311. "Options:\n"
  312. " -h This help text\n"
  313. " --md5 Control MD5 generation\n"
  314. " -s=? Source override file\n"
  315. " -q Quiet\n"
  316. " -d=? Select the optional caching database\n"
  317. " --no-delink Enable delinking debug mode\n"
  318. " --contents Control contents file generation\n"
  319. " -c=? Read this configuration file\n"
  320. " -o=? Set an arbitary configuration option"
  321. msgstr ""
  322. "用法: apt-ftparchive [選項] 命令\n"
  323. "命令: packages 二進制套件搜索路徑 [overridefile [pathprefix]]\n"
  324. " sources 源碼搜索路徑 [overridefile [pathprefix]]\n"
  325. " contents 搜索路徑\n"
  326. " release 搜索路徑\n"
  327. " generate 設定檔 [groups]\n"
  328. " clean 設定檔\n"
  329. "\n"
  330. "apt-ftparchive 用來為 Debian 套件產生索引檔案。它支援\n"
  331. "多種生成索引的方式,從自動化和功能性來說,是一套取代\n"
  332. "dpkg-scanpackages 和 dpkg-scansources 的工具\n"
  333. "\n"
  334. "apt-ftparchive 能依據一個由 .deb 檔案構成的檔案樹產生 Package 檔案。\n"
  335. "Package 檔案不僅包含每個套件的 MD5 校驗碼和檔案大小,\n"
  336. "還有套件的所有控制字段的內容。同時支援 override 檔案,\n"
  337. "它可以強制指套件的優先等級及其所屬的套件類別。\n"
  338. "\n"
  339. "與上頭類似,apt-ftparchive 也能由 .dsc 的檔案樹生成 Source 檔案。\n"
  340. "使用 --source-override 選項來指定一個 override 檔案\n"
  341. "\n"
  342. "使用 'packages' 和 'source' 命令時,必須在檔案樹的根執行該程式。\n"
  343. "二進制檔案的搜索路徑一定要是遞迴搜索的底層,\n"
  344. "而且 override 檔案必須包含 override 旗標。如果 Pathprefix\n"
  345. "存在則加到 filename 字段。\n"
  346. "以 Debian 檔案庫舉例說明:\n"
  347. " apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
  348. " dists/potato/main/binary-i386/Packages\n"
  349. "\n"
  350. "選項:\n"
  351. " -h 本幫助說明\n"
  352. " --md5 產生 MD5 校驗控制碼\n"
  353. " -s=? 源碼的 override 檔案\n"
  354. " -q 輸出精簡信息\n"
  355. " -d=? 指定選擇的快取資料庫\n"
  356. " --no-delink 開啟delink的偵錯模式\n"
  357. " --contents 產生控制內容檔案\n"
  358. " -c=? 讀取指定的設定檔\n"
  359. " -o=? 設定任意指定的設定選項"
  360. #: ftparchive/apt-ftparchive.cc:757
  361. msgid "No selections matched"
  362. msgstr "找不到符合的選項"
  363. #: ftparchive/apt-ftparchive.cc:830
  364. #, c-format
  365. msgid "Some files are missing in the package file group `%s'"
  366. msgstr "套件檔案組 `%s' 缺少部份檔案"
  367. #: ftparchive/cachedb.cc:45
  368. #, c-format
  369. msgid "DB was corrupted, file renamed to %s.old"
  370. msgstr "DB 已損毀,檔案被更名成 %s.old"
  371. #: ftparchive/cachedb.cc:63
  372. #, c-format
  373. msgid "DB is old, attempting to upgrade %s"
  374. msgstr "DB 過舊,嘗試更新 %s"
  375. #: ftparchive/cachedb.cc:73
  376. #, c-format
  377. msgid "Unable to open DB file %s: %s"
  378. msgstr "無法開啟 DB 檔案 %s:%s"
  379. #: ftparchive/cachedb.cc:114
  380. #, c-format
  381. msgid "File date has changed %s"
  382. msgstr "檔案資料已更改 %s"
  383. #: ftparchive/cachedb.cc:155
  384. msgid "Archive has no control record"
  385. msgstr "檔案沒有 control 記錄"
  386. #: ftparchive/cachedb.cc:267
  387. msgid "Unable to get a cursor"
  388. msgstr "無法取得游標"
  389. #: ftparchive/writer.cc:79
  390. #, c-format
  391. msgid "W: Unable to read directory %s\n"
  392. msgstr "W:無法讀取目錄 %s\n"
  393. #: ftparchive/writer.cc:84
  394. #, c-format
  395. msgid "W: Unable to stat %s\n"
  396. msgstr "W:無法取得 %s 狀態\n"
  397. #: ftparchive/writer.cc:126
  398. msgid "E: "
  399. msgstr "錯誤:"
  400. #: ftparchive/writer.cc:128
  401. msgid "W: "
  402. msgstr "警告:"
  403. #: ftparchive/writer.cc:135
  404. msgid "E: Errors apply to file "
  405. msgstr "E:套用到檔案時出錯"
  406. #: ftparchive/writer.cc:152 ftparchive/writer.cc:182
  407. #, c-format
  408. msgid "Failed to resolve %s"
  409. msgstr "無法解析路徑 %s"
  410. #: ftparchive/writer.cc:164
  411. msgid "Tree walking failed"
  412. msgstr "無法走訪目錄樹"
  413. #: ftparchive/writer.cc:189
  414. #, c-format
  415. msgid "Failed to open %s"
  416. msgstr "無法開啟 %s"
  417. #: ftparchive/writer.cc:246
  418. #, c-format
  419. msgid " DeLink %s [%s]\n"
  420. msgstr " 移除連結 %s [%s]\n"
  421. #: ftparchive/writer.cc:254
  422. #, c-format
  423. msgid "Failed to readlink %s"
  424. msgstr "無法讀取符號鏈接 %s"
  425. #: ftparchive/writer.cc:258
  426. #, c-format
  427. msgid "Failed to unlink %s"
  428. msgstr "無法 unlink %s"
  429. #: ftparchive/writer.cc:265
  430. #, c-format
  431. msgid "*** Failed to link %s to %s"
  432. msgstr "*** 無法將 %s 鏈接到 %s"
  433. #: ftparchive/writer.cc:275
  434. #, c-format
  435. msgid " DeLink limit of %sB hit.\n"
  436. msgstr " 達到了 DeLink 的上限 %sB。\n"
  437. #: ftparchive/writer.cc:358 apt-inst/extract.cc:181 apt-inst/extract.cc:193
  438. #: apt-inst/extract.cc:210 apt-inst/deb/dpkgdb.cc:121
  439. #, c-format
  440. msgid "Failed to stat %s"
  441. msgstr "無法取得 %s 的狀態"
  442. #: ftparchive/writer.cc:378
  443. msgid "Archive had no package field"
  444. msgstr "檔案無套件字符"
  445. #: ftparchive/writer.cc:386 ftparchive/writer.cc:595
  446. #, c-format
  447. msgid " %s has no override entry\n"
  448. msgstr " %s 無 override 項目\n"
  449. #: ftparchive/writer.cc:429 ftparchive/writer.cc:677
  450. #, c-format
  451. msgid " %s maintainer is %s not %s\n"
  452. msgstr " %s 套件維護者是 %s 非 %s\n"
  453. #: ftparchive/contents.cc:317
  454. #, c-format
  455. msgid "Internal error, could not locate member %s"
  456. msgstr "內部錯誤:無法找到成員 %s"
  457. #: ftparchive/contents.cc:353 ftparchive/contents.cc:384
  458. msgid "realloc - Failed to allocate memory"
  459. msgstr "realloc - 無法配置記憶體空間"
  460. #: ftparchive/override.cc:38 ftparchive/override.cc:146
  461. #, c-format
  462. msgid "Unable to open %s"
  463. msgstr "無法開啟 %s"
  464. #: ftparchive/override.cc:64 ftparchive/override.cc:170
  465. #, c-format
  466. msgid "Malformed override %s line %lu #1"
  467. msgstr "override 文件 %s 第 %lu 行的格式有誤 #1"
  468. #: ftparchive/override.cc:78 ftparchive/override.cc:182
  469. #, c-format
  470. msgid "Malformed override %s line %lu #2"
  471. msgstr "override 文件 %s 第 %lu 行的格式有誤 #2"
  472. #: ftparchive/override.cc:92 ftparchive/override.cc:195
  473. #, c-format
  474. msgid "Malformed override %s line %lu #3"
  475. msgstr "override 文件 %s 第 %lu 行的格式有誤 #3"
  476. #: ftparchive/override.cc:131 ftparchive/override.cc:205
  477. #, c-format
  478. msgid "Failed to read the override file %s"
  479. msgstr "無法讀取 override 檔案 %s"
  480. #: ftparchive/multicompress.cc:75
  481. #, c-format
  482. msgid "Unknown compression algorithm '%s'"
  483. msgstr "未知的壓縮演算法 '%s'"
  484. #: ftparchive/multicompress.cc:105
  485. #, c-format
  486. msgid "Compressed output %s needs a compression set"
  487. msgstr "壓縮輸出 %s 需要一壓縮檔案集合"
  488. #: ftparchive/multicompress.cc:172 methods/rsh.cc:91
  489. msgid "Failed to create IPC pipe to subprocess"
  490. msgstr "無法建立 IPC 管線到子程序"
  491. #: ftparchive/multicompress.cc:198
  492. msgid "Failed to create FILE*"
  493. msgstr "無法建立 FILE*"
  494. #: ftparchive/multicompress.cc:201
  495. msgid "Failed to fork"
  496. msgstr "fork 時失敗"
  497. #: ftparchive/multicompress.cc:215
  498. msgid "Compress child"
  499. msgstr "壓縮子程序"
  500. #: ftparchive/multicompress.cc:238
  501. #, c-format
  502. msgid "Internal error, failed to create %s"
  503. msgstr "內部錯誤,無法建立 %s"
  504. #: ftparchive/multicompress.cc:289
  505. msgid "Failed to create subprocess IPC"
  506. msgstr "無法建立子程序 IPC"
  507. #: ftparchive/multicompress.cc:324
  508. msgid "Failed to exec compressor "
  509. msgstr "無法執行壓縮程序"
  510. #: ftparchive/multicompress.cc:363
  511. msgid "decompressor"
  512. msgstr "解壓縮程序"
  513. #: ftparchive/multicompress.cc:406
  514. msgid "IO to subprocess/file failed"
  515. msgstr "IO 到子程序/檔案失效"
  516. #: ftparchive/multicompress.cc:458
  517. msgid "Failed to read while computing MD5"
  518. msgstr "在計算 MD5 時無法讀取資料"
  519. #: ftparchive/multicompress.cc:475
  520. #, c-format
  521. msgid "Problem unlinking %s"
  522. msgstr "在 unlink %s 時出錯"
  523. #: ftparchive/multicompress.cc:490 apt-inst/extract.cc:188
  524. #, c-format
  525. msgid "Failed to rename %s to %s"
  526. msgstr "無法將 %s 更名為 %s"
  527. #: cmdline/apt-get.cc:118
  528. msgid "Y"
  529. msgstr "Y"
  530. #: cmdline/apt-get.cc:140 cmdline/apt-get.cc:1475
  531. #, c-format
  532. msgid "Regex compilation error - %s"
  533. msgstr "編譯正規表示法出錯 - %s"
  534. #: cmdline/apt-get.cc:235
  535. msgid "The following packages have unmet dependencies:"
  536. msgstr "下列的套件有無法滿足的依存關係:"
  537. #: cmdline/apt-get.cc:325
  538. #, c-format
  539. msgid "but %s is installed"
  540. msgstr "但是『%s』卻已經安裝好了。"
  541. #: cmdline/apt-get.cc:327
  542. #, c-format
  543. msgid "but %s is to be installed"
  544. msgstr "但是『%s』卻將被安裝。"
  545. #: cmdline/apt-get.cc:334
  546. msgid "but it is not installable"
  547. msgstr "但是它卻無法安裝。"
  548. #: cmdline/apt-get.cc:336
  549. msgid "but it is a virtual package"
  550. msgstr "但是它只是虛擬的套件"
  551. #: cmdline/apt-get.cc:339
  552. msgid "but it is not installed"
  553. msgstr "但是『%s』卻還沒有安裝。"
  554. #: cmdline/apt-get.cc:339
  555. msgid "but it is not going to be installed"
  556. msgstr "但是它卻不會被安裝。"
  557. #: cmdline/apt-get.cc:344
  558. msgid " or"
  559. msgstr "或"
  560. #: cmdline/apt-get.cc:373
  561. msgid "The following NEW packages will be installed:"
  562. msgstr "下列的【新】套件都將被安裝:"
  563. #: cmdline/apt-get.cc:399
  564. msgid "The following packages will be REMOVED:"
  565. msgstr "下列的套件都將被【刪除】:"
  566. #: cmdline/apt-get.cc:421
  567. msgid "The following packages have been kept back:"
  568. msgstr "下列的套件都將維持舊版本:"
  569. #: cmdline/apt-get.cc:442
  570. msgid "The following packages will be upgraded:"
  571. msgstr "下列的套件都將更新:"
  572. #: cmdline/apt-get.cc:463
  573. msgid "The following packages will be DOWNGRADED:"
  574. msgstr "下列的套件都將被「降級」:"
  575. #: cmdline/apt-get.cc:483
  576. msgid "The following held packages will be changed:"
  577. msgstr "下列押後的套件都將被更改:"
  578. #: cmdline/apt-get.cc:536
  579. #, c-format
  580. msgid "%s (due to %s) "
  581. msgstr "%s(因為 %s)"
  582. #: cmdline/apt-get.cc:544
  583. msgid ""
  584. "WARNING: The following essential packages will be removed\n"
  585. "This should NOT be done unless you know exactly what you are doing!"
  586. msgstr ""
  587. "警告:下列的重要套件都將被刪除\n"
  588. "除非您很清楚在做什麼,請勿輕易嘗試。"
  589. #: cmdline/apt-get.cc:575
  590. #, c-format
  591. msgid "%lu upgraded, %lu newly installed, "
  592. msgstr "更新 %lu 個套件,新安裝 %lu 個套件,"
  593. #: cmdline/apt-get.cc:579
  594. #, c-format
  595. msgid "%lu reinstalled, "
  596. msgstr "重新安裝 %lu 個套件,"
  597. #: cmdline/apt-get.cc:581
  598. #, c-format
  599. msgid "%lu downgraded, "
  600. msgstr "降 %lu 個套件的版,"
  601. #: cmdline/apt-get.cc:583
  602. #, c-format
  603. msgid "%lu to remove and %lu not upgraded.\n"
  604. msgstr "刪除 %lu 個套件,另不更新 %lu 個套件。\n"
  605. #: cmdline/apt-get.cc:587
  606. #, c-format
  607. msgid "%lu not fully installed or removed.\n"
  608. msgstr "%lu 個套件沒有完全安裝或刪除完畢。\n"
  609. #: cmdline/apt-get.cc:647
  610. msgid "Correcting dependencies..."
  611. msgstr "更正依存關係中..."
  612. #: cmdline/apt-get.cc:650
  613. msgid " failed."
  614. msgstr "失敗"
  615. #: cmdline/apt-get.cc:653
  616. msgid "Unable to correct dependencies"
  617. msgstr "無法更正依存關係。"
  618. #: cmdline/apt-get.cc:656
  619. msgid "Unable to minimize the upgrade set"
  620. msgstr "無法最小化升級的套件集合"
  621. #: cmdline/apt-get.cc:658
  622. msgid " Done"
  623. msgstr " 完成"
  624. #: cmdline/apt-get.cc:662
  625. msgid "You might want to run `apt-get -f install' to correct these."
  626. msgstr "用『apt-get -f install』指令或許能修正這些問題。"
  627. #: cmdline/apt-get.cc:665
  628. msgid "Unmet dependencies. Try using -f."
  629. msgstr "無法滿足相依關係。試試看 -f 選項。"
  630. #: cmdline/apt-get.cc:687
  631. msgid "WARNING: The following packages cannot be authenticated!"
  632. msgstr "警告:下列的套件驗證失敗!"
  633. #: cmdline/apt-get.cc:698
  634. msgid "Install these packages without verification [y/N]? "
  635. msgstr "不驗證這些套件就直接安裝?[y/N]"
  636. #: cmdline/apt-get.cc:700
  637. msgid "Some packages could not be authenticated"
  638. msgstr "部份套件無法驗證"
  639. #: cmdline/apt-get.cc:709 cmdline/apt-get.cc:855
  640. msgid "There are problems and -y was used without --force-yes"
  641. msgstr "出現一些問題,您使用了 -y 選項但是沒有用 --force-yes"
  642. #: cmdline/apt-get.cc:762
  643. msgid "Packages need to be removed but remove is disabled."
  644. msgstr "有套件需要被移除,但移除動作被禁止。"
  645. #: cmdline/apt-get.cc:788 cmdline/apt-get.cc:1769 cmdline/apt-get.cc:1802
  646. msgid "Unable to lock the download directory"
  647. msgstr "無法鎖定下載的目錄"
  648. #: cmdline/apt-get.cc:798 cmdline/apt-get.cc:1850 cmdline/apt-get.cc:2061
  649. #: apt-pkg/cachefile.cc:67
  650. msgid "The list of sources could not be read."
  651. msgstr "無法讀取來源單。"
  652. #: cmdline/apt-get.cc:818
  653. #, c-format
  654. msgid "Need to get %sB/%sB of archives.\n"
  655. msgstr "需要下載 %2$sB 中 %1$sB 的檔案。\n"
  656. #: cmdline/apt-get.cc:821
  657. #, c-format
  658. msgid "Need to get %sB of archives.\n"
  659. msgstr "需要下載 %sB 的檔案。\n"
  660. #: cmdline/apt-get.cc:826
  661. #, c-format
  662. msgid "After unpacking %sB of additional disk space will be used.\n"
  663. msgstr "解壓縮後將消耗 %sB 的空間。\n"
  664. #: cmdline/apt-get.cc:829
  665. #, c-format
  666. msgid "After unpacking %sB disk space will be freed.\n"
  667. msgstr "解壓縮後將空出 %sB 的空間。\n"
  668. #: cmdline/apt-get.cc:846
  669. #, c-format
  670. msgid "You don't have enough free space in %s."
  671. msgstr "『%s』內沒有足夠的空間。"
  672. #: cmdline/apt-get.cc:861 cmdline/apt-get.cc:881
  673. msgid "Trivial Only specified but this is not a trivial operation."
  674. msgstr "雖然您指定了 Trivial Only,但這不是個顯而易懂的(trivial)操作。"
  675. #: cmdline/apt-get.cc:863
  676. msgid "Yes, do as I say!"
  677. msgstr "是的,請執行我所指定的"
  678. #: cmdline/apt-get.cc:865
  679. #, c-format
  680. msgid ""
  681. "You are about to do something potentially harmful\n"
  682. "To continue type in the phrase '%s'\n"
  683. " ?] "
  684. msgstr ""
  685. "您的操作會導致潛在的危險\n"
  686. "若要繼續的話,就輸入下面的句子“%s”\n"
  687. " ?] "
  688. #: cmdline/apt-get.cc:871 cmdline/apt-get.cc:890
  689. msgid "Abort."
  690. msgstr "放棄執行。"
  691. #: cmdline/apt-get.cc:886
  692. msgid "Do you want to continue [Y/n]? "
  693. msgstr "繼續執行嗎? 是按 [Y] 鍵,否按 [n] 鍵 "
  694. #: cmdline/apt-get.cc:958 cmdline/apt-get.cc:1334 cmdline/apt-get.cc:1959
  695. #, c-format
  696. msgid "Failed to fetch %s %s\n"
  697. msgstr "無法下載『%s』檔案。%s\n"
  698. #: cmdline/apt-get.cc:976
  699. msgid "Some files failed to download"
  700. msgstr "部份檔案無法下載"
  701. #: cmdline/apt-get.cc:977 cmdline/apt-get.cc:1968
  702. msgid "Download complete and in download only mode"
  703. msgstr "下載完畢,目前是“僅下載”模式"
  704. #: cmdline/apt-get.cc:983
  705. msgid ""
  706. "Unable to fetch some archives, maybe run apt-get update or try with --fix-"
  707. "missing?"
  708. msgstr ""
  709. "有幾個檔案無法下載,您可以執行 apt-get update 或者嘗試加上--fix-missing \n"
  710. "選項?"
  711. #: cmdline/apt-get.cc:987
  712. msgid "--fix-missing and media swapping is not currently supported"
  713. msgstr "目前還不支援 --fix-missing 和媒體置換(media swapping)"
  714. #: cmdline/apt-get.cc:992
  715. msgid "Unable to correct missing packages."
  716. msgstr "無法更正遺失的套件。"
  717. #: cmdline/apt-get.cc:993
  718. msgid "Aborting install."
  719. msgstr "放棄安裝。"
  720. #: cmdline/apt-get.cc:1026
  721. #, c-format
  722. msgid "Note, selecting %s instead of %s\n"
  723. msgstr "注意,選擇了 %s 而非 %s\n"
  724. #: cmdline/apt-get.cc:1036
  725. #, c-format
  726. msgid "Skipping %s, it is already installed and upgrade is not set.\n"
  727. msgstr "忽略 %s,它已經被安裝而且沒有指定要升級。\n"
  728. #: cmdline/apt-get.cc:1054
  729. #, c-format
  730. msgid "Package %s is not installed, so not removed\n"
  731. msgstr "套件『%s』沒有安裝,所以無法刪除。\n"
  732. #: cmdline/apt-get.cc:1065
  733. #, c-format
  734. msgid "Package %s is a virtual package provided by:\n"
  735. msgstr "虛擬套件『%s』的提供者是:\n"
  736. #: cmdline/apt-get.cc:1077
  737. msgid " [Installed]"
  738. msgstr "【已安裝】"
  739. #: cmdline/apt-get.cc:1082
  740. msgid "You should explicitly select one to install."
  741. msgstr "請您明確地選擇一個來進行安裝。"
  742. #: cmdline/apt-get.cc:1087
  743. #, c-format
  744. msgid ""
  745. "Package %s is not available, but is referred to by another package.\n"
  746. "This may mean that the package is missing, has been obsoleted, or\n"
  747. "is only available from another source\n"
  748. msgstr ""
  749. "現在沒有可用的套件 %s,但是它被其它的套件引用了。\n"
  750. "這可能意味著這個套件已經消失或捨棄,\n"
  751. "或者只能在其他原碼中找到\n"
  752. #: cmdline/apt-get.cc:1106
  753. msgid "However the following packages replace it:"
  754. msgstr "但是下列的套件將取代它:"
  755. #: cmdline/apt-get.cc:1109
  756. #, c-format
  757. msgid "Package %s has no installation candidate"
  758. msgstr "套件 %s 還沒有可供安裝的候選版本"
  759. #: cmdline/apt-get.cc:1129
  760. #, c-format
  761. msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
  762. msgstr "不能重新安裝 %s,因為無法下載它。\n"
  763. #: cmdline/apt-get.cc:1137
  764. #, c-format
  765. msgid "%s is already the newest version.\n"
  766. msgstr "『%s』已經是最新版本了。\n"
  767. #: cmdline/apt-get.cc:1164
  768. #, c-format
  769. msgid "Release '%s' for '%s' was not found"
  770. msgstr "未找到“%2$s”的“%1$s”發布版本"
  771. #: cmdline/apt-get.cc:1166
  772. #, c-format
  773. msgid "Version '%s' for '%s' was not found"
  774. msgstr "未找到“%2$s”的“%1$s”版本"
  775. #: cmdline/apt-get.cc:1172
  776. #, c-format
  777. msgid "Selected version %s (%s) for %s\n"
  778. msgstr "選定的版本為 %s (%s) 的 %s\n"
  779. #: cmdline/apt-get.cc:1282
  780. msgid "The update command takes no arguments"
  781. msgstr "update 指令不需任何參數"
  782. #: cmdline/apt-get.cc:1295
  783. msgid "Unable to lock the list directory"
  784. msgstr "無法鎖定列表目錄"
  785. #: cmdline/apt-get.cc:1353
  786. msgid ""
  787. "Some index files failed to download, they have been ignored, or old ones "
  788. "used instead."
  789. msgstr "有一些索引檔案不能下載,它們可能被忽略了,也可能轉而使用了舊的索引檔案。"
  790. #: cmdline/apt-get.cc:1372
  791. msgid "Internal error, AllUpgrade broke stuff"
  792. msgstr "內部錯誤,AllUpgrade 造成錯誤"
  793. #: cmdline/apt-get.cc:1462 cmdline/apt-get.cc:1498
  794. #, c-format
  795. msgid "Couldn't find package %s"
  796. msgstr "無法找到 %s 套件。"
  797. #: cmdline/apt-get.cc:1485
  798. #, c-format
  799. msgid "Note, selecting %s for regex '%s'\n"
  800. msgstr "注意,根據正規表示法“%2$s”選擇了 %1$s\n"
  801. #: cmdline/apt-get.cc:1515
  802. msgid "You might want to run `apt-get -f install' to correct these:"
  803. msgstr "用『apt-get -f install』指令或許能修正這些問題。"
  804. #: cmdline/apt-get.cc:1518
  805. msgid ""
  806. "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
  807. "solution)."
  808. msgstr ""
  809. "無法滿足的相依關係。請嘗試不指定套件明成來執行“apt-get -f install”(或指>\n"
  810. "定一個解決辦法)。"
  811. #: cmdline/apt-get.cc:1530
  812. msgid ""
  813. "Some packages could not be installed. This may mean that you have\n"
  814. "requested an impossible situation or if you are using the unstable\n"
  815. "distribution that some required packages have not yet been created\n"
  816. "or been moved out of Incoming."
  817. msgstr ""
  818. "有一些套件無法被安裝。這也許是系統無法實現您要求的狀態\n"
  819. "或是您使用不穩定(unstable)發行版而這些需要的套件尚未完成\n"
  820. "或從 Incoming 目錄移除。"
  821. #: cmdline/apt-get.cc:1538
  822. msgid ""
  823. "Since you only requested a single operation it is extremely likely that\n"
  824. "the package is simply not installable and a bug report against\n"
  825. "that package should be filed."
  826. msgstr ""
  827. "您僅要求對單一套件進行操作,這極有可能是因為\n"
  828. "該套件無法安裝,您最好提交一個針對這個套件\n"
  829. "的臭蟲報告。"
  830. #: cmdline/apt-get.cc:1543
  831. msgid "The following information may help to resolve the situation:"
  832. msgstr "底下的資訊有助於解決現在的情況:"
  833. #: cmdline/apt-get.cc:1546
  834. msgid "Broken packages"
  835. msgstr "損毀的套件"
  836. #: cmdline/apt-get.cc:1572
  837. msgid "The following extra packages will be installed:"
  838. msgstr "下列的【新】套件都將被安裝:"
  839. #: cmdline/apt-get.cc:1643
  840. msgid "Suggested packages:"
  841. msgstr "建議(Suggested)的套件:"
  842. #: cmdline/apt-get.cc:1644
  843. msgid "Recommended packages:"
  844. msgstr "推薦(Recommended)的套件:"
  845. #: cmdline/apt-get.cc:1664
  846. msgid "Calculating upgrade... "
  847. msgstr "籌畫升級套件中..."
  848. #: cmdline/apt-get.cc:1667 methods/ftp.cc:702 methods/connect.cc:99
  849. msgid "Failed"
  850. msgstr "失敗"
  851. #: cmdline/apt-get.cc:1672
  852. msgid "Done"
  853. msgstr "完成"
  854. #: cmdline/apt-get.cc:1845
  855. msgid "Must specify at least one package to fetch source for"
  856. msgstr "必須指定至少一個對應的套件才能下載源碼"
  857. #: cmdline/apt-get.cc:1872 cmdline/apt-get.cc:2079
  858. #, c-format
  859. msgid "Unable to find a source package for %s"
  860. msgstr "無法找到 %s 套件的源碼"
  861. #: cmdline/apt-get.cc:1919
  862. #, c-format
  863. msgid "You don't have enough free space in %s"
  864. msgstr "『%s』內沒有足夠的空間。"
  865. #: cmdline/apt-get.cc:1924
  866. #, c-format
  867. msgid "Need to get %sB/%sB of source archives.\n"
  868. msgstr "需要下載 %2$sB 中 %1$sB 的原始檔案。\n"
  869. #: cmdline/apt-get.cc:1927
  870. #, c-format
  871. msgid "Need to get %sB of source archives.\n"
  872. msgstr "需要下載 %sB 的原始檔案。\n"
  873. #: cmdline/apt-get.cc:1933
  874. #, c-format
  875. msgid "Fetch source %s\n"
  876. msgstr "下載源碼 %s\n"
  877. #: cmdline/apt-get.cc:1964
  878. msgid "Failed to fetch some archives."
  879. msgstr "無法下載某些檔案。"
  880. #: cmdline/apt-get.cc:1992
  881. #, c-format
  882. msgid "Skipping unpack of already unpacked source in %s\n"
  883. msgstr "略過已經被解開到 %s 目錄的源碼檔案\n"
  884. #: cmdline/apt-get.cc:2004
  885. #, c-format
  886. msgid "Unpack command '%s' failed.\n"
  887. msgstr "執行解開套件指令 '%s' 時失敗。\n"
  888. #: cmdline/apt-get.cc:2021
  889. #, c-format
  890. msgid "Build command '%s' failed.\n"
  891. msgstr "執行建立套件指令 '%s' 時失敗。\n"
  892. #: cmdline/apt-get.cc:2040
  893. msgid "Child process failed"
  894. msgstr "子程序失敗"
  895. #: cmdline/apt-get.cc:2056
  896. msgid "Must specify at least one package to check builddeps for"
  897. msgstr "必須指定至少一個套件才能檢查其建立相依關係(builddeps)"
  898. #: cmdline/apt-get.cc:2084
  899. #, c-format
  900. msgid "Unable to get build-dependency information for %s"
  901. msgstr "無法取得 %s 的建構相依關係。"
  902. #: cmdline/apt-get.cc:2104
  903. #, c-format
  904. msgid "%s has no build depends.\n"
  905. msgstr "%s 無建立相依關係訊息。\n"
  906. #: cmdline/apt-get.cc:2156
  907. #, c-format
  908. msgid ""
  909. "%s dependency for %s cannot be satisfied because the package %s cannot be "
  910. "found"
  911. msgstr "由於無法找到套件 %3$s ,因此不能滿足 %2$s 所要求的 %1$s 相依關係"
  912. #: cmdline/apt-get.cc:2208
  913. #, c-format
  914. msgid ""
  915. "%s dependency for %s cannot be satisfied because no available versions of "
  916. "package %s can satisfy version requirements"
  917. msgstr ""
  918. "由於無法找到符合要求的套件 %3$s 的可用版本,因此不能滿足 %2$s 所要求的 %1$s 的"
  919. "相依關係"
  920. #: cmdline/apt-get.cc:2243
  921. #, c-format
  922. msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
  923. msgstr "無法滿足 %2$s 所要求 %1$s 相依關係:已安裝的套件 %3$s 太新了"
  924. #: cmdline/apt-get.cc:2268
  925. #, c-format
  926. msgid "Failed to satisfy %s dependency for %s: %s"
  927. msgstr "無法滿足 %2$s 所要求 %1$s 相依關係:%3$s"
  928. #: cmdline/apt-get.cc:2282
  929. #, c-format
  930. msgid "Build-dependencies for %s could not be satisfied."
  931. msgstr "無法滿足套件 %s 所要求的建構相依關係。"
  932. #: cmdline/apt-get.cc:2286
  933. msgid "Failed to process build dependencies"
  934. msgstr "無法處理建構相依關係"
  935. #: cmdline/apt-get.cc:2318
  936. msgid "Supported modules:"
  937. msgstr "支援模組:"
  938. #: cmdline/apt-get.cc:2359
  939. msgid ""
  940. "Usage: apt-get [options] command\n"
  941. " apt-get [options] install|remove pkg1 [pkg2 ...]\n"
  942. " apt-get [options] source pkg1 [pkg2 ...]\n"
  943. "\n"
  944. "apt-get is a simple command line interface for downloading and\n"
  945. "installing packages. The most frequently used commands are update\n"
  946. "and install.\n"
  947. "\n"
  948. "Commands:\n"
  949. " update - Retrieve new lists of packages\n"
  950. " upgrade - Perform an upgrade\n"
  951. " install - Install new packages (pkg is libc6 not libc6.deb)\n"
  952. " remove - Remove packages\n"
  953. " source - Download source archives\n"
  954. " build-dep - Configure build-dependencies for source packages\n"
  955. " dist-upgrade - Distribution upgrade, see apt-get(8)\n"
  956. " dselect-upgrade - Follow dselect selections\n"
  957. " clean - Erase downloaded archive files\n"
  958. " autoclean - Erase old downloaded archive files\n"
  959. " check - Verify that there are no broken dependencies\n"
  960. "\n"
  961. "Options:\n"
  962. " -h This help text.\n"
  963. " -q Loggable output - no progress indicator\n"
  964. " -qq No output except for errors\n"
  965. " -d Download only - do NOT install or unpack archives\n"
  966. " -s No-act. Perform ordering simulation\n"
  967. " -y Assume Yes to all queries and do not prompt\n"
  968. " -f Attempt to continue if the integrity check fails\n"
  969. " -m Attempt to continue if archives are unlocatable\n"
  970. " -u Show a list of upgraded packages as well\n"
  971. " -b Build the source package after fetching it\n"
  972. " -V Show verbose version numbers\n"
  973. " -c=? Read this configuration file\n"
  974. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  975. "See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
  976. "pages for more information and options.\n"
  977. " This APT has Super Cow Powers.\n"
  978. msgstr ""
  979. "用法: apt-get [選項] 命令\n"
  980. " apt-get [選項] install|remove pkg1 [pkg2 ...]\n"
  981. " apt-get [選項] source pkg1 [pkg2 ...]\n"
  982. "\n"
  983. "apt-get 提供了一個用於下載和安裝套件的簡易命令界面。\n"
  984. "最常用命令是 update 和 install。\n"
  985. "\n"
  986. "命令:\n"
  987. " update - 下載更新套件列表訊息\n"
  988. " upgrade - 進行一次升級\n"
  989. " install - 安裝新的套件(注:套件名稱是 libc6 而非 libc6.deb)\n"
  990. " remove - 移除套件\n"
  991. " source - 下載源碼檔案\n"
  992. " build-dep - 為源碼配置所需的建構相依關係\n"
  993. " dist-upgrade - 發布版本升級,見 apt-get(8) dselect-upgrade - 根據 "
  994. "dselect \n"
  995. "的選擇來進行升級\n"
  996. " clean - 刪除所有已下載的套件檔案\n"
  997. " auto-clean - 刪除已下載的套件檔案較舊的版本\n"
  998. " check - 核對以確認系統的相依關係的完整性\n"
  999. "\n"
  1000. "選項:\n"
  1001. " -h 本幫助訊息。\n"
  1002. " -q 讓輸出作為記錄檔 - 不顯示進度\n"
  1003. " -qq 除了錯誤外,什麼都不輸出\n"
  1004. " -d 僅下載 - 『不』安裝或解開套件檔案\n"
  1005. " -s 不作實際操作。只是模擬執行命令\n"
  1006. " -y 對所有詢問都作肯定的回答,同時不作任何提示\n"
  1007. " -f 當沒有通過完整性測試時,仍嘗試繼續執行\n"
  1008. " -m 當有套件檔案無法找到時,仍嘗試繼續執行\n"
  1009. " -u 顯示已升級的套件列表\n"
  1010. " -b 在下載完源碼後,編譯生成相應的套件\n"
  1011. " -V 顯示詳盡的版本號\n"
  1012. " -c=? 讀取指定的設定檔案\n"
  1013. " -o=? 設定任意指定的設定選項,例如:-o dir::cache=/tmp\n"
  1014. "請查閱 apt-get(8)、sources.list(5) 和 apt.conf(5)的參考手冊\n"
  1015. "以取得更多訊息和選項。\n"
  1016. " 本 APT 有著超級牛力。\n"
  1017. #: cmdline/acqprogress.cc:55
  1018. msgid "Hit "
  1019. msgstr "已有 "
  1020. #: cmdline/acqprogress.cc:79
  1021. msgid "Get:"
  1022. msgstr "下載:"
  1023. #: cmdline/acqprogress.cc:110
  1024. msgid "Ign "
  1025. msgstr "略過 "
  1026. #: cmdline/acqprogress.cc:114
  1027. msgid "Err "
  1028. msgstr "錯誤 "
  1029. #: cmdline/acqprogress.cc:135
  1030. #, c-format
  1031. msgid "Fetched %sB in %s (%sB/s)\n"
  1032. msgstr "讀取 %sB 用了 %s (%sB/s)\n"
  1033. #: cmdline/acqprogress.cc:225
  1034. #, c-format
  1035. msgid " [Working]"
  1036. msgstr " [工作中]"
  1037. #: cmdline/acqprogress.cc:271
  1038. #, c-format
  1039. msgid ""
  1040. "Media change: please insert the disc labeled\n"
  1041. " '%s'\n"
  1042. "in the drive '%s' and press enter\n"
  1043. msgstr ""
  1044. "更換媒體:請把名為\n"
  1045. " '%s' 的光碟\n"
  1046. "插入 '%s' 碟機,然後按 [Enter] 鍵。\n"
  1047. #: cmdline/apt-sortpkgs.cc:86
  1048. msgid "Unknown package record!"
  1049. msgstr "未知的套件記錄!"
  1050. #: cmdline/apt-sortpkgs.cc:150
  1051. msgid ""
  1052. "Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
  1053. "\n"
  1054. "apt-sortpkgs is a simple tool to sort package files. The -s option is used\n"
  1055. "to indicate what kind of file it is.\n"
  1056. "\n"
  1057. "Options:\n"
  1058. " -h This help text\n"
  1059. " -s Use source file sorting\n"
  1060. " -c=? Read this configuration file\n"
  1061. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  1062. msgstr ""
  1063. "用法: apt-sortpkgs [選項] file1 [file2 ...]\n"
  1064. "\n"
  1065. "apt-sortpkgs 是對套件索引檔案內容進行排序的簡單工具。-s 選項\n"
  1066. "是用來指出該檔的檔案類型。\n"
  1067. "\n"
  1068. "選項:\n"
  1069. " -h 本幫助訊息。\n"
  1070. " -s 根據源碼檔案排序\n"
  1071. " -c=? 讀取指定的設定檔案\n"
  1072. " -o=? 設定任意指定的設定選項,例如:-o dir::cache=/tmp\n"
  1073. #: dselect/install:32
  1074. msgid "Bad default setting!"
  1075. msgstr "錯誤的預設設定!"
  1076. #: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:93
  1077. #: dselect/install:104 dselect/update:45
  1078. msgid "Press enter to continue."
  1079. msgstr "請按 [Enter] 鍵繼續。"
  1080. #: dselect/install:100
  1081. msgid "Some errors occurred while unpacking. I'm going to configure the"
  1082. msgstr "解開套件時發生錯誤。我要準備設定"
  1083. #: dselect/install:101
  1084. msgid "packages that were installed. This may result in duplicate errors"
  1085. msgstr "套件已安裝過。這將造成重複性的錯誤"
  1086. #: dselect/install:102
  1087. msgid "or errors caused by missing dependencies. This is OK, only the errors"
  1088. msgstr "或因為失去相依關係所造成的錯誤。只有該錯誤可被容忍"
  1089. #: dselect/install:103
  1090. msgid ""
  1091. "above this message are important. Please fix them and run [I]nstall again"
  1092. msgstr "以上的訊息相當重要。請修正它們並重新執行安裝[I]"
  1093. #: dselect/update:30
  1094. msgid "Merging available information"
  1095. msgstr "結合現有資料中"
  1096. #: apt-inst/contrib/extracttar.cc:117
  1097. msgid "Failed to create pipes"
  1098. msgstr "無法建立管線"
  1099. #: apt-inst/contrib/extracttar.cc:143
  1100. msgid "Failed to exec gzip "
  1101. msgstr "無法執行 gzip"
  1102. #: apt-inst/contrib/extracttar.cc:180 apt-inst/contrib/extracttar.cc:206
  1103. msgid "Corrupted archive"
  1104. msgstr "損毀的檔案"
  1105. #: apt-inst/contrib/extracttar.cc:195
  1106. msgid "Tar checksum failed, archive corrupted"
  1107. msgstr "Tar checksum 失敗,檔案已損毀"
  1108. #: apt-inst/contrib/extracttar.cc:298
  1109. #, c-format
  1110. msgid "Unknown TAR header type %u, member %s"
  1111. msgstr "未知的 TAR 標頭型別 %u, member 訊息 %s"
  1112. #: apt-inst/contrib/arfile.cc:73
  1113. msgid "Invalid archive signature"
  1114. msgstr "無效的檔案籤章"
  1115. #: apt-inst/contrib/arfile.cc:81
  1116. msgid "Error reading archive member header"
  1117. msgstr "讀取檔案 member 標頭訊息時出錯"
  1118. #: apt-inst/contrib/arfile.cc:93 apt-inst/contrib/arfile.cc:105
  1119. msgid "Invalid archive member header"
  1120. msgstr "無效的檔案 member 標頭"
  1121. #: apt-inst/contrib/arfile.cc:131
  1122. msgid "Archive is too short"
  1123. msgstr "檔案過短"
  1124. #: apt-inst/contrib/arfile.cc:135
  1125. msgid "Failed to read the archive headers"
  1126. msgstr "讀取檔案標頭失敗"
  1127. #: apt-inst/filelist.cc:384
  1128. msgid "DropNode called on still linked node"
  1129. msgstr "DropNode 在還有 linked node 時被呼叫"
  1130. #: apt-inst/filelist.cc:416
  1131. msgid "Failed to locate the hash element!"
  1132. msgstr "尋找雜湊元件失敗!"
  1133. #: apt-inst/filelist.cc:463
  1134. msgid "Failed to allocate diversion"
  1135. msgstr "分配轉移(diversion)失敗"
  1136. #: apt-inst/filelist.cc:468
  1137. msgid "Internal error in AddDiversion"
  1138. msgstr "內部錯誤於 AddDiversion"
  1139. #: apt-inst/filelist.cc:481
  1140. #, c-format
  1141. msgid "Trying to overwrite a diversion, %s -> %s and %s/%s"
  1142. msgstr "試圖改寫一個轉移(diversion),%s -> %s 和 %s/%s"
  1143. #: apt-inst/filelist.cc:510
  1144. #, c-format
  1145. msgid "Double add of diversion %s -> %s"
  1146. msgstr "重複加入轉移(diversion) %s -> %s"
  1147. #: apt-inst/filelist.cc:553
  1148. #, c-format
  1149. msgid "Duplicate conf file %s/%s"
  1150. msgstr "重複的設定檔 %s/%s"
  1151. #: apt-inst/dirstream.cc:45 apt-inst/dirstream.cc:50 apt-inst/dirstream.cc:53
  1152. #, c-format
  1153. msgid "Failed write file %s"
  1154. msgstr "寫入檔案 %s 失敗"
  1155. #: apt-inst/dirstream.cc:80 apt-inst/dirstream.cc:88
  1156. #, c-format
  1157. msgid "Failed to close file %s"
  1158. msgstr "關閉檔案 %s 失敗"
  1159. #: apt-inst/extract.cc:96 apt-inst/extract.cc:167
  1160. #, c-format
  1161. msgid "The path %s is too long"
  1162. msgstr "路徑 %s 過長"
  1163. #: apt-inst/extract.cc:127
  1164. #, c-format
  1165. msgid "Unpacking %s more than once"
  1166. msgstr "解開 %s 超過一次"
  1167. #: apt-inst/extract.cc:137
  1168. #, c-format
  1169. msgid "The directory %s is diverted"
  1170. msgstr "路徑 %s 已被轉向(diverted)"
  1171. #: apt-inst/extract.cc:147
  1172. #, c-format
  1173. msgid "The package is trying to write to the diversion target %s/%s"
  1174. msgstr "此套件試圖寫入改變過的目標 %s/%s"
  1175. #: apt-inst/extract.cc:157 apt-inst/extract.cc:300
  1176. msgid "The diversion path is too long"
  1177. msgstr "轉移(diversion)路徑過長"
  1178. #: apt-inst/extract.cc:243
  1179. #, c-format
  1180. msgid "The directory %s is being replaced by a non-directory"
  1181. msgstr "目錄 %s 已經被非目錄檔案取代"
  1182. #: apt-inst/extract.cc:283
  1183. msgid "Failed to locate node in its hash bucket"
  1184. msgstr "在雜湊表中找不到節點"
  1185. #: apt-inst/extract.cc:287
  1186. msgid "The path is too long"
  1187. msgstr "路徑過長"
  1188. #: apt-inst/extract.cc:417
  1189. #, c-format
  1190. msgid "Overwrite package match with no version for %s"
  1191. msgstr "複寫套件 %s 無符合版本"
  1192. #: apt-inst/extract.cc:434
  1193. #, c-format
  1194. msgid "File %s/%s overwrites the one in the package %s"
  1195. msgstr "檔案 %s/%s 複寫套件 %s 中的相同檔案"
  1196. #: apt-inst/extract.cc:467 apt-pkg/contrib/configuration.cc:709
  1197. #: apt-pkg/contrib/cdromutl.cc:153 apt-pkg/acquire.cc:416 apt-pkg/clean.cc:38
  1198. #, c-format
  1199. msgid "Unable to read %s"
  1200. msgstr "無法讀取『%s』。"
  1201. #: apt-inst/extract.cc:494
  1202. #, c-format
  1203. msgid "Unable to stat %s"
  1204. msgstr "無法讀取 %s 的資料"
  1205. #: apt-inst/deb/dpkgdb.cc:55 apt-inst/deb/dpkgdb.cc:61
  1206. #, c-format
  1207. msgid "Failed to remove %s"
  1208. msgstr "無法移除 %s"
  1209. #: apt-inst/deb/dpkgdb.cc:110 apt-inst/deb/dpkgdb.cc:112
  1210. #, c-format
  1211. msgid "Unable to create %s"
  1212. msgstr "無法創造 %s"
  1213. #: apt-inst/deb/dpkgdb.cc:118
  1214. #, c-format
  1215. msgid "Failed to stat %sinfo"
  1216. msgstr "無法讀取 %s 的資料"
  1217. #: apt-inst/deb/dpkgdb.cc:123
  1218. msgid "The info and temp directories need to be on the same filesystem"
  1219. msgstr "資料目錄與暫存目錄需在同一檔案系統"
  1220. #. Build the status cache
  1221. #: apt-inst/deb/dpkgdb.cc:139 apt-pkg/pkgcachegen.cc:643
  1222. #: apt-pkg/pkgcachegen.cc:712 apt-pkg/pkgcachegen.cc:717
  1223. #: apt-pkg/pkgcachegen.cc:840
  1224. msgid "Reading package lists"
  1225. msgstr "讀取套件清單中"
  1226. #: apt-inst/deb/dpkgdb.cc:180
  1227. #, c-format
  1228. msgid "Failed to change to the admin dir %sinfo"
  1229. msgstr "無法變換 admin 目錄至 %sinfo"
  1230. #: apt-inst/deb/dpkgdb.cc:201 apt-inst/deb/dpkgdb.cc:355
  1231. #: apt-inst/deb/dpkgdb.cc:448
  1232. msgid "Internal error getting a package name"
  1233. msgstr "內部錯誤,無法取得套件名稱"
  1234. #: apt-inst/deb/dpkgdb.cc:205
  1235. msgid "Reading file listing"
  1236. msgstr "讀取軟件表中"
  1237. #: apt-inst/deb/dpkgdb.cc:216
  1238. #, c-format
  1239. msgid ""
  1240. "Failed to open the list file '%sinfo/%s'. If you cannot restore this file "
  1241. "then make it empty and immediately re-install the same version of the "
  1242. "package!"
  1243. msgstr ""
  1244. "讀取清單檔案「%sinfo/%s」失敗。如果您無法還原此檔案\n"
  1245. "請使檔案空白並馬上重新安裝相同版本的套件。"
  1246. #: apt-inst/deb/dpkgdb.cc:229 apt-inst/deb/dpkgdb.cc:242
  1247. #, c-format
  1248. msgid "Failed reading the list file %sinfo/%s"
  1249. msgstr "讀取清單檔案「%sinfo/%s」失敗"
  1250. #: apt-inst/deb/dpkgdb.cc:266
  1251. msgid "Internal error getting a node"
  1252. msgstr "內部錯誤,無法取得節點"
  1253. #: apt-inst/deb/dpkgdb.cc:309
  1254. #, c-format
  1255. msgid "Failed to open the diversions file %sdiversions"
  1256. msgstr "讀取轉移檔案 %sdiversions 失敗"
  1257. #: apt-inst/deb/dpkgdb.cc:324
  1258. msgid "The diversion file is corrupted"
  1259. msgstr "套件轉移檔損壞"
  1260. #: apt-inst/deb/dpkgdb.cc:331 apt-inst/deb/dpkgdb.cc:336
  1261. #: apt-inst/deb/dpkgdb.cc:341
  1262. #, c-format
  1263. msgid "Invalid line in the diversion file: %s"
  1264. msgstr "無效的行於轉移檔案 %s 中"
  1265. #: apt-inst/deb/dpkgdb.cc:362
  1266. msgid "Internal error adding a diversion"
  1267. msgstr "內部錯誤:新增轉移(diversion)失敗"
  1268. #: apt-inst/deb/dpkgdb.cc:383
  1269. msgid "The pkg cache must be initialize first"
  1270. msgstr "套件快取必須先初始化"
  1271. #: apt-inst/deb/dpkgdb.cc:386
  1272. msgid "Reading file list"
  1273. msgstr "讀取軟件表中"
  1274. #: apt-inst/deb/dpkgdb.cc:443
  1275. #, c-format
  1276. msgid "Failed to find a Package: header, offset %lu"
  1277. msgstr "開啟套件失敗:檔案標頭,位移(offset) %lu"
  1278. #: apt-inst/deb/dpkgdb.cc:465
  1279. #, c-format
  1280. msgid "Bad ConfFile section in the status file. Offset %lu"
  1281. msgstr "壞的 ConfFile 區段於 status 檔案。位移(offset) %lu"
  1282. #: apt-inst/deb/dpkgdb.cc:470
  1283. #, c-format
  1284. msgid "Error parsing MD5. Offset %lu"
  1285. msgstr "解析 MD5 錯誤。位移(offset) %lu"
  1286. #: apt-inst/deb/debfile.cc:42 apt-inst/deb/debfile.cc:47
  1287. #, c-format
  1288. msgid "This is not a valid DEB archive, missing '%s' member"
  1289. msgstr "無效的 DEB 檔案,遺失 %s 成員"
  1290. #: apt-inst/deb/debfile.cc:52
  1291. #, c-format
  1292. msgid "This is not a valid DEB archive, it has no '%s' or '%s' member"
  1293. msgstr "無效的 DEB 檔案,遺失 '%s' 或 '%s' 成員"
  1294. #: apt-inst/deb/debfile.cc:112
  1295. #, c-format
  1296. msgid "Couldn't change to %s"
  1297. msgstr "無法變換目錄至 %s"
  1298. #: apt-inst/deb/debfile.cc:138
  1299. msgid "Internal error, could not locate member"
  1300. msgstr "內部錯誤:無法找到成員"
  1301. #: apt-inst/deb/debfile.cc:171
  1302. msgid "Failed to locate a valid control file"
  1303. msgstr "找不到有效的 control 檔案"
  1304. #: apt-inst/deb/debfile.cc:256
  1305. msgid "Unparsable control file"
  1306. msgstr "無法分析的 control 檔案"
  1307. #: methods/cdrom.cc:113
  1308. #, c-format
  1309. msgid "Unable to read the cdrom database %s"
  1310. msgstr "無法讀取碟片資料庫『%s』。"
  1311. #: methods/cdrom.cc:122
  1312. msgid ""
  1313. "Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update "
  1314. "cannot be used to add new CD-ROMs"
  1315. msgstr ""
  1316. "要讓本程式辨認此碟片,請用『apt-cdrom』工具。『apt-get update』不能用來製造新"
  1317. "的碟片。"
  1318. #: methods/cdrom.cc:130 methods/cdrom.cc:168
  1319. msgid "Wrong CD-ROM"
  1320. msgstr "碟片不正確。"
  1321. #: methods/cdrom.cc:163
  1322. #, c-format
  1323. msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
  1324. msgstr "無法下駕『%s』內的碟片,或許它仍在使用中。"
  1325. #: methods/cdrom.cc:177 methods/file.cc:77 methods/rsh.cc:264
  1326. msgid "File not found"
  1327. msgstr "找不到檔案"
  1328. #: methods/copy.cc:42 methods/gzip.cc:133 methods/gzip.cc:142
  1329. msgid "Failed to stat"
  1330. msgstr "無法讀取資料"
  1331. #: methods/copy.cc:79 methods/gzip.cc:139
  1332. msgid "Failed to set modification time"
  1333. msgstr "日期更新失敗"
  1334. #: methods/file.cc:42
  1335. msgid "Invalid URI, local URIS must not start with //"
  1336. msgstr "通用資源識別號錯誤。本機資源識別號不應以『//』起頭。"
  1337. #. Login must be before getpeername otherwise dante won't work.
  1338. #: methods/ftp.cc:162
  1339. msgid "Logging in"
  1340. msgstr "登入中"
  1341. #: methods/ftp.cc:168
  1342. msgid "Unable to determine the peer name"
  1343. msgstr "無法解析對方主機名稱。"
  1344. #: methods/ftp.cc:173
  1345. msgid "Unable to determine the local name"
  1346. msgstr "無法解析本機名稱。"
  1347. #: methods/ftp.cc:204 methods/ftp.cc:232
  1348. #, c-format
  1349. msgid "The server refused the connection and said: %s"
  1350. msgstr "伺服器因『%s』不受理。"
  1351. #: methods/ftp.cc:210
  1352. #, c-format
  1353. msgid "USER failed, server said: %s"
  1354. msgstr "『USER』指令因『%s』失敗。"
  1355. #: methods/ftp.cc:217
  1356. #, c-format
  1357. msgid "PASS failed, server said: %s"
  1358. msgstr "『PASS』指令因『%s』失敗。"
  1359. #: methods/ftp.cc:237
  1360. msgid ""
  1361. "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin "
  1362. "is empty."
  1363. msgstr "媒介伺服器設定應包括登入稿。"
  1364. #: methods/ftp.cc:265
  1365. #, c-format
  1366. msgid "Login script command '%s' failed, server said: %s"
  1367. msgstr "登入稿『%s』因『%s』失敗。"
  1368. #: methods/ftp.cc:291
  1369. #, c-format
  1370. msgid "TYPE failed, server said: %s"
  1371. msgstr "『TYPE』指令因『%s』失敗。"
  1372. #: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226
  1373. msgid "Connection timeout"
  1374. msgstr "連線逾時"
  1375. #: methods/ftp.cc:335
  1376. msgid "Server closed the connection"
  1377. msgstr "伺服器關閉聯線。"
  1378. #: methods/ftp.cc:338 methods/rsh.cc:190 apt-pkg/contrib/fileutl.cc:453
  1379. msgid "Read error"
  1380. msgstr "讀取失敗。"
  1381. #: methods/ftp.cc:345 methods/rsh.cc:197
  1382. msgid "A response overflowed the buffer."
  1383. msgstr "答覆超過緩衝區長度。"
  1384. #: methods/ftp.cc:362 methods/ftp.cc:374
  1385. msgid "Protocol corruption"
  1386. msgstr "協定失敗。"
  1387. #: methods/ftp.cc:446 methods/rsh.cc:232 apt-pkg/contrib/fileutl.cc:492
  1388. msgid "Write error"
  1389. msgstr "寫入失敗。"
  1390. #: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729
  1391. msgid "Could not create a socket"
  1392. msgstr "無法建立 Socket"
  1393. #: methods/ftp.cc:698
  1394. msgid "Could not connect data socket, connection timed out"
  1395. msgstr "無法連接到 data socket,連線逾時"
  1396. #: methods/ftp.cc:704
  1397. msgid "Could not connect passive socket."
  1398. msgstr "無法連接到 passive socket"
  1399. #: methods/ftp.cc:722
  1400. msgid "getaddrinfo was unable to get a listening socket"
  1401. msgstr "getaddrinfo 無法取得監聽的 socket"
  1402. #: methods/ftp.cc:736
  1403. msgid "Could not bind a socket"
  1404. msgstr "無法連接(bind) socket"
  1405. #: methods/ftp.cc:740
  1406. msgid "Could not listen on the socket"
  1407. msgstr "無法在 socket 上接收資料"
  1408. #: methods/ftp.cc:747
  1409. msgid "Could not determine the socket's name"
  1410. msgstr "無法解析 socket 名稱"
  1411. #: methods/ftp.cc:779
  1412. msgid "Unable to send PORT command"
  1413. msgstr "無法送出「PORT」命令"
  1414. #: methods/ftp.cc:789
  1415. #, c-format
  1416. msgid "Unknown address family %u (AF_*)"
  1417. msgstr "未知的地址成員 %u (AF_*)"
  1418. #: methods/ftp.cc:798
  1419. #, c-format
  1420. msgid "EPRT failed, server said: %s"
  1421. msgstr "EPRT 失敗,伺服器回應:%s"
  1422. #: methods/ftp.cc:818
  1423. msgid "Data socket connect timed out"
  1424. msgstr "Data socket 連線逾時"
  1425. #: methods/ftp.cc:825
  1426. msgid "Unable to accept connection"
  1427. msgstr "無法允許連線"
  1428. #: methods/ftp.cc:864 methods/http.cc:916 methods/rsh.cc:303
  1429. msgid "Problem hashing file"
  1430. msgstr "問題雜湊表"
  1431. #: methods/ftp.cc:877
  1432. #, c-format
  1433. msgid "Unable to fetch file, server said '%s'"
  1434. msgstr "無法取得檔案,伺服器回應:%s"
  1435. #: methods/ftp.cc:892 methods/rsh.cc:322
  1436. msgid "Data socket timed out"
  1437. msgstr "Data socket 連線逾時"
  1438. #: methods/ftp.cc:922
  1439. #, c-format
  1440. msgid "Data transfer failed, server said '%s'"
  1441. msgstr "資料傳輸失敗,伺服器回應 %s"
  1442. #. Get the files information
  1443. #: methods/ftp.cc:997
  1444. msgid "Query"
  1445. msgstr "查詢"
  1446. #: methods/ftp.cc:1106
  1447. msgid "Unable to invoke "
  1448. msgstr "無法讀取 "
  1449. #: methods/connect.cc:64
  1450. #, c-format
  1451. msgid "Connecting to %s (%s)"
  1452. msgstr "連絡『%s (%s)』中"
  1453. #: methods/connect.cc:71
  1454. #, c-format
  1455. msgid "[IP: %s %s]"
  1456. msgstr "[IP: %s %s]"
  1457. #: methods/connect.cc:80
  1458. #, c-format
  1459. msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
  1460. msgstr "無法建立到『%s』的 socket (族=%u 型=%u 協定=%u)。"
  1461. #: methods/connect.cc:86
  1462. #, c-format
  1463. msgid "Cannot initiate the connection to %s:%s (%s)."
  1464. msgstr "無法聯絡到主機『%s:%s (%s)』。"
  1465. #: methods/connect.cc:92
  1466. #, c-format
  1467. msgid "Could not connect to %s:%s (%s), connection timed out"
  1468. msgstr "無法聯絡到主機『%s:%s (%s)』。"
  1469. #: methods/connect.cc:104
  1470. #, c-format
  1471. msgid "Could not connect to %s:%s (%s)."
  1472. msgstr "無法聯絡到主機『%s:%s (%s)』。"
  1473. #. We say this mainly because the pause here is for the
  1474. #. ssh connection that is still going
  1475. #: methods/connect.cc:132 methods/rsh.cc:425
  1476. #, c-format
  1477. msgid "Connecting to %s"
  1478. msgstr "聯絡主機『%s』中"
  1479. #: methods/connect.cc:163
  1480. #, c-format
  1481. msgid "Could not resolve '%s'"
  1482. msgstr "無法解析位置 %s"
  1483. #: methods/connect.cc:167
  1484. #, c-format
  1485. msgid "Temporary failure resolving '%s'"
  1486. msgstr "解析『%s』暫時失敗"
  1487. #: methods/connect.cc:169
  1488. #, c-format
  1489. msgid "Something wicked happened resolving '%s:%s' (%i)"
  1490. msgstr "無法解析『%s:%s (%i)』。"
  1491. #: methods/connect.cc:216
  1492. #, c-format
  1493. msgid "Unable to connect to %s %s:"
  1494. msgstr "無法聯絡到主機『%s %s』:"
  1495. #: methods/gzip.cc:57
  1496. #, c-format
  1497. msgid "Couldn't open pipe for %s"
  1498. msgstr "無法開啟管線給 %s 使用"
  1499. #: methods/gzip.cc:102
  1500. #, c-format
  1501. msgid "Read error from %s process"
  1502. msgstr "從 %s 進程讀取錯誤"
  1503. #: methods/http.cc:344
  1504. msgid "Waiting for headers"
  1505. msgstr "等待標頭"
  1506. #: methods/http.cc:490
  1507. #, c-format
  1508. msgid "Got a single header line over %u chars"
  1509. msgstr "取得一個單行超過 %u 字元的標頭"
  1510. #: methods/http.cc:498
  1511. msgid "Bad header line"
  1512. msgstr "壞的標頭"
  1513. #: methods/http.cc:517 methods/http.cc:524
  1514. msgid "The HTTP server sent an invalid reply header"
  1515. msgstr "http 伺服器傳送一個無效的回覆標頭"
  1516. #: methods/http.cc:553
  1517. msgid "The HTTP server sent an invalid Content-Length header"
  1518. msgstr "http 伺服器傳送一個無效的 Content-Length 標頭"
  1519. #: methods/http.cc:568
  1520. msgid "The HTTP server sent an invalid Content-Range header"
  1521. msgstr "http 伺服器傳送一個無效的 Content-Range 標頭"
  1522. #: methods/http.cc:570
  1523. msgid "This HTTP server has broken range support"
  1524. msgstr "http 伺服器有損毀的範圍支援"
  1525. #: methods/http.cc:594
  1526. msgid "Unknown date format"
  1527. msgstr "未知的資料格式"
  1528. #: methods/http.cc:737
  1529. msgid "Select failed"
  1530. msgstr "Select 失敗"
  1531. #: methods/http.cc:742
  1532. msgid "Connection timed out"
  1533. msgstr "連線逾時"
  1534. #: methods/http.cc:765
  1535. msgid "Error writing to output file"
  1536. msgstr "寫入輸出檔時發生錯誤"
  1537. #: methods/http.cc:793
  1538. msgid "Error writing to file"
  1539. msgstr "寫入檔案時發生錯誤"
  1540. #: methods/http.cc:818
  1541. msgid "Error writing to the file"
  1542. msgstr "寫入檔案時發生錯誤"
  1543. #: methods/http.cc:832
  1544. msgid "Error reading from server. Remote end closed connection"
  1545. msgstr "從遠端主機讀取錯誤,關閉連線"
  1546. #: methods/http.cc:834
  1547. msgid "Error reading from server"
  1548. msgstr "從伺服器讀取發生錯誤"
  1549. #: methods/http.cc:1065
  1550. msgid "Bad header data"
  1551. msgstr "壞的標頭資料"
  1552. #: methods/http.cc:1082
  1553. msgid "Connection failed"
  1554. msgstr "連線失敗"
  1555. #: methods/http.cc:1173
  1556. msgid "Internal error"
  1557. msgstr "內部錯誤"
  1558. #: methods/rsh.cc:330
  1559. msgid "Connection closed prematurely"
  1560. msgstr "連線不預期的結束"
  1561. #: apt-pkg/contrib/mmap.cc:82
  1562. msgid "Can't mmap an empty file"
  1563. msgstr "不能將空白檔案讀入記憶體"
  1564. #: apt-pkg/contrib/mmap.cc:87
  1565. #, c-format
  1566. msgid "Couldn't make mmap of %lu bytes"
  1567. msgstr "無法讀入檔案 %lu 位元組至記憶體"
  1568. #: apt-pkg/contrib/strutl.cc:941
  1569. #, c-format
  1570. msgid "Selection %s not found"
  1571. msgstr "選項『%s』找不到。"
  1572. #: apt-pkg/contrib/configuration.cc:395
  1573. #, c-format
  1574. msgid "Unrecognized type abbreviation: '%c'"
  1575. msgstr "不認識的簡寫類型:%c"
  1576. #: apt-pkg/contrib/configuration.cc:453
  1577. #, c-format
  1578. msgid "Opening configuration file %s"
  1579. msgstr "開啟組態檔 %s"
  1580. #: apt-pkg/contrib/configuration.cc:471
  1581. #, c-format
  1582. msgid "Line %d too long (max %d)"
  1583. msgstr "第 %d 行太長(最長 %d)"
  1584. #: apt-pkg/contrib/configuration.cc:567
  1585. #, c-format
  1586. msgid "Syntax error %s:%u: Block starts with no name."
  1587. msgstr "語法錯誤 %s:%u: 區塊沒有名稱"
  1588. #: apt-pkg/contrib/configuration.cc:586
  1589. #, c-format
  1590. msgid "Syntax error %s:%u: Malformed tag"
  1591. msgstr "語法錯誤 %s:%u: 無效的標籤"
  1592. #: apt-pkg/contrib/configuration.cc:603
  1593. #, c-format
  1594. msgid "Syntax error %s:%u: Extra junk after value"
  1595. msgstr "語法錯誤 %s:%u: 值後有多餘的垃圾"
  1596. #: apt-pkg/contrib/configuration.cc:643
  1597. #, c-format
  1598. msgid "Syntax error %s:%u: Directives can only be done at the top level"
  1599. msgstr "語法錯誤: %s:%u: 指令只能於最高層級執行"
  1600. #: apt-pkg/contrib/configuration.cc:650
  1601. #, c-format
  1602. msgid "Syntax error %s:%u: Too many nested includes"
  1603. msgstr "語法錯誤 %s:%u: 太多重複引入檔案"
  1604. #: apt-pkg/contrib/configuration.cc:654 apt-pkg/contrib/configuration.cc:659
  1605. #, c-format
  1606. msgid "Syntax error %s:%u: Included from here"
  1607. msgstr "語法錯誤 %s:%u: 從此引入"
  1608. #: apt-pkg/contrib/configuration.cc:663
  1609. #, c-format
  1610. msgid "Syntax error %s:%u: Unsupported directive '%s'"
  1611. msgstr "語法錯誤 %s:%u: 不支援的指令 '%s'"
  1612. #: apt-pkg/contrib/configuration.cc:697
  1613. #, c-format
  1614. msgid "Syntax error %s:%u: Extra junk at end of file"
  1615. msgstr "語法錯誤 %s:%u: 檔案後有多餘的垃圾"
  1616. #: apt-pkg/contrib/progress.cc:154
  1617. #, c-format
  1618. msgid "%c%s... Error!"
  1619. msgstr "%c%s... 錯誤!"
  1620. #: apt-pkg/contrib/progress.cc:156
  1621. #, c-format
  1622. msgid "%c%s... Done"
  1623. msgstr "%c%s... 完成"
  1624. #: apt-pkg/contrib/cmndline.cc:80
  1625. #, c-format
  1626. msgid "Command line option '%c' [from %s] is not known."
  1627. msgstr "未知的命令列選項「%c」從 %s"
  1628. #: apt-pkg/contrib/cmndline.cc:106 apt-pkg/contrib/cmndline.cc:114
  1629. #: apt-pkg/contrib/cmndline.cc:122
  1630. #, c-format
  1631. msgid "Command line option %s is not understood"
  1632. msgstr "無法理解的命令列選項 %s"
  1633. #: apt-pkg/contrib/cmndline.cc:127
  1634. #, c-format
  1635. msgid "Command line option %s is not boolean"
  1636. msgstr "命令列選項 %s 不是布林(boolean)變數"
  1637. #: apt-pkg/contrib/cmndline.cc:166 apt-pkg/contrib/cmndline.cc:187
  1638. #, c-format
  1639. msgid "Option %s requires an argument."
  1640. msgstr "選項 %s 需要更多的參數"
  1641. #: apt-pkg/contrib/cmndline.cc:201 apt-pkg/contrib/cmndline.cc:207
  1642. #, c-format
  1643. msgid "Option %s: Configuration item specification must have an =<val>."
  1644. msgstr "選項 %s: 組態元件描述應該有 =<val>"
  1645. #: apt-pkg/contrib/cmndline.cc:237
  1646. #, c-format
  1647. msgid "Option %s requires an integer argument, not '%s'"
  1648. msgstr "選項 %s 需要整數參數,不是 %s"
  1649. #: apt-pkg/contrib/cmndline.cc:268
  1650. #, c-format
  1651. msgid "Option '%s' is too long"
  1652. msgstr "選項 %s 太長"
  1653. #: apt-pkg/contrib/cmndline.cc:301
  1654. #, c-format
  1655. msgid "Sense %s is not understood, try true or false."
  1656. msgstr "偵測器 %s 無法理解,試試 true 或 false"
  1657. #: apt-pkg/contrib/cmndline.cc:351
  1658. #, c-format
  1659. msgid "Invalid operation %s"
  1660. msgstr "無效的操作:%s"
  1661. #: apt-pkg/contrib/cdromutl.cc:55
  1662. #, c-format
  1663. msgid "Unable to stat the mount point %s"
  1664. msgstr "無法讀取掛載點 %s"
  1665. #: apt-pkg/contrib/cdromutl.cc:149 apt-pkg/acquire.cc:422 apt-pkg/clean.cc:44
  1666. #, c-format
  1667. msgid "Unable to change to %s"
  1668. msgstr "無法進入『%s』目錄。"
  1669. #: apt-pkg/contrib/cdromutl.cc:190
  1670. msgid "Failed to stat the cdrom"
  1671. msgstr "CD-ROM 狀況讀取失敗"
  1672. #: apt-pkg/contrib/fileutl.cc:80
  1673. #, c-format
  1674. msgid "Not using locking for read only lock file %s"
  1675. msgstr "不使用檔案鎖定於唯獨檔案 %s"
  1676. #: apt-pkg/contrib/fileutl.cc:85
  1677. #, c-format
  1678. msgid "Could not open lock file %s"
  1679. msgstr "無法開啟『%s』鎖定檔。"
  1680. #: apt-pkg/contrib/fileutl.cc:103
  1681. #, c-format
  1682. msgid "Not using locking for nfs mounted lock file %s"
  1683. msgstr "不使用檔案鎖定於 nfs 掛載點上得檔案 %s"
  1684. #: apt-pkg/contrib/fileutl.cc:107
  1685. #, c-format
  1686. msgid "Could not get lock %s"
  1687. msgstr "無法取得『%s』鎖。"
  1688. #: apt-pkg/contrib/fileutl.cc:359
  1689. #, c-format
  1690. msgid "Waited for %s but it wasn't there"
  1691. msgstr "等待 %s 但是它不存在"
  1692. #: apt-pkg/contrib/fileutl.cc:369
  1693. #, c-format
  1694. msgid "Sub-process %s received a segmentation fault."
  1695. msgstr "子程序 %s 收到一個記憶體錯誤"
  1696. #: apt-pkg/contrib/fileutl.cc:372
  1697. #, c-format
  1698. msgid "Sub-process %s returned an error code (%u)"
  1699. msgstr "子程序 %s 回傳錯誤碼(%u)"
  1700. #: apt-pkg/contrib/fileutl.cc:374
  1701. #, c-format
  1702. msgid "Sub-process %s exited unexpectedly"
  1703. msgstr "子程序 %s 不預期的結束"
  1704. #: apt-pkg/contrib/fileutl.cc:418
  1705. #, c-format
  1706. msgid "Could not open file %s"
  1707. msgstr "無法開啟『%s』檔案。"
  1708. #: apt-pkg/contrib/fileutl.cc:474
  1709. #, c-format
  1710. msgid "read, still have %lu to read but none left"
  1711. msgstr "讀取,仍有 %lu 未讀"
  1712. #: apt-pkg/contrib/fileutl.cc:504
  1713. #, c-format
  1714. msgid "write, still have %lu to write but couldn't"
  1715. msgstr "寫入,仍有 %lu 待寫入但無法寫入"
  1716. #: apt-pkg/contrib/fileutl.cc:579
  1717. msgid "Problem closing the file"
  1718. msgstr "程式關閉檔案"
  1719. #: apt-pkg/contrib/fileutl.cc:585
  1720. msgid "Problem unlinking the file"
  1721. msgstr "程式刪除檔案"
  1722. #: apt-pkg/contrib/fileutl.cc:596
  1723. msgid "Problem syncing the file"
  1724. msgstr "程式同步檔案"
  1725. #: apt-pkg/pkgcache.cc:126
  1726. msgid "Empty package cache"
  1727. msgstr "套件暫存檔是空的。"
  1728. #: apt-pkg/pkgcache.cc:132
  1729. msgid "The package cache file is corrupted"
  1730. msgstr "套件暫存檔損壞。"
  1731. #: apt-pkg/pkgcache.cc:137
  1732. msgid "The package cache file is an incompatible version"
  1733. msgstr "套件暫存檔版本不符合。"
  1734. #: apt-pkg/pkgcache.cc:142
  1735. #, c-format
  1736. msgid "This APT does not support the versioning system '%s'"
  1737. msgstr "本軟體不支持『%s』版本系統。"
  1738. #: apt-pkg/pkgcache.cc:147
  1739. msgid "The package cache was built for a different architecture"
  1740. msgstr "套件暫存檔是在另一種系統上產生的。"
  1741. #: apt-pkg/pkgcache.cc:218
  1742. msgid "Depends"
  1743. msgstr "依存關係"
  1744. #: apt-pkg/pkgcache.cc:218
  1745. msgid "PreDepends"
  1746. msgstr "特別依存關係"
  1747. #: apt-pkg/pkgcache.cc:218
  1748. msgid "Suggests"
  1749. msgstr "建議"
  1750. #: apt-pkg/pkgcache.cc:219
  1751. msgid "Recommends"
  1752. msgstr "推薦"
  1753. #: apt-pkg/pkgcache.cc:219
  1754. msgid "Conflicts"
  1755. msgstr "衝突"
  1756. #: apt-pkg/pkgcache.cc:219
  1757. msgid "Replaces"
  1758. msgstr "取代"
  1759. #: apt-pkg/pkgcache.cc:220
  1760. msgid "Obsoletes"
  1761. msgstr "淘汰"
  1762. #: apt-pkg/pkgcache.cc:231
  1763. msgid "important"
  1764. msgstr "重要"
  1765. #: apt-pkg/pkgcache.cc:231
  1766. msgid "required"
  1767. msgstr "必要"
  1768. #: apt-pkg/pkgcache.cc:231
  1769. msgid "standard"
  1770. msgstr "標準"
  1771. #: apt-pkg/pkgcache.cc:232
  1772. msgid "optional"
  1773. msgstr "次要"
  1774. #: apt-pkg/pkgcache.cc:232
  1775. msgid "extra"
  1776. msgstr "添加"
  1777. #: apt-pkg/depcache.cc:60 apt-pkg/depcache.cc:89
  1778. msgid "Building dependency tree"
  1779. msgstr "了解套件依存關係中"
  1780. #: apt-pkg/depcache.cc:61
  1781. msgid "Candidate versions"
  1782. msgstr "候選版本"
  1783. #: apt-pkg/depcache.cc:90
  1784. msgid "Dependency generation"
  1785. msgstr "產生套件依存關係"
  1786. #: apt-pkg/tagfile.cc:73
  1787. #, c-format
  1788. msgid "Unable to parse package file %s (1)"
  1789. msgstr "無法辨識套件『%s』(1)。"
  1790. #: apt-pkg/tagfile.cc:160
  1791. #, c-format
  1792. msgid "Unable to parse package file %s (2)"
  1793. msgstr "無法辨識套件『%s』(1)。"
  1794. #: apt-pkg/sourcelist.cc:87
  1795. #, c-format
  1796. msgid "Malformed line %lu in source list %s (URI)"
  1797. msgstr "來源檔『%2$s』第 %1$lu 行有錯誤 (通用資源識別號)。"
  1798. #: apt-pkg/sourcelist.cc:89
  1799. #, c-format
  1800. msgid "Malformed line %lu in source list %s (dist)"
  1801. msgstr "來源檔『%2$s』第 %1$lu 行有錯誤 (版本)。"
  1802. #: apt-pkg/sourcelist.cc:92
  1803. #, c-format
  1804. msgid "Malformed line %lu in source list %s (URI parse)"
  1805. msgstr "來源檔『%2$s』第 %1$lu 行有錯誤 (通用資源識別號分辨)。"
  1806. #: apt-pkg/sourcelist.cc:98
  1807. #, c-format
  1808. msgid "Malformed line %lu in source list %s (absolute dist)"
  1809. msgstr "來源檔『%2$s』第 %1$lu 行有錯誤 (特定版本)。"
  1810. #: apt-pkg/sourcelist.cc:105
  1811. #, c-format
  1812. msgid "Malformed line %lu in source list %s (dist parse)"
  1813. msgstr "來源檔『%2$s』第 %1$lu 行有錯誤 (版本分辨)。"
  1814. #: apt-pkg/sourcelist.cc:156
  1815. #, c-format
  1816. msgid "Opening %s"
  1817. msgstr "開啟『%s』中"
  1818. #: apt-pkg/sourcelist.cc:170
  1819. #, c-format
  1820. msgid "Line %u too long in source list %s."
  1821. msgstr "來源檔『%2$s』第 %1$u 行太長。"
  1822. #: apt-pkg/sourcelist.cc:187
  1823. #, c-format
  1824. msgid "Malformed line %u in source list %s (type)"
  1825. msgstr "來源檔『%2$s』第 %1$u 行有錯誤 (類別)。"
  1826. #: apt-pkg/sourcelist.cc:191
  1827. #, c-format
  1828. msgid "Type '%s' is not known on line %u in source list %s"
  1829. msgstr "未知的類別 %1$s 於來源檔 %3$s 第 %2$u 行"
  1830. #: apt-pkg/sourcelist.cc:199 apt-pkg/sourcelist.cc:202
  1831. #, c-format
  1832. msgid "Malformed line %u in source list %s (vendor id)"
  1833. msgstr "來源檔『%2$s』第 %1$u 行有錯誤 (商家名稱)。"
  1834. #: apt-pkg/packagemanager.cc:402
  1835. #, c-format
  1836. msgid ""
  1837. "This installation run will require temporarily removing the essential "
  1838. "package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
  1839. "you really want to do it, activate the APT::Force-LoopBreak option."
  1840. msgstr ""
  1841. "此安裝因衝突或特別依存關係,需暫時刪除『%s』這個重要套件。這種情形通常有問"
  1842. "題,但您確定的話請啟動『APT::Force-LoopBreak』選項。"
  1843. #: apt-pkg/pkgrecords.cc:37
  1844. #, c-format
  1845. msgid "Index file type '%s' is not supported"
  1846. msgstr "本軟體不支持『%s』型的索引檔。"
  1847. #: apt-pkg/algorithms.cc:241
  1848. #, c-format
  1849. msgid ""
  1850. "The package %s needs to be reinstalled, but I can't find an archive for it."
  1851. msgstr "套件『%s』需要重新安裝,但找不到軟件檔案。"
  1852. #: apt-pkg/algorithms.cc:1059
  1853. msgid ""
  1854. "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
  1855. "held packages."
  1856. msgstr "無法解決依存關係。可能原因是某些套件被押後。"
  1857. #: apt-pkg/algorithms.cc:1061
  1858. msgid "Unable to correct problems, you have held broken packages."
  1859. msgstr "無法解決問題,因為某些損毀的套件被押後。"
  1860. #: apt-pkg/acquire.cc:61
  1861. #, c-format
  1862. msgid "Lists directory %spartial is missing."
  1863. msgstr "找不到『%spartial』清單目錄。"
  1864. #: apt-pkg/acquire.cc:65
  1865. #, c-format
  1866. msgid "Archive directory %spartial is missing."
  1867. msgstr "找不到『%spartial』檔案目錄。"
  1868. #: apt-pkg/acquire-worker.cc:112
  1869. #, c-format
  1870. msgid "The method driver %s could not be found."
  1871. msgstr "找不到安裝方式『%s』的驅動程式。"
  1872. #: apt-pkg/acquire-worker.cc:161
  1873. #, c-format
  1874. msgid "Method %s did not start correctly"
  1875. msgstr "安裝方式『%s』沒有正確啟動。"
  1876. #: apt-pkg/init.cc:119
  1877. #, c-format
  1878. msgid "Packaging system '%s' is not supported"
  1879. msgstr "本軟體不支持『%s』包裝法。"
  1880. #: apt-pkg/init.cc:135
  1881. msgid "Unable to determine a suitable packaging system type"
  1882. msgstr "無法明白系統類別。"
  1883. #: apt-pkg/clean.cc:61
  1884. #, c-format
  1885. msgid "Unable to stat %s."
  1886. msgstr "無法讀取『%s』的目錄資料。"
  1887. #: apt-pkg/srcrecords.cc:48
  1888. msgid "You must put some 'source' URIs in your sources.list"
  1889. msgstr "『sources.list』檔中必須有一些『source』指令。"
  1890. #: apt-pkg/cachefile.cc:73
  1891. msgid "The package lists or status file could not be parsed or opened."
  1892. msgstr "無法讀取套件清單或狀況檔。"
  1893. #: apt-pkg/cachefile.cc:77
  1894. msgid "You may want to run apt-get update to correct these problems"
  1895. msgstr "用『apt-get -f install』指令或許能修正這些問題。"
  1896. #: apt-pkg/policy.cc:269
  1897. msgid "Invalid record in the preferences file, no Package header"
  1898. msgstr "喜好檔有錯誤—缺少套件前置檔。"
  1899. #: apt-pkg/policy.cc:291
  1900. #, c-format
  1901. msgid "Did not understand pin type %s"
  1902. msgstr "本軟體不支持『%s』型的版本釘子。"
  1903. #: apt-pkg/policy.cc:299
  1904. msgid "No priority (or zero) specified for pin"
  1905. msgstr "對於釘住的檔案無優先順序"
  1906. #: apt-pkg/pkgcachegen.cc:74
  1907. msgid "Cache has an incompatible versioning system"
  1908. msgstr "套件暫存檔使用的是不相容的版本系統。"
  1909. #: apt-pkg/pkgcachegen.cc:117
  1910. #, c-format
  1911. msgid "Error occured while processing %s (NewPackage)"
  1912. msgstr "處理『%s』時發生錯誤 (NewPackage)。"
  1913. #: apt-pkg/pkgcachegen.cc:129
  1914. #, c-format
  1915. msgid "Error occured while processing %s (UsePackage1)"
  1916. msgstr "處理『%s』時發生錯誤 (UsePackage1)。"
  1917. #: apt-pkg/pkgcachegen.cc:150
  1918. #, c-format
  1919. msgid "Error occured while processing %s (UsePackage2)"
  1920. msgstr "處理『%s』時發生錯誤 (UsePackage2)。"
  1921. #: apt-pkg/pkgcachegen.cc:154
  1922. #, c-format
  1923. msgid "Error occured while processing %s (NewFileVer1)"
  1924. msgstr "處理『%s』時發生錯誤 (NewFileVer1)。"
  1925. #: apt-pkg/pkgcachegen.cc:184
  1926. #, c-format
  1927. msgid "Error occured while processing %s (NewVersion1)"
  1928. msgstr "處理『%s』時發生錯誤 (NewVersion1)。"
  1929. #: apt-pkg/pkgcachegen.cc:188
  1930. #, c-format
  1931. msgid "Error occured while processing %s (UsePackage3)"
  1932. msgstr "處理『%s』時發生錯誤 (UsePackage3)。"
  1933. #: apt-pkg/pkgcachegen.cc:192
  1934. #, c-format
  1935. msgid "Error occured while processing %s (NewVersion2)"
  1936. msgstr "處理『%s』時發生錯誤 (NewVersion2)。"
  1937. #: apt-pkg/pkgcachegen.cc:207
  1938. msgid "Wow, you exceeded the number of package names this APT is capable of."
  1939. msgstr "套件數量超過本程式的能力。"
  1940. #: apt-pkg/pkgcachegen.cc:210
  1941. msgid "Wow, you exceeded the number of versions this APT is capable of."
  1942. msgstr "套件版本數量超過本程式的能力。"
  1943. #: apt-pkg/pkgcachegen.cc:213
  1944. msgid "Wow, you exceeded the number of dependencies this APT is capable of."
  1945. msgstr "依存關係數量超過本程式的能力。"
  1946. #: apt-pkg/pkgcachegen.cc:241
  1947. #, c-format
  1948. msgid "Error occured while processing %s (FindPkg)"
  1949. msgstr "處理『%s』時發生錯誤 (FindPkg)。"
  1950. #: apt-pkg/pkgcachegen.cc:254
  1951. #, c-format
  1952. msgid "Error occured while processing %s (CollectFileProvides)"
  1953. msgstr "處理『%s』時發生錯誤 (CollectFileProvides)。"
  1954. #: apt-pkg/pkgcachegen.cc:260
  1955. #, c-format
  1956. msgid "Package %s %s was not found while processing file dependencies"
  1957. msgstr "當計算相依性時找不到套件 %s %s "
  1958. #: apt-pkg/pkgcachegen.cc:574
  1959. #, c-format
  1960. msgid "Couldn't stat source package list %s"
  1961. msgstr "無法讀取來源檔『%s』的目錄資料。"
  1962. #: apt-pkg/pkgcachegen.cc:658
  1963. msgid "Collecting File Provides"
  1964. msgstr "收集檔案供應"
  1965. #: apt-pkg/pkgcachegen.cc:785 apt-pkg/pkgcachegen.cc:792
  1966. msgid "IO Error saving source cache"
  1967. msgstr "無法寫入來源暫存檔。"
  1968. #: apt-pkg/acquire-item.cc:126
  1969. #, c-format
  1970. msgid "rename failed, %s (%s -> %s)."
  1971. msgstr "檔名因『%s』更換失敗 (%s → %s)。"
  1972. #: apt-pkg/acquire-item.cc:235 apt-pkg/acquire-item.cc:894
  1973. msgid "MD5Sum mismatch"
  1974. msgstr "MD5 檢查碼不符合。"
  1975. #: apt-pkg/acquire-item.cc:708
  1976. #, c-format
  1977. msgid ""
  1978. "I wasn't able to locate a file for the %s package. This might mean you need "
  1979. "to manually fix this package. (due to missing arch)"
  1980. msgstr "找不到套件『%s』需要的某檔案。請您修理這個套件再試試。"
  1981. #: apt-pkg/acquire-item.cc:761
  1982. #, c-format
  1983. msgid ""
  1984. "I wasn't able to locate file for the %s package. This might mean you need to "
  1985. "manually fix this package."
  1986. msgstr "找不到套件『%s』需要的某檔案。請您修理這個套件再試試。"
  1987. #: apt-pkg/acquire-item.cc:797
  1988. #, c-format
  1989. msgid ""
  1990. "The package index files are corrupted. No Filename: field for package %s."
  1991. msgstr "套件『%s』索引檔損壞—缺少『Filename:』欄。"
  1992. #: apt-pkg/acquire-item.cc:884
  1993. msgid "Size mismatch"
  1994. msgstr "檔案大小不符合。"
  1995. #: apt-pkg/vendorlist.cc:66
  1996. #, c-format
  1997. msgid "Vendor block %s contains no fingerprint"
  1998. msgstr "廠商區段%s有錯誤。"
  1999. #: apt-pkg/cdrom.cc:504
  2000. #, c-format
  2001. msgid ""
  2002. "Using CD-ROM mount point %s\n"
  2003. "Mounting CD-ROM\n"
  2004. msgstr ""
  2005. "使用光碟機掛載點 %s\n"
  2006. "掛載光碟機中\n"
  2007. #: apt-pkg/cdrom.cc:513 apt-pkg/cdrom.cc:595
  2008. msgid "Identifying.. "
  2009. msgstr "標識中.."
  2010. #: apt-pkg/cdrom.cc:538
  2011. #, c-format
  2012. msgid "Stored label: %s \n"
  2013. msgstr "保存標誌:%s \n"
  2014. #: apt-pkg/cdrom.cc:558
  2015. #, c-format
  2016. msgid "Using CD-ROM mount point %s\n"
  2017. msgstr "使用光碟機掛載點 %s\n"
  2018. #: apt-pkg/cdrom.cc:576
  2019. msgid "Unmounting CD-ROM\n"
  2020. msgstr "卸載光碟機中\n"
  2021. #: apt-pkg/cdrom.cc:580
  2022. msgid "Waiting for disc...\n"
  2023. msgstr "等待磁碟中...\n"
  2024. #. Mount the new CDROM
  2025. #: apt-pkg/cdrom.cc:588
  2026. msgid "Mounting CD-ROM...\n"
  2027. msgstr "掛載光碟機中... \n"
  2028. #: apt-pkg/cdrom.cc:606
  2029. msgid "Scanning disc for index files..\n"
  2030. msgstr "掃描碟片中的索引檔案..\n"
  2031. #: apt-pkg/cdrom.cc:644
  2032. #, c-format
  2033. msgid "Found %i package indexes, %i source indexes and %i signatures\n"
  2034. msgstr "找到 %i 個套件索引,%i 源碼索引和 %i 簽名\n"
  2035. #: apt-pkg/cdrom.cc:701
  2036. msgid "That is not a valid name, try again.\n"
  2037. msgstr "這不是合法名稱,重試一下。\n"
  2038. #: apt-pkg/cdrom.cc:717
  2039. #, c-format
  2040. msgid ""
  2041. "This disc is called: \n"
  2042. "'%s'\n"
  2043. msgstr ""
  2044. "這個碟片名為:\n"
  2045. "'%s'\n"
  2046. #: apt-pkg/cdrom.cc:721
  2047. msgid "Copying package lists..."
  2048. msgstr "複製套件清單中"
  2049. #: apt-pkg/cdrom.cc:745
  2050. msgid "Writing new source list\n"
  2051. msgstr "寫入新的來源列表中\n"
  2052. #: apt-pkg/cdrom.cc:754
  2053. msgid "Source list entries for this disc are:\n"
  2054. msgstr "該碟片的來源列表項目為:\n"
  2055. #: apt-pkg/cdrom.cc:788
  2056. msgid "Unmounting CD-ROM..."
  2057. msgstr "卸載光碟機中..."
  2058. #: apt-pkg/indexcopy.cc:261
  2059. #, c-format
  2060. msgid "Wrote %i records.\n"
  2061. msgstr "寫入 %i 筆紀錄。\n"
  2062. #: apt-pkg/indexcopy.cc:263
  2063. #, c-format
  2064. msgid "Wrote %i records with %i missing files.\n"
  2065. msgstr "寫入 %i 筆遺失 %i 個檔案的紀錄。\n"
  2066. #: apt-pkg/indexcopy.cc:266
  2067. #, c-format
  2068. msgid "Wrote %i records with %i mismatched files\n"
  2069. msgstr "寫入 %i 筆 %i 個不匹配檔案的紀錄。\n"
  2070. #: apt-pkg/indexcopy.cc:269
  2071. #, c-format
  2072. msgid "Wrote %i records with %i missing files and %i mismatched files\n"
  2073. msgstr "寫入 %i 筆遺失 %i 個檔案和 %i 個不匹配檔案的紀錄。\n"