ne.po 153 KB

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