dz.po 187 KB

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