mr.po 154 KB

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