ne.po 126 KB

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