ne.po 144 KB

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