vi.po 100 KB

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