dz.po 179 KB

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