ru.po 134 KB

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