ru.po 157 KB

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