zh_TW.po 85 KB

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