mr.po 159 KB

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