ru.po 135 KB

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