ru.po 187 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296
  1. # translation of scripts_po_ru.po to Russian
  2. # Localization file for dpkg and other programs from dpkg package.
  3. #
  4. # Yuri Kozlov <yuray@komyakino.ru>, 2007, 2008.
  5. # Yuri Kozlov <yuray@komyakino.ru>, 2009, 2010, 2012, 2013.
  6. msgid ""
  7. msgstr ""
  8. "Project-Id-Version: dpkg-dev 1.16.9\n"
  9. "Report-Msgid-Bugs-To: debian-dpkg@lists.debian.org\n"
  10. "POT-Creation-Date: 2014-10-06 00:49+0200\n"
  11. "PO-Revision-Date: 2014-08-15 14:11+0200\n"
  12. "Last-Translator: Yuri Kozlov <yuray@komyakino.ru>\n"
  13. "Language-Team: Russian <debian-l10n-russian@lists.debian.org>\n"
  14. "Language: ru\n"
  15. "MIME-Version: 1.0\n"
  16. "Content-Type: text/plain; charset=UTF-8\n"
  17. "Content-Transfer-Encoding: 8bit\n"
  18. "X-Generator: Lokalize 1.4\n"
  19. "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
  20. "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
  21. #: scripts/dpkg-architecture.pl:37 scripts/dpkg-buildflags.pl:33
  22. #: scripts/dpkg-buildpackage.pl:49 scripts/dpkg-checkbuilddeps.pl:39
  23. #: scripts/dpkg-distaddfile.pl:37 scripts/dpkg-genchanges.pl:120
  24. #: scripts/dpkg-gencontrol.pl:66 scripts/dpkg-gensymbols.pl:53
  25. #: scripts/dpkg-mergechangelogs.pl:54 scripts/dpkg-name.pl:46
  26. #: scripts/dpkg-parsechangelog.pl:36 scripts/dpkg-scanpackages.pl:69
  27. #: scripts/dpkg-scansources.pl:79 scripts/dpkg-shlibdeps.pl:548
  28. #: scripts/dpkg-source.pl:526 scripts/changelog/debian.pl:37
  29. #, perl-format
  30. msgid "Debian %s version %s.\n"
  31. msgstr "Debian %s, версия %s.\n"
  32. #: scripts/dpkg-architecture.pl:39 scripts/dpkg-buildflags.pl:35
  33. #: scripts/dpkg-buildpackage.pl:51 scripts/dpkg-distaddfile.pl:39
  34. #: scripts/dpkg-genchanges.pl:122 scripts/dpkg-gencontrol.pl:68
  35. #: scripts/dpkg-gensymbols.pl:55 scripts/dpkg-parsechangelog.pl:38
  36. #: scripts/dpkg-shlibdeps.pl:550 scripts/dpkg-source.pl:528
  37. #: scripts/changelog/debian.pl:39
  38. msgid ""
  39. "\n"
  40. "This is free software; see the GNU General Public License version 2 or\n"
  41. "later for copying conditions. There is NO warranty.\n"
  42. msgstr ""
  43. "\n"
  44. "Это свободное программное обеспечение. См. условия распространения в\n"
  45. "Универсальной общественной лицензии GNU версии 2 или более поздней.\n"
  46. "НИКАКИЕ гарантии не предоставляются.\n"
  47. #: scripts/dpkg-architecture.pl:47
  48. #, perl-format
  49. msgid "Usage: %s [<option>...] [<command>]"
  50. msgstr "Использование: %s [<параметр>...] <команда>"
  51. #: scripts/dpkg-architecture.pl:49
  52. #, fuzzy
  53. #| msgid ""
  54. #| "Commands:\n"
  55. #| " -l list variables (default).\n"
  56. #| " -e<debian-arch> compare with current Debian architecture.\n"
  57. #| " -i<arch-alias> check if current Debian architecture is <arch-"
  58. #| "alias>.\n"
  59. #| " -q<variable> prints only the value of <variable>.\n"
  60. #| " -s print command to set environment variables.\n"
  61. #| " -u print command to unset environment variables.\n"
  62. #| " -c <command> set environment and run the command in it.\n"
  63. #| " -?, --help show this help message.\n"
  64. #| " --version show the version.\n"
  65. msgid ""
  66. "Commands:\n"
  67. " -l list variables (default).\n"
  68. " -L list valid architectures (matching some criteria).\n"
  69. " -e<debian-arch> compare with host Debian architecture.\n"
  70. " -i<arch-wildcard> check if host Debian architecture is <arch-wildcard>.\n"
  71. " -q<variable> prints only the value of <variable>.\n"
  72. " -s print command to set environment variables.\n"
  73. " -u print command to unset environment variables.\n"
  74. " -c <command> set environment and run the command in it.\n"
  75. " -?, --help show this help message.\n"
  76. " --version show the version."
  77. msgstr ""
  78. "Команды:\n"
  79. " -l вывести список переменных (действие по умолчанию)\n"
  80. " -e<debian-arch> сравнить с текущей архитектурой Debian\n"
  81. " -i<arch-alias> проверить, совпадает ли текущая архитектура\n"
  82. " Debian с шаблоном <arch-alias>\n"
  83. " -q<переменная> показать значение только указанной <переменной>\n"
  84. " -s показать команду для установки переменных окружения\n"
  85. " -u показать команду для сброса переменных окружения\n"
  86. " -c <команда> настроить окружение и запустить в нём команду\n"
  87. " -?, --help показать это сообщение\n"
  88. " --version показать версию\n"
  89. #: scripts/dpkg-architecture.pl:61
  90. msgid ""
  91. "Options:\n"
  92. " -a<debian-arch> set host Debian architecture.\n"
  93. " -t<gnu-system> set host GNU system type.\n"
  94. " -A<debian-arch> set target Debian architecture.\n"
  95. " -T<gnu-system> set target GNU system type.\n"
  96. " -W<arch-wildcard> restrict listed architectures matching <arch-"
  97. "wildcard>.\n"
  98. " -B<arch-bits> restrict listed architectures matching <arch-bits>.\n"
  99. " -E<arch-endian> restrict listed architectures matching <arch-endian>.\n"
  100. " -f force flag (override variables set in environment)."
  101. msgstr ""
  102. #: scripts/dpkg-architecture.pl:79
  103. #, perl-format
  104. msgid "unknown Debian architecture %s, you must specify GNU system type, too"
  105. msgstr ""
  106. "неизвестная архитектура Debian %s, также вы должны указать GNU тип системы"
  107. #: scripts/dpkg-architecture.pl:86
  108. #, perl-format
  109. msgid "unknown GNU system type %s, you must specify Debian architecture, too"
  110. msgstr ""
  111. "неизвестный GNU тип системы %s, также вы должны указать архитектуру Debian"
  112. #: scripts/dpkg-architecture.pl:93
  113. #, perl-format
  114. msgid "unknown default GNU system type for Debian architecture %s"
  115. msgstr "неизвестный GNU тип системы по умолчанию для архитектуры Debian %s"
  116. #: scripts/dpkg-architecture.pl:96
  117. #, perl-format
  118. msgid ""
  119. "default GNU system type %s for Debian arch %s does not match specified GNU "
  120. "system type %s"
  121. msgstr ""
  122. "GNU тип системы по умолчанию %s для архитектуры Debian %s не совпадает с "
  123. "указанным GNU типом системы %s"
  124. #: scripts/dpkg-architecture.pl:203
  125. #, perl-format
  126. msgid "%s is not a supported variable name"
  127. msgstr "%s не является поддерживаемым именем переменной"
  128. #: scripts/dpkg-architecture.pl:221 scripts/dpkg-buildflags.pl:94
  129. #: scripts/dpkg-distaddfile.pl:69 scripts/dpkg-genchanges.pl:214
  130. #: scripts/dpkg-gencontrol.pl:140 scripts/dpkg-gensymbols.pl:140
  131. #: scripts/dpkg-name.pl:245 scripts/dpkg-parsechangelog.pl:121
  132. #: scripts/dpkg-shlibdeps.pl:133
  133. #, perl-format
  134. msgid "unknown option `%s'"
  135. msgstr "неизвестный параметр «%s»"
  136. #: scripts/dpkg-architecture.pl:282
  137. #, perl-format
  138. msgid ""
  139. "specified GNU system type %s does not match gcc system type %s, try setting "
  140. "a correct CC environment variable"
  141. msgstr ""
  142. "указанный GNU тип системы %s не совпадает с gcc типом системы %s, попробуйте "
  143. "задать правильное значение в переменной окружения CC"
  144. #: scripts/dpkg-buildflags.pl:43
  145. #, perl-format
  146. msgid "Usage: %s [<command>]"
  147. msgstr "Использование: %s [<команда>]"
  148. #: scripts/dpkg-buildflags.pl:45
  149. #, fuzzy
  150. #| msgid ""
  151. #| "Commands:\n"
  152. #| " --get <flag> output the requested flag to stdout.\n"
  153. #| " --origin <flag> output the origin of the flag to stdout:\n"
  154. #| " value is one of vendor, system, user, env.\n"
  155. #| " --query-features <area>\n"
  156. #| " output the status of features for the given area.\n"
  157. #| " --list output a list of the flags supported by the current "
  158. #| "vendor.\n"
  159. #| " --export=(sh|make|configure)\n"
  160. #| " output something convenient to import the\n"
  161. #| " compilation flags in a shell script, in make,\n"
  162. #| " or on a ./configure command line.\n"
  163. #| " --dump output all compilation flags with their values\n"
  164. #| " --status print a synopsis with all parameters affecting the\n"
  165. #| " behaviour of dpkg-buildflags and the resulting "
  166. #| "flags\n"
  167. #| " and their origin.\n"
  168. #| " --help show this help message.\n"
  169. #| " --version show the version.\n"
  170. msgid ""
  171. "Commands:\n"
  172. " --get <flag> output the requested flag to stdout.\n"
  173. " --origin <flag> output the origin of the flag to stdout:\n"
  174. " value is one of vendor, system, user, env.\n"
  175. " --query-features <area>\n"
  176. " output the status of features for the given area.\n"
  177. " --list output a list of the flags supported by the current "
  178. "vendor.\n"
  179. " --export=(sh|make|cmdline|configure)\n"
  180. " output something convenient to import the compilation\n"
  181. " flags in a shell script, in make, or in a command "
  182. "line.\n"
  183. " --dump output all compilation flags with their values\n"
  184. " --status print a synopsis with all parameters affecting the\n"
  185. " behaviour of dpkg-buildflags and the resulting flags\n"
  186. " and their origin.\n"
  187. " --help show this help message.\n"
  188. " --version show the version.\n"
  189. msgstr ""
  190. "Команды:\n"
  191. " --get <флаг> вывести значение флага на стандартный вывод\n"
  192. " --origin <флаг> вывести происхождение флага на стандартный вывод:\n"
  193. " значения: vendor, system, user, env\n"
  194. " --query-features <область>\n"
  195. " вывести состояние возможностей заданной области\n"
  196. " --list вывести список флагов, поддерживаемых текущим "
  197. "поставщиком\n"
  198. " --export=(sh|make|configure)\n"
  199. " вывести удобные для импорта флаги компиляции в командной\n"
  200. " строки для оболочки, make или ./configure\n"
  201. " --dump вывести все флаги компиляции с их значениями\n"
  202. " --status вывести синтаксис со всеми параметрами, влияющими на\n"
  203. " поведение dpkg-buildflags, конечные флаги\n"
  204. " и их происхождение\n"
  205. " --help показать это сообщение\n"
  206. " --version показать версию\n"
  207. #: scripts/dpkg-buildflags.pl:70 scripts/dpkg-buildflags.pl:76
  208. #: scripts/dpkg-buildflags.pl:83 scripts/dpkg-source.pl:519
  209. #, perl-format
  210. msgid "two commands specified: --%s and --%s"
  211. msgstr "указаны две команды: --%s и --%s"
  212. #: scripts/dpkg-buildflags.pl:74
  213. #, perl-format
  214. msgid "%s needs a parameter"
  215. msgstr "для %s требуется параметр"
  216. #: scripts/dpkg-buildpackage.pl:59 scripts/dpkg-genchanges.pl:130
  217. #: scripts/dpkg-gencontrol.pl:76 scripts/dpkg-gensymbols.pl:63
  218. #: scripts/dpkg-parsechangelog.pl:46
  219. #, perl-format
  220. msgid "Usage: %s [<option>...]"
  221. msgstr "Использование: %s [<параметр>...]"
  222. #: scripts/dpkg-buildpackage.pl:61
  223. #, fuzzy
  224. #| msgid ""
  225. #| "Options:\n"
  226. #| " -F (default) normal full build (binaries and sources).\n"
  227. #| " -b binary-only, do not build source.\n"
  228. #| " -B binary-only, no arch-indep files.\n"
  229. #| " -A binary-only, only arch-indep files.\n"
  230. #| " -S source only, no binary files.\n"
  231. #| " -nc do not clean source tree (implies -b).\n"
  232. #| " -tc clean source tree when finished.\n"
  233. #| " -D (default) check build dependencies and conflicts.\n"
  234. #| " -d do not check build dependencies and conflicts.\n"
  235. #| " -R<rules> rules file to execute (default is debian/rules).\n"
  236. #| " -T<target> call debian/rules <target> with the proper environment.\n"
  237. #| " --as-root ensure -T calls the target with root rights.\n"
  238. #| " -j[<number>] specify jobs to run simultaneously (passed to <rules>).\n"
  239. #| " -r<gain-root-command>\n"
  240. #| " command to gain root privileges (default is fakeroot).\n"
  241. #| " -p<sign-command>\n"
  242. #| " command to sign .dsc and/or .changes files (default is "
  243. #| "gpg).\n"
  244. #| " -k<keyid> the key to use for signing.\n"
  245. #| " -ap add pause before starting signature process.\n"
  246. #| " -us unsigned source package.\n"
  247. #| " -uc unsigned .changes file.\n"
  248. #| " --admindir=<directory>\n"
  249. #| " change the administrative directory.\n"
  250. #| " -?, --help show this help message.\n"
  251. #| " --version show the version."
  252. msgid ""
  253. "Options:\n"
  254. " -F (default) normal full build (binaries and sources).\n"
  255. " -g source and arch-indep build.\n"
  256. " -G source and arch-specific build.\n"
  257. " -b binary-only, no source files.\n"
  258. " -B binary-only, only arch-specific files.\n"
  259. " -A binary-only, only arch-indep files.\n"
  260. " -S source-only, no binary files.\n"
  261. " -nc do not clean source tree (implies -b).\n"
  262. " -tc clean source tree when finished.\n"
  263. " -D (default) check build dependencies and conflicts.\n"
  264. " -d do not check build dependencies and conflicts.\n"
  265. " -P<profiles> assume given build profiles as active (comma-separated "
  266. "list).\n"
  267. " -R<rules> rules file to execute (default is debian/rules).\n"
  268. " -T<target> call debian/rules <target> with the proper environment.\n"
  269. " --as-root ensure -T calls the target with root rights.\n"
  270. " -j[<number>] specify jobs to run simultaneously (passed to <rules>).\n"
  271. " -r<gain-root-command>\n"
  272. " command to gain root privileges (default is fakeroot).\n"
  273. " --check-command=<check-command>\n"
  274. " command to check the .changes file (no default).\n"
  275. " --check-option=<opt>\n"
  276. " pass <opt> to <check-command>.\n"
  277. " --hook-<hook-name>=<hook-command>\n"
  278. " set <hook-command> as the hook <hook-name>, known hooks:\n"
  279. " init preclean source build binary changes postclean\n"
  280. " check sign done\n"
  281. " -p<sign-command>\n"
  282. " command to sign .dsc and/or .changes files\n"
  283. " (default is gpg2 or gpg).\n"
  284. " -k<keyid> the key to use for signing.\n"
  285. " -ap add pause before starting signature process.\n"
  286. " -us unsigned source package.\n"
  287. " -uc unsigned .changes file.\n"
  288. " --force-sign\n"
  289. " force signing the resulting files.\n"
  290. " --admindir=<directory>\n"
  291. " change the administrative directory.\n"
  292. " -?, --help show this help message.\n"
  293. " --version show the version."
  294. msgstr ""
  295. "Параметры:\n"
  296. " -F (по умолчанию) обычная полная сборка (двоичные и с исх.кодом)\n"
  297. " -b только двоичный пакет, не собирать пакет с исходным "
  298. "кодом\n"
  299. " -B только двоичный пакет, не собирать независимые от\n"
  300. " архитектуры пакеты\n"
  301. " -A только двоичный пакет, собирать независимые от\n"
  302. " архитектуры пакеты\n"
  303. " -S только пакет с исходным кодом без двоичного пакета\n"
  304. " -nc не очищать дерево исходного кода (вместе с -b)\n"
  305. " -tc в конце очистить дерево исходного кода\n"
  306. " -D (по умолчанию) проверять сборочные зависимости и конфликты\n"
  307. " -d не проверять сборочные зависимости и конфликты\n"
  308. " -R<rules> файл правил для выполнения (по умолчанию debian/rules)\n"
  309. " -T<цель> вызвать debian/rules <цель> в настроенном окружении\n"
  310. " --as-root обеспечить вызовы -T правами root\n"
  311. " -j[<кол-во>] задать количество одновременно выполняемых работ\n"
  312. " (передаётся в debian/<rules>)\n"
  313. " -r<команда-получения-root>\n"
  314. " команда для получения прав root (по умолчанию fakeroot)\n"
  315. " -p<команда-подписывания>\n"
  316. " команда для подписывания файлов .dsc и/или .changes\n"
  317. " (по умолчанию gpg)\n"
  318. " -k<id-ключа> ключ для подписывания\n"
  319. " -ap сделать паузу перед началом подписывания\n"
  320. " -us не подписывать пакет с исходным кодом\n"
  321. " -uc не подписывать файл .changes\n"
  322. " --admindir=<каталог>\n"
  323. " изменить административный каталог\n"
  324. " -?, --help показать это сообщение\n"
  325. " --version показать версию"
  326. #: scripts/dpkg-buildpackage.pl:102
  327. msgid ""
  328. "Options passed to dpkg-architecture:\n"
  329. " -a<arch> Debian architecture we build for.\n"
  330. " -t<system> set GNU system type."
  331. msgstr ""
  332. "Параметры, передаваемые dpkg-architecture:\n"
  333. " -a<архит> архитектура Debian, под которую выполняется сборка\n"
  334. " -t<система> задать тип системы GNU"
  335. #: scripts/dpkg-buildpackage.pl:106
  336. #, fuzzy
  337. #| msgid ""
  338. #| "Options passed to dpkg-genchanges:\n"
  339. #| " -si (default) source includes orig if new upstream.\n"
  340. #| " -sa uploaded source always includes orig.\n"
  341. #| " -sd uploaded source is diff and .dsc only.\n"
  342. #| " -v<version> changes since version <version>.\n"
  343. #| " -m<maint> maintainer for package is <maint>.\n"
  344. #| " -e<maint> maintainer for release is <maint>.\n"
  345. #| " -C<descfile> changes are described in <descfile>.\n"
  346. #| " --changes-option=<opt>\n"
  347. #| " pass option <opt> to dpkg-genchanges."
  348. msgid ""
  349. "Options passed to dpkg-genchanges:\n"
  350. " -si (default) source includes orig, if new upstream.\n"
  351. " -sa source includes orig, always.\n"
  352. " -sd source is diff and .dsc only.\n"
  353. " -v<version> changes since version <version>.\n"
  354. " -m<maint> maintainer for package is <maint>.\n"
  355. " -e<maint> maintainer for release is <maint>.\n"
  356. " -C<descfile> changes are described in <descfile>.\n"
  357. " --changes-option=<opt>\n"
  358. " pass option <opt> to dpkg-genchanges."
  359. msgstr ""
  360. "Параметры, передаваемые dpkg-genchanges:\n"
  361. " -si (по умолч.) src включают orig, если новый автор\n"
  362. " -sa закачиваемые src всегда содержат orig\n"
  363. " -sd в закачиваемых src только diff и .dsc\n"
  364. " -v<версия> изменения, начиная с <версии>\n"
  365. " -m<сопров> задать <сопровождающего> пакета\n"
  366. " -e<сопров> задать <сопровождающего> выпуска\n"
  367. " -C<descfile> изменения даны в файле <descfile>\n"
  368. " --changes-option=<opt>\n"
  369. " передать параметр <opt> в dpkg-genchanges"
  370. #: scripts/dpkg-buildpackage.pl:117
  371. msgid ""
  372. "Options passed to dpkg-source:\n"
  373. " -sn force Debian native source format.\n"
  374. " -s[sAkurKUR] see dpkg-source for explanation.\n"
  375. " -z<level> compression level to use for source.\n"
  376. " -Z<compressor> compression to use for source (gz|xz|bzip2|lzma).\n"
  377. " -i[<regex>] ignore diffs of files matching regex.\n"
  378. " -I[<pattern>] filter out files when building tarballs.\n"
  379. " --source-option=<opt>\n"
  380. " pass option <opt> to dpkg-source.\n"
  381. msgstr ""
  382. "Параметры, передаваемые dpkg-source:\n"
  383. " -sn исходный код в родном формате Debian\n"
  384. " -s[sAkurKUR] смотрите описание dpkg-source\n"
  385. " -z<степень> степень сжатия исходного кода\n"
  386. " -Z<алгоритм> алгоритм сжатия исходного кода (gz|xz|bzip2|lzma)\n"
  387. " -i[<рег.выр>] игнорировать diff-ы файлов, совпадающих с рег.выр.\n"
  388. " -I[<шаблон>] при сборке tar, не включать файлы, попавшие в шаблон\n"
  389. " --source-option=<пар>\n"
  390. " передать параметр <пар> в dpkg-source\n"
  391. #: scripts/dpkg-buildpackage.pl:200 scripts/dpkg-genchanges.pl:114
  392. #, perl-format
  393. msgid "cannot combine %s and %s"
  394. msgstr "не удалось объединить %s и %s"
  395. #: scripts/dpkg-buildpackage.pl:241
  396. #, fuzzy, perl-format
  397. #| msgid "unknown option `%s'"
  398. msgid "unknown hook name %s"
  399. msgstr "неизвестный параметр «%s»"
  400. #: scripts/dpkg-buildpackage.pl:243
  401. #, perl-format
  402. msgid "missing hook %s command"
  403. msgstr ""
  404. #: scripts/dpkg-buildpackage.pl:254
  405. #, perl-format
  406. msgid "-s%s is deprecated; always using gpg style interface"
  407. msgstr "-s%s устарел; всегда используется интерфейс как у gpg"
  408. #: scripts/dpkg-buildpackage.pl:314 scripts/dpkg-source.pl:204
  409. msgid "-E and -W are deprecated, they are without effect"
  410. msgstr "-E и -W устарели, они ничего не изменят"
  411. #: scripts/dpkg-buildpackage.pl:319
  412. #, perl-format
  413. msgid "unknown option or argument %s"
  414. msgstr "неизвестный параметр или аргумент %s"
  415. #: scripts/dpkg-buildpackage.pl:340
  416. msgid "using a gain-root-command while being root"
  417. msgstr "используется команда получения прав root, но уже есть права root"
  418. #: scripts/dpkg-buildpackage.pl:347
  419. msgid ""
  420. "fakeroot not found, either install the fakeroot\n"
  421. "package, specify a command with the -r option, or run this as root"
  422. msgstr ""
  423. "fakeroot не найдена, установите пакет fakeroot и\n"
  424. "запускайте команду с параметром -r, или запускайте её от root"
  425. #: scripts/dpkg-buildpackage.pl:351
  426. #, perl-format
  427. msgid "gain-root-commmand '%s' not found"
  428. msgstr "команда-получения-root «%s» не найдена"
  429. #: scripts/dpkg-buildpackage.pl:356
  430. #, fuzzy, perl-format
  431. #| msgid "gain-root-commmand '%s' not found"
  432. msgid "check-commmand '%s' not found"
  433. msgstr "команда-получения-root «%s» не найдена"
  434. #: scripts/dpkg-buildpackage.pl:361
  435. #, fuzzy, perl-format
  436. #| msgid "gain-root-commmand '%s' not found"
  437. msgid "sign-commmand '%s' not found"
  438. msgstr "команда-получения-root «%s» не найдена"
  439. #: scripts/dpkg-buildpackage.pl:394
  440. msgid "source package"
  441. msgstr "пакет исходных текстов"
  442. #: scripts/dpkg-buildpackage.pl:395
  443. msgid "source version"
  444. msgstr "версия исходных текстов"
  445. #: scripts/dpkg-buildpackage.pl:403
  446. #, fuzzy
  447. #| msgid "source version"
  448. msgid "source distribution"
  449. msgstr "версия исходных текстов"
  450. #: scripts/dpkg-buildpackage.pl:411
  451. msgid "source changed by"
  452. msgstr "исходные тексты изменены"
  453. #: scripts/dpkg-buildpackage.pl:429
  454. msgid "host architecture"
  455. msgstr "архитектура узла"
  456. #: scripts/dpkg-buildpackage.pl:458
  457. msgid "debian/rules is not executable; fixing that"
  458. msgstr "debian/rules не является исполняемым; исправляем это"
  459. #: scripts/dpkg-buildpackage.pl:479
  460. msgid "build dependencies/conflicts unsatisfied; aborting"
  461. msgstr "неудовлетворительные зависимости/конфликты при сборке; прерываемся"
  462. #: scripts/dpkg-buildpackage.pl:480
  463. msgid "(Use -d flag to override.)"
  464. msgstr "(Используйте параметр -d, чтобы продолжить сборку.)"
  465. #: scripts/dpkg-buildpackage.pl:483
  466. msgid ""
  467. "this is currently a non-fatal warning with -S, but will probably become "
  468. "fatal in the future"
  469. msgstr ""
  470. "в данный момент с -S это только предупреждение но, вероятно, в будущем это "
  471. "станет ошибкой"
  472. #: scripts/dpkg-buildpackage.pl:511
  473. msgid ""
  474. "building a source package without cleaning up as you asked; it might contain "
  475. "undesired files"
  476. msgstr ""
  477. "сборка пакета исходного кода без предварительной очистки по вашему запросу; "
  478. "могут добавиться нежелательные файлы"
  479. #: scripts/dpkg-buildpackage.pl:531
  480. #, perl-format
  481. msgid ""
  482. "%s must be updated to support the 'build-arch' and 'build-indep' targets (at "
  483. "least '%s' seems to be missing)"
  484. msgstr ""
  485. "для поддержки целей «build-arch» и «build-indep» требуется обновить %s (во "
  486. "всяком случае, будет отсутствовать «%s»)"
  487. #: scripts/dpkg-buildpackage.pl:558
  488. #, fuzzy
  489. #| msgid "write changes file"
  490. msgid "parse changes file"
  491. msgstr "запись файла изменений"
  492. #: scripts/dpkg-buildpackage.pl:560
  493. msgid "dpkg-genchanges"
  494. msgstr "dpkg-genchanges"
  495. #: scripts/dpkg-buildpackage.pl:581
  496. msgid "Press the return key to start signing process\n"
  497. msgstr "Нажмите любую клавишу для запуска процесс подписывания\n"
  498. #: scripts/dpkg-buildpackage.pl:589
  499. #, fuzzy
  500. #| msgid "Failed to sign .dsc and .changes file"
  501. msgid "failed to sign .dsc and .changes file"
  502. msgstr "Отказ при подписывании файлов .dsc и .changes"
  503. #: scripts/dpkg-buildpackage.pl:608
  504. #, fuzzy
  505. #| msgid "Failed to sign .changes file"
  506. msgid "failed to sign .changes file"
  507. msgstr "Отказ при подписывании файла .changes"
  508. #: scripts/dpkg-buildpackage.pl:612
  509. msgid "not signing UNRELEASED build; use --force-sign to override"
  510. msgstr ""
  511. #: scripts/dpkg-buildpackage.pl:620
  512. #, perl-format
  513. msgid "unable to determine %s"
  514. msgstr "невозможно определить %s"
  515. #: scripts/dpkg-buildpackage.pl:656
  516. #, fuzzy, perl-format
  517. #| msgid "unknown substitution variable ${%s}"
  518. msgid "unknown %% substitution in hook: %%%s"
  519. msgstr "неизвестная подстановочная переменная ${%s}"
  520. #: scripts/dpkg-buildpackage.pl:676 scripts/dpkg-checkbuilddeps.pl:148
  521. #: scripts/dpkg-name.pl:96 scripts/Dpkg/Arch.pm:151 scripts/Dpkg/Arch.pm:175
  522. #: scripts/Dpkg/Arch.pm:208 scripts/Dpkg/Arch.pm:225 scripts/Dpkg/IPC.pm:278
  523. #: scripts/Dpkg/Shlibs.pm:88
  524. #, perl-format
  525. msgid "cannot open %s"
  526. msgstr "не удалось открыть %s"
  527. #: scripts/dpkg-buildpackage.pl:678 scripts/dpkg-distaddfile.pl:96
  528. #: scripts/dpkg-gencontrol.pl:411 scripts/dpkg-gencontrol.pl:427
  529. #: scripts/dpkg-shlibdeps.pl:538 scripts/Dpkg/Interface/Storable.pm:93
  530. #: scripts/Dpkg/Interface/Storable.pm:121 scripts/Dpkg/Source/Patch.pm:302
  531. #: scripts/Dpkg/Source/Package/V2.pm:601
  532. #, perl-format
  533. msgid "cannot close %s"
  534. msgstr "не удалось закрыть %s"
  535. #: scripts/dpkg-buildpackage.pl:707
  536. #, fuzzy
  537. #| msgid "source only upload: Debian-native package"
  538. msgid "source-only upload: Debian-native package"
  539. msgstr "закачка только пакетов исходного кода: родной пакет Debian"
  540. #: scripts/dpkg-buildpackage.pl:709
  541. #, fuzzy
  542. #| msgid "source only, diff-only upload (original source NOT included)"
  543. msgid "source-only, diff-only upload (original source NOT included)"
  544. msgstr ""
  545. "закачка только пакета исходного кода и diff (пакет оригинального исходного "
  546. "кода НЕ включён)"
  547. #: scripts/dpkg-buildpackage.pl:711
  548. #, fuzzy
  549. #| msgid "source only upload (original source is included)"
  550. msgid "source-only upload (original source is included)"
  551. msgstr ""
  552. "закачка только пакета исходного кода и diff (с пакетом оригинального "
  553. "исходного кода)"
  554. #: scripts/dpkg-buildpackage.pl:714
  555. #, fuzzy
  556. #| msgid "binary only upload (no source included)"
  557. msgid "binary-only upload (no source included)"
  558. msgstr "закачка только двоичных пакетов (без пакетов исходного кода)"
  559. #: scripts/dpkg-buildpackage.pl:717
  560. msgid "full upload; Debian-native package (full source is included)"
  561. msgstr ""
  562. "закачка всего; родной пакет Debian (включены все пакеты исходного кода)"
  563. #: scripts/dpkg-buildpackage.pl:719
  564. msgid "binary and diff upload (original source NOT included)"
  565. msgstr ""
  566. "закачка только двоичных пакетов и diff (без пакетов оригинального исходного "
  567. "кода)"
  568. #: scripts/dpkg-buildpackage.pl:721
  569. msgid "full upload (original source is included)"
  570. msgstr "закачка всего (с пакетом оригинального исходного кода)"
  571. #: scripts/dpkg-checkbuilddeps.pl:45
  572. #, perl-format
  573. msgid "Usage: %s [<option>...] [<control-file>]"
  574. msgstr "Использование: %s [<параметр>...] <управ.файл>"
  575. #: scripts/dpkg-checkbuilddeps.pl:47
  576. #, fuzzy
  577. #| msgid ""
  578. #| "Options:\n"
  579. #| " -A ignore Build-Depends-Arch and Build-Conflicts-Arch.\n"
  580. #| " -B ignore Build-Depends-Indep and Build-Conflicts-Indep.\n"
  581. #| " -d build-deps use given string as build dependencies instead of\n"
  582. #| " retrieving them from control file\n"
  583. #| " -c build-conf use given string for build conflicts instead of\n"
  584. #| " retrieving them from control file\n"
  585. #| " -a arch assume given host architecture\n"
  586. #| " --admindir=<directory>\n"
  587. #| " change the administrative directory.\n"
  588. #| " -?, --help show this help message.\n"
  589. #| " --version show the version."
  590. msgid ""
  591. "Options:\n"
  592. " -A ignore Build-Depends-Arch and Build-Conflicts-Arch.\n"
  593. " -B ignore Build-Depends-Indep and Build-Conflicts-Indep.\n"
  594. " -d build-deps use given string as build dependencies instead of\n"
  595. " retrieving them from control file\n"
  596. " -c build-conf use given string for build conflicts instead of\n"
  597. " retrieving them from control file\n"
  598. " -a arch assume given host architecture\n"
  599. " -P profiles assume given build profiles (comma-separated list)\n"
  600. " --admindir=<directory>\n"
  601. " change the administrative directory.\n"
  602. " -?, --help show this help message.\n"
  603. " --version show the version."
  604. msgstr ""
  605. "Параметры:\n"
  606. " -A игнорировать Build-Depends-Arch и Build-Conflicts-Arch\n"
  607. " -B только двоичный пакет, игнорировать -Indep\n"
  608. " -d build-deps использовать указанную строку как сборочные зависимости,\n"
  609. " а не извлекать их из управляющего файла\n"
  610. " -c build-conf использовать указанную строку как сборочные конфликты,\n"
  611. " а не извлекать их из управляющего файла\n"
  612. " -a арх предполагать указанную архитектуру узла\n"
  613. " --admindir=<каталог>\n"
  614. " изменить административный каталог\n"
  615. " -?, --help показать это сообщение\n"
  616. " --version показать версию"
  617. #: scripts/dpkg-checkbuilddeps.pl:61
  618. msgid ""
  619. "<control-file> is the control file to process (default: debian/control)."
  620. msgstr ""
  621. "<управ.файл> это файл управления ходом работы (по умолчанию: debian/control)."
  622. #: scripts/dpkg-checkbuilddeps.pl:116 scripts/dpkg-checkbuilddeps.pl:125
  623. #: scripts/dpkg-shlibdeps.pl:151 scripts/dpkg-source.pl:255
  624. #, perl-format
  625. msgid "error occurred while parsing %s"
  626. msgstr "ошибка при анализе %s"
  627. #: scripts/dpkg-checkbuilddeps.pl:132
  628. #, perl-format
  629. msgid "%s: Unmet build dependencies: "
  630. msgstr "%s: Неудовлетворённые сборочные зависимости: "
  631. #: scripts/dpkg-checkbuilddeps.pl:136
  632. #, perl-format
  633. msgid "%s: Build conflicts: "
  634. msgstr "%s: Сборочные конфликты: "
  635. #: scripts/dpkg-distaddfile.pl:47
  636. #, perl-format
  637. msgid ""
  638. "Usage: %s [<option>...] <filename> <section> <priority>\n"
  639. "\n"
  640. "Options:\n"
  641. " -f<files-list-file> write files here instead of debian/files.\n"
  642. " -?, --help show this help message.\n"
  643. " --version show the version.\n"
  644. msgstr ""
  645. "Использование: %s [<параметр>...] <имя_файла> <секция> <приоритет>\n"
  646. "\n"
  647. "Параметры:\n"
  648. " -f<файл-списка> записать файлы в ук. файл, а не в debian/files\n"
  649. " -?, --help показать это сообщение\n"
  650. " --version показать версию\n"
  651. #: scripts/dpkg-distaddfile.pl:72
  652. msgid "need exactly a filename, section and priority"
  653. msgstr "нужно указать имя файла, секцию и приоритет"
  654. #: scripts/dpkg-distaddfile.pl:77
  655. msgid "filename, section and priority may contain no whitespace"
  656. msgstr "имя файла, секция и приоритет не могут содержать пробельных символов"
  657. #: scripts/dpkg-distaddfile.pl:84 scripts/dpkg-gencontrol.pl:388
  658. #: scripts/dpkg-mergechangelogs.pl:138 scripts/dpkg-mergechangelogs.pl:140
  659. #: scripts/Dpkg/Compression/FileHandle.pm:403
  660. #: scripts/Dpkg/Interface/Storable.pm:117 scripts/Dpkg/IPC.pm:287
  661. #: scripts/Dpkg/IPC.pm:296 scripts/Dpkg/Source/Functions.pm:78
  662. #: scripts/Dpkg/Source/Package.pm:505 scripts/Dpkg/Source/Package.pm:616
  663. #: scripts/Dpkg/Source/Package/V2.pm:221 scripts/Dpkg/Source/Package/V2.pm:599
  664. #: scripts/Dpkg/Source/Package/V2.pm:736
  665. #: scripts/Dpkg/Source/Package/V3/Quilt.pm:132 scripts/Dpkg/Source/Quilt.pm:59
  666. #: scripts/Dpkg/Source/Quilt.pm:68 scripts/Dpkg/Source/Quilt.pm:74
  667. #: scripts/Dpkg/Source/Quilt.pm:304 scripts/Dpkg/Source/Quilt.pm:313
  668. #: scripts/Dpkg/Source/Quilt.pm:353
  669. #, perl-format
  670. msgid "cannot write %s"
  671. msgstr "не удалось записать %s"
  672. #: scripts/dpkg-distaddfile.pl:93 scripts/dpkg-gencontrol.pl:408
  673. msgid "install new files list file"
  674. msgstr "установка нового файла с списком файлов"
  675. #: scripts/dpkg-genchanges.pl:132
  676. #, fuzzy
  677. #| msgid ""
  678. #| "Options:\n"
  679. #| " -b binary-only build - no source files.\n"
  680. #| " -B arch-specific - no source or arch-indep "
  681. #| "files.\n"
  682. #| " -A only arch-indep - no source or arch-specific "
  683. #| "files.\n"
  684. #| " -S source-only upload.\n"
  685. #| " -c<control-file> get control info from this file.\n"
  686. #| " -l<changelog-file> get per-version info from this file.\n"
  687. #| " -f<files-list-file> get .deb files list from this file.\n"
  688. #| " -v<since-version> include all changes later than version.\n"
  689. #| " -C<changes-description> use change description from this file.\n"
  690. #| " -m<maintainer> override control's maintainer value.\n"
  691. #| " -e<maintainer> override changelog's maintainer value.\n"
  692. #| " -u<upload-files-dir> directory with files (default is '..').\n"
  693. #| " -si (default) src includes orig if new upstream.\n"
  694. #| " -sa source includes orig src.\n"
  695. #| " -sd source is diff and .dsc only.\n"
  696. #| " -q quiet - no informational messages on stderr.\n"
  697. #| " -F<changelog-format> force changelog format.\n"
  698. #| " -V<name>=<value> set a substitution variable.\n"
  699. #| " -T<substvars-file> read variables here, not debian/substvars.\n"
  700. #| " -D<field>=<value> override or add a field and value.\n"
  701. #| " -U<field> remove a field.\n"
  702. #| " -?, --help show this help message.\n"
  703. #| " --version show the version.\n"
  704. msgid ""
  705. "Options:\n"
  706. " -g source and arch-indep build.\n"
  707. " -G source and arch-specific build.\n"
  708. " -b binary-only, no source files.\n"
  709. " -B binary-only, only arch-specific files.\n"
  710. " -A binary-only, only arch-indep files.\n"
  711. " -S source-only, no binary files.\n"
  712. " -c<control-file> get control info from this file.\n"
  713. " -l<changelog-file> get per-version info from this file.\n"
  714. " -f<files-list-file> get .deb files list from this file.\n"
  715. " -v<since-version> include all changes later than version.\n"
  716. " -C<changes-description> use change description from this file.\n"
  717. " -m<maintainer> override control's maintainer value.\n"
  718. " -e<maintainer> override changelog's maintainer value.\n"
  719. " -u<upload-files-dir> directory with files (default is '..').\n"
  720. " -si (default) source includes orig, if new upstream.\n"
  721. " -sa source includes orig, always.\n"
  722. " -sd source is diff and .dsc only.\n"
  723. " -q quiet - no informational messages on stderr.\n"
  724. " -F<changelog-format> force changelog format.\n"
  725. " -V<name>=<value> set a substitution variable.\n"
  726. " -T<substvars-file> read variables here, not debian/substvars.\n"
  727. " -D<field>=<value> override or add a field and value.\n"
  728. " -U<field> remove a field.\n"
  729. " -?, --help show this help message.\n"
  730. " --version show the version.\n"
  731. msgstr ""
  732. "Параметры:\n"
  733. " -b сборка только двоичного пакета — без файлов\n"
  734. " с исходным кодом\n"
  735. " -B сборка только арх-ного пакета — без файлов с\n"
  736. " исходным кодом или независимых от арх-ры пакетов\n"
  737. " -A сборка только арх-но независимого пакета — без\n"
  738. " файлов с исходным кодом или зависимых\n"
  739. " от арх-ры пакетов\n"
  740. " -S закачка только пакетов с исходным кодом\n"
  741. " -c<упр.файл> брать управляющую инф-ю из указанного файла\n"
  742. " -l<файл-изменений> брать список изменений из указанного файла\n"
  743. " -f<файл-списка> брать список файлов .deb из указанного файла\n"
  744. " -v<с-версии> включить все изменения, начиная с указанной "
  745. "версии\n"
  746. " -C<описание-изменений> использовать описание изменений из указанного "
  747. "файла\n"
  748. " -m<сопровож.> заменить сопровождающего из файла управления\n"
  749. " -e<сопровож.> заменить сопровождающего из файла изменений\n"
  750. " -u<кат.с.закач.файлами> каталог с файлами (по умолчанию «..»)\n"
  751. " -si (по умолч.) src включают orig, если новый upstream\n"
  752. " -sa исходники включают оригинальный исходный код\n"
  753. " -sd исходники это только diff и .dsc\n"
  754. " -q не выводить информационные сообщения в поток "
  755. "ошибок\n"
  756. " -F<формат-изм.> изменить формат файла изменений\n"
  757. " -V<имя>=<знач.> установить переменную подстановки\n"
  758. " -T<файл-перем.> читать переменные из указанного файла,\n"
  759. " а не из debian/substvars\n"
  760. " -D<поле>=<знач.> заменить или добавить поле и значение\n"
  761. " -U<поле> удалить поле\n"
  762. " -?, --help показать это сообщение\n"
  763. " --version показать версию\n"
  764. #: scripts/dpkg-genchanges.pl:244
  765. #, perl-format
  766. msgid "the current version (%s) is earlier than the previous one (%s)"
  767. msgstr "текущая версия (%s) меньше чем предыдущая (%s)"
  768. #: scripts/dpkg-genchanges.pl:269
  769. msgid "missing Section for source files"
  770. msgstr "отсутствует Section для файлов с исходным кодом"
  771. #: scripts/dpkg-genchanges.pl:270
  772. msgid "missing Priority for source files"
  773. msgstr "отсутствует Priority для файлов с исходным кодом"
  774. #: scripts/dpkg-genchanges.pl:278 scripts/dpkg-source.pl:396
  775. #: scripts/Dpkg/Vendor.pm:92
  776. #, perl-format
  777. msgid "%s is empty"
  778. msgstr "%s пуст"
  779. #: scripts/dpkg-genchanges.pl:299
  780. msgid "not including original source code in upload"
  781. msgstr "в закачку не включён оригинальный исходный код"
  782. #: scripts/dpkg-genchanges.pl:306
  783. msgid "ignoring -sd option for native Debian package"
  784. msgstr "игнорируется параметр -sd для родного пакета Debian"
  785. #: scripts/dpkg-genchanges.pl:308
  786. msgid "including full source code in upload"
  787. msgstr "в закачку включён весь исходный код"
  788. #: scripts/dpkg-genchanges.pl:316
  789. #, fuzzy
  790. #| msgid "%s: arch-specific upload - not including arch-independent packages"
  791. msgid ""
  792. "binary-only arch-specific upload (source code and arch-indep packages not "
  793. "included)"
  794. msgstr ""
  795. "%s: архит. специфичная закачка — не включаются независимые от архитектуры "
  796. "пакеты"
  797. #: scripts/dpkg-genchanges.pl:319
  798. #, fuzzy
  799. #| msgid "%s: arch-indep upload - not including arch-specific packages"
  800. msgid ""
  801. "binary-only arch-indep upload (source code and arch-specific packages not "
  802. "included)"
  803. msgstr ""
  804. "%s: независимая от архитектуры закачка — не включаются зависимые от "
  805. "архитектуры пакеты"
  806. #: scripts/dpkg-genchanges.pl:322
  807. #, fuzzy
  808. #| msgid "binary only upload (no source included)"
  809. msgid "binary-only upload (no source code included)"
  810. msgstr "закачка только двоичных пакетов (без пакетов исходного кода)"
  811. #: scripts/dpkg-genchanges.pl:330
  812. msgid "binary build with no binary artifacts found; cannot distribute"
  813. msgstr ""
  814. #: scripts/dpkg-genchanges.pl:375
  815. #, perl-format
  816. msgid "package %s in control file but not in files list"
  817. msgstr "пакет %s в управляющем файле, но его нет в файле со списком файлов"
  818. #: scripts/dpkg-genchanges.pl:420
  819. msgid "read changesdescription"
  820. msgstr "чтение описания изменений"
  821. #: scripts/dpkg-genchanges.pl:426
  822. #, perl-format
  823. msgid "package %s listed in files list but not in control info"
  824. msgstr ""
  825. "пакет %s есть в файле со списком файлов, но его нет в управляющей информации"
  826. #: scripts/dpkg-genchanges.pl:438
  827. #, perl-format
  828. msgid "missing Section for binary package %s; using '-'"
  829. msgstr "отсутствует Section для двоичного пакета %s; используется «-»"
  830. #: scripts/dpkg-genchanges.pl:441
  831. #, perl-format
  832. msgid "package %s has section %s in control file but %s in files list"
  833. msgstr "пакет %s в секции %s в управляющем файле, но в %s в списке файлов"
  834. #: scripts/dpkg-genchanges.pl:447
  835. #, perl-format
  836. msgid "missing Priority for binary package %s; using '-'"
  837. msgstr "отсутствует Priority для двоичного пакета %s; используется «-»"
  838. #: scripts/dpkg-genchanges.pl:450
  839. #, perl-format
  840. msgid "package %s has priority %s in control file but %s in files list"
  841. msgstr "пакет %s имеет приоритет %s в управляющем файле, но %s в списке файлов"
  842. #: scripts/dpkg-genchanges.pl:457
  843. msgid "write original source message"
  844. msgstr "запись оригинального исходного сообщения"
  845. #: scripts/dpkg-genchanges.pl:514 scripts/Dpkg/Source/Package.pm:599
  846. #, perl-format
  847. msgid "missing information for critical output field %s"
  848. msgstr "отсутствует информация о критическом поле вывода %s"
  849. #: scripts/dpkg-genchanges.pl:519 scripts/dpkg-gencontrol.pl:307
  850. #: scripts/dpkg-gencontrol.pl:311 scripts/Dpkg/Source/Package.pm:604
  851. #, perl-format
  852. msgid "missing information for output field %s"
  853. msgstr "отсутствует информация о поле вывода %s"
  854. #: scripts/dpkg-gencontrol.pl:78
  855. #, fuzzy
  856. #| msgid ""
  857. #| "Options:\n"
  858. #| " -p<package> print control file for package.\n"
  859. #| " -c<control-file> get control info from this file.\n"
  860. #| " -l<changelog-file> get per-version info from this file.\n"
  861. #| " -F<changelog-format> force changelog format.\n"
  862. #| " -v<force-version> set version of binary package.\n"
  863. #| " -f<files-list-file> write files here instead of debian/files.\n"
  864. #| " -P<package-build-dir> temporary build dir instead of debian/tmp.\n"
  865. #| " -n<filename> assume the package filename will be "
  866. #| "<filename>.\n"
  867. #| " -O write to stdout, not .../DEBIAN/control.\n"
  868. #| " -is, -ip, -isp, -ips deprecated, ignored for compatibility.\n"
  869. #| " -D<field>=<value> override or add a field and value.\n"
  870. #| " -U<field> remove a field.\n"
  871. #| " -V<name>=<value> set a substitution variable.\n"
  872. #| " -T<substvars-file> read variables here, not debian/substvars.\n"
  873. #| " -?, --help show this help message.\n"
  874. #| " --version show the version.\n"
  875. msgid ""
  876. "Options:\n"
  877. " -p<package> print control file for package.\n"
  878. " -c<control-file> get control info from this file.\n"
  879. " -l<changelog-file> get per-version info from this file.\n"
  880. " -F<changelog-format> force changelog format.\n"
  881. " -v<force-version> set version of binary package.\n"
  882. " -f<files-list-file> write files here instead of debian/files.\n"
  883. " -P<package-build-dir> temporary build dir instead of debian/tmp.\n"
  884. " -n<filename> assume the package filename will be <filename>.\n"
  885. " -O[<file>] write to stdout (or <file>), not .../DEBIAN/"
  886. "control.\n"
  887. " -is, -ip, -isp, -ips deprecated, ignored for compatibility.\n"
  888. " -D<field>=<value> override or add a field and value.\n"
  889. " -U<field> remove a field.\n"
  890. " -V<name>=<value> set a substitution variable.\n"
  891. " -T<substvars-file> read variables here, not debian/substvars.\n"
  892. " -?, --help show this help message.\n"
  893. " --version show the version.\n"
  894. msgstr ""
  895. "Параметры:\n"
  896. " -p<пакет> показать управляющий файл пакета\n"
  897. " -c<упр.файл> брать управляющую информацию из указанного файла\n"
  898. " -l<файл-изм.> брать список изменений из указанного файла\n"
  899. " -F<формат-изм.> изменить формат файла изменений\n"
  900. " -v<версия> задать версию двоичного пакета\n"
  901. " -f<файл-списка> записывать файлы в указанный файл,\n"
  902. " а не в debian/files\n"
  903. " -P<кат.сборки-пакета> временный каталог сборки вместо debian/tmp\n"
  904. " -n<имя-файла> считать именем файла пакета <имя-файла>\n"
  905. " -O записывать в стандартный вывод,\n"
  906. " а не в .../DEBIAN/control\n"
  907. " -is, -ip, -isp, -ips устарели, игнорируется для совместимости\n"
  908. " -D<поле>=<знач.> заменить или добавить поле и значение\n"
  909. " -U<поле> удалить поле\n"
  910. " -V<имя>=<знач.> установить переменную подстановки\n"
  911. " -T<файл-перемен.> читать переменные из указанного файла\n"
  912. " а не из debian/substvars\n"
  913. " -?, --help показать это сообщение\n"
  914. " --version показать версию\n"
  915. #: scripts/dpkg-gencontrol.pl:103 scripts/dpkg-gensymbols.pl:99
  916. #, perl-format
  917. msgid "illegal package name '%s': %s"
  918. msgstr "недопустимое имя пакета «%s»: %s"
  919. #: scripts/dpkg-gencontrol.pl:119
  920. #, fuzzy, perl-format
  921. #| msgid "-E and -W are deprecated, they are without effect"
  922. msgid "-i%s is deprecated; it is without effect"
  923. msgstr "-E и -W устарели, они ничего не изменят"
  924. #: scripts/dpkg-gencontrol.pl:178
  925. #, perl-format
  926. msgid "package %s not in control info"
  927. msgstr "пакета %s нет в управляющей информации"
  928. #: scripts/dpkg-gencontrol.pl:183 scripts/dpkg-gensymbols.pl:158
  929. msgid "no package stanza found in control info"
  930. msgstr "строки о пакете нет в управляющей информации"
  931. #: scripts/dpkg-gencontrol.pl:185 scripts/dpkg-gensymbols.pl:160
  932. #, perl-format
  933. msgid "must specify package since control info has many (%s)"
  934. msgstr ""
  935. "должен быть указан пакет, так как в управляющей информации их несколько (%s)"
  936. #: scripts/dpkg-gencontrol.pl:190
  937. #, perl-format
  938. msgid "package %s: "
  939. msgstr "пакет %s: "
  940. #: scripts/dpkg-gencontrol.pl:215
  941. #, perl-format
  942. msgid "`%s' is not a legal architecture string."
  943. msgid_plural "`%s' are not legal architecture strings."
  944. msgstr[0] "Неправильная строка архитектуры «%s»."
  945. msgstr[1] "Неправильные строки архитектуры «%s»."
  946. msgstr[2] "Неправильные строки архитектуры «%s»."
  947. #: scripts/dpkg-gencontrol.pl:221
  948. #, perl-format
  949. msgid ""
  950. "current host architecture '%s' does not appear in package's architecture "
  951. "list (%s)"
  952. msgstr "текущей архитектуры узла «%s» нет в списке архитектур пакета (%s)"
  953. #: scripts/dpkg-gencontrol.pl:277
  954. #, perl-format
  955. msgid "%s field of package %s: "
  956. msgstr "%s поле из пакета %s: "
  957. #: scripts/dpkg-gencontrol.pl:282 scripts/dpkg-gencontrol.pl:291
  958. #, perl-format
  959. msgid "error occurred while parsing %s field: %s"
  960. msgstr "ошибка при анализе поля %s: %s"
  961. #: scripts/dpkg-gencontrol.pl:296
  962. #, perl-format
  963. msgid ""
  964. "the %s field contains an arch-specific dependency but the package is "
  965. "architecture all"
  966. msgstr ""
  967. "поле %s содержит зависимость, которая есть только в определённой "
  968. "архитектуре, но пакет относится ко всем архитектурам"
  969. #: scripts/dpkg-gencontrol.pl:324
  970. #, perl-format
  971. msgid "%s package with udeb specific field %s"
  972. msgstr "пакет %s со специальным udeb-полем %s"
  973. #: scripts/dpkg-gencontrol.pl:339 scripts/dpkg-scansources.pl:316
  974. #: scripts/dpkg-shlibdeps.pl:844 scripts/Dpkg/Changelog/Parse.pm:142
  975. #: scripts/Dpkg/IPC.pm:251 scripts/Dpkg/Shlibs/Objdump.pm:184
  976. #, perl-format
  977. msgid "cannot fork for %s"
  978. msgstr "не удалось выполнить fork для %s"
  979. #: scripts/dpkg-gencontrol.pl:343
  980. #, perl-format
  981. msgid "chdir for du to `%s'"
  982. msgstr "вызов chdir для du в «%s»"
  983. #: scripts/dpkg-gencontrol.pl:345 scripts/dpkg-shlibdeps.pl:852
  984. #: scripts/Dpkg/IPC.pm:305 scripts/Dpkg/Shlibs/Cppfilt.pm:50
  985. #, perl-format
  986. msgid "unable to execute %s"
  987. msgstr "невозможно выполнить %s"
  988. #: scripts/dpkg-gencontrol.pl:352
  989. #, perl-format
  990. msgid "du in `%s'"
  991. msgstr "вызов du в «%s»"
  992. #: scripts/dpkg-gencontrol.pl:354
  993. #, perl-format
  994. msgid "du gave unexpected output `%s'"
  995. msgstr "du выдала неожиданные данные «%s»"
  996. #: scripts/dpkg-gencontrol.pl:418
  997. #, perl-format
  998. msgid "cannot open new output control file `%s'"
  999. msgstr "не удалось открыть новый выходной управляющий файл %s"
  1000. #: scripts/dpkg-gencontrol.pl:429
  1001. #, perl-format
  1002. msgid "cannot install output control file `%s'"
  1003. msgstr "не удалось установить новый выходной управляющий файл «%s»"
  1004. #: scripts/dpkg-gensymbols.pl:65
  1005. #, fuzzy
  1006. #| msgid ""
  1007. #| "Options:\n"
  1008. #| " -p<package> generate symbols file for package.\n"
  1009. #| " -P<package-build-dir> temporary build dir instead of debian/tmp.\n"
  1010. #| " -e<library> explicitly list libraries to scan.\n"
  1011. #| " -v<version> version of the packages (defaults to\n"
  1012. #| " version extracted from debian/changelog).\n"
  1013. #| " -c<level> compare generated symbols file with the "
  1014. #| "reference\n"
  1015. #| " template in the debian directory and fail if\n"
  1016. #| " difference is too important; level goes from 0 "
  1017. #| "for\n"
  1018. #| " no check, to 4 for all checks (default level "
  1019. #| "is 1).\n"
  1020. #| " -q keep quiet and never emit any warnings or\n"
  1021. #| " generate a diff between generated symbols\n"
  1022. #| " file and the reference template.\n"
  1023. #| " -I<file> force usage of <file> as reference symbols\n"
  1024. #| " file instead of the default file.\n"
  1025. #| " -O<file> write to <file>, not .../DEBIAN/symbols.\n"
  1026. #| " -O write to stdout, not .../DEBIAN/symbols.\n"
  1027. #| " -t write in template mode (tags are not\n"
  1028. #| " processed and included in output).\n"
  1029. #| " -V verbose output; write deprecated symbols and "
  1030. #| "pattern\n"
  1031. #| " matching symbols as comments (in template mode "
  1032. #| "only).\n"
  1033. #| " -a<arch> assume <arch> as host architecture when "
  1034. #| "processing\n"
  1035. #| " symbol files.\n"
  1036. #| " -d display debug information during work.\n"
  1037. #| " -?, --help show this help message.\n"
  1038. #| " --version show the version.\n"
  1039. msgid ""
  1040. "Options:\n"
  1041. " -p<package> generate symbols file for package.\n"
  1042. " -P<package-build-dir> temporary build dir instead of debian/tmp.\n"
  1043. " -e<library> explicitly list libraries to scan.\n"
  1044. " -v<version> version of the packages (defaults to\n"
  1045. " version extracted from debian/changelog).\n"
  1046. " -c<level> compare generated symbols file with the "
  1047. "reference\n"
  1048. " template in the debian directory and fail if\n"
  1049. " difference is too important; level goes from 0 "
  1050. "for\n"
  1051. " no check, to 4 for all checks (default level is "
  1052. "1).\n"
  1053. " -q keep quiet and never emit any warnings or\n"
  1054. " generate a diff between generated symbols\n"
  1055. " file and the reference template.\n"
  1056. " -I<file> force usage of <file> as reference symbols\n"
  1057. " file instead of the default file.\n"
  1058. " -O[<file>] write to stdout (or <file>), not .../DEBIAN/"
  1059. "symbols.\n"
  1060. " -t write in template mode (tags are not\n"
  1061. " processed and included in output).\n"
  1062. " -V verbose output; write deprecated symbols and "
  1063. "pattern\n"
  1064. " matching symbols as comments (in template mode "
  1065. "only).\n"
  1066. " -a<arch> assume <arch> as host architecture when "
  1067. "processing\n"
  1068. " symbol files.\n"
  1069. " -d display debug information during work.\n"
  1070. " -?, --help show this help message.\n"
  1071. " --version show the version.\n"
  1072. msgstr ""
  1073. "Параметры:\n"
  1074. " -p<пакет> генерировать файл symbols для заданного пакета\n"
  1075. " -P<кат.сборки-пакета> временный каталог сборки вместо debian/tmp\n"
  1076. " -e<библиотека> явно задать сканируемые библиотеки\n"
  1077. " -v<версия> версия пакетов (по умолчанию\n"
  1078. " версия извлекается из debian/changelog)\n"
  1079. " -c<уровень> сравнить сгенерированный файл symbols с\n"
  1080. " эталонным файлом в каталоге debian и\n"
  1081. " завершить работу с ошибкой, если разница очень\n"
  1082. " велика (уровнем задаётся степень проверки:\n"
  1083. " от 0 — не выполнять проверку, до 4 — все "
  1084. "проверки);\n"
  1085. " по умолчанию уровень равен 1\n"
  1086. " -q не показывать сообщения, предупреждения или\n"
  1087. " отличия между генерируемыми файлами символов\n"
  1088. " и эталонным шаблоном\n"
  1089. " -I<файл> использовать <файл> в качестве эталонного файла\n"
  1090. " символов вместо файла по умолчанию\n"
  1091. " -O<файл> записывать в <файл>, а не в .../DEBIAN/symbols\n"
  1092. " -O записывать в стандартный вывод,\n"
  1093. " а не в .../DEBIAN/symbols\n"
  1094. " -t записывать в режиме шаблона (метки не\n"
  1095. " обрабатываются и не включаются в вывод)\n"
  1096. " -V подробный вывод; записывать нежелательные "
  1097. "символы\n"
  1098. " и символы совпадающие с шаблоном как комментарии\n"
  1099. " (только в режиме шаблона)\n"
  1100. " -a<арх.> предполагать <арх.> в качестве архитектуры узла\n"
  1101. " при обработке файлов symbol\n"
  1102. " -d выводить отладочную информацию во время работы\n"
  1103. " -?, --help показать это сообщение\n"
  1104. " --version показать версию\n"
  1105. #: scripts/dpkg-gensymbols.pl:115
  1106. #, perl-format
  1107. msgid "pattern '%s' did not match any file"
  1108. msgstr "под шаблон «%s» не подходит ни один файл"
  1109. #: scripts/dpkg-gensymbols.pl:196
  1110. #, fuzzy, perl-format
  1111. #| msgid "Can't read directory %s: %s"
  1112. msgid "can't read directory %s: %s"
  1113. msgstr "Не удалось прочитать каталог %s: %s"
  1114. #: scripts/dpkg-gensymbols.pl:211
  1115. #, fuzzy, perl-format
  1116. #| msgid "Objdump couldn't parse %s\n"
  1117. msgid "Dpkg::Shlibs::Objdump couldn't parse %s\n"
  1118. msgstr "Не удалось проанализировать вывод Objdump %s\n"
  1119. #: scripts/dpkg-gensymbols.pl:229
  1120. msgid "<standard output>"
  1121. msgstr "<стандартный вывод>"
  1122. #: scripts/dpkg-gensymbols.pl:257
  1123. #, perl-format
  1124. msgid "new libraries appeared in the symbols file: %s"
  1125. msgstr "появились новые библиотеки в файле symbols: %s"
  1126. #: scripts/dpkg-gensymbols.pl:262
  1127. #, perl-format
  1128. msgid "some libraries disappeared in the symbols file: %s"
  1129. msgstr "некоторые библиотеки исчезли из файла symbols: %s"
  1130. #: scripts/dpkg-gensymbols.pl:267
  1131. #, perl-format
  1132. msgid "some new symbols appeared in the symbols file: %s"
  1133. msgstr "появилось несколько новых символов в файле symbols: %s"
  1134. #: scripts/dpkg-gensymbols.pl:268 scripts/dpkg-gensymbols.pl:273
  1135. msgid "see diff output below"
  1136. msgstr "смотрите вывод diff ниже"
  1137. #: scripts/dpkg-gensymbols.pl:272
  1138. #, perl-format
  1139. msgid "some symbols or patterns disappeared in the symbols file: %s"
  1140. msgstr "некоторые символы или шаблоны исчезли из файла symbols: %s"
  1141. #: scripts/dpkg-gensymbols.pl:293
  1142. msgid "the generated symbols file is empty"
  1143. msgstr "сгенерированный файл symbols пуст"
  1144. #: scripts/dpkg-gensymbols.pl:295
  1145. #, perl-format
  1146. msgid "%s doesn't match completely %s"
  1147. msgstr "%s совпадает с %s не полностью"
  1148. #: scripts/dpkg-gensymbols.pl:298
  1149. #, perl-format
  1150. msgid "no debian/symbols file used as basis for generating %s"
  1151. msgstr "файл debian/symbols не используется в качестве основы для генерации %s"
  1152. #: scripts/dpkg-mergechangelogs.pl:57
  1153. msgid ""
  1154. "This is free software; see the GNU General Public License version 2 or\n"
  1155. "later for copying conditions. There is NO warranty.\n"
  1156. msgstr ""
  1157. "Это свободное программное обеспечение. См. условия распространения в\n"
  1158. "Универсальной общественной лицензии GNU версии 2 или более поздней.\n"
  1159. "НИКАКИЕ гарантии не предоставляются.\n"
  1160. #: scripts/dpkg-mergechangelogs.pl:64
  1161. #, perl-format
  1162. msgid ""
  1163. "Usage: %s [<option>...] <old> <new-a> <new-b> [<out>]\n"
  1164. "\n"
  1165. "Options:\n"
  1166. " -m, --merge-prereleases merge pre-releases together, ignores everything\n"
  1167. " after the last '~' in the version.\n"
  1168. " -?, --help show this help message.\n"
  1169. " --version show the version.\n"
  1170. msgstr ""
  1171. "Использование: %s [<параметр>...] <старый> <новый-а> <новый-б> [<вывод>]\n"
  1172. "\n"
  1173. "Параметры:\n"
  1174. " -m, --merge-prereleases объединить пред-выпуски вместе, игнорировать всё\n"
  1175. " после последнего «~» в версии\n"
  1176. " -?, --help показать это сообщение\n"
  1177. " --version показать версию\n"
  1178. #: scripts/dpkg-mergechangelogs.pl:90
  1179. #, fuzzy
  1180. #| msgid "-x needs at least one argument, the .dsc"
  1181. msgid "needs at least three arguments"
  1182. msgstr "-x требует указания хотя бы одного значения .dsc"
  1183. #: scripts/dpkg-mergechangelogs.pl:94
  1184. msgid "file arguments need to exist"
  1185. msgstr ""
  1186. #: scripts/dpkg-name.pl:51
  1187. #, perl-format
  1188. msgid "Usage: %s [<option>...] <file>...\n"
  1189. msgstr "Использование: %s [<параметр>...] <файл>...\n"
  1190. #: scripts/dpkg-name.pl:53
  1191. msgid ""
  1192. "\n"
  1193. "Options:\n"
  1194. " -a, --no-architecture no architecture part in filename.\n"
  1195. " -o, --overwrite overwrite if file exists.\n"
  1196. " -k, --symlink don't create a new file, but a symlink.\n"
  1197. " -s, --subdir [dir] move file into subdir (use with care).\n"
  1198. " -c, --create-dir create target dir if not there (use with care).\n"
  1199. " -?, --help show this help message.\n"
  1200. " -v, --version show the version.\n"
  1201. "\n"
  1202. "file.deb changes to <package>_<version>_<architecture>.<package_type>\n"
  1203. "according to the 'underscores convention'.\n"
  1204. msgstr ""
  1205. "\n"
  1206. "Параметры:\n"
  1207. " -a, --no-architecture имя файла без архитектурной части\n"
  1208. " -o, --overwrite перезаписывать существующий файл\n"
  1209. " -k, --symlink не создавать новый файл, а создавать\n"
  1210. " символьную ссылку\n"
  1211. " -s, --subdir [кат] переместить файл в подкаталог (исп. осторожно)\n"
  1212. " -c, --create-dir создать каталог цели, если его нет (исп. "
  1213. "осторожно)\n"
  1214. " -?, --help показать это сообщение\n"
  1215. " -v, --version показать версию\n"
  1216. "\n"
  1217. "Название файл.deb изменяется на <пакет>_<версия>_<архитектура>.<типа­"
  1218. "_пакета>\n"
  1219. "согласно «соглашению о подчёркиваниях».\n"
  1220. #: scripts/dpkg-name.pl:75
  1221. #, perl-format
  1222. msgid "cannot find '%s'"
  1223. msgstr "не удалось найти «%s»"
  1224. #: scripts/dpkg-name.pl:98
  1225. #, perl-format
  1226. msgid "binary control file %s"
  1227. msgstr "двоичный файл управления %s"
  1228. #: scripts/dpkg-name.pl:111
  1229. #, perl-format
  1230. msgid "assuming architecture '%s' for '%s'"
  1231. msgstr "предполагается архитектура «%s» для «%s»"
  1232. #: scripts/dpkg-name.pl:133
  1233. #, perl-format
  1234. msgid "bad package control information for '%s'"
  1235. msgstr "неправильная управляющая информация пакета «%s»"
  1236. #: scripts/dpkg-name.pl:149
  1237. #, perl-format
  1238. msgid "assuming section '%s' for '%s'"
  1239. msgstr "предполагается раздел «%s» для «%s»"
  1240. #: scripts/dpkg-name.pl:174
  1241. #, perl-format
  1242. msgid "no Package field found in '%s', skipping it"
  1243. msgstr "нет поля Package в «%s», пропускается"
  1244. #: scripts/dpkg-name.pl:187
  1245. #, perl-format
  1246. msgid "created directory '%s'"
  1247. msgstr "создан каталог «%s»"
  1248. #: scripts/dpkg-name.pl:189
  1249. #, perl-format
  1250. msgid "cannot create directory '%s'"
  1251. msgstr "не удалось создать каталог «%s»"
  1252. #: scripts/dpkg-name.pl:192
  1253. #, perl-format
  1254. msgid "no such directory '%s', try --create-dir (-c) option"
  1255. msgstr "каталог «%s» не существует, попробуйте параметр --create-dir (-c)"
  1256. #: scripts/dpkg-name.pl:207
  1257. #, perl-format
  1258. msgid "skipping '%s'"
  1259. msgstr "пропускается «%s»"
  1260. #: scripts/dpkg-name.pl:209
  1261. #, perl-format
  1262. msgid "cannot move '%s' to existing file"
  1263. msgstr "не удалось переместить «%s» в существующий файл"
  1264. #: scripts/dpkg-name.pl:211
  1265. #, perl-format
  1266. msgid "moved '%s' to '%s'"
  1267. msgstr "«%s» перемещён в «%s»"
  1268. #: scripts/dpkg-name.pl:213
  1269. msgid "mkdir can be used to create directory"
  1270. msgstr "для создания каталога можно использовать mkdir"
  1271. #: scripts/dpkg-name.pl:251
  1272. msgid "need at least a filename"
  1273. msgstr "требуется хотя бы одно имя файла"
  1274. #: scripts/dpkg-parsechangelog.pl:48
  1275. #, fuzzy
  1276. #| msgid ""
  1277. #| "Options:\n"
  1278. #| " -l<changelog-file> get per-version info from this file.\n"
  1279. #| " -F<changelog-format> force changelog format.\n"
  1280. #| " -L<libdir> look for changelog parsers in <libdir>.\n"
  1281. #| " -?, --help show this help message.\n"
  1282. #| " --version show the version."
  1283. msgid ""
  1284. "Options:\n"
  1285. " -l<changelog-file> get per-version info from this file.\n"
  1286. " -F<changelog-format> force changelog format.\n"
  1287. " -L<libdir> look for changelog parsers in <libdir>.\n"
  1288. " -S, --show-field <field> show the values for <field>.\n"
  1289. " -?, --help show this help message.\n"
  1290. " --version show the version."
  1291. msgstr ""
  1292. "Параметры:\n"
  1293. " -l<файл-изменений> брать список изменений из указанного файла\n"
  1294. " -F<формат-изм.> изменить формат файла изменений\n"
  1295. " -L<кат-lib> искать анализаторы файла изменений в <кат-lib>\n"
  1296. " -?, --help показать это сообщение\n"
  1297. " --version показать версию"
  1298. #: scripts/dpkg-parsechangelog.pl:56
  1299. msgid ""
  1300. "Parser options:\n"
  1301. " --format <output-format> see man page for list of available\n"
  1302. " output formats, defaults to 'dpkg'\n"
  1303. " for compatibility with dpkg-dev\n"
  1304. " --since <version>, include all changes later than version\n"
  1305. " -s<version>, -v<version>\n"
  1306. " --until <version>, include all changes earlier than version\n"
  1307. " -u<version>\n"
  1308. " --from <version>, include all changes equal or later\n"
  1309. " -f<version> than version\n"
  1310. " --to <version>, -t<version> include all changes up to or equal\n"
  1311. " than version\n"
  1312. " --count <number>, include <number> entries from the top\n"
  1313. " -c<number>, -n<number> (or the tail if <number> is lower than 0)\n"
  1314. " --offset <number>, change the starting point for --count,\n"
  1315. " -o<number> counted from the top (or the tail if\n"
  1316. " <number> is lower than 0)\n"
  1317. " --all include all changes\n"
  1318. msgstr ""
  1319. "Параметры анализатора:\n"
  1320. " --format <формат-вывода> в справочной странице есть список возможных\n"
  1321. " выходных форматов, по умолчанию исп. «dpkg»\n"
  1322. " для совместимости с dpkg-dev\n"
  1323. " --since <версия> включить все изменения после этой версии\n"
  1324. " s<версия>, -v <версия>\n"
  1325. " --until <версия> включить все изменения до этой версии\n"
  1326. " -u<версия>\n"
  1327. " --from <версия> включить изменения этой и всех поздних версий\n"
  1328. " -f<версия>\n"
  1329. " --to<версия> включить все изменения до этой версии "
  1330. "включительно\n"
  1331. " -t<версия>\n"
  1332. " --count <число> включить <число> записей от начала\n"
  1333. " -c<число>, -n <число> (или конца, если <число> отрицательное)\n"
  1334. " --offset <число> изменить начальную точку для --count,\n"
  1335. " -o<число> отсчитывать от начала (или конца, если\n"
  1336. " <число> отрицательное)\n"
  1337. " --all включить все изменения\n"
  1338. #: scripts/dpkg-parsechangelog.pl:124
  1339. msgid "takes no non-option arguments"
  1340. msgstr "не принимает необязательные параметры"
  1341. #: scripts/dpkg-scanpackages.pl:75
  1342. #, fuzzy, perl-format
  1343. #| msgid ""
  1344. #| "Usage: %s [<option>...] <binary-path> [<override-file> [<path-prefix>]] > "
  1345. #| "Packages\n"
  1346. #| "\n"
  1347. #| "Options:\n"
  1348. #| " -t, --type <type> scan for <type> packages (default is 'deb').\n"
  1349. #| " -a, --arch <arch> architecture to scan for.\n"
  1350. #| " -m, --multiversion allow multiple versions of a single package.\n"
  1351. #| " -e, --extra-override <file>\n"
  1352. #| " use extra override file.\n"
  1353. #| " -M, --medium <medium> add X-Medium field for dselect multicd access "
  1354. #| "method\n"
  1355. #| " -?, --help show this help message.\n"
  1356. #| " --version show the version.\n"
  1357. msgid ""
  1358. "Usage: %s [<option>...] <binary-path> [<override-file> [<path-prefix>]] > "
  1359. "Packages\n"
  1360. "\n"
  1361. "Options:\n"
  1362. " -t, --type <type> scan for <type> packages (default is 'deb').\n"
  1363. " -a, --arch <arch> architecture to scan for.\n"
  1364. " -h, --hash <hash-list> only generate hashes for the specified list.\n"
  1365. " -m, --multiversion allow multiple versions of a single package.\n"
  1366. " -e, --extra-override <file>\n"
  1367. " use extra override file.\n"
  1368. " -M, --medium <medium> add X-Medium field for dselect multicd access "
  1369. "method\n"
  1370. " -?, --help show this help message.\n"
  1371. " --version show the version.\n"
  1372. msgstr ""
  1373. "Использование: %s [<параметр> ...] <каталог_двоичн_пакетов>\n"
  1374. " [<файл_переназначений> [<префикс_пути>]] > Packages\n"
  1375. "\n"
  1376. "Параметры:\n"
  1377. " -t, --type <тип> искать пакеты указанного <типа>(по умолчанию "
  1378. "«deb»)\n"
  1379. " -a, --arch <арх.> сканируемая архитектура\n"
  1380. " -m, --multiversion разрешить несколько версий одного пакета\n"
  1381. " -e, --extra-override <файл>\n"
  1382. " использовать файл дополнительный файл "
  1383. "переназначений\n"
  1384. " -M, --medium <medium> добавить поле X-Medium для метода\n"
  1385. " доступа dselect multicd\n"
  1386. " -?, --help показать это сообщение\n"
  1387. " --version показать версию\n"
  1388. #: scripts/dpkg-scanpackages.pl:115
  1389. #, perl-format
  1390. msgid " %s (package says %s, not %s)"
  1391. msgstr " %s (в пакете указано %s, а не %s)"
  1392. #: scripts/dpkg-scanpackages.pl:123
  1393. #, fuzzy, perl-format
  1394. #| msgid "Unconditional maintainer override for %s"
  1395. msgid "unconditional maintainer override for %s"
  1396. msgstr "Безусловное переназначение сопровождающего для %s"
  1397. #: scripts/dpkg-scanpackages.pl:164 scripts/dpkg-scansources.pl:304
  1398. msgid "one to three arguments expected"
  1399. msgstr "ожидается от 1 до 3 аргументов"
  1400. #: scripts/dpkg-scanpackages.pl:173
  1401. #, perl-format
  1402. msgid "unsupported checksum '%s'"
  1403. msgstr ""
  1404. #: scripts/dpkg-scanpackages.pl:189
  1405. #, fuzzy, perl-format
  1406. #| msgid "Binary dir %s not found"
  1407. msgid "binary dir %s not found"
  1408. msgstr "Каталог двоичных пакетов %s не найден"
  1409. #: scripts/dpkg-scanpackages.pl:192
  1410. #, fuzzy, perl-format
  1411. #| msgid "Override file %s not found"
  1412. msgid "override file %s not found"
  1413. msgstr "Файл переназначений %s не найден"
  1414. #: scripts/dpkg-scanpackages.pl:199
  1415. #, fuzzy, perl-format
  1416. #| msgid "Couldn't open %s for reading"
  1417. msgid "couldn't open %s for reading"
  1418. msgstr "Не удалось открыть %s на чтение"
  1419. #: scripts/dpkg-scanpackages.pl:208
  1420. #, perl-format
  1421. msgid "couldn't parse control information from %s"
  1422. msgstr "не удалось проанализировать управляющую информацию из %s"
  1423. #: scripts/dpkg-scanpackages.pl:211
  1424. #, perl-format
  1425. msgid "`dpkg-deb -I %s control' exited with %d, skipping package"
  1426. msgstr "«dpkg-deb -I %s control» завершилась с кодом %d, пакет пропускается"
  1427. #: scripts/dpkg-scanpackages.pl:217
  1428. #, fuzzy, perl-format
  1429. #| msgid "No Package field in control file of %s"
  1430. msgid "no Package field in control file of %s"
  1431. msgstr "Нет поля Package в управляющем файле %s"
  1432. #: scripts/dpkg-scanpackages.pl:225
  1433. #, fuzzy, perl-format
  1434. #| msgid "Package %s (filename %s) is repeat but newer version;"
  1435. msgid "package %s (filename %s) is repeat but newer version;"
  1436. msgstr "Повторение пакета %s (файл %s), но с более новой версией;"
  1437. #: scripts/dpkg-scanpackages.pl:227
  1438. #, perl-format
  1439. msgid "used that one and ignored data from %s!"
  1440. msgstr "используется данный файл и игнорируются данные из %s!"
  1441. #: scripts/dpkg-scanpackages.pl:231
  1442. #, fuzzy, perl-format
  1443. #| msgid "Package %s (filename %s) is repeat;"
  1444. msgid "package %s (filename %s) is repeat;"
  1445. msgstr "Повторение пакета %s (файл %s);"
  1446. #: scripts/dpkg-scanpackages.pl:232
  1447. #, perl-format
  1448. msgid "ignored that one and using data from %s!"
  1449. msgstr "данный файл игнорируется и используются данные из %s!"
  1450. #: scripts/dpkg-scanpackages.pl:238
  1451. #, fuzzy, perl-format
  1452. #| msgid "Package %s (filename %s) has Filename field!"
  1453. msgid "package %s (filename %s) has Filename field!"
  1454. msgstr "Пакет %s (файл %s) содержит поле Filename!"
  1455. #: scripts/dpkg-scanpackages.pl:272
  1456. #, fuzzy
  1457. #| msgid "Failed when writing stdout"
  1458. msgid "failed when writing stdout"
  1459. msgstr "Сбой при записи в стандартный вывод"
  1460. #: scripts/dpkg-scanpackages.pl:276
  1461. #, fuzzy
  1462. #| msgid "Couldn't close stdout"
  1463. msgid "couldn't close stdout"
  1464. msgstr "Не удалось закрыть стандартный вывод"
  1465. #: scripts/dpkg-scanpackages.pl:279
  1466. msgid "Packages in override file with incorrect old maintainer value:"
  1467. msgstr ""
  1468. "Пакеты в файле переназначений с неправильным старым значением "
  1469. "сопровождающего:"
  1470. #: scripts/dpkg-scanpackages.pl:283
  1471. msgid "Packages specifying same maintainer as override file:"
  1472. msgstr "Пакеты с тем же сопровождающим что и в файле переназначений:"
  1473. #: scripts/dpkg-scanpackages.pl:287
  1474. msgid "Packages in archive but missing from override file:"
  1475. msgstr "Пакеты есть в архиве, но отсутствуют в файле переназначений:"
  1476. #: scripts/dpkg-scanpackages.pl:291
  1477. msgid "Packages in override file but not in archive:"
  1478. msgstr "Пакеты есть в файле переназначений, но нет в архиве:"
  1479. #: scripts/dpkg-scanpackages.pl:295
  1480. #, perl-format
  1481. msgid "Wrote %s entries to output Packages file."
  1482. msgstr "Записано %s записей в выходной файл Packages."
  1483. #: scripts/dpkg-scansources.pl:85
  1484. #, perl-format
  1485. msgid ""
  1486. "Usage: %s [<option>...] <binary-path> [<override-file> [<path-prefix>]] > "
  1487. "Sources\n"
  1488. "\n"
  1489. "Options:\n"
  1490. " -n, --no-sort don't sort by package before outputting.\n"
  1491. " -e, --extra-override <file>\n"
  1492. " use extra override file.\n"
  1493. " -s, --source-override <file>\n"
  1494. " use file for additional source overrides, "
  1495. "default\n"
  1496. " is regular override file with .src appended.\n"
  1497. " --debug turn debugging on.\n"
  1498. " -?, --help show this help message.\n"
  1499. " --version show the version.\n"
  1500. "\n"
  1501. "See the man page for the full documentation.\n"
  1502. msgstr ""
  1503. "Использование: %s [<параметр> ...] <кат.двоичн.пакетов>\n"
  1504. " [<файл_переназначений> [<префикс_пути>]] > Sources\n"
  1505. "\n"
  1506. "Параметры:\n"
  1507. " -n, --no-sort не сортировать по имени пакета перед выводом\n"
  1508. " -e, --extra-override <файл>\n"
  1509. " использовать дополнительный файл переназначений\n"
  1510. " -s, --source-override <файл>\n"
  1511. " использовать файл для дополнительных\n"
  1512. " переназначений исходников, по умолчанию\n"
  1513. " это обычный файл переназначений с добавленным src\n"
  1514. " --debug включить отладку\n"
  1515. " -?, --help показать это сообщение\n"
  1516. " --version показать версию\n"
  1517. "\n"
  1518. "В справочной странице доступна полная документация.\n"
  1519. #: scripts/dpkg-scansources.pl:104
  1520. #, perl-format
  1521. msgid "error closing %s ($? %d, $! `%s')"
  1522. msgstr "ошибка при закрытии %s ($? %d, $! «%s»)"
  1523. #: scripts/dpkg-scansources.pl:120
  1524. #, perl-format
  1525. msgid "invalid override entry at line %d (%d fields)"
  1526. msgstr "неправильная запись переназначения в строке %d (%d полей)"
  1527. #: scripts/dpkg-scansources.pl:126
  1528. #, perl-format
  1529. msgid "ignoring duplicate override entry for %s at line %d"
  1530. msgstr "игнорируется дублирующая запись переназначения для %s в строке %d"
  1531. #: scripts/dpkg-scansources.pl:131
  1532. #, perl-format
  1533. msgid "ignoring override entry for %s, invalid priority %s"
  1534. msgstr "игнорируется запись переназначения для %s; неправильный приоритет %s"
  1535. #: scripts/dpkg-scansources.pl:185
  1536. #, perl-format
  1537. msgid "invalid source override entry at line %d (%d fields)"
  1538. msgstr "неправильная запись переназначения исходника в строке %d (%d полей)"
  1539. #: scripts/dpkg-scansources.pl:193
  1540. #, perl-format
  1541. msgid "ignoring duplicate source override entry for %s at line %d"
  1542. msgstr ""
  1543. "игнорирование дублирующей записи переназначения исходника для %s в строке %d"
  1544. #: scripts/dpkg-scansources.pl:243
  1545. #, perl-format
  1546. msgid "no binary packages specified in %s"
  1547. msgstr "не задано двоичное поле в %s"
  1548. #: scripts/dpkg-shlibdeps.pl:105
  1549. #, perl-format
  1550. msgid "administrative directory '%s' does not exist"
  1551. msgstr "административный каталог «%s» не существует"
  1552. #: scripts/dpkg-shlibdeps.pl:111
  1553. #, perl-format
  1554. msgid "unrecognized dependency field '%s'"
  1555. msgstr "нераспознанное поле зависимости «%s»"
  1556. #: scripts/dpkg-shlibdeps.pl:145
  1557. msgid "need at least one executable"
  1558. msgstr "требуется хотя бы один исполняемый файл"
  1559. #: scripts/dpkg-shlibdeps.pl:188
  1560. #, perl-format
  1561. msgid "couldn't find library %s needed by %s (ELF format: '%s'; RPATH: '%s')"
  1562. msgstr ""
  1563. "не удалось найти библиотеку %s, необходимую для %s (формат ELF: «%s»; RPATH: "
  1564. "«%s»)"
  1565. #: scripts/dpkg-shlibdeps.pl:272
  1566. #, perl-format
  1567. msgid "%s has an unexpected SONAME (%s)"
  1568. msgstr "%s имеет неожидаемый SONAME (%s)"
  1569. #: scripts/dpkg-shlibdeps.pl:293
  1570. #, fuzzy, perl-format
  1571. #| msgid "no dependency information found for %s (used by %s)"
  1572. msgid ""
  1573. "no dependency information found for %s (used by %s)\n"
  1574. "Hint: check if the library actually comes from a package."
  1575. msgstr "информация о зависимостях не найдена для %s (используется %s)"
  1576. #: scripts/dpkg-shlibdeps.pl:326
  1577. msgid ""
  1578. "binaries to analyze should already be installed in their package's directory"
  1579. msgstr ""
  1580. "анализируемые двоичные файлы должны быть уже установлены в свои каталоги "
  1581. "пакетов"
  1582. #: scripts/dpkg-shlibdeps.pl:369
  1583. #, perl-format
  1584. msgid "symbol %s used by %s found in none of the libraries"
  1585. msgstr "символ %s, используемый %s, в библиотеках не найден"
  1586. #: scripts/dpkg-shlibdeps.pl:372
  1587. #, perl-format
  1588. msgid ""
  1589. "%s contains an unresolvable reference to symbol %s: it's probably a plugin"
  1590. msgstr "%s содержит неразрешимую ссылку на символ %s: вероятно, это модуль"
  1591. #: scripts/dpkg-shlibdeps.pl:394
  1592. #, perl-format
  1593. msgid "%d similar warning has been skipped (use -v to see it)"
  1594. msgid_plural ""
  1595. "%d other similar warnings have been skipped (use -v to see them all)"
  1596. msgstr[0] ""
  1597. "%d похожее предупреждение было пропущено (используйте -v, чтобы увидеть его)"
  1598. msgstr[1] ""
  1599. "%d других похожих предупреждения было пропущено (используйте -v, чтобы "
  1600. "увидеть их)"
  1601. msgstr[2] ""
  1602. "%d других похожих предупреждений было пропущено (используйте -v, чтобы "
  1603. "увидеть их)"
  1604. #: scripts/dpkg-shlibdeps.pl:421
  1605. #, perl-format
  1606. msgid ""
  1607. "%s should not be linked against %s (it uses none of the library's symbols)"
  1608. msgstr ""
  1609. "%s не должен компоноваться с %s (не используется ни один из её символов)"
  1610. #: scripts/dpkg-shlibdeps.pl:434
  1611. #, perl-format
  1612. msgid ""
  1613. "package could avoid a useless dependency if %s was not linked against %s (it "
  1614. "uses none of the library's symbols)"
  1615. msgid_plural ""
  1616. "package could avoid a useless dependency if %s were not linked against %s "
  1617. "(they use none of the library's symbols)"
  1618. msgstr[0] ""
  1619. "у пакета %s можно удалить бесполезную зависимость от %s, если исключить её "
  1620. "из компоновки (так как не используется ни одного из её библиотечных символов)"
  1621. msgstr[1] ""
  1622. "у пакета %s можно удалить бесполезные зависимости от %s, если исключить их "
  1623. "из компоновки (так как не используется ни одного из их библиотечных символов)"
  1624. msgstr[2] ""
  1625. "у пакета %s можно удалить бесполезные зависимости от %s, если исключить их "
  1626. "из компоновки (так как не используется ни одного из их библиотечных символов)"
  1627. #: scripts/dpkg-shlibdeps.pl:445
  1628. #, fuzzy
  1629. #| msgid ""
  1630. #| "Note: libraries are not searched in other binary packages that do not "
  1631. #| "have any shlibs or symbols file.\n"
  1632. #| "To help dpkg-shlibdeps find private libraries, you might need to set "
  1633. #| "LD_LIBRARY_PATH."
  1634. msgid ""
  1635. "Note: libraries are not searched in other binary packages that do not have "
  1636. "any shlibs or symbols file.\n"
  1637. "To help dpkg-shlibdeps find private libraries, you might need to use -l."
  1638. msgstr ""
  1639. "Замечание: библиотеки не ищутся в других двоичных пакетах, в которых нет "
  1640. "файла shlibs или symbols.\n"
  1641. "Чтобы помочь dpkg-shlibdeps найти персональные библиотеки, вы можете "
  1642. "настроить LD_LIBRARY_PATH."
  1643. #: scripts/dpkg-shlibdeps.pl:448
  1644. msgid "cannot continue due to the error above"
  1645. msgid_plural "cannot continue due to the errors listed above"
  1646. msgstr[0] "невозможно продолжать из-за ошибки, указанной выше"
  1647. msgstr[1] "невозможно продолжать из-за ошибок, указанных выше"
  1648. msgstr[2] "невозможно продолжать из-за ошибок, указанных выше"
  1649. #: scripts/dpkg-shlibdeps.pl:459
  1650. #, perl-format
  1651. msgid "open new substvars file `%s'"
  1652. msgstr "открытие нового файла подстановок «%s»"
  1653. #: scripts/dpkg-shlibdeps.pl:462
  1654. #, perl-format
  1655. msgid "open old varlist file `%s' for reading"
  1656. msgstr "открытие старого файла со списком переменных «%s» на чтение"
  1657. #: scripts/dpkg-shlibdeps.pl:466
  1658. #, perl-format
  1659. msgid "copy old entry to new varlist file `%s'"
  1660. msgstr "копирование старой записи в новый файл со списком переменных «%s»"
  1661. #: scripts/dpkg-shlibdeps.pl:530
  1662. #, perl-format
  1663. msgid "invalid dependency got generated: %s"
  1664. msgstr "при генерации получена неверная зависимость: %s"
  1665. #: scripts/dpkg-shlibdeps.pl:540
  1666. #, perl-format
  1667. msgid "install new varlist file `%s'"
  1668. msgstr "установка нового файла со списком переменных «%s»"
  1669. #: scripts/dpkg-shlibdeps.pl:558
  1670. #, perl-format
  1671. msgid "Usage: %s [<option>...] <executable>|-e<executable> [<option>...]"
  1672. msgstr ""
  1673. "Использование: %s [<параметр> ...] <исп.файл>|-e<исп.файл> [<параметр> ...]"
  1674. #: scripts/dpkg-shlibdeps.pl:560
  1675. msgid ""
  1676. "Positional options (order is significant):\n"
  1677. " <executable> include dependencies for <executable>,\n"
  1678. " -e<executable> (use -e if <executable> starts with '-')\n"
  1679. " -d<dependency-field> next executable(s) set shlibs:<dependency-field>."
  1680. msgstr ""
  1681. "Позиционные параметры (порядок важен):\n"
  1682. " <исп.файл> включить все зависимости для <исп.файла>,\n"
  1683. " -e<исп.файл> (используйте -e, если <исп.файл> начинается с "
  1684. "«-»)\n"
  1685. " -d<поле-завис.> для последующих исп.файлов\n"
  1686. " задать в shlibs:<поле-завис.>"
  1687. #: scripts/dpkg-shlibdeps.pl:565
  1688. #, fuzzy
  1689. #| msgid ""
  1690. #| "Options:\n"
  1691. #| " -p<varname-prefix> set <varname-prefix>:* instead of shlibs:*.\n"
  1692. #| " -O print variable settings to stdout.\n"
  1693. #| " -L<local-shlibs-file> shlibs override file, not debian/shlibs."
  1694. #| "local.\n"
  1695. #| " -T<substvars-file> update variables here, not debian/substvars.\n"
  1696. #| " -t<type> set package type (default is deb).\n"
  1697. #| " -x<package> exclude package from the generated "
  1698. #| "dependencies.\n"
  1699. #| " -S<package-build-dir> search needed libraries in the given\n"
  1700. #| " package build directory first.\n"
  1701. #| " -v enable verbose mode (can be used multiple "
  1702. #| "times).\n"
  1703. #| " --ignore-missing-info don't fail if dependency information can't be "
  1704. #| "found.\n"
  1705. #| " --warnings=<value> define set of active warnings (see manual "
  1706. #| "page).\n"
  1707. #| " --admindir=<directory> change the administrative directory.\n"
  1708. #| " -?, --help show this help message.\n"
  1709. #| " --version show the version."
  1710. msgid ""
  1711. "Options:\n"
  1712. " -l<library-dir> add directory to private shared library search "
  1713. "list.\n"
  1714. " -p<varname-prefix> set <varname-prefix>:* instead of shlibs:*.\n"
  1715. " -O[<file>] write variable settings to stdout (or <file>).\n"
  1716. " -L<local-shlibs-file> shlibs override file, not debian/shlibs.local.\n"
  1717. " -T<substvars-file> update variables here, not debian/substvars.\n"
  1718. " -t<type> set package type (default is deb).\n"
  1719. " -x<package> exclude package from the generated dependencies.\n"
  1720. " -S<package-build-dir> search needed libraries in the given\n"
  1721. " package build directory first.\n"
  1722. " -v enable verbose mode (can be used multiple "
  1723. "times).\n"
  1724. " --ignore-missing-info don't fail if dependency information can't be "
  1725. "found.\n"
  1726. " --warnings=<value> define set of active warnings (see manual page).\n"
  1727. " --admindir=<directory> change the administrative directory.\n"
  1728. " -?, --help show this help message.\n"
  1729. " --version show the version."
  1730. msgstr ""
  1731. "Параметры:\n"
  1732. " -p<преф.имени-пер.> задать <преф.имени-пер.>:* вместо shlibs:*\n"
  1733. " -O вывести значения переменных в стандартный вывод\n"
  1734. " -L<лок.shlibs-файл> файл замены shlibs вместо debian/shlibs.local\n"
  1735. " -T<файл-перем.> обновлять переменные в этом файле,\n"
  1736. " а не в debian/substvars\n"
  1737. " -t<тип> указать тип пакета (по умолчанию deb)\n"
  1738. " -x<пакет> исключить пакет из списка генерируемых "
  1739. "зависимостей\n"
  1740. " -S<кат.сб.пак.> сначала искать необходимые библиотеки\n"
  1741. " в указанном каталоге сборки пакета\n"
  1742. " -v включить показ подробностей работы (может быть\n"
  1743. " указан несколько раз)\n"
  1744. " --ignore-missing-info не останавливаться, если не найдена информация\n"
  1745. " о зависимостях\n"
  1746. " --warnings=<значение> задать набор активных предупреждений\n"
  1747. " (смотрите справочную страницу)\n"
  1748. " --admindir=<каталог> изменить административный каталог\n"
  1749. " -?, --help показать это сообщение\n"
  1750. " --version показать версию"
  1751. #: scripts/dpkg-shlibdeps.pl:582
  1752. #, perl-format
  1753. msgid ""
  1754. "Dependency fields recognized are:\n"
  1755. " %s\n"
  1756. msgstr ""
  1757. "Распознаваемые поля зависимостей:\n"
  1758. " %s\n"
  1759. #: scripts/dpkg-shlibdeps.pl:686
  1760. #, fuzzy, perl-format
  1761. #| msgid "Can't extract name and version from library name `%s'"
  1762. msgid "can't extract name and version from library name '%s'"
  1763. msgstr "Не удалось выделить имя и версию из библиотеки «%s»"
  1764. #: scripts/dpkg-shlibdeps.pl:692
  1765. #, perl-format
  1766. msgid "unable to open shared libs info file `%s'"
  1767. msgstr "невозможно открыть информационный файл разделяемой библиотеки «%s»"
  1768. #: scripts/dpkg-shlibdeps.pl:698
  1769. #, perl-format
  1770. msgid "shared libs info file `%s' line %d: bad line `%s'"
  1771. msgstr ""
  1772. "информационный файл разделяемой библиотеки «%s» строка %d: неправильная "
  1773. "строка «%s»"
  1774. #: scripts/dpkg-shlibdeps.pl:757 scripts/dpkg-shlibdeps.pl:849
  1775. #, perl-format
  1776. msgid "cannot open file %s"
  1777. msgstr "не удалось открыть файл %s"
  1778. #: scripts/dpkg-shlibdeps.pl:791
  1779. #, perl-format
  1780. msgid ""
  1781. "$ORIGIN is used in RPATH of %s and the corresponding directory could not be "
  1782. "identified due to lack of DEBIAN sub-directory in the root of package's "
  1783. "build tree"
  1784. msgstr ""
  1785. "$ORIGIN используется в RPATH (%s) и соответствующий каталог невозможно "
  1786. "определить из-за отсутствия подкаталога DEBIAN в корне дерева сборки пакета"
  1787. #: scripts/dpkg-shlibdeps.pl:857
  1788. msgid "diversions involved - output may be incorrect"
  1789. msgstr "задействованы отклонения - результат может быть неправильным"
  1790. #: scripts/dpkg-shlibdeps.pl:859
  1791. msgid "write diversion info to stderr"
  1792. msgstr "запись информации об отклонениях в поток ошибок"
  1793. #: scripts/dpkg-shlibdeps.pl:864
  1794. #, perl-format
  1795. msgid "unknown output from dpkg --search: '%s'"
  1796. msgstr "неизвестный вывод от dpkg --search: «%s»"
  1797. #: scripts/dpkg-source.pl:106
  1798. #, fuzzy, perl-format
  1799. #| msgid "%s needs a directory"
  1800. msgid "--%s needs a directory"
  1801. msgstr "для %s требуется каталог"
  1802. #: scripts/dpkg-source.pl:112
  1803. #, perl-format
  1804. msgid "cannot stat directory %s"
  1805. msgstr "не удалось выполнить функцию stat для каталога %s"
  1806. #: scripts/dpkg-source.pl:114
  1807. #, perl-format
  1808. msgid "directory argument %s is not a directory"
  1809. msgstr "значение параметра каталога %s не является каталогом"
  1810. #: scripts/dpkg-source.pl:119 scripts/Dpkg/Source/Package/V2.pm:462
  1811. #: scripts/Dpkg/Source/Package/V2.pm:464 scripts/Dpkg/Source/Package/V2.pm:466
  1812. #: scripts/Dpkg/Source/Package/V2.pm:468
  1813. #: scripts/Dpkg/Source/Package/V3/Bzr.pm:113
  1814. #: scripts/Dpkg/Source/Package/V3/Bzr.pm:137
  1815. #: scripts/Dpkg/Source/Package/V3/Bzr.pm:203
  1816. #: scripts/Dpkg/Source/Package/V3/Bzr.pm:209
  1817. #: scripts/Dpkg/Source/Package/V3/Git.pm:106
  1818. #: scripts/Dpkg/Source/Package/V3/Git.pm:146
  1819. #: scripts/Dpkg/Source/Package/V3/Git.pm:158
  1820. #: scripts/Dpkg/Source/Package/V3/Git.pm:176
  1821. #, perl-format
  1822. msgid "unable to chdir to `%s'"
  1823. msgstr "невозможно выполнить chdir в «%s»"
  1824. #: scripts/dpkg-source.pl:137
  1825. #, perl-format
  1826. msgid "using options from %s: %s"
  1827. msgstr "используются параметры из %s: %s"
  1828. #: scripts/dpkg-source.pl:151 scripts/Dpkg/Compression.pm:179
  1829. #, perl-format
  1830. msgid "%s is not a supported compression"
  1831. msgstr "неподдерживаемый метод сжатия %s"
  1832. #: scripts/dpkg-source.pl:157 scripts/Dpkg/Compression.pm:208
  1833. #: scripts/Dpkg/Compression/Process.pm:88
  1834. #, perl-format
  1835. msgid "%s is not a compression level"
  1836. msgstr "%s не является степенью сжатия"
  1837. #: scripts/dpkg-source.pl:216
  1838. msgid "need an action option"
  1839. msgstr "необходим параметр действия"
  1840. #: scripts/dpkg-source.pl:240
  1841. #, perl-format
  1842. msgid "%s doesn't contain any information about the source package"
  1843. msgstr "%s не содержит информации о пакете с исходным кодом"
  1844. #: scripts/dpkg-source.pl:317
  1845. #, perl-format
  1846. msgid "`%s' is not a legal architecture string"
  1847. msgstr "«%s» не является разрешённой строкой архитектуры"
  1848. #: scripts/dpkg-source.pl:320
  1849. #, perl-format
  1850. msgid "architecture %s only allowed on its own (list for package %s is `%s')"
  1851. msgstr ""
  1852. "архитектура %s должна быть только из указанных в пакете (список для пакета "
  1853. "%s: «%s»)"
  1854. #: scripts/dpkg-source.pl:335
  1855. #, perl-format
  1856. msgid "%s doesn't list any binary package"
  1857. msgstr "в «%s» отсутствует какой-либо двоичный пакет"
  1858. #: scripts/dpkg-source.pl:374
  1859. msgid "building source for a binary-only release"
  1860. msgstr "сборка пакета с исходным кодом только для двоичного выпуска"
  1861. #: scripts/dpkg-source.pl:393 scripts/Dpkg/BuildFlags.pm:316
  1862. #: scripts/Dpkg/Compression/FileHandle.pm:422
  1863. #: scripts/Dpkg/Interface/Storable.pm:89 scripts/Dpkg/Shlibs/Objdump.pm:125
  1864. #: scripts/Dpkg/Source/Package/V2.pm:282 scripts/Dpkg/Source/Package/V2.pm:554
  1865. #: scripts/Dpkg/Source/Package/V2.pm:711 scripts/Dpkg/Source/Quilt.pm:232
  1866. #: scripts/Dpkg/Source/Quilt.pm:289 scripts/Dpkg/Source/Quilt.pm:323
  1867. #, perl-format
  1868. msgid "cannot read %s"
  1869. msgstr "не удалось прочитать %s"
  1870. #: scripts/dpkg-source.pl:400
  1871. #, perl-format
  1872. msgid "no source format specified in %s, see dpkg-source(1)"
  1873. msgstr "не задан формат исходников в %s, см. dpkg-source(1)"
  1874. #: scripts/dpkg-source.pl:428
  1875. #, perl-format
  1876. msgid "can't build with source format '%s': %s"
  1877. msgstr "невозможно собрать с форматом исходника «%s»: %s"
  1878. #: scripts/dpkg-source.pl:431
  1879. #, perl-format
  1880. msgid "using source format `%s'"
  1881. msgstr "используется формат исходника «%s»"
  1882. #: scripts/dpkg-source.pl:438 scripts/Dpkg/Source/Package/V1.pm:315
  1883. #: scripts/Dpkg/Source/Package/V1.pm:360 scripts/Dpkg/Source/Package/V2.pm:533
  1884. #: scripts/Dpkg/Source/Package/V3/Bzr.pm:156
  1885. #: scripts/Dpkg/Source/Package/V3/Native.pm:92
  1886. #, perl-format
  1887. msgid "building %s in %s"
  1888. msgstr "сборка %s в %s"
  1889. #: scripts/dpkg-source.pl:449
  1890. #, fuzzy, perl-format
  1891. #| msgid "-x needs at least one argument, the .dsc"
  1892. msgid "--%s needs at least one argument, the .dsc"
  1893. msgstr "-x требует указания хотя бы одного значения .dsc"
  1894. #: scripts/dpkg-source.pl:453
  1895. #, fuzzy, perl-format
  1896. #| msgid "-x takes no more than two arguments"
  1897. msgid "--%s takes no more than two arguments"
  1898. msgstr "-x может иметь не более двух значений"
  1899. #: scripts/dpkg-source.pl:457
  1900. #, fuzzy, perl-format
  1901. #| msgid "-x needs the .dsc file as first argument, not a directory"
  1902. msgid "--%s needs the .dsc file as first argument, not a directory"
  1903. msgstr "-x принимает .dsc файл первым значением, а не каталог"
  1904. #: scripts/dpkg-source.pl:474
  1905. #, perl-format
  1906. msgid "unpack target exists: %s"
  1907. msgstr "цель распаковки существует: %s"
  1908. #: scripts/dpkg-source.pl:484
  1909. #, perl-format
  1910. msgid "%s doesn't contain a valid OpenPGP signature"
  1911. msgstr "%s не содержит корректной подписи OpenPGP"
  1912. #: scripts/dpkg-source.pl:486
  1913. #, perl-format
  1914. msgid "extracting unsigned source package (%s)"
  1915. msgstr "распаковка неподписанного пакета с исходным кодом (%s)"
  1916. #: scripts/dpkg-source.pl:493
  1917. #, perl-format
  1918. msgid "extracting %s in %s"
  1919. msgstr "извлечение %s в %s"
  1920. #: scripts/dpkg-source.pl:508
  1921. #, perl-format
  1922. msgid "%s field contains value %s, but no tests control file %s"
  1923. msgstr ""
  1924. #: scripts/dpkg-source.pl:536
  1925. #, perl-format
  1926. msgid "Usage: %s [<option>...] <command>"
  1927. msgstr "Использование: %s [<параметр>...] <команда>"
  1928. #: scripts/dpkg-source.pl:538
  1929. #, fuzzy
  1930. #| msgid ""
  1931. #| "Commands:\n"
  1932. #| " -x <filename>.dsc [<output-dir>]\n"
  1933. #| " extract source package.\n"
  1934. #| " -b <dir> build source package.\n"
  1935. #| " --print-format <dir> print the source format that would be\n"
  1936. #| " used to build the source package.\n"
  1937. #| " --commit [<dir> [<patch-name>]]\n"
  1938. #| " store upstream changes in a new patch."
  1939. msgid ""
  1940. "Commands:\n"
  1941. " -x, --extract <filename>.dsc [<output-dir>]\n"
  1942. " extract source package.\n"
  1943. " -b, --build <dir> build source package.\n"
  1944. " --print-format <dir> print the format to be used for the source "
  1945. "package.\n"
  1946. " --commit [<dir> [<patch-name>]]\n"
  1947. " store upstream changes in a new patch."
  1948. msgstr ""
  1949. "Команды:\n"
  1950. " -x <имя_файла>.dsc [<выходн.каталог>]\n"
  1951. " распаковать пакет исходного кода\n"
  1952. " -b <кат> собрать пакет исходного кода\n"
  1953. " --print-format <кат> вывести формат исходника, который\n"
  1954. " использовался бы для сборки пакета исходного "
  1955. "кода\n"
  1956. " --commit [<кат> [<заплата>]]\n"
  1957. " сохранить изменения оригинала в новой заплате"
  1958. #: scripts/dpkg-source.pl:546
  1959. #, fuzzy, perl-format
  1960. #| msgid ""
  1961. #| "Build options:\n"
  1962. #| " -c<control-file> get control info from this file.\n"
  1963. #| " -l<changelog-file> get per-version info from this file.\n"
  1964. #| " -F<changelog-format> force changelog format.\n"
  1965. #| " -V<name>=<value> set a substitution variable.\n"
  1966. #| " -T<substvars-file> read variables here.\n"
  1967. #| " -D<field>=<value> override or add a .dsc field and value.\n"
  1968. #| " -U<field> remove a field.\n"
  1969. #| " -q quiet mode.\n"
  1970. #| " -i[<regexp>] filter out files to ignore diffs of\n"
  1971. #| " (defaults to: '%s').\n"
  1972. #| " -I[<pattern>] filter out files when building tarballs\n"
  1973. #| " (defaults to: %s).\n"
  1974. #| " -Z<compression> select compression to use (defaults to '%s',\n"
  1975. #| " supported are: %s).\n"
  1976. #| " -z<level> compression level to use (defaults to '%d',\n"
  1977. #| " supported are: '1'-'9', 'best', 'fast')"
  1978. msgid ""
  1979. "Build options:\n"
  1980. " -c<control-file> get control info from this file.\n"
  1981. " -l<changelog-file> get per-version info from this file.\n"
  1982. " -F<changelog-format> force changelog format.\n"
  1983. " --format=<source-format> set the format to be used for the source "
  1984. "package.\n"
  1985. " -V<name>=<value> set a substitution variable.\n"
  1986. " -T<substvars-file> read variables here.\n"
  1987. " -D<field>=<value> override or add a .dsc field and value.\n"
  1988. " -U<field> remove a field.\n"
  1989. " -q quiet mode.\n"
  1990. " -i[<regex>] filter out files to ignore diffs of\n"
  1991. " (defaults to: '%s').\n"
  1992. " -I[<pattern>] filter out files when building tarballs\n"
  1993. " (defaults to: %s).\n"
  1994. " -Z<compression> select compression to use (defaults to '%s',\n"
  1995. " supported are: %s).\n"
  1996. " -z<level> compression level to use (defaults to '%d',\n"
  1997. " supported are: '1'-'9', 'best', 'fast')"
  1998. msgstr ""
  1999. "Параметры сборки:\n"
  2000. " -c<упр.файл> брать управляющую информацию\n"
  2001. " из указанного файла\n"
  2002. " -l<файл-изменений> брать список изменений из указанного файла\n"
  2003. " -F<формат-изм.> задать формат журнала изменений\n"
  2004. " -V<имя>=<знач.> установить переменную подстановки\n"
  2005. " -T<файл-substvars> читать переменные из указанного файла\n"
  2006. " -D<поле>=<знач.> заменить или добавить .dsc поле и значение\n"
  2007. " -U<поле> удалить поле\n"
  2008. " -q не выводить предупреждения\n"
  2009. " -i[<рег.выр.>] не включать совпадающие с регулярным выражением\n"
  2010. " файлы в diff (по умолчанию: «%s»)\n"
  2011. " -I[<шаблон>] не включать подпадающие под шаблон\n"
  2012. " файлы в tarball (по умолчанию: %s)\n"
  2013. " -Z<алгоритм> задать используемый метод сжатия\n"
  2014. " (по умолчанию «%s», поддерживаются: %s).\n"
  2015. " -z<степень> степень сжатия (по умолчанию: «%d»,\n"
  2016. " поддерживаются: 1-9, best, fast)"
  2017. #: scripts/dpkg-source.pl:565
  2018. #, fuzzy
  2019. #| msgid ""
  2020. #| "Extract options:\n"
  2021. #| " --no-copy don't copy .orig tarballs\n"
  2022. #| " --no-check don't check signature and checksums before "
  2023. #| "unpacking\n"
  2024. #| " --require-valid-signature abort if the package doesn't have a valid "
  2025. #| "signature"
  2026. msgid ""
  2027. "Extract options:\n"
  2028. " --no-copy don't copy .orig tarballs\n"
  2029. " --no-check don't check signature and checksums before "
  2030. "unpacking\n"
  2031. " --require-valid-signature abort if the package doesn't have a valid "
  2032. "signature\n"
  2033. " --ignore-bad-version allow bad source package versions."
  2034. msgstr ""
  2035. "Параметры распаковки:\n"
  2036. " --no-copy не копировать .orig tarball-ы\n"
  2037. " --no-check не проверять подпись и контрольные суммы\n"
  2038. " перед распаковкой\n"
  2039. " --require-valid-signature прерваться, если нет корректной подписи"
  2040. #: scripts/dpkg-source.pl:571
  2041. msgid ""
  2042. "General options:\n"
  2043. " -?, --help show this help message.\n"
  2044. " --version show the version."
  2045. msgstr ""
  2046. "Общие параметры:\n"
  2047. " -?, --help показать это сообщение\n"
  2048. " --version показать версию"
  2049. #: scripts/dpkg-source.pl:575
  2050. msgid ""
  2051. "More options are available but they depend on the source package format.\n"
  2052. "See dpkg-source(1) for more info."
  2053. msgstr ""
  2054. "Также, есть ещё параметры, но они привязаны к формату пакета\n"
  2055. "исходного кода. Подробней см. в dpkg-source(1)."
  2056. #: scripts/changelog/debian.pl:47
  2057. #, perl-format
  2058. msgid ""
  2059. "Usage: %s [<option>...] [<changelogfile>]\n"
  2060. "\n"
  2061. "Options:\n"
  2062. " -?, --help print usage information\n"
  2063. " --version, -V print version information\n"
  2064. " --label, -l <file> name of the changelog file to\n"
  2065. " use in error messages\n"
  2066. " --file <file> changelog file to parse, defaults\n"
  2067. " to '-' (standard input)\n"
  2068. " --format <outputformat> see man page for list of available\n"
  2069. " output formats, defaults to 'dpkg'\n"
  2070. " for compatibility with dpkg-dev\n"
  2071. " --since, -s, -v <version> include all changes later than version\n"
  2072. " --until, -u <version> include all changes earlier than version\n"
  2073. " --from, -f <version> include all changes equal or later\n"
  2074. " than version\n"
  2075. " --to, -t <version> include all changes up to or equal\n"
  2076. " than version\n"
  2077. " --count, -c, -n <number> include <number> entries from the top\n"
  2078. " (or the tail if <number> is lower than 0)\n"
  2079. " --offset, -o <number> change the starting point for --count,\n"
  2080. " counted from the top (or the tail if\n"
  2081. " <number> is lower than 0)\n"
  2082. " --all include all changes\n"
  2083. msgstr ""
  2084. "Использование: %s [<параметр>...] [<файл-изм>]\n"
  2085. "\n"
  2086. "Параметры:\n"
  2087. " -?, --help показать это сообщение\n"
  2088. " --version, -V показать версию\n"
  2089. " --label, -l <файл> название файла изменений\n"
  2090. " для показа в сообщениях об ошибке\n"
  2091. " --file <файл> анализируемый файл изменений, по умолчанию\n"
  2092. " используется «-» (стандартный входной "
  2093. "поток)\n"
  2094. " --format <формат-вывода> в справочной странице есть список возможных\n"
  2095. " выходных форматов, по умолчанию исп. «dpkg»\n"
  2096. " для совместимости с dpkg-dev\n"
  2097. " --since, -s, -v <версия> включить все изменения после этой версии\n"
  2098. " --until, -u <версия> включить все изменения до этой версии\n"
  2099. " --from, -f <версия> включить изменения этой и всех поздних\n"
  2100. " версий\n"
  2101. " --to, -t <версия> включить все изменения до этой версии\n"
  2102. " включительно\n"
  2103. " --count, -c, -n <число> включить <число> записей от начала\n"
  2104. " (или конца, если <число> отрицательное)\n"
  2105. " --offset, -o <число> изменить начальную точку для --count,\n"
  2106. " отсчитывать от начала (или конца, если\n"
  2107. " <число> отрицательное)\n"
  2108. " --all включить все изменения\n"
  2109. #: scripts/changelog/debian.pl:86
  2110. #, perl-format
  2111. msgid "output format %s not supported"
  2112. msgstr "выходной формат %s не поддерживается"
  2113. #: scripts/changelog/debian.pl:116
  2114. #, perl-format
  2115. msgid "more than one file specified (%s and %s)"
  2116. msgstr "указано более одного файла (%s и %s)"
  2117. #: scripts/changelog/debian.pl:140
  2118. #, perl-format
  2119. msgid "fatal error occurred while parsing %s"
  2120. msgstr "неустранимая ошибка при анализе %s"
  2121. #: scripts/Dpkg/Arch.pm:96
  2122. #, fuzzy
  2123. #| msgid ""
  2124. #| "Couldn't determine gcc system type, falling back to default (native "
  2125. #| "compilation)"
  2126. msgid ""
  2127. "couldn't determine gcc system type, falling back to default (native "
  2128. "compilation)"
  2129. msgstr ""
  2130. "Не удалось определить gcc тип системы, переход к использованию значения по "
  2131. "умолчанию (родная компиляция)"
  2132. #: scripts/Dpkg/Arch.pm:105
  2133. #, fuzzy, perl-format
  2134. #| msgid ""
  2135. #| "Unknown gcc system type %s, falling back to default (native compilation)"
  2136. msgid ""
  2137. "unknown gcc system type %s, falling back to default (native compilation)"
  2138. msgstr ""
  2139. "Неизвестный gcc тип системы %s, переход к использованию значения по "
  2140. "умолчанию (родная компиляция)"
  2141. #: scripts/Dpkg/BuildFlags.pm:324
  2142. #, perl-format
  2143. msgid "line %d of %s mentions unknown flag %s"
  2144. msgstr "в строке %d из %s упомянут неизвестный флаг %s"
  2145. #: scripts/Dpkg/BuildFlags.pm:337
  2146. #, perl-format
  2147. msgid "line %d of %s is invalid, it has been ignored"
  2148. msgstr "неправильная строка %d из %s, она была проигнорирована"
  2149. #: scripts/Dpkg/BuildOptions.pm:95
  2150. #, perl-format
  2151. msgid "invalid flag in %s: %s"
  2152. msgstr "неправильный флаг в %s: %s"
  2153. #: scripts/Dpkg/Compression/Process.pm:73
  2154. #, perl-format
  2155. msgid "%s is not a supported compression method"
  2156. msgstr "неподдерживаемый метод сжатия %s"
  2157. #: scripts/Dpkg/Compression/Process.pm:124
  2158. msgid "Dpkg::Compression::Process can only start one subprocess at a time"
  2159. msgstr ""
  2160. "Dpkg::Compression::Process может запускать только один подпроцесс "
  2161. "одновременно"
  2162. #: scripts/Dpkg/Changelog.pm:170 scripts/Dpkg/Changelog.pm:172
  2163. #: scripts/Dpkg/ErrorHandling.pm:59
  2164. msgid "warning"
  2165. msgstr "предупреждение"
  2166. #: scripts/Dpkg/Changelog.pm:170
  2167. #, perl-format
  2168. msgid ""
  2169. "%s(l%s): %s\n"
  2170. "LINE: %s"
  2171. msgstr ""
  2172. "%s(l%s): %s\n"
  2173. "СТРОКА: %s"
  2174. #: scripts/Dpkg/Changelog.pm:172
  2175. #, perl-format
  2176. msgid "%s(l%s): %s"
  2177. msgstr "%s(l%s): %s"
  2178. #: scripts/Dpkg/Changelog.pm:220
  2179. msgid "'offset' without 'count' has no effect"
  2180. msgstr "«offset» без «count» бесполезен"
  2181. #: scripts/Dpkg/Changelog.pm:229
  2182. msgid "you can't combine 'count' or 'offset' with any other range option"
  2183. msgstr ""
  2184. "нельзя использовать «count» или «offset» одновременно с любыми другими "
  2185. "параметрами диапазона"
  2186. #: scripts/Dpkg/Changelog.pm:237
  2187. msgid "you can only specify one of 'from' and 'since', using 'since'"
  2188. msgstr "можно указать только одно «from» и «since», используется «since»"
  2189. #: scripts/Dpkg/Changelog.pm:242
  2190. msgid "you can only specify one of 'to' and 'until', using 'until'"
  2191. msgstr "можно указать только одно «to» и «until», используется «until»"
  2192. #: scripts/Dpkg/Changelog.pm:254 scripts/Dpkg/Changelog.pm:270
  2193. #: scripts/Dpkg/Changelog.pm:286 scripts/Dpkg/Changelog.pm:302
  2194. #, perl-format
  2195. msgid "'%s' option specifies non-existing version"
  2196. msgstr "в параметре «%s» указана несуществующая версия"
  2197. #: scripts/Dpkg/Changelog.pm:255 scripts/Dpkg/Changelog.pm:303
  2198. msgid "use newest entry that is earlier than the one specified"
  2199. msgstr "используемый самый новый элемент меньше чем указанный"
  2200. #: scripts/Dpkg/Changelog.pm:264
  2201. msgid "none found, starting from the oldest entry"
  2202. msgstr "ничего не найдено, начинаем с самого старого элемента"
  2203. #: scripts/Dpkg/Changelog.pm:271 scripts/Dpkg/Changelog.pm:287
  2204. msgid "use oldest entry that is later than the one specified"
  2205. msgstr "используемый самый старый элемент больше чем указанный"
  2206. #: scripts/Dpkg/Changelog.pm:281 scripts/Dpkg/Changelog.pm:297
  2207. #: scripts/Dpkg/Changelog.pm:312
  2208. #, perl-format
  2209. msgid "no such entry found, ignoring '%s' parameter"
  2210. msgstr "элемент не найден, параметр «%s» игнорируется"
  2211. #: scripts/Dpkg/Changelog.pm:318
  2212. msgid "'since' option specifies most recent version, ignoring"
  2213. msgstr "в параметре «since» задана более новая версия, игнорируется"
  2214. #: scripts/Dpkg/Changelog.pm:322
  2215. msgid "'until' option specifies oldest version, ignoring"
  2216. msgstr "в параметре «until» задана более новая версия, игнорируется"
  2217. #: scripts/Dpkg/Changelog/Debian.pm:56
  2218. msgid "first heading"
  2219. msgstr "первый заголовок"
  2220. #: scripts/Dpkg/Changelog/Debian.pm:57
  2221. msgid "next heading or eof"
  2222. msgstr "следующий заголовок или eof"
  2223. #: scripts/Dpkg/Changelog/Debian.pm:58
  2224. msgid "start of change data"
  2225. msgstr "начало данных об изменениях"
  2226. #: scripts/Dpkg/Changelog/Debian.pm:59
  2227. msgid "more change data or trailer"
  2228. msgstr "продолжение данных об изменениях или концевик"
  2229. #: scripts/Dpkg/Changelog/Debian.pm:91
  2230. #, perl-format
  2231. msgid "found start of entry where expected %s"
  2232. msgstr "найдено начало записи где ожидалось %s"
  2233. #: scripts/Dpkg/Changelog/Debian.pm:128
  2234. msgid "badly formatted heading line"
  2235. msgstr "неправильный формат строки заголовка"
  2236. #: scripts/Dpkg/Changelog/Debian.pm:132
  2237. #, perl-format
  2238. msgid "found trailer where expected %s"
  2239. msgstr "найдено завершение где ожидалось %s"
  2240. #: scripts/Dpkg/Changelog/Debian.pm:142
  2241. #: scripts/Dpkg/Changelog/Entry/Debian.pm:160
  2242. msgid "badly formatted trailer line"
  2243. msgstr "неправильный формат строки завершения"
  2244. #: scripts/Dpkg/Changelog/Debian.pm:145
  2245. #, perl-format
  2246. msgid "found change data where expected %s"
  2247. msgstr "найдены данные изменений где ожидалось %s"
  2248. #: scripts/Dpkg/Changelog/Debian.pm:167
  2249. #, perl-format
  2250. msgid "found blank line where expected %s"
  2251. msgstr "найдена пустая строка где ожидалось %s"
  2252. #: scripts/Dpkg/Changelog/Debian.pm:171
  2253. msgid "unrecognized line"
  2254. msgstr "нераспознанная строка"
  2255. #: scripts/Dpkg/Changelog/Debian.pm:182
  2256. #, perl-format
  2257. msgid "found eof where expected %s"
  2258. msgstr "найден символ eof где ожидалось %s"
  2259. #: scripts/Dpkg/Changelog/Entry/Debian.pm:126
  2260. #, perl-format
  2261. msgid "bad key-value after `;': `%s'"
  2262. msgstr "неверная пара ключ-значение после «;»: «%s»"
  2263. #: scripts/Dpkg/Changelog/Entry/Debian.pm:131
  2264. #, perl-format
  2265. msgid "repeated key-value %s"
  2266. msgstr "повторение пары ключ-значение %s"
  2267. #: scripts/Dpkg/Changelog/Entry/Debian.pm:135
  2268. #, perl-format
  2269. msgid "badly formatted urgency value: %s"
  2270. msgstr "неправильный формат значения критичности: %s"
  2271. #: scripts/Dpkg/Changelog/Entry/Debian.pm:138
  2272. #, perl-format
  2273. msgid "bad binary-only value: %s"
  2274. msgstr "нежелательный только двоичное значение: %s"
  2275. #: scripts/Dpkg/Changelog/Entry/Debian.pm:142
  2276. #, perl-format
  2277. msgid "unknown key-value %s"
  2278. msgstr "неизвестный ключ-значение %s"
  2279. #: scripts/Dpkg/Changelog/Entry/Debian.pm:147
  2280. #, perl-format
  2281. msgid "version '%s' is invalid: %s"
  2282. msgstr "некорректная версия «%s»: %s"
  2283. #: scripts/Dpkg/Changelog/Entry/Debian.pm:150
  2284. msgid "the header doesn't match the expected regex"
  2285. msgstr "заголовок не подходит под ожидаемое регулярное выражение"
  2286. #: scripts/Dpkg/Changelog/Entry/Debian.pm:163
  2287. #, perl-format
  2288. msgid "couldn't parse date %s"
  2289. msgstr "не удалось выполнить анализ даты %s"
  2290. #: scripts/Dpkg/Changelog/Entry/Debian.pm:166
  2291. msgid "the trailer doesn't match the expected regex"
  2292. msgstr "концевик не подходит под ожидаемое регулярное выражение"
  2293. #: scripts/Dpkg/Changelog/Parse.pm:106
  2294. #, fuzzy, perl-format
  2295. #| msgid "cannot create directory %s"
  2296. msgid "cannot create pipe for %s"
  2297. msgstr "не удалось создать каталог %s"
  2298. #: scripts/Dpkg/Changelog/Parse.pm:110
  2299. #, perl-format
  2300. msgid "tail of %s"
  2301. msgstr "конец %s"
  2302. #: scripts/Dpkg/Changelog/Parse.pm:122
  2303. #, perl-format
  2304. msgid "format parser %s not executable"
  2305. msgstr "анализатор формата %s не является исполняемым файлом"
  2306. #: scripts/Dpkg/Changelog/Parse.pm:125
  2307. #, perl-format
  2308. msgid "changelog format %s is unknown"
  2309. msgstr "неизвестный формат файла изменений %s"
  2310. #: scripts/Dpkg/Changelog/Parse.pm:144
  2311. #, perl-format
  2312. msgid "cannot exec format parser: %s"
  2313. msgstr "не удалось запустить анализатор формата: %s"
  2314. #: scripts/Dpkg/Changelog/Parse.pm:151
  2315. msgid "output of changelog parser"
  2316. msgstr "вывод анализатора файла изменений"
  2317. #: scripts/Dpkg/Changelog/Parse.pm:154
  2318. #, perl-format
  2319. msgid "changelog parser %s"
  2320. msgstr "анализатор файла изменений %s"
  2321. #: scripts/Dpkg/Checksums.pm:173
  2322. #, perl-format
  2323. msgid "cannot fstat file %s"
  2324. msgstr "не удалось выполнить функцию fstat для файла %s"
  2325. #: scripts/Dpkg/Checksums.pm:176
  2326. #, fuzzy, perl-format
  2327. #| msgid "File %s has size %u instead of expected %u"
  2328. msgid "file %s has size %u instead of expected %u"
  2329. msgstr "Файл %s имеет размер %u вместо ожидаемого %u"
  2330. #: scripts/Dpkg/Checksums.pm:190
  2331. #, fuzzy, perl-format
  2332. #| msgid "File %s has checksum %s instead of expected %s (algorithm %s)"
  2333. msgid "file %s has checksum %s instead of expected %s (algorithm %s)"
  2334. msgstr "Файл %s имеет контрольную сумму %s вместо ожидаемой %s (алгоритм %s)"
  2335. #: scripts/Dpkg/Checksums.pm:195
  2336. #, perl-format
  2337. msgid "checksum program gave bogus output `%s'"
  2338. msgstr "программа проверки контрольной суммы выдала фиктивный результат «%s»"
  2339. #: scripts/Dpkg/Checksums.pm:224
  2340. #, perl-format
  2341. msgid "invalid line in %s checksums string: %s"
  2342. msgstr "неправильная строка в строковом значении контрольной суммы %s: %s"
  2343. #: scripts/Dpkg/Checksums.pm:230
  2344. #, fuzzy, perl-format
  2345. #| msgid "Conflicting checksums `%s' and `%s' for file `%s'"
  2346. msgid "conflicting checksums '%s' and '%s' for file '%s'"
  2347. msgstr "Несовпадение контрольных сумм «%s» и «%s» для файла «%s»"
  2348. #: scripts/Dpkg/Checksums.pm:235
  2349. #, fuzzy, perl-format
  2350. #| msgid "Conflicting file sizes `%u' and `%u' for file `%s'"
  2351. msgid "conflicting file sizes '%u' and '%u' for file '%s'"
  2352. msgstr "Несовпадение размеров «%u» и «%u» для файла «%s»"
  2353. #: scripts/Dpkg/Conf.pm:108
  2354. #, perl-format
  2355. msgid "short option not allowed in %s, line %d"
  2356. msgstr "короткий параметр не разрешён в %s, строка %d"
  2357. #: scripts/Dpkg/Conf.pm:122
  2358. #, perl-format
  2359. msgid "invalid syntax for option in %s, line %d"
  2360. msgstr "синтаксическая ошибка в параметре у %s, строка %d"
  2361. #: scripts/Dpkg/Control.pm:153
  2362. msgid "general section of control info file"
  2363. msgstr "общая секция управляющего информационного файла"
  2364. #: scripts/Dpkg/Control.pm:155
  2365. msgid "package's section of control info file"
  2366. msgstr "секция пакета управляющего информационного файла"
  2367. #: scripts/Dpkg/Control.pm:157
  2368. msgid "parsed version of changelog"
  2369. msgstr "получена версия changelog"
  2370. #: scripts/Dpkg/Control.pm:159 scripts/Dpkg/Control.pm:161
  2371. #, perl-format
  2372. msgid "entry in repository's %s file"
  2373. msgstr "элемент в файле репозитория %s"
  2374. #: scripts/Dpkg/Control.pm:163 scripts/Dpkg/Control.pm:167
  2375. #, perl-format
  2376. msgid "%s file"
  2377. msgstr "файл %s"
  2378. #: scripts/Dpkg/Control.pm:165
  2379. msgid "control info of a .deb package"
  2380. msgstr "управляющая информация пакета .deb"
  2381. #: scripts/Dpkg/Control.pm:169
  2382. msgid "vendor file"
  2383. msgstr "файл производителя"
  2384. #: scripts/Dpkg/Control.pm:171
  2385. msgid "entry in dpkg's status file"
  2386. msgstr "элемент в файле состояния dpkg"
  2387. #: scripts/Dpkg/Control/FieldsCore.pm:509
  2388. #, perl-format
  2389. msgid "unknown information field '%s' in input data in %s"
  2390. msgstr "неизвестное информационное поле «%s» во входных данных в %s"
  2391. #: scripts/Dpkg/Control/FieldsCore.pm:510
  2392. msgid "control information"
  2393. msgstr "управляющая информация"
  2394. #: scripts/Dpkg/Control/Info.pm:103
  2395. msgid "first block lacks a source field"
  2396. msgstr "в первом блоке отсутствует поле исходника"
  2397. #: scripts/Dpkg/Control/Info.pm:110 scripts/Dpkg/Control/Info.pm:114
  2398. #, perl-format
  2399. msgid "block lacks the '%s' field"
  2400. msgstr "в блоке отсутствует поле «%s»"
  2401. #: scripts/Dpkg/Control/HashCore.pm:177
  2402. #, perl-format
  2403. msgid "syntax error in %s at line %d: %s"
  2404. msgstr "синтаксическая ошибка в %s в строке %d: %s"
  2405. #: scripts/Dpkg/Control/HashCore.pm:207
  2406. msgid "field cannot start with a hyphen"
  2407. msgstr ""
  2408. #: scripts/Dpkg/Control/HashCore.pm:211
  2409. #, perl-format
  2410. msgid "duplicate field %s found"
  2411. msgstr "обнаружено повторение поля %s"
  2412. #: scripts/Dpkg/Control/HashCore.pm:219
  2413. msgid "continued value line not in field"
  2414. msgstr "продолжение строки значения не в поле"
  2415. #: scripts/Dpkg/Control/HashCore.pm:233
  2416. #, fuzzy
  2417. #| msgid "PGP signature not allowed here"
  2418. msgid "OpenPGP signature not allowed here"
  2419. msgstr "PGP подпись здесь не разрешена"
  2420. #: scripts/Dpkg/Control/HashCore.pm:240
  2421. #, fuzzy
  2422. #| msgid "expected PGP signature, found EOF after blank line"
  2423. msgid "expected OpenPGP signature, found EOF after blank line"
  2424. msgstr "ожидалась подпись PGP, найден EOF после пустой строки"
  2425. #: scripts/Dpkg/Control/HashCore.pm:245
  2426. #, fuzzy, perl-format
  2427. #| msgid "expected PGP signature, found something else `%s'"
  2428. msgid "expected OpenPGP signature, found something else `%s'"
  2429. msgstr "ожидалась подпись PGP, найдено что-то другое «%s»"
  2430. #: scripts/Dpkg/Control/HashCore.pm:254 scripts/Dpkg/Control/HashCore.pm:268
  2431. #, fuzzy
  2432. #| msgid "unfinished PGP signature"
  2433. msgid "unfinished OpenPGP signature"
  2434. msgstr "незаконченная PGP подпись"
  2435. #: scripts/Dpkg/Control/HashCore.pm:263
  2436. msgid "line with unknown format (not field-colon-value)"
  2437. msgstr "строка неизвестного формата (не поле-двоеточие-значение)"
  2438. #: scripts/Dpkg/Control/HashCore.pm:368
  2439. msgid "write error on control data"
  2440. msgstr "ошибка записи управляющих данных"
  2441. #: scripts/Dpkg/Deps.pm:273
  2442. #, perl-format
  2443. msgid "can't parse dependency %s"
  2444. msgstr "не удалось проанализировать зависимость %s"
  2445. #: scripts/Dpkg/Deps.pm:305
  2446. msgid "an union dependency can only contain simple dependencies"
  2447. msgstr "в объединяющей зависимости могут быть только простые зависимости"
  2448. #: scripts/Dpkg/Dist/Files.pm:70
  2449. #, perl-format
  2450. msgid "badly formed line in files list file, line %d"
  2451. msgstr "неверный формат строки в файле со списком файлов, строка %d"
  2452. #: scripts/Dpkg/Dist/Files.pm:74
  2453. #, perl-format
  2454. msgid "duplicate files list entry for file %s (line %d)"
  2455. msgstr "повторная запись в списке файлов для файла %s (строка %d)"
  2456. #: scripts/Dpkg/ErrorHandling.pm:54
  2457. msgid "info"
  2458. msgstr "инфо"
  2459. #: scripts/Dpkg/ErrorHandling.pm:65 scripts/Dpkg/ErrorHandling.pm:70
  2460. #: scripts/Dpkg/ErrorHandling.pm:75
  2461. msgid "error"
  2462. msgstr "ошибка"
  2463. #: scripts/Dpkg/ErrorHandling.pm:87
  2464. #, perl-format
  2465. msgid "%s gave error exit status %s"
  2466. msgstr "%s возвратил код ошибки %s"
  2467. #: scripts/Dpkg/ErrorHandling.pm:89
  2468. #, perl-format
  2469. msgid "%s died from signal %s"
  2470. msgstr "%s завершился по сигналу %s"
  2471. #: scripts/Dpkg/ErrorHandling.pm:91
  2472. #, perl-format
  2473. msgid "%s failed with unknown exit code %d"
  2474. msgstr "%s завершился неудачно с неизвестным кодом выхода %d"
  2475. #: scripts/Dpkg/ErrorHandling.pm:95
  2476. msgid "Use --help for program usage information."
  2477. msgstr ""
  2478. #: scripts/Dpkg/Interface/Storable.pm:86
  2479. msgid "<standard input>"
  2480. msgstr "<стандартный ввод>"
  2481. #: scripts/Dpkg/IPC.pm:233 scripts/Dpkg/IPC.pm:239 scripts/Dpkg/IPC.pm:245
  2482. #, perl-format
  2483. msgid "pipe for %s"
  2484. msgstr "вызов pipe для %s"
  2485. #: scripts/Dpkg/IPC.pm:273
  2486. #, perl-format
  2487. msgid "chdir to %s"
  2488. msgstr "вызов chdir в %s"
  2489. #: scripts/Dpkg/IPC.pm:281
  2490. msgid "reopen stdin"
  2491. msgstr "повторное открытие stdin"
  2492. #: scripts/Dpkg/IPC.pm:290 scripts/Dpkg/IPC.pm:299
  2493. msgid "reopen stdout"
  2494. msgstr "повторное открытие stdout"
  2495. #: scripts/Dpkg/IPC.pm:373
  2496. msgid "child process"
  2497. msgstr "дочерний процесс"
  2498. #: scripts/Dpkg/IPC.pm:378
  2499. #, perl-format
  2500. msgid "wait for %s"
  2501. msgstr "вызов wait для %s"
  2502. #: scripts/Dpkg/IPC.pm:383
  2503. #, perl-format
  2504. msgid "%s didn't complete in %d second"
  2505. msgid_plural "%s didn't complete in %d seconds"
  2506. msgstr[0] "%s не завершится за %d секунду"
  2507. msgstr[1] "%s не завершится за %d секунды"
  2508. msgstr[2] "%s не завершится за %d секунд"
  2509. #: scripts/Dpkg/Package.pm:33
  2510. msgid "may not be empty string"
  2511. msgstr "не может быть пустой строкой"
  2512. #: scripts/Dpkg/Package.pm:36
  2513. #, perl-format
  2514. msgid "character '%s' not allowed"
  2515. msgstr "символ «%s» запрещён"
  2516. #: scripts/Dpkg/Package.pm:39
  2517. msgid "must start with an alphanumeric character"
  2518. msgstr "должно начинаться с латинской буквы или цифры"
  2519. #: scripts/Dpkg/Shlibs/Objdump.pm:225
  2520. #, fuzzy, perl-format
  2521. #| msgid "Couldn't parse dynamic relocation record: %s"
  2522. msgid "couldn't parse dynamic relocation record: %s"
  2523. msgstr "Не удалось проанализировать запись динамического перераспределения: %s"
  2524. #: scripts/Dpkg/Shlibs/Objdump.pm:344
  2525. #, fuzzy, perl-format
  2526. #| msgid "Couldn't parse dynamic symbol definition: %s"
  2527. msgid "couldn't parse dynamic symbol definition: %s"
  2528. msgstr "Не удалось проанализировать определение динамического символа: %s"
  2529. #: scripts/Dpkg/Shlibs/Symbol.pm:108
  2530. #, perl-format
  2531. msgid "symbol name unspecified: %s"
  2532. msgstr "не задано имя символа: %s"
  2533. #: scripts/Dpkg/Shlibs/Symbol.pm:165
  2534. #, perl-format
  2535. msgid "you can't use symver tag to catch unversioned symbols: %s"
  2536. msgstr ""
  2537. "вы не можете использовать метку symver для обнаружения неверсионных "
  2538. "символов: %s"
  2539. #: scripts/Dpkg/Shlibs/SymbolFile.pm:223
  2540. #, perl-format
  2541. msgid "symbol information must be preceded by a header (file %s, line %s)"
  2542. msgstr ""
  2543. "символьная информация должна начинаться с заголовка (файл %s, строка %s)"
  2544. #: scripts/Dpkg/Shlibs/SymbolFile.pm:231
  2545. #, fuzzy, perl-format
  2546. #| msgid "Failed to parse line in %s: %s"
  2547. msgid "failed to parse line in %s: %s"
  2548. msgstr "Не удалось проанализировать строку в %s: %s"
  2549. #: scripts/Dpkg/Shlibs/SymbolFile.pm:263
  2550. #, fuzzy, perl-format
  2551. #| msgid "Failed to parse a line in %s: %s"
  2552. msgid "failed to parse a line in %s: %s"
  2553. msgstr "Не удалось проанализировать строку в %s: %s"
  2554. #: scripts/Dpkg/Shlibs/SymbolFile.pm:276
  2555. #, perl-format
  2556. msgid "tried to merge the same object (%s) twice in a symfile"
  2557. msgstr "попытка объединить один объект (%s) дважды в файле символов"
  2558. #: scripts/Dpkg/Shlibs/SymbolFile.pm:395
  2559. msgid "cannot merge symbols from objects without SONAME"
  2560. msgstr "не удалось объединить символы из объектов без SONAME"
  2561. #: scripts/Dpkg/Source/Archive.pm:64
  2562. msgid "write on tar input"
  2563. msgstr "вызов write для ввода tar"
  2564. #: scripts/Dpkg/Source/Archive.pm:91
  2565. msgid "close on tar input"
  2566. msgstr "закрытие ввода tar"
  2567. #: scripts/Dpkg/Source/Archive.pm:116 scripts/Dpkg/Source/Patch.pm:553
  2568. #, perl-format
  2569. msgid "cannot create directory %s"
  2570. msgstr "не удалось создать каталог %s"
  2571. #: scripts/Dpkg/Source/Archive.pm:147 scripts/Dpkg/Source/Package.pm:354
  2572. #: scripts/Dpkg/Source/Package/V2.pm:202
  2573. #, perl-format
  2574. msgid "cannot opendir %s"
  2575. msgstr "не удалось выполнить opendir %s"
  2576. #: scripts/Dpkg/Source/Archive.pm:154 scripts/Dpkg/Source/Archive.pm:158
  2577. #, fuzzy, perl-format
  2578. #| msgid "Unable to rename %s to %s"
  2579. msgid "unable to rename %s to %s"
  2580. msgstr "Невозможно переименовать %s в %s"
  2581. #: scripts/Dpkg/Source/Functions.pm:34
  2582. #, perl-format
  2583. msgid "cannot stat directory %s (before removal)"
  2584. msgstr "не удалось выполнить функцию stat для каталога %s (перед удалением)"
  2585. #: scripts/Dpkg/Source/Functions.pm:40
  2586. #, perl-format
  2587. msgid "unable to check for removal of dir `%s'"
  2588. msgstr "невозможно проверить удаление каталога «%s»"
  2589. #: scripts/Dpkg/Source/Functions.pm:42
  2590. #, perl-format
  2591. msgid "rm -rf failed to remove `%s'"
  2592. msgstr "при удалении «%s» команда rm -rf завершилась неудачно"
  2593. #: scripts/Dpkg/Source/Functions.pm:83 scripts/Dpkg/Source/Patch.pm:600
  2594. #, perl-format
  2595. msgid "cannot change timestamp for %s"
  2596. msgstr "не удалось изменить метку времени для %s"
  2597. #: scripts/Dpkg/Source/Functions.pm:85
  2598. #, perl-format
  2599. msgid "cannot read timestamp from %s"
  2600. msgstr "не удалось изменить метку времени из %s"
  2601. #: scripts/Dpkg/Source/Patch.pm:71 scripts/Dpkg/Source/Package/V2.pm:494
  2602. msgid "binary file contents changed"
  2603. msgstr "содержимое двоичного файла изменено"
  2604. #: scripts/Dpkg/Source/Patch.pm:121
  2605. #, perl-format
  2606. msgid "file %s has no final newline (either original or modified version)"
  2607. msgstr ""
  2608. "файл %s не завершается символом новой строки (оригинальная или изменённая "
  2609. "версия)"
  2610. #: scripts/Dpkg/Source/Patch.pm:125
  2611. #, perl-format
  2612. msgid "unknown line from diff -u on %s: `%s'"
  2613. msgstr "неизвестная строка в выводе diff -u для %s: «%s»"
  2614. #: scripts/Dpkg/Source/Patch.pm:128 scripts/Dpkg/Source/Patch.pm:131
  2615. msgid "failed to write"
  2616. msgstr "не удалось записать"
  2617. #: scripts/Dpkg/Source/Patch.pm:141
  2618. #, perl-format
  2619. msgid "diff on %s"
  2620. msgstr "вызов diff для %s"
  2621. #: scripts/Dpkg/Source/Patch.pm:167 scripts/Dpkg/Source/Patch.pm:190
  2622. #: scripts/Dpkg/Source/Patch.pm:214 scripts/Dpkg/Source/Patch.pm:227
  2623. #, perl-format
  2624. msgid "cannot stat file %s"
  2625. msgstr "не удалось выполнить функцию stat для файла %s"
  2626. #: scripts/Dpkg/Source/Patch.pm:177 scripts/Dpkg/Source/Patch.pm:181
  2627. #, perl-format
  2628. msgid "cannot read link %s"
  2629. msgstr "не удалось прочитать ссылку %s"
  2630. #: scripts/Dpkg/Source/Patch.pm:210
  2631. msgid "device or socket is not allowed"
  2632. msgstr "устройства или сокеты не разрешены"
  2633. #: scripts/Dpkg/Source/Patch.pm:220
  2634. msgid "unknown file type"
  2635. msgstr "неизвестный тип файла"
  2636. #: scripts/Dpkg/Source/Patch.pm:233
  2637. #, fuzzy, perl-format
  2638. #| msgid "ignoring deletion of file %s"
  2639. msgid "ignoring deletion of file %s, use --include-removal to override"
  2640. msgstr "игнорируется удаление файла %s"
  2641. #: scripts/Dpkg/Source/Patch.pm:236
  2642. #, perl-format
  2643. msgid "ignoring deletion of directory %s"
  2644. msgstr "игнорируется удаление каталога %s"
  2645. #: scripts/Dpkg/Source/Patch.pm:238
  2646. #, perl-format
  2647. msgid "ignoring deletion of symlink %s"
  2648. msgstr "игнорируется удаление символьной ссылки %s"
  2649. #: scripts/Dpkg/Source/Patch.pm:283
  2650. #, perl-format
  2651. msgid "newly created empty file '%s' will not be represented in diff"
  2652. msgstr "недавно созданный пустой файл «%s» не будет включён в diff"
  2653. #: scripts/Dpkg/Source/Patch.pm:287
  2654. #, perl-format
  2655. msgid "executable mode %04o of '%s' will not be represented in diff"
  2656. msgstr "права исполнения %04o для «%s» не будут включёны в diff"
  2657. #: scripts/Dpkg/Source/Patch.pm:292
  2658. #, perl-format
  2659. msgid "special mode %04o of '%s' will not be represented in diff"
  2660. msgstr "специальные права %04o для «%s» не будут включёны в diff"
  2661. #: scripts/Dpkg/Source/Patch.pm:312 scripts/Dpkg/Source/Package/V2.pm:493
  2662. #, perl-format
  2663. msgid "cannot represent change to %s: %s"
  2664. msgstr "не удалось представить изменение %s: %s"
  2665. #: scripts/Dpkg/Source/Patch.pm:319
  2666. #, perl-format
  2667. msgid "cannot represent change to %s:"
  2668. msgstr "не удалось представить изменение %s:"
  2669. #: scripts/Dpkg/Source/Patch.pm:320
  2670. #, perl-format
  2671. msgid " new version is %s"
  2672. msgstr " новая версия %s"
  2673. #: scripts/Dpkg/Source/Patch.pm:321
  2674. #, perl-format
  2675. msgid " old version is %s"
  2676. msgstr " старая версия %s"
  2677. #: scripts/Dpkg/Source/Patch.pm:346
  2678. #, fuzzy, perl-format
  2679. #| msgid "diff `%s' patches file with name ending .dpkg-orig"
  2680. msgid "diff %s patches file with C-style encoded filename"
  2681. msgstr "файл заплаток diff «%s» с именем, оканчивающимся на .dpkg-orig"
  2682. #: scripts/Dpkg/Source/Patch.pm:424
  2683. #, perl-format
  2684. msgid "expected ^--- in line %d of diff `%s'"
  2685. msgstr "ожидается ^--- в строке %d в diff «%s»"
  2686. #: scripts/Dpkg/Source/Patch.pm:431
  2687. #, perl-format
  2688. msgid "diff `%s' patches file with name ending .dpkg-orig"
  2689. msgstr "файл заплаток diff «%s» с именем, оканчивающимся на .dpkg-orig"
  2690. #: scripts/Dpkg/Source/Patch.pm:436
  2691. #, perl-format
  2692. msgid "diff `%s' finishes in middle of ---/+++ (line %d)"
  2693. msgstr "diff «%s» завершился в середине ---/+++ (строка %d)"
  2694. #: scripts/Dpkg/Source/Patch.pm:439
  2695. #, perl-format
  2696. msgid "line after --- isn't as expected in diff `%s' (line %d)"
  2697. msgstr "строка после --- не та, что ожидалась в diff «%s» (строка %d)"
  2698. #: scripts/Dpkg/Source/Patch.pm:447
  2699. #, perl-format
  2700. msgid "none of the filenames in ---/+++ are valid in diff '%s' (line %d)"
  2701. msgstr "все имена файлов в ---/+++ некорректны в diff «%s» (строка %d)"
  2702. #: scripts/Dpkg/Source/Patch.pm:455 scripts/Dpkg/Source/Quilt.pm:342
  2703. #, perl-format
  2704. msgid "%s contains an insecure path: %s"
  2705. msgstr "%s содержит небезопасный путь: %s"
  2706. #: scripts/Dpkg/Source/Patch.pm:460
  2707. #, perl-format
  2708. msgid "diff %s modifies file %s through a symlink: %s"
  2709. msgstr "diff %s изменяет файл %s через символьную ссылку: %s"
  2710. #: scripts/Dpkg/Source/Patch.pm:469
  2711. #, perl-format
  2712. msgid "original and modified files are /dev/null in diff `%s' (line %d)"
  2713. msgstr ""
  2714. "оригинальный и изменённый файлы равны /dev/null для diff «%s» (строка %d)"
  2715. #: scripts/Dpkg/Source/Patch.pm:472
  2716. #, perl-format
  2717. msgid "file removal without proper filename in diff `%s' (line %d)"
  2718. msgstr "удаление файла без правильного имени файла в diff «%s» (строка %d)"
  2719. #: scripts/Dpkg/Source/Patch.pm:475
  2720. #, perl-format
  2721. msgid "diff %s removes a non-existing file %s (line %d)"
  2722. msgstr "diff %s удаляет несуществующий файл %s (строка %d)"
  2723. #: scripts/Dpkg/Source/Patch.pm:487
  2724. #, perl-format
  2725. msgid "diff `%s' patches something which is not a plain file"
  2726. msgstr "diff «%s» латает что-то не являющееся простым файлом"
  2727. #: scripts/Dpkg/Source/Patch.pm:491
  2728. #, perl-format
  2729. msgid "diff `%s' patches file %s twice"
  2730. msgstr "diff «%s» латает файл %s дважды"
  2731. #: scripts/Dpkg/Source/Patch.pm:509 scripts/Dpkg/Source/Patch.pm:513
  2732. #, perl-format
  2733. msgid "unexpected end of diff `%s'"
  2734. msgstr "неожиданный конец diff «%s»"
  2735. #: scripts/Dpkg/Source/Patch.pm:526
  2736. #, perl-format
  2737. msgid "expected [ +-] at start of line %d of diff `%s'"
  2738. msgstr "ожидается [ +-] в начале строки %d в diff «%s»"
  2739. #: scripts/Dpkg/Source/Patch.pm:533
  2740. #, perl-format
  2741. msgid "expected ^@@ at line %d of diff `%s'"
  2742. msgstr "ожидается ^@@ в строке %d в diff «%s»"
  2743. #: scripts/Dpkg/Source/Patch.pm:538
  2744. #, perl-format
  2745. msgid "diff `%s' doesn't contain any patch"
  2746. msgstr "diff «%s» не содержит заплатки"
  2747. #: scripts/Dpkg/Source/Patch.pm:604
  2748. #, perl-format
  2749. msgid "remove patch backup file %s"
  2750. msgstr "удаление резервной копии заплатки %s"
  2751. #: scripts/Dpkg/Source/Patch.pm:644
  2752. msgid "nonexistent"
  2753. msgstr "несуществующий"
  2754. #: scripts/Dpkg/Source/Patch.pm:645 scripts/Dpkg/Source/Package.pm:516
  2755. #, perl-format
  2756. msgid "cannot stat %s"
  2757. msgstr "не удалось выполнить функцию stat %s"
  2758. #: scripts/Dpkg/Source/Patch.pm:647
  2759. msgid "plain file"
  2760. msgstr "простой файл"
  2761. #: scripts/Dpkg/Source/Patch.pm:648
  2762. msgid "directory"
  2763. msgstr "каталог"
  2764. #: scripts/Dpkg/Source/Patch.pm:649
  2765. #, perl-format
  2766. msgid "symlink to %s"
  2767. msgstr "символьная ссылка на %s"
  2768. #: scripts/Dpkg/Source/Patch.pm:650
  2769. msgid "block device"
  2770. msgstr "блочное устройство"
  2771. #: scripts/Dpkg/Source/Patch.pm:651
  2772. msgid "character device"
  2773. msgstr "символьное устройство"
  2774. #: scripts/Dpkg/Source/Patch.pm:652
  2775. msgid "named pipe"
  2776. msgstr "именованный канал"
  2777. #: scripts/Dpkg/Source/Patch.pm:653
  2778. msgid "named socket"
  2779. msgstr "именованный сокет"
  2780. #: scripts/Dpkg/Source/Package.pm:240
  2781. #, perl-format
  2782. msgid "%s is not the name of a file"
  2783. msgstr "%s не является именем файла"
  2784. #: scripts/Dpkg/Source/Package.pm:252
  2785. #, perl-format
  2786. msgid "missing critical source control field %s"
  2787. msgstr "отсутствует критическое управляющее поле исходников %s"
  2788. #: scripts/Dpkg/Source/Package.pm:271 scripts/Dpkg/Source/Package.pm:285
  2789. #, perl-format
  2790. msgid "source package format '%s' is not supported: %s"
  2791. msgstr "формат пакета с исходным кодом «%s» не поддерживается: %s"
  2792. #: scripts/Dpkg/Source/Package.pm:272
  2793. msgid "format variant must be in lowercase"
  2794. msgstr ""
  2795. #: scripts/Dpkg/Source/Package.pm:290
  2796. #, perl-format
  2797. msgid "invalid Format field `%s'"
  2798. msgstr "неправильное поле Format «%s»"
  2799. #: scripts/Dpkg/Source/Package.pm:338
  2800. msgid "source and version are required to compute the source basename"
  2801. msgstr "для определения базового имени исходника требуется исходник и версия"
  2802. #: scripts/Dpkg/Source/Package.pm:423 scripts/Dpkg/Source/Package.pm:425
  2803. #, perl-format
  2804. msgid "failed to verify signature on %s"
  2805. msgstr "проверка подписи для %s завершилась неудачно"
  2806. #: scripts/Dpkg/Source/Package.pm:432 scripts/Dpkg/Source/Package.pm:434
  2807. #, perl-format
  2808. msgid "could not verify signature on %s since gpg isn't installed"
  2809. msgstr "невозможно проверить подпись для %s, так как gpg не установлена"
  2810. #: scripts/Dpkg/Source/Package.pm:443
  2811. #, perl-format
  2812. msgid "%s is not a valid option for %s"
  2813. msgstr "%s не является допустимым параметром для %s"
  2814. #: scripts/Dpkg/Source/Package.pm:518
  2815. #, perl-format
  2816. msgid "%s does not exist"
  2817. msgstr "%s не существует"
  2818. #: scripts/Dpkg/Source/Package.pm:522
  2819. #, perl-format
  2820. msgid "cannot make %s executable"
  2821. msgstr "не удалось сделать %s исполняемым"
  2822. #: scripts/Dpkg/Source/Package.pm:524
  2823. #, perl-format
  2824. msgid "%s is not a plain file"
  2825. msgstr "%s не является простым файлом"
  2826. #: scripts/Dpkg/Source/Package.pm:584
  2827. #, perl-format
  2828. msgid "'%s' is not supported by the source format '%s'"
  2829. msgstr "«%s» не поддерживается форматом исходника %s"
  2830. #: scripts/Dpkg/Source/Package/V1.pm:69
  2831. #, perl-format
  2832. msgid "-s%s option overrides earlier -s%s option"
  2833. msgstr "параметр -s%s заменит ранее указанный параметр -s%s"
  2834. #: scripts/Dpkg/Source/Package/V1.pm:94
  2835. #, perl-format
  2836. msgid "source handling style -s%s not allowed with -x"
  2837. msgstr "указывать обработчик исходников -s%s не разрешено вместе с -x"
  2838. #: scripts/Dpkg/Source/Package/V1.pm:107
  2839. #: scripts/Dpkg/Source/Package/V3/Native.pm:53
  2840. msgid "multiple tarfiles in v1.0 source package"
  2841. msgstr "несколько tar-файлов в пакете с исходным кодом версии v1.0"
  2842. #: scripts/Dpkg/Source/Package/V1.pm:112 scripts/Dpkg/Source/Package/V2.pm:132
  2843. #, perl-format
  2844. msgid "unrecognized file for a %s source package: %s"
  2845. msgstr "нераспознанный файл в пакете с исходным кодом %s: %s"
  2846. #: scripts/Dpkg/Source/Package/V1.pm:117
  2847. #: scripts/Dpkg/Source/Package/V3/Native.pm:60
  2848. msgid "no tarfile in Files field"
  2849. msgstr "нет tar-файла в поле Files"
  2850. #: scripts/Dpkg/Source/Package/V1.pm:120
  2851. msgid "native package with .orig.tar"
  2852. msgstr "родной пакет с .orig.tar"
  2853. #: scripts/Dpkg/Source/Package/V1.pm:133
  2854. #, perl-format
  2855. msgid "unable to rename `%s' to `%s'"
  2856. msgstr "невозможно переименовать «%s» в «%s»"
  2857. #: scripts/Dpkg/Source/Package/V1.pm:137 scripts/Dpkg/Source/Package/V2.pm:144
  2858. #: scripts/Dpkg/Source/Package/V2.pm:156 scripts/Dpkg/Source/Package/V2.pm:169
  2859. #: scripts/Dpkg/Source/Package/V3/Bzr.pm:195
  2860. #: scripts/Dpkg/Source/Package/V3/Native.pm:63
  2861. #, perl-format
  2862. msgid "unpacking %s"
  2863. msgstr "распаковывается %s"
  2864. #: scripts/Dpkg/Source/Package/V1.pm:144
  2865. msgid "unable to keep orig directory (already exists)"
  2866. msgstr "невозможно сохранить orig каталог (уже существует)"
  2867. #: scripts/Dpkg/Source/Package/V1.pm:151
  2868. #, perl-format
  2869. msgid "failed to rename newly-extracted %s to %s"
  2870. msgstr "отказ при переименовании только что извлечённого %s в %s"
  2871. #: scripts/Dpkg/Source/Package/V1.pm:157
  2872. #, perl-format
  2873. msgid "failed to rename saved %s to %s"
  2874. msgstr "отказ при переименовании сохранённого %s в %s"
  2875. #: scripts/Dpkg/Source/Package/V1.pm:164 scripts/Dpkg/Source/Package/V2.pm:226
  2876. #: scripts/Dpkg/Source/Quilt.pm:176
  2877. #, perl-format
  2878. msgid "applying %s"
  2879. msgstr "накладывается %s"
  2880. #: scripts/Dpkg/Source/Package/V1.pm:169
  2881. #, perl-format
  2882. msgid "upstream files that have been modified: %s"
  2883. msgstr "авторские файлы были изменены: %s"
  2884. #: scripts/Dpkg/Source/Package/V1.pm:179
  2885. msgid "only supports gzip compression"
  2886. msgstr "поддерживается только метод сжатия gzip"
  2887. #: scripts/Dpkg/Source/Package/V1.pm:192
  2888. msgid ""
  2889. "-b takes at most a directory and an orig source argument (with v1.0 source "
  2890. "package)"
  2891. msgstr ""
  2892. "значением параметра -b является только каталог и orig исходник (для "
  2893. "исходника пакета v1.0)"
  2894. #: scripts/Dpkg/Source/Package/V1.pm:198
  2895. #, perl-format
  2896. msgid "source handling style -s%s not allowed with -b"
  2897. msgstr "тип работы с исходниками -s%s нельзя указывать вместе с -b"
  2898. #: scripts/Dpkg/Source/Package/V1.pm:213
  2899. #, perl-format
  2900. msgid "packed orig `%s' exists but is not a plain file"
  2901. msgstr "упакованный orig «%s» существует, но не является простым файлом"
  2902. #: scripts/Dpkg/Source/Package/V1.pm:225
  2903. #, perl-format
  2904. msgid "cannot stat orig argument %s"
  2905. msgstr "не удалось выполнить функцию stat для orig параметра %s"
  2906. #: scripts/Dpkg/Source/Package/V1.pm:231
  2907. #, perl-format
  2908. msgid ""
  2909. "orig argument is unpacked but source handling style -s%s calls for packed (."
  2910. "orig.tar.<ext>)"
  2911. msgstr ""
  2912. "orig параметр распакован, но вызываются методы -s%s как для упакованных "
  2913. "исходников (.orig.tar.<расш>)"
  2914. #: scripts/Dpkg/Source/Package/V1.pm:239
  2915. #, perl-format
  2916. msgid ""
  2917. "orig argument is packed but source handling style -s%s calls for unpacked (."
  2918. "orig/)"
  2919. msgstr ""
  2920. "orig параметр упакован, но вызываются методы -s%s как для распакованных "
  2921. "исходников (.orig/)"
  2922. #: scripts/Dpkg/Source/Package/V1.pm:244
  2923. #, perl-format
  2924. msgid "orig argument %s is not a plain file or directory"
  2925. msgstr "orig параметр %s не является обычным файлом или каталогом"
  2926. #: scripts/Dpkg/Source/Package/V1.pm:250
  2927. #, perl-format
  2928. msgid ""
  2929. "orig argument is empty (means no orig, no diff) but source handling style -s"
  2930. "%s wants something"
  2931. msgstr ""
  2932. "orig параметр пуст (то есть не orig и не diff), но указана команда что-то "
  2933. "сделать -s%s"
  2934. #: scripts/Dpkg/Source/Package/V1.pm:264
  2935. #, perl-format
  2936. msgid "unpacked orig `%s' exists but is not a directory"
  2937. msgstr "существует распакованный orig «%s», но не является каталогом"
  2938. #: scripts/Dpkg/Source/Package/V1.pm:269
  2939. #, perl-format
  2940. msgid "unable to stat putative unpacked orig `%s'"
  2941. msgstr ""
  2942. "невозможно выполнить функцию stat для предполагаемого распакованного orig "
  2943. "«%s»"
  2944. #: scripts/Dpkg/Source/Package/V1.pm:278
  2945. #, perl-format
  2946. msgid "source directory '%s' is not <sourcepackage>-<upstreamversion> '%s'"
  2947. msgstr ""
  2948. "каталог исходников «%s» не в виде <пакет исходников>-<оригинальная версия> "
  2949. "«%s»"
  2950. #: scripts/Dpkg/Source/Package/V1.pm:287
  2951. #, perl-format
  2952. msgid ".orig directory name %s is not <package>-<upstreamversion> (wanted %s)"
  2953. msgstr ""
  2954. "имя каталога .orig %s не в виде <пакет>-<оригинальная версия> (требуется %s)"
  2955. #: scripts/Dpkg/Source/Package/V1.pm:296
  2956. #, perl-format
  2957. msgid ""
  2958. ".orig.tar name %s is not <package>_<upstreamversion>.orig.tar (wanted %s)"
  2959. msgstr ""
  2960. "имя .orig.tar %s не в виде <пакет>_<оригинальная версия>.orig.tar (требуется "
  2961. "%s)"
  2962. #: scripts/Dpkg/Source/Package/V1.pm:308
  2963. #, perl-format
  2964. msgid ""
  2965. "tarfile `%s' already exists, not overwriting, giving up; use -sU or -sR to "
  2966. "override"
  2967. msgstr ""
  2968. "tar-файл «%s» уже существует, не перезаписывается, останов; используйте -sU "
  2969. "или -sR для перезаписи"
  2970. #: scripts/Dpkg/Source/Package/V1.pm:312
  2971. #, perl-format
  2972. msgid "unable to check for existence of `%s'"
  2973. msgstr "невозможно проверить существование «%s»"
  2974. #: scripts/Dpkg/Source/Package/V1.pm:327 scripts/Dpkg/Source/Package/V1.pm:390
  2975. #: scripts/Dpkg/Source/Package/V3/Native.pm:106
  2976. #, perl-format
  2977. msgid "unable to rename `%s' (newly created) to `%s'"
  2978. msgstr "невозможно переименовать «%s» (недавно созданный) в «%s»"
  2979. #: scripts/Dpkg/Source/Package/V1.pm:330 scripts/Dpkg/Source/Package/V1.pm:393
  2980. #: scripts/Dpkg/Source/Package/V2.pm:596
  2981. #: scripts/Dpkg/Source/Package/V3/Native.pm:110
  2982. #: scripts/Dpkg/Source/Package/V3/Quilt.pm:234
  2983. #: scripts/Dpkg/Source/Quilt.pm:378
  2984. #, perl-format
  2985. msgid "unable to change permission of `%s'"
  2986. msgstr "невозможно изменить права «%s»"
  2987. #: scripts/Dpkg/Source/Package/V1.pm:332 scripts/Dpkg/Source/Package/V2.pm:356
  2988. #, perl-format
  2989. msgid "building %s using existing %s"
  2990. msgstr "сборка %s с использованием существующего %s"
  2991. #: scripts/Dpkg/Source/Package/V1.pm:341
  2992. #, perl-format
  2993. msgid ""
  2994. "orig dir `%s' already exists, not overwriting, giving up; use -sA, -sK or -"
  2995. "sP to override"
  2996. msgstr ""
  2997. "каталог orig «%s» уже существует, не перезаписан, останов; используйте -sA, -"
  2998. "sK или -sP для перезаписи"
  2999. #: scripts/Dpkg/Source/Package/V1.pm:349
  3000. #, perl-format
  3001. msgid "unable to check for existence of orig dir `%s'"
  3002. msgstr "невозможно проверить существование orig каталога «%s»"
  3003. #: scripts/Dpkg/Source/Package/V1.pm:381
  3004. #, perl-format
  3005. msgid "the diff modifies the following upstream files: %s"
  3006. msgstr "diff изменяет следующие авторские файлы: %s"
  3007. #: scripts/Dpkg/Source/Package/V1.pm:383
  3008. msgid ""
  3009. "use the '3.0 (quilt)' format to have separate and documented changes to "
  3010. "upstream files, see dpkg-source(1)"
  3011. msgstr ""
  3012. "используется формат «3.0 (quilt)» для разделения и описания изменений "
  3013. "авторских файлов, см dpkg-source(1)"
  3014. #: scripts/Dpkg/Source/Package/V1.pm:385
  3015. msgid "aborting due to --abort-on-upstream-changes"
  3016. msgstr "прерывание работы из-за --abort-on-upstream-changes"
  3017. #: scripts/Dpkg/Source/Package/V1.pm:403
  3018. #, perl-format
  3019. msgid "%s: unrepresentable changes to source"
  3020. msgstr "%s: нехарактерные изменения в исходнике"
  3021. #: scripts/Dpkg/Source/Package/V2.pm:122
  3022. #, perl-format
  3023. msgid "duplicate files in %s source package: %s.*"
  3024. msgstr "повторение файла в пакете с исходным кодом %s: %s.*"
  3025. #: scripts/Dpkg/Source/Package/V2.pm:138
  3026. msgid "missing orig.tar or debian.tar file in v2.0 source package"
  3027. msgstr ""
  3028. "отсутствует файл orig.tar или debian.tar в пакете с исходным кодом версии "
  3029. "v2.0"
  3030. #: scripts/Dpkg/Source/Package/V2.pm:158
  3031. #, perl-format
  3032. msgid "required removal of `%s' installed by original tarball"
  3033. msgstr "требуется удаление «%s», установленного из оригинального tarball"
  3034. #: scripts/Dpkg/Source/Package/V2.pm:244 scripts/Dpkg/Source/Quilt.pm:206
  3035. #, perl-format
  3036. msgid "unapplying %s"
  3037. msgstr "отмена наложений на %s"
  3038. #: scripts/Dpkg/Source/Package/V2.pm:267 scripts/Dpkg/Source/Package/V2.pm:352
  3039. #, perl-format
  3040. msgid "no upstream tarball found at %s"
  3041. msgstr "авторский tarball не найден в %s"
  3042. #: scripts/Dpkg/Source/Package/V2.pm:321
  3043. msgid "patches are not applied, applying them now"
  3044. msgstr "заплаты не были наложены, делаем это сейчас"
  3045. #: scripts/Dpkg/Source/Package/V2.pm:339
  3046. #, perl-format
  3047. msgid "several orig.tar files found (%s and %s) but only one is allowed"
  3048. msgstr "найдено несколько файлов orig.tar (%s и %s), но может быть только один"
  3049. #: scripts/Dpkg/Source/Package/V2.pm:378
  3050. msgid "copy of the debian directory"
  3051. msgstr "копирование каталога debian"
  3052. #: scripts/Dpkg/Source/Package/V2.pm:403
  3053. msgid "unrepresentable changes to source"
  3054. msgstr "нехарактерные изменения в исходнике"
  3055. #: scripts/Dpkg/Source/Package/V2.pm:406
  3056. msgid "local changes detected, the modified files are:"
  3057. msgstr "обнаружены локальные изменения, изменённые файлы:"
  3058. #: scripts/Dpkg/Source/Package/V2.pm:425
  3059. #: scripts/Dpkg/Source/Package/V3/Bzr.pm:100
  3060. #: scripts/Dpkg/Source/Package/V3/Native.pm:84
  3061. #, perl-format
  3062. msgid "-b takes only one parameter with format `%s'"
  3063. msgstr "значением параметра -b является только один аргумент в формате «%s»"
  3064. #: scripts/Dpkg/Source/Package/V2.pm:444
  3065. #, perl-format
  3066. msgid "unwanted binary file: %s"
  3067. msgstr "нежелательный двоичный файл: %s"
  3068. #: scripts/Dpkg/Source/Package/V2.pm:479
  3069. #, perl-format
  3070. msgid ""
  3071. "detected %d unwanted binary file (add it in debian/source/include-binaries "
  3072. "to allow its inclusion)."
  3073. msgid_plural ""
  3074. "detected %d unwanted binary files (add them in debian/source/include-"
  3075. "binaries to allow their inclusion)."
  3076. msgstr[0] ""
  3077. "обнаружен %d нежелательный двоичный файл (чтобы разрешить включение, "
  3078. "добавьте его в debian/source/include-binaries)."
  3079. msgstr[1] ""
  3080. "обнаружено %d нежелательных двоичных файла (чтобы разрешить включение, "
  3081. "добавьте их в debian/source/include-binaries)."
  3082. msgstr[2] ""
  3083. "обнаружено %d нежелательных двоичных файлов (чтобы разрешить включение, "
  3084. "добавьте их в debian/source/include-binaries)."
  3085. #: scripts/Dpkg/Source/Package/V2.pm:495
  3086. #, perl-format
  3087. msgid ""
  3088. "add %s in debian/source/include-binaries if you want to store the modified "
  3089. "binary in the debian tarball"
  3090. msgstr ""
  3091. "добавьте %s в debian/source/include-binaries, если хотите хранить изменённый "
  3092. "двоичный файл в debian tarball"
  3093. #: scripts/Dpkg/Source/Package/V2.pm:511
  3094. #, perl-format
  3095. msgid "you can integrate the local changes with %s"
  3096. msgstr "вы можете встроить локальные изменения в %s"
  3097. #: scripts/Dpkg/Source/Package/V2.pm:513
  3098. #, perl-format
  3099. msgid "aborting due to unexpected upstream changes, see %s"
  3100. msgstr ""
  3101. "прерывание работы из-за неожиданных изменений авторского кода, смотрите %s"
  3102. #: scripts/Dpkg/Source/Package/V2.pm:524 scripts/Dpkg/Source/Package/V2.pm:674
  3103. #, perl-format
  3104. msgid "local changes have been recorded in a new patch: %s"
  3105. msgstr "локальные изменения были записаны в новую заплату: %s"
  3106. #: scripts/Dpkg/Source/Package/V2.pm:528 scripts/Dpkg/Source/Package/V2.pm:603
  3107. #: scripts/Dpkg/Source/Package/V2.pm:650 scripts/Dpkg/Source/Package/V2.pm:672
  3108. #: scripts/Dpkg/Source/Package/V3/Quilt.pm:236
  3109. #, perl-format
  3110. msgid "cannot remove %s"
  3111. msgstr "не удалось удалить %s"
  3112. #: scripts/Dpkg/Source/Package/V2.pm:594
  3113. #: scripts/Dpkg/Source/Package/V3/Quilt.pm:232
  3114. #: scripts/Dpkg/Source/Quilt.pm:376
  3115. #, perl-format
  3116. msgid "failed to copy %s to %s"
  3117. msgstr "копирование %s в %s завершилось с ошибкой"
  3118. #: scripts/Dpkg/Source/Package/V2.pm:616
  3119. #, perl-format
  3120. msgid "cannot register changes in %s, this patch already exists"
  3121. msgstr ""
  3122. "невозможно зарегистрировать изменения в %s, такая заплата уже существует"
  3123. #: scripts/Dpkg/Source/Package/V2.pm:633
  3124. #, perl-format
  3125. msgid "patch file '%s' doesn't exist"
  3126. msgstr "файл заплаты «%s» не существует"
  3127. #: scripts/Dpkg/Source/Package/V2.pm:651
  3128. msgid "there are no local changes to record"
  3129. msgstr "нет локальных изменений для записи"
  3130. #: scripts/Dpkg/Source/Package/V2.pm:656
  3131. msgid "Enter the desired patch name: "
  3132. msgstr "Введите желаемое имя заплаты:"
  3133. #: scripts/Dpkg/Source/Package/V2.pm:668
  3134. #, fuzzy
  3135. #| msgid "cannot find '%s'"
  3136. msgid "cannot find an editor"
  3137. msgstr "не удалось найти «%s»"
  3138. #: scripts/Dpkg/Source/Package/V2.pm:739
  3139. #, perl-format
  3140. msgid "adding %s to %s"
  3141. msgstr "добавляется %s в %s"
  3142. #: scripts/Dpkg/Source/Package/V3/Bzr.pm:52
  3143. msgid "cannot unpack bzr-format source package because bzr is not in the PATH"
  3144. msgstr ""
  3145. "невозможно распаковать пакет с исходным кодом в формате bzr, так как bzr "
  3146. "отсутствует в PATH"
  3147. #: scripts/Dpkg/Source/Package/V3/Bzr.pm:60
  3148. #, perl-format
  3149. msgid ""
  3150. "source directory is not the top directory of a bzr repository (%s/.bzr not "
  3151. "present), but Format bzr was specified"
  3152. msgstr ""
  3153. "исходный каталог не является начальным каталогом репозитория bzr (нет %s/."
  3154. "bzr), но указан Format bzr"
  3155. #: scripts/Dpkg/Source/Package/V3/Bzr.pm:67
  3156. #, perl-format
  3157. msgid "%s is a symlink"
  3158. msgstr "%s является символьной ссылкой"
  3159. #: scripts/Dpkg/Source/Package/V3/Bzr.pm:73
  3160. #, perl-format
  3161. msgid "%s is a symlink to outside %s"
  3162. msgstr "%s является символьной ссылкой вовне %s"
  3163. #: scripts/Dpkg/Source/Package/V3/Bzr.pm:85
  3164. msgid "doesn't contain a bzr repository"
  3165. msgstr "не содержит репозитория bzr"
  3166. #: scripts/Dpkg/Source/Package/V3/Bzr.pm:131
  3167. msgid "bzr status exited nonzero"
  3168. msgstr "команда bzr status завершилась с ненулевым кодом выхода"
  3169. #: scripts/Dpkg/Source/Package/V3/Bzr.pm:133
  3170. #: scripts/Dpkg/Source/Package/V3/Git.pm:137
  3171. #, perl-format
  3172. msgid "uncommitted, not-ignored changes in working directory: %s"
  3173. msgstr ""
  3174. "не сохранено в главный репозиторий, неигнорируемые изменения в рабочем "
  3175. "каталоге: %s"
  3176. #: scripts/Dpkg/Source/Package/V3/Bzr.pm:183
  3177. msgid "format v3.0 uses only one source file"
  3178. msgstr "формат v3.0 используется только в файле исходнике"
  3179. #: scripts/Dpkg/Source/Package/V3/Bzr.pm:188
  3180. #, perl-format
  3181. msgid "expected %s, got %s"
  3182. msgstr "ожидалось %s, получено %s"
  3183. #: scripts/Dpkg/Source/Package/V3/Custom.pm:40
  3184. msgid "Format `3.0 (custom)' is only used to create source packages"
  3185. msgstr ""
  3186. "Формат «3.0 (custom)» используется только для создания пакетов с исходным "
  3187. "кодом"
  3188. #: scripts/Dpkg/Source/Package/V3/Custom.pm:46
  3189. msgid "no files indicated on command line"
  3190. msgstr "нет файлов, указанных в командной строке"
  3191. #: scripts/Dpkg/Source/Package/V3/Custom.pm:55
  3192. msgid "--target-format option is missing"
  3193. msgstr "отсутствует параметр --target-format"
  3194. #: scripts/Dpkg/Source/Package/V3/Native.pm:56
  3195. #, perl-format
  3196. msgid "unrecognized file for a native source package: %s"
  3197. msgstr "нераспознанный файл для родного пакета с исходным кодом: %s"
  3198. #: scripts/Dpkg/Source/Package/V3/Native.pm:72
  3199. msgid "native package version may not have a revision"
  3200. msgstr ""
  3201. #: scripts/Dpkg/Source/Package/V3/Git.pm:55
  3202. msgid "cannot unpack git-format source package because git is not in the PATH"
  3203. msgstr ""
  3204. "невозможно распаковать пакет с исходным кодом в формате git, так как git "
  3205. "отсутствует в PATH"
  3206. #: scripts/Dpkg/Source/Package/V3/Git.pm:63
  3207. #, perl-format
  3208. msgid ""
  3209. "source directory is not the top directory of a git repository (%s/.git not "
  3210. "present), but Format git was specified"
  3211. msgstr ""
  3212. "исходный каталог не является начальным каталогом репозитория git (нет %s/."
  3213. "git), но указан Format git"
  3214. #: scripts/Dpkg/Source/Package/V3/Git.pm:68
  3215. #, perl-format
  3216. msgid "git repository %s uses submodules; this is not yet supported"
  3217. msgstr ""
  3218. "в репозитории git %s используются субмодули; это пока не поддерживается"
  3219. #: scripts/Dpkg/Source/Package/V3/Git.pm:91
  3220. msgid "doesn't contain a git repository"
  3221. msgstr "не содержит репозитория git"
  3222. #: scripts/Dpkg/Source/Package/V3/Git.pm:135
  3223. msgid "git ls-files exited nonzero"
  3224. msgstr "команда git ls-files завершилась с ненулевым кодом выхода"
  3225. #: scripts/Dpkg/Source/Package/V3/Git.pm:152
  3226. #, perl-format
  3227. msgid "creating shallow clone with depth %s"
  3228. msgstr "создаётся поверхностный клон с глубиной %s"
  3229. #: scripts/Dpkg/Source/Package/V3/Git.pm:168
  3230. #, perl-format
  3231. msgid "bundling: %s"
  3232. msgstr "увязывание: %s"
  3233. #: scripts/Dpkg/Source/Package/V3/Git.pm:203
  3234. msgid "format v3.0 (git) uses only one .git file"
  3235. msgstr "в формате v3.0 (git) используется только файл .git"
  3236. #: scripts/Dpkg/Source/Package/V3/Git.pm:209
  3237. msgid "format v3.0 (git) uses only one .gitshallow file"
  3238. msgstr "в формате v3.0 (git) используется только файл .gitshallow"
  3239. #: scripts/Dpkg/Source/Package/V3/Git.pm:212
  3240. #, perl-format
  3241. msgid "format v3.0 (git) unknown file: %s"
  3242. msgstr "неизвестный файл для формата v3.0 (git): %s"
  3243. #: scripts/Dpkg/Source/Package/V3/Git.pm:216
  3244. #, perl-format
  3245. msgid "format v3.0 (git) expected %s"
  3246. msgstr "согласно формату v3.0 (git) ожидается %s"
  3247. #: scripts/Dpkg/Source/Package/V3/Git.pm:222
  3248. #, perl-format
  3249. msgid "cloning %s"
  3250. msgstr "клонируется %s"
  3251. #: scripts/Dpkg/Source/Package/V3/Git.pm:229
  3252. msgid "setting up shallow clone"
  3253. msgstr "настройка поверхностного клона"
  3254. #: scripts/Dpkg/Source/Package/V3/Quilt.pm:77
  3255. #, fuzzy
  3256. #| msgid "doesn't contain a bzr repository"
  3257. msgid "non-native package version does not contain a revision"
  3258. msgstr "не содержит репозитория bzr"
  3259. #: scripts/Dpkg/Source/Package/V3/Quilt.pm:120
  3260. #, perl-format
  3261. msgid "can't create symlink %s"
  3262. msgstr "не удалось создать символьную ссылку %s"
  3263. #: scripts/Dpkg/Source/Package/V3/Quilt.pm:190
  3264. #: scripts/Dpkg/Source/Package/V3/Quilt.pm:192
  3265. #, perl-format
  3266. msgid "unsupported version of the quilt metadata: %s"
  3267. msgstr "неподдерживаемая версия метаданных quilt: %s"
  3268. #: scripts/Dpkg/Source/Quilt.pm:55
  3269. #, perl-format
  3270. msgid "cannot mkdir %s"
  3271. msgstr "не удалось выполнить mkdir %s"
  3272. #: scripts/Dpkg/Source/Quilt.pm:186
  3273. msgid "the patch has fuzz which is not allowed, or is malformed"
  3274. msgstr ""
  3275. #: scripts/Dpkg/Source/Quilt.pm:187
  3276. #, perl-format
  3277. msgid "if patch '%s' is correctly applied by quilt, use '%s' to update it"
  3278. msgstr ""
  3279. "если заплата «%s» корректно накладывается quilt, используйте «%s» для её "
  3280. "обновления"
  3281. #: scripts/Dpkg/Source/Quilt.pm:245
  3282. #, perl-format
  3283. msgid "%s should be a directory or non-existing"
  3284. msgstr "%s должен быть каталогом или не существовать"
  3285. #: scripts/Dpkg/Source/Quilt.pm:249
  3286. #, perl-format
  3287. msgid "%s should be a file or non-existing"
  3288. msgstr "%s должен быть файлом или не существовать"
  3289. #: scripts/Dpkg/Source/Quilt.pm:335
  3290. #, perl-format
  3291. msgid ""
  3292. "the series file (%s) contains unsupported options ('%s', line %s); dpkg-"
  3293. "source might fail when applying patches"
  3294. msgstr ""
  3295. "файл series (%s) содержит неподдерживаемые параметры («%s», строка %s), у "
  3296. "dpkg-source может не получиться наложить заплаты"
  3297. #: scripts/Dpkg/Source/Quilt.pm:364
  3298. #, perl-format
  3299. msgid "restoring quilt backup files for %s"
  3300. msgstr "восстановление резервных копий файлов quilt для %s"
  3301. #: scripts/Dpkg/Substvars.pm:206
  3302. #, perl-format
  3303. msgid "bad line in substvars file %s at line %d"
  3304. msgstr "неправильная строка в файле подстановок %s у строки %d"
  3305. #: scripts/Dpkg/Substvars.pm:283
  3306. #, perl-format
  3307. msgid "too many substitutions - recursive ? - in `%s'"
  3308. msgstr "слишком много подстановок (рекурсия?) в «%s»"
  3309. #: scripts/Dpkg/Substvars.pm:293
  3310. #, fuzzy, perl-format
  3311. #| msgid "unused substitution variable ${%s}"
  3312. msgid "deprecated substitution variable ${%s}"
  3313. msgstr "неиспользуемая подстановочная переменная ${%s}"
  3314. #: scripts/Dpkg/Substvars.pm:296
  3315. #, perl-format
  3316. msgid "unknown substitution variable ${%s}"
  3317. msgstr "неизвестная подстановочная переменная ${%s}"
  3318. #: scripts/Dpkg/Substvars.pm:320
  3319. #, perl-format
  3320. msgid "unused substitution variable ${%s}"
  3321. msgstr "неиспользуемая подстановочная переменная ${%s}"
  3322. #: scripts/Dpkg/Vars.pm:40
  3323. #, perl-format
  3324. msgid "source package name '%s' is illegal: %s"
  3325. msgstr "имя пакета с исходным кодом «%s» некорректно: %s"
  3326. #: scripts/Dpkg/Vars.pm:45
  3327. #, perl-format
  3328. msgid "source package has two conflicting values - %s and %s"
  3329. msgstr "пакет с исходным кодом содержит два конфликтующих значения: %s и %s"
  3330. #: scripts/Dpkg/Vendor/Debian.pm:93
  3331. #, fuzzy, perl-format
  3332. #| msgid "unknown hardening feature: %s"
  3333. msgid "unknown %s feature in %s variable: %s"
  3334. msgstr "неизвестная возможность усиления защиты: %s"
  3335. #: scripts/Dpkg/Vendor/Debian.pm:98
  3336. #, fuzzy, perl-format
  3337. #| msgid "incorrect value in hardening option of DEB_BUILD_MAINT_OPTIONS: %s"
  3338. msgid "incorrect value in %s option of %s variable: %s"
  3339. msgstr ""
  3340. "некорректное значение в параметре усиления защиты DEB_BUILD_MAINT_OPTIONS: %s"
  3341. #: scripts/Dpkg/Vendor/Debian.pm:177
  3342. #, perl-format
  3343. msgid "unknown host architecture '%s'"
  3344. msgstr "неизвестная архитектура узла «%s»"
  3345. #: scripts/Dpkg/Vendor/Ubuntu.pm:62 scripts/Dpkg/Vendor/Ubuntu.pm:64
  3346. msgid ""
  3347. "Version number suggests Ubuntu changes, but Maintainer: does not have Ubuntu "
  3348. "address"
  3349. msgstr ""
  3350. "Номер Version предполагает изменения Ubuntu, но в Maintainer: нет адреса "
  3351. "Ubuntu"
  3352. #: scripts/Dpkg/Vendor/Ubuntu.pm:68
  3353. msgid ""
  3354. "Version number suggests Ubuntu changes, but there is no XSBC-Original-"
  3355. "Maintainer field"
  3356. msgstr ""
  3357. "Номер Version предполагает изменения Ubuntu, но нет поля XSBC-Original-"
  3358. "Maintainer"
  3359. #: scripts/Dpkg/Vendor/Ubuntu.pm:126
  3360. msgid "'hardening' flag found but 'hardening-wrapper' not installed"
  3361. msgstr "найден флаг «hardening», но «hardening-wrapper» не установлен"
  3362. #: scripts/Dpkg/Vendor/Ubuntu.pm:145
  3363. #, perl-format
  3364. msgid "overriding %s in environment: %s"
  3365. msgstr "в окружении заменяется %s: %s"
  3366. #: scripts/Dpkg/Version.pm:235 scripts/Dpkg/Version.pm:237
  3367. #, perl-format
  3368. msgid "%s is not a valid version"
  3369. msgstr "%s не является допустимой версией"
  3370. #: scripts/Dpkg/Version.pm:405
  3371. msgid "version number cannot be empty"
  3372. msgstr "номер версии не может быть пустым"
  3373. #: scripts/Dpkg/Version.pm:410
  3374. msgid "version number does not start with digit"
  3375. msgstr "номер версии не может начинаться с цифры"
  3376. #: scripts/Dpkg/Version.pm:415
  3377. #, perl-format
  3378. msgid "version number contains illegal character `%s'"
  3379. msgstr "номер версии содержит недопустимый символ «%s»"
  3380. #: scripts/Dpkg/Version.pm:420
  3381. #, perl-format
  3382. msgid "epoch part of the version number is not a number: '%s'"
  3383. msgstr "часть эпохи в номере версии не является числом: «%s»"
  3384. #, fuzzy
  3385. #~| msgid ""
  3386. #~| "Options:\n"
  3387. #~| " -a<debian-arch> set current Debian architecture.\n"
  3388. #~| " -t<gnu-system> set current GNU system type.\n"
  3389. #~| " -L list valid architectures.\n"
  3390. #~| " -f force flag (override variables set in environment)."
  3391. #~ msgid ""
  3392. #~ "Options:\n"
  3393. #~ " -a<debian-arch> set current Debian architecture.\n"
  3394. #~ " -t<gnu-system> set current GNU system type.\n"
  3395. #~ " -f force flag (override variables set in environment)."
  3396. #~ msgstr ""
  3397. #~ "Параметры:\n"
  3398. #~ " -a<debian-arch> задать текущую архитектуру Debian\n"
  3399. #~ " -t<gnu-system> задать GNU тип системы\n"
  3400. #~ " -L показать список допустимых архитектур\n"
  3401. #~ " -f флаг принуждения (заменить значения переменных,\n"
  3402. #~ " установленных в окружении)"
  3403. #~ msgid ""
  3404. #~ "need a command (-x, -b, --before-build, --after-build, --print-format, --"
  3405. #~ "commit)"
  3406. #~ msgstr ""
  3407. #~ "необходима команда (-x, -b, --before-build, --after-build, --print-"
  3408. #~ "format, --commit)"
  3409. #~ msgid "only one of -x, -b or --print-format allowed, and only once"
  3410. #~ msgstr "разрешено что-то одно: -x, -b или --print-format и только один раз"
  3411. #~ msgid "binary-only upload - not including any source code"
  3412. #~ msgstr "закачка только двоичных пакетов, без пакетов исходных кодов"
  3413. #~ msgid "fuzz is not allowed when applying patches"
  3414. #~ msgstr "при наложении заплат расхождения (fuzz) запрещены"
  3415. #, fuzzy
  3416. #~| msgid "diff `%s' patches file with name ending .dpkg-orig"
  3417. #~ msgid "diff %s patches file with unknown escape sequence \\%s"
  3418. #~ msgstr "файл заплаток diff «%s» с именем, оканчивающимся на .dpkg-orig"
  3419. #~ msgid "open new files list file"
  3420. #~ msgstr "открытие нового файла со списком файлов"
  3421. #~ msgid "copy old entry to new files list file"
  3422. #~ msgstr "копирование старой записи в новый файл со списком файлов"
  3423. #~ msgid "read old files list file"
  3424. #~ msgstr "чтение старого файла со списком файлов"
  3425. #~ msgid "write new entry to new files list file"
  3426. #~ msgstr "запись новой записи в новый файл со списком файлов"
  3427. #~ msgid "close new files list file"
  3428. #~ msgstr "закрытие нового файла со списком файлов"
  3429. #~ msgid "cannot read files list file"
  3430. #~ msgstr "не удалось прочитать файл со списком файлов"
  3431. #~ msgid "duplicate files list entry for package %s (line %d)"
  3432. #~ msgstr "повторная запись в списке файлов для пакета %s (строка %d)"
  3433. #~ msgid "close old files list file"
  3434. #~ msgstr "закрытие старого файла с списком файлов"
  3435. #~ msgid "internal error"
  3436. #~ msgstr "внутренняя ошибка"
  3437. #~ msgid "fatal error occurred while parsing input"
  3438. #~ msgstr "неустранимая ошибка при анализе входных данных"
  3439. #~ msgid ""
  3440. #~ "\n"
  3441. #~ "Usage: %s [<options> ...]\n"
  3442. #~ "\n"
  3443. #~ "Options:\n"
  3444. #~ " -r<gain-root-command>\n"
  3445. #~ " command to gain root privileges (default is fakeroot).\n"
  3446. #~ " -R<rules> rules file to execute (default is debian/rules).\n"
  3447. #~ " -p<sign-command>\n"
  3448. #~ " -d do not check build dependencies and conflicts.\n"
  3449. #~ " -D check build dependencies and conflicts.\n"
  3450. #~ " -T<target> call debian/rules <target> with the proper environment\n"
  3451. #~ " --as-root ensure -T calls the target with root rights\n"
  3452. #~ " -j[<number>] specify jobs to run simultaneously } passed to debian/"
  3453. #~ "rules\n"
  3454. #~ " -k<keyid> the key to use for signing.\n"
  3455. #~ " -sgpg the sign-command is called like GPG.\n"
  3456. #~ " -spgp the sign-command is called like PGP.\n"
  3457. #~ " -us unsigned source.\n"
  3458. #~ " -uc unsigned changes.\n"
  3459. #~ " -a<arch> Debian architecture we build for (implies -d).\n"
  3460. #~ " -b binary-only, do not build source. } also passed to\n"
  3461. #~ " -B binary-only, no arch-indep files. } dpkg-genchanges\n"
  3462. #~ " -A binary-only, only arch-indep files. }\n"
  3463. #~ " -S source only, no binary files. }\n"
  3464. #~ " -F normal full build (binaries and sources).\n"
  3465. #~ " -t<system> set GNU system type. } passed to dpkg-"
  3466. #~ "architecture\n"
  3467. #~ " -v<version> changes since version <version>. }\n"
  3468. #~ " -m<maint> maintainer for package is <maint>. }\n"
  3469. #~ " -e<maint> maintainer for release is <maint>. } only passed\n"
  3470. #~ " -C<descfile> changes are described in <descfile>. } to dpkg-"
  3471. #~ "genchanges\n"
  3472. #~ " -si (default) src includes orig if new upstream. }\n"
  3473. #~ " -sa uploaded src always includes orig. }\n"
  3474. #~ " -sd uploaded src is diff and .dsc only. }\n"
  3475. #~ " -sn force Debian native source format. }\n"
  3476. #~ " -s[sAkurKUR] see dpkg-source for explanation. } only passed\n"
  3477. #~ " -z<level> compression level of source } to dpkg-"
  3478. #~ "source\n"
  3479. #~ " -Z<compressor> compression to use for source }\n"
  3480. #~ " -nc do not clean source tree (implies -b).\n"
  3481. #~ " -tc clean source tree when finished.\n"
  3482. #~ " -ap add pause before starting signature process.\n"
  3483. #~ " -i[<regex>] ignore diffs of files matching regex. } only passed\n"
  3484. #~ " -I[<pattern>] filter out files when building tarballs. } to dpkg-"
  3485. #~ "source\n"
  3486. #~ " --source-option=<opt>\n"
  3487. #~ "\t\t pass option <opt> to dpkg-source\n"
  3488. #~ " --changes-option=<opt>\n"
  3489. #~ "\t\t pass option <opt> to dpkg-genchanges\n"
  3490. #~ " --admindir=<directory>\n"
  3491. #~ " change the administrative directory.\n"
  3492. #~ " -h, --help show this help message.\n"
  3493. #~ " --version show the version.\n"
  3494. #~ msgstr ""
  3495. #~ "\n"
  3496. #~ "Использование: %s [<параметры> ...]\n"
  3497. #~ "\n"
  3498. #~ "Параметры:\n"
  3499. #~ " -r<команда-получения-root>\n"
  3500. #~ " команда для получения прав root (по умолчанию "
  3501. #~ "fakeroot).\n"
  3502. #~ " -R<rules> файл правил для выполнения (по умолчанию debian/rules).\n"
  3503. #~ " -p<команда-подписывания>\n"
  3504. #~ " -d не проверять сборочные зависимости и конфликты.\n"
  3505. #~ " -D проверять сборочные зависимости и конфликты.\n"
  3506. #~ " -T<цель> вызвать debian/rules <цель> в настроенном окружении\n"
  3507. #~ " --as-root обеспечить вызовы -T правами root\n"
  3508. #~ " -j[<кол-во>] задать количество одновременно }\n"
  3509. #~ " выполняемых работ } передаётся в debian/"
  3510. #~ "rules\n"
  3511. #~ " -k<id-ключа> ключ для подписывания.\n"
  3512. #~ " -sgpg команда подписывания вызывается как GPG.\n"
  3513. #~ " -spgp команда подписывания вызывается как PGP.\n"
  3514. #~ " -us не подписывать исходный код.\n"
  3515. #~ " -uc не подписывать изменения.\n"
  3516. #~ " -a<арх> архитектура Debian, для которой собирать (вместе с -d).\n"
  3517. #~ " -b только двоичный пакет, }\n"
  3518. #~ " не собирать пакет с исходным кодом. } также передаётся "
  3519. #~ "в\n"
  3520. #~ " -B только двоичный пакет, }\n"
  3521. #~ " не собирать независимые от }\n"
  3522. #~ " архитектуры пакеты } dpkg-genchanges\n"
  3523. #~ " -A только двоичный пакет, }\n"
  3524. #~ " собирать независимые от }\n"
  3525. #~ " архитектуры пакеты }\n"
  3526. #~ " -S только пакет с исходным кодом }\n"
  3527. #~ " без двоичного пакета. }\n"
  3528. #~ " -F обычная полная сборка (двоичные и с исх.кодом).\n"
  3529. #~ " -t<система> задать GNU тип системы. } передаётся в dpkg-"
  3530. #~ "architecture\n"
  3531. #~ " -v<версия> изменения, начиная с <версии>. }\n"
  3532. #~ " -m<сопров> задать сопровождающего пакета. }\n"
  3533. #~ " -e<сопров> задать сопровождающего для выпуска. } только в\n"
  3534. #~ " -C<descfile> изменения даны в файле <descfile>. } dpkg-genchanges\n"
  3535. #~ " -si (умолч.) src включают orig, если новый автор. }\n"
  3536. #~ " -sa закачиваемые src всегда содержат orig.}\n"
  3537. #~ " -sd в закачиваемых src только diff и .dsc.}\n"
  3538. #~ " -sn исходный код в родном формате Debian. }\n"
  3539. #~ " -s[sAkurKUR] смотрите описание по dpkg-source. } только в\n"
  3540. #~ " -z<степень> степень сжатия исходного кода } dpkg-source\n"
  3541. #~ " -Z<алгоритм> алгоритм сжатия исходного кода }\n"
  3542. #~ " -nc не очищать дерево исходного кода (вместе с -b).\n"
  3543. #~ " -tc в конце очистить дерево исходного кода.\n"
  3544. #~ " -ap сделать паузу перед началом подписывания.\n"
  3545. #~ " -i[<рег.выр>] игнорировать diff-ы файлов, совпадающих }\n"
  3546. #~ " с рег.выр. } только в\n"
  3547. #~ " -I[<шаблон>] не включать файлы, попавшие }\n"
  3548. #~ " в шаблон при сборке tarball-а. } dpkg-source\n"
  3549. #~ " --source-option=<пар>\n"
  3550. #~ " передать параметр <пар> в dpkg-source\n"
  3551. #~ " --changes-option=<пар>\n"
  3552. #~ " передать параметр <пар> в dpkg-genchanges\n"
  3553. #~ " --admindir=<каталог>\n"
  3554. #~ " изменить административный каталог.\n"
  3555. #~ " -h, --help показать это сообщение.\n"
  3556. #~ " --version показать версию.\n"
  3557. #~ msgid "PGP support is deprecated (see README.feature-removal-schedule)"
  3558. #~ msgstr ""
  3559. #~ "Поддержка PGP будет исключена (смотрите README.feature-removal-schedule)"
  3560. #~ msgid "will probably become fatal in the future."
  3561. #~ msgstr "вероятно, станет останавливающей ошибкой в будущем."
  3562. #~ msgid ""
  3563. #~ "-u, --udeb option is deprecated (see README.feature-removal-schedule)"
  3564. #~ msgstr ""
  3565. #~ "Параметр -u, --udeb будет исключен (см. README.feature-removal-schedule)"
  3566. #~ msgid ""
  3567. #~ "This source package can only be manipulated using bzr, which is not in "
  3568. #~ "the PATH."
  3569. #~ msgstr ""
  3570. #~ "Исходным пакетом можно управлять только с помощью bzr, которого нет в "
  3571. #~ "PATH."
  3572. #~ msgid "source package name `%s' starts with non-alphanum"
  3573. #~ msgstr "имя пакета с исходным кодом «%s» начинается не с буквы или цифры"
  3574. #~ msgid ""
  3575. #~ "\n"
  3576. #~ "Copyright (C) 1999-2001 Marcus Brinkmann <brinkmd@debian.org>.\n"
  3577. #~ "Copyright (C) 2004-2005 Scott James Remnant <scott@netsplit.com>."
  3578. #~ msgstr ""
  3579. #~ "\n"
  3580. #~ "Copyright (C) 1999-2001 Marcus Brinkmann <brinkmd@debian.org>.\n"
  3581. #~ "Copyright (C) 2004-2005 Scott James Remnant <scott@netsplit.com>."
  3582. #, fuzzy
  3583. #~| msgid ""
  3584. #~| "\n"
  3585. #~| "Copyright (C) 2010 Raphael Hertzog <hertzog@debian.org>."
  3586. #~ msgid ""
  3587. #~ "\n"
  3588. #~ "Copyright (C) 2010-2011 Raphael Hertzog <hertzog@debian.org>."
  3589. #~ msgstr ""
  3590. #~ "\n"
  3591. #~ "Copyright (C) 2010 Raphael Hertzog <hertzog@debian.org>."
  3592. #~ msgid ""
  3593. #~ "\n"
  3594. #~ "Copyright (C) 1996 Ian Jackson.\n"
  3595. #~ "Copyright (C) 2000 Wichert Akkerman\n"
  3596. #~ "Copyright (C) 2007 Frank Lichtenheld"
  3597. #~ msgstr ""
  3598. #~ "\n"
  3599. #~ "Copyright (C) 1996 Ian Jackson.\n"
  3600. #~ "Copyright (C) 2000 Wichert Akkerman\n"
  3601. #~ "Copyright (C) 2007 Frank Lichtenheld"
  3602. #, fuzzy
  3603. #~| msgid "%s: export %s from dpkg-buildflags (origin: %s): %s\n"
  3604. #~ msgid "%s: dpkg-buildflags (origin: %s): %s = %s\n"
  3605. #~ msgstr "%s: экспорт %s из dpkg-buildflags (происхождение: %s): %s\n"
  3606. #~ msgid ""
  3607. #~ "\n"
  3608. #~ "Copyright (C) 1996 Ian Jackson."
  3609. #~ msgstr ""
  3610. #~ "\n"
  3611. #~ "Copyright (C) 1996 Ian Jackson."
  3612. #~ msgid ""
  3613. #~ "\n"
  3614. #~ "Copyright (C) 1996 Ian Jackson.\n"
  3615. #~ "Copyright (C) 2000,2001 Wichert Akkerman."
  3616. #~ msgstr ""
  3617. #~ "\n"
  3618. #~ "Copyright (C) 1996 Ian Jackson.\n"
  3619. #~ "Copyright (C) 2000,2001 Wichert Akkerman."
  3620. #~ msgid ""
  3621. #~ "\n"
  3622. #~ "Copyright (C) 1996 Ian Jackson.\n"
  3623. #~ "Copyright (C) 2000,2002 Wichert Akkerman."
  3624. #~ msgstr ""
  3625. #~ "\n"
  3626. #~ "Copyright (C) 1996 Ian Jackson.\n"
  3627. #~ "Copyright (C) 2000,2002 Wichert Akkerman."
  3628. #~ msgid ""
  3629. #~ "\n"
  3630. #~ "Copyright (C) 2007 Raphael Hertzog.\n"
  3631. #~ msgstr ""
  3632. #~ "\n"
  3633. #~ "Copyright (C) 2007 Raphael Hertzog.\n"
  3634. #~ msgid "Copyright (C) 2009-2010 Raphael Hertzog."
  3635. #~ msgstr "Copyright (C) 2009-2010 Raphael Hertzog."
  3636. #~ msgid ""
  3637. #~ "\n"
  3638. #~ "Copyright (C) 1996 Ian Jackson.\n"
  3639. #~ "Copyright (C) 2001 Wichert Akkerman"
  3640. #~ msgstr ""
  3641. #~ "\n"
  3642. #~ "Copyright (C) 1996 Ian Jackson.\n"
  3643. #~ "Copyright (C) 2001 Wichert Akkerman"
  3644. #~ msgid ""
  3645. #~ "\n"
  3646. #~ "Copyright (C) 1996 Ian Jackson.\n"
  3647. #~ "Copyright (C) 2000 Wichert Akkerman.\n"
  3648. #~ "Copyright (C) 2006 Frank Lichtenheld.\n"
  3649. #~ "Copyright (C) 2007 Raphael Hertzog.\n"
  3650. #~ msgstr ""
  3651. #~ "\n"
  3652. #~ "Copyright (C) 1996 Ian Jackson.\n"
  3653. #~ "Copyright (C) 2000 Wichert Akkerman.\n"
  3654. #~ "Copyright (C) 2006 Frank Lichtenheld.\n"
  3655. #~ "Copyright (C) 2007 Raphael Hertzog.\n"
  3656. #~ msgid ""
  3657. #~ "\n"
  3658. #~ "Copyright (C) 1996 Ian Jackson\n"
  3659. #~ "Copyright (C) 1997 Klee Dienes\n"
  3660. #~ "Copyright (C) 2008 Raphael Hertzog"
  3661. #~ msgstr ""
  3662. #~ "\n"
  3663. #~ "Copyright (C) 1996 Ian Jackson\n"
  3664. #~ "Copyright (C) 1997 Klee Dienes\n"
  3665. #~ "Copyright (C) 2008 Raphael Hertzog"
  3666. #~ msgid ""
  3667. #~ "\n"
  3668. #~ "Copyright (C) 1996 Ian Jackson.\n"
  3669. #~ "Copyright (C) 2005,2007 Frank Lichtenheld."
  3670. #~ msgstr ""
  3671. #~ "\n"
  3672. #~ "Copyright (C) 1996 Ian Jackson.\n"
  3673. #~ "Copyright (C) 2005,2007 Frank Lichtenheld."
  3674. #~ msgid "1 to 3 args expected\n"
  3675. #~ msgstr "ожидается от 1 до 3 аргументов\n"
  3676. #~ msgid "entry of APT's %s file"
  3677. #~ msgstr "элемент APT файла %s"
  3678. #~ msgid "no orig.tar file found"
  3679. #~ msgstr "файл orig.tar не найден"
  3680. #~ msgid "cannot rename %s to %s"
  3681. #~ msgstr "не удалось переименовать %s в %s"
  3682. #~ msgid "exec %s"
  3683. #~ msgstr "вызов exec для %s"
  3684. #~ msgid "cannot exec dpkg"
  3685. #~ msgstr "не удалось запустить dpkg"
  3686. #~ msgid "git config exited nonzero"
  3687. #~ msgstr "команда git config завершилась с ненулевым кодом выхода"
  3688. #~ msgid "executable bit set on %s; clearing"
  3689. #~ msgstr "на %s установлен бит исполнения; очищается"
  3690. #~ msgid "unable to remove `%s'"
  3691. #~ msgstr "невозможно удалить %s"
  3692. #~ msgid "modifying .git/config to comment out some settings"
  3693. #~ msgstr "изменяется .git/config для комментирования некоторых настроек"
  3694. #~ msgid "unable to append to %s"
  3695. #~ msgstr "невозможно добавить к %s"
  3696. #~ msgid "The following setting(s) were disabled by dpkg-source"
  3697. #~ msgstr "Следующие настройки были выключены dpkg-source"
  3698. #~ msgid "need -x or -b"
  3699. #~ msgstr "требуется параметр -x или -b"
  3700. #~ msgid "objdump on `%s'"
  3701. #~ msgstr "вызов objdump для `%s'"