mr.po 139 KB

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