ru.po 137 KB

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