mr.po 157 KB

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