dz.po 180 KB

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