ru.po 135 KB

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