ne.po 135 KB

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