ne.po 151 KB

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