mr.po 130 KB

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