ru.po 150 KB

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