ru.po 165 KB

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