ne.po 152 KB

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