vi.po 121 KB

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