ru.po 151 KB

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