ru.po 179 KB

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