zh_TW.po 111 KB

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