mr.po 163 KB

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