zh_TW.po 87 KB

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