zh_CN.po 123 KB

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