ru.po 70 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316
  1. # Russian messages for the apt suite.
  2. # Vadim Kutchin <amadis@chemi.komisc.ru>, 2002
  3. # Ilgiz Kalmetev <ilgiz@bashtelecom.ru>, 2002
  4. # Tichomir Koryakov <Tichomir.Koryakov@usu.ru>, 2002
  5. #
  6. msgid ""
  7. msgstr ""
  8. "Project-Id-Version: apt 0.5.5\n"
  9. "POT-Creation-Date: 2002-11-10 19:37+0100\n"
  10. "PO-Revision-Date: 2002-11-15 01:22+0500\n"
  11. "Last-Translator: ôÉÈÏÍÉÒ <Tichomir.Koryakov@usu.ru>\n"
  12. "Language-Team: Russian <ru@li.org>\n"
  13. "MIME-Version: 1.0\n"
  14. "Content-Type: text/plain; charset=KOI8-R\n"
  15. "Content-Transfer-Encoding: 8bit\n"
  16. "X-Generator: KBabel 0.9.5\n"
  17. #: cmdline/apt-cache.cc:131
  18. #, c-format
  19. msgid "Package %s version %s has an unmet dep:\n"
  20. msgstr "ðÁËÅÔ %s ×ÅÒÓÉÉ %s ÉÍÅÅÔ ÎÅÒÁÚÒÅÛÅÎÎÕÀ ÚÁ×ÉÓÉÍÏÓÔØ:\n"
  21. #: cmdline/apt-cache.cc:171 cmdline/apt-cache.cc:523 cmdline/apt-cache.cc:669
  22. #: cmdline/apt-cache.cc:1035 cmdline/apt-cache.cc:1181
  23. #, c-format
  24. msgid "Unable to locate package %s"
  25. msgstr "îÅ×ÏÚÍÏÖÎÏ ÏÐÒÅÄÅÌÉÔØ ÍÅÓÔÏÎÁÈÏÖÄÅÎÉÅ ÐÁËÅÔÁ %s"
  26. #: cmdline/apt-cache.cc:228
  27. msgid "Total Package Names : "
  28. msgstr "ïÂÝÅÅ ËÏÌÉÞÅÓÔ×Ï ÉÍÅÎ ÐÁËÅÔÏ× : "
  29. #: cmdline/apt-cache.cc:268
  30. msgid " Normal Packages: "
  31. msgstr " îÏÒÍÁÌØÎÙÈ ÐÁËÅÔÏ×: "
  32. #: cmdline/apt-cache.cc:269
  33. msgid " Pure Virtual Packages: "
  34. msgstr "þÉÓÔÏ ÷ÉÒÔÕÁÌØÎÙÈ ðÁËÅÔÏ×: "
  35. #: cmdline/apt-cache.cc:270
  36. msgid " Single Virtual Packages: "
  37. msgstr "ïÄÉÎÏÞÎÙÈ ÷ÉÒÔÕÁÌØÎÙÈ ðÁËÅÔÏ×:"
  38. #: cmdline/apt-cache.cc:271
  39. msgid " Mixed Virtual Packages: "
  40. msgstr "óÍÅÛÁÎÎÙÈ ÷ÉÒÔÕÁÌØÎÙÈ ðÁËÅÔÏ×:"
  41. #: cmdline/apt-cache.cc:272
  42. msgid " Missing: "
  43. msgstr "ðÒÏÐÕÝÅÎÙÈ:"
  44. #: cmdline/apt-cache.cc:274
  45. msgid "Total Distinct Versions: "
  46. msgstr "ïÂÝÅÅ ËÏÌÉÞÅÓÔ×Ï õÎÉËÁÌØÎÙÈ ÷ÅÒÓÉÊ: "
  47. #: cmdline/apt-cache.cc:276
  48. msgid "Total Dependencies: "
  49. msgstr "ïÂÝÅÅ ËÏÌÉÞÅÓÔ×Ï úÁ×ÉÓÉÍÏÓÔÅÊ: "
  50. #: cmdline/apt-cache.cc:279
  51. msgid "Total Ver/File relations: "
  52. msgstr "ïÂÝÅÅ ËÏÌÉÞÅÓÔ×Ï ÏÔÎÏÛÅÎÉÊ ÷ÅÒÓÉÑ/æÁÊÌ: "
  53. #: cmdline/apt-cache.cc:281
  54. msgid "Total Provides Mappings: "
  55. msgstr ""
  56. #: cmdline/apt-cache.cc:293
  57. msgid "Total Globbed Strings: "
  58. msgstr "÷ÓÅÇÏ ÒÁÚ×ÅÒÎÕÔÙÈ ÓÔÒÏË: "
  59. #: cmdline/apt-cache.cc:307
  60. msgid "Total Dependency Version space: "
  61. msgstr ""
  62. #: cmdline/apt-cache.cc:312
  63. msgid "Total Slack space: "
  64. msgstr "ïÂÝÅÅ Ó×ÏÂÏÄÎÏÅ ÐÒÏÓÔÒÁÎÓÔ×Ï:"
  65. #: cmdline/apt-cache.cc:320
  66. msgid "Total Space Accounted for: "
  67. msgstr "ïÂÝÅÅ ÐÒÏÓÔÒÁÎÓÔ×Ï ÐÏÓÞÉÔÁÎÎÏÅ ÄÌÑ:"
  68. #: cmdline/apt-cache.cc:442 cmdline/apt-cache.cc:869
  69. #, c-format
  70. msgid "Package file %s is out of sync."
  71. msgstr "æÁÊÌ ÐÁËÅÔÁ %s ÎÅ ÓÉÎÈÒÏÎÉÚÉÒÏ×ÁÎ."
  72. #: cmdline/apt-cache.cc:911
  73. msgid "You must give exactly one pattern"
  74. msgstr "÷Ù ÄÏÌÖÎÙ ÚÁÄÁÔØ × ÔÏÞÎÏÓÔÉ ÏÄÉÎ ÛÁÂÌÏÎ"
  75. #: cmdline/apt-cache.cc:1135
  76. msgid "Package Files:"
  77. msgstr "æÁÊÌÙ ÐÁËÅÔÁ:"
  78. #: cmdline/apt-cache.cc:1142 cmdline/apt-cache.cc:1228
  79. msgid "Cache is out of sync, can't x-ref a package file"
  80. msgstr "ëÅÛ ÎÅ ÓÉÎÈÒÏÎÉÚÉÒÏ×ÁÎ, ÎÅ ÍÏÇÕ ÏÂÎÁÒÕÖÉÔØ x-ÓÓÙÌËÕ × ÆÁÊÌÅ ÐÁËÅÔÁ"
  81. #: cmdline/apt-cache.cc:1143
  82. #, c-format
  83. msgid "%4i %s\n"
  84. msgstr "%4i %s\n"
  85. #. Show any packages have explicit pins
  86. #: cmdline/apt-cache.cc:1155
  87. msgid "Pinned Packages:"
  88. msgstr "ó×ÑÚÁÎÎÙÅ ÐÁËÅÔÙ:"
  89. #: cmdline/apt-cache.cc:1167 cmdline/apt-cache.cc:1208
  90. msgid "(not found)"
  91. msgstr "(ÎÅ ÎÁÊÄÅÎ)"
  92. #. Installed version
  93. #: cmdline/apt-cache.cc:1188
  94. msgid " Installed: "
  95. msgstr "õÓÔÁÎÏ×ÌÅÎ: "
  96. #: cmdline/apt-cache.cc:1190 cmdline/apt-cache.cc:1198
  97. msgid "(none)"
  98. msgstr "(ÏÔÓÕÔÓÔ×ÕÅÔ)"
  99. #. Candidate Version
  100. #: cmdline/apt-cache.cc:1195
  101. msgid " Candidate: "
  102. msgstr " ëÁÎÄÉÄÁÔ: "
  103. #: cmdline/apt-cache.cc:1205
  104. msgid " Package Pin: "
  105. msgstr " ó×ÑÚØ ÐÁËÅÔÁ: "
  106. #. Show the priority tables
  107. #: cmdline/apt-cache.cc:1214
  108. msgid " Version Table:"
  109. msgstr " ôÁÂÌÉÃÁ ×ÅÒÓÉÊ: "
  110. #: cmdline/apt-cache.cc:1229
  111. #, c-format
  112. msgid " %4i %s\n"
  113. msgstr "%4i %s\n"
  114. #: cmdline/apt-cache.cc:1256 cmdline/apt-cdrom.cc:730 cmdline/apt-config.cc:69
  115. #: cmdline/apt-extracttemplates.cc:223 ftparchive/apt-ftparchive.cc:544
  116. #: cmdline/apt-get.cc:2015 cmdline/apt-sortpkgs.cc:142
  117. #, c-format
  118. msgid "%s %s for %s %s compiled on %s %s\n"
  119. msgstr "%s %s ÄÌÑ %s %s ÓËÏÍÐÉÌÉÒÏ×ÁÎÏ %s %s\n"
  120. #: cmdline/apt-cache.cc:1260
  121. msgid ""
  122. "Usage: apt-cache [options] command\n"
  123. " apt-cache [options] add file1 [file1 ...]\n"
  124. " apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
  125. " apt-cache [options] showsrc pkg1 [pkg2 ...]\n"
  126. "\n"
  127. "apt-cache is a low-level tool used to manipulate APT's binary\n"
  128. "cache files, and query information from them\n"
  129. "\n"
  130. "Commands:\n"
  131. " add - Add an package file to the source cache\n"
  132. " gencaches - Build both the package and source cache\n"
  133. " showpkg - Show some general information for a single package\n"
  134. " showsrc - Show source records\n"
  135. " stats - Show some basic statistics\n"
  136. " dump - Show the entire file in a terse form\n"
  137. " dumpavail - Print an available file to stdout\n"
  138. " unmet - Show unmet dependencies\n"
  139. " search - Search the package list for a regex pattern\n"
  140. " show - Show a readable record for the package\n"
  141. " depends - Show raw dependency information for a package\n"
  142. " pkgnames - List the names of all packages\n"
  143. " dotty - Generate package graphs for GraphVis\n"
  144. " policy - Show policy settings\n"
  145. "\n"
  146. "Options:\n"
  147. " -h This help text.\n"
  148. " -p=? The package cache.\n"
  149. " -s=? The source cache.\n"
  150. " -q Disable progress indicator.\n"
  151. " -i Show only important deps for the unmet command.\n"
  152. " -c=? Read this configuration file\n"
  153. " -o=? Set an arbitary configuration option, eg -o dir::cache=/tmp\n"
  154. "See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
  155. msgstr ""
  156. "éÓÐÏÌØÚÏ×ÁÎÉÅ: apt-cache [options] command\n"
  157. " ÉÌÉ: apt-cache [options] add file1 [file1 ...]\n"
  158. " ÉÌÉ: apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
  159. "\n"
  160. "apt-cache - ÎÉÚËÏÕÒÏ×ÎÅ×ÙÊ ÉÎÓÔÒÕÍÅÎÔ, ÉÓÐÏÌØÚÕÀÝÉÊÓÑ ÄÌÑ ÕÐÒÁ×ÌÅÎÉÑ\n"
  161. "Ä×ÏÉÞÎÙÍÉ ËÜÛ-ÆÁÊÌÁÍÉ APT'Á, Á ÔÁËÖÅ ÄÌÑ ÐÏÌÕÞÅÎÉÑ ÉÎÆÏÒÍÁÃÉÉ ÉÚ ÎÉÈ\n"
  162. "ëÏÍÍÁÎÄÙ:\n"
  163. " add - ÄÏÂÁ×ÉÔØ ÆÁÊÌ ÐÁËÅÔÁ × ËÜÛ ÉÓÈÏÄÎÉËÏ×\n"
  164. " gencaches - ÓÔÒÏÉÔ ÏÂÁ ËÜÛÁ - ÐÁËÅÔÏ× É ÉÓÈÏÄÎÉËÏ×\n"
  165. " showpkg - ÏÂÝÁÑ ÉÎÆÏÒÍÁÃÉÑ Ï ÐÁËÅÔÅ\n"
  166. " stats - ÏÓÎÏ×ÎÁÑ ÓÔÁÔÉÓÔÉËÁ\n"
  167. " dump - ×ÅÓØ ÆÁÊÌ × ÓÖÁÔÏÊ ÆÏÒÍÅ\n"
  168. " dumpavail - ÐÅÞÁÔÁÅÔ ÉÍÅÀÝÉÊÓÑ ÆÁÊÌ × stdout\n"
  169. " unmet - ÎÅÒÁÚÒÅÛÅÎÎÙÅ ÚÁ×ÉÓÉÍÏÓÔÉ\n"
  170. " search - ÉÝÅÔ ÓÐÉÓÏË ÐÁËÅÔÏ×, ÕÄÏ×ÌÅÔ×ÏÒÑÀÝÉÈ ÒÅÇÕÌÑÒÎÏÍÕ ×ÙÒÁÖÅÎÉÀ\n"
  171. " show - ÉÎÆÏÒÍÁÃÉÑ Ï ÐÁËÅÔÅ × ÕÄÏÂÏÞÉÔÁÅÍÏÊ ÆÏÒÍÅ\n"
  172. " depends - ÉÎÆÏÒÍÁÃÉÑ Ï ÚÁ×ÉÓÉÍÏÓÔÑÈ ÐÁËÅÔÁ ÐÏÓÔÒÏÞÎÏ\n"
  173. " pkgnames - ÓÐÉÓÏË ÉÍÅÎ ×ÓÅÈ ÐÁËÅÔÏ×\n"
  174. " dotty - ÇÅÎÅÒÉÒÕÅÔ ÇÒÁÆÉËÉ ÐÁËÅÔÏ× ÄÌÑ GraphVis\n"
  175. " policy - ÎÁÓÔÒÏÊËÉ ÐÏÌÉÔÉËÉ\n"
  176. "\n"
  177. "ïÐÃÉÉ:\n"
  178. " -h üÔÏÔ ÔÅËÓÔ.\n"
  179. " -p=? ëÜÛ ÐÁËÅÔÏ×.\n"
  180. " -s=? ëÜÛ ÉÓÈÏÄÎÉËÏ×.\n"
  181. " -q úÁÐÒÅÔÉÔØ ÉÎÄÉËÁÔÏÒ ÐÒÏÇÒÅÓÓÁ.\n"
  182. " -i ðÏËÁÚÙ×ÁÔØ ÔÏÌØËÏ ×ÁÖÎÙÅ ÚÁ×ÉÓÉÍÏÓÔÉ ÄÌÑ ËÏÍÍÁÎÄÙ unmet.\n"
  183. " -c=? þÉÔÁÔØ ÕËÁÚÁÎÎÙÊ ÆÁÊÌ ËÏÎÆÉÇÕÒÁÃÉÉ.\n"
  184. " -o=? ðÒÏÉÚ×ÏÌØÎÁÑ ÏÐÃÉÑ ËÏÎÆÉÇÕÒÁÃÉÉ, Ë ÐÒÉÍÅÒÕ, -o dir::cache=/tmp\n"
  185. "ðÏÄÒÏÂÎÏÓÔÉ × ÓÔÒÁÎÉÃÁÈ ÒÕËÏ×ÏÄÓÔ×Á apt-cache(8) É apt.conf(5).\n"
  186. #: cmdline/apt-config.cc:40
  187. msgid "Arguments not in pairs"
  188. msgstr "îÅ ÐÁÒÎÙÅ ÁÒÇÕÍÅÎÔÙ"
  189. #: cmdline/apt-config.cc:75
  190. msgid ""
  191. "Usage: apt-config [options] command\n"
  192. "\n"
  193. "apt-config is a simple tool to read the APT config file\n"
  194. "\n"
  195. "Commands:\n"
  196. " shell - Shell mode\n"
  197. " dump - Show the configuration\n"
  198. "\n"
  199. "Options:\n"
  200. " -h This help text.\n"
  201. " -c=? Read this configuration file\n"
  202. " -o=? Set an arbitary configuration option, eg -o dir::cache=/tmp\n"
  203. msgstr ""
  204. "éÓÐÏÌØÚÏ×ÁÎÉÅ: apt-config [options] command\n"
  205. "\n"
  206. "apt-config - ÐÒÏÓÔÏÊ ÉÎÓÔÒÕÍÅÎÔ ÄÌÑ ÞÔÅÎÉÑ ËÏÎÆÉÇÕÒÁÃÉÏÎÎÏÇÏ ÆÁÊÌÁ APT\n"
  207. "\n"
  208. "ëÏÍÍÁÎÄÙ:\n"
  209. " shell - shell-ÒÅÖÉÍ.\n"
  210. " dump - ÐÏËÁÚÁÔØ ËÏÎÆÉÇÕÒÁÃÉÀ.\n"
  211. "\n"
  212. "ïÐÃÉÉ:\n"
  213. " -h üÔÏÔ ÔÅËÓÔ.\n"
  214. " -Ó=? þÉÔÁÔØ ÕËÁÚÁÎÎÙÊ ËÏÎÆÉÇÕÒÁÃÉÏÎÎÙÊ ÆÁÊÌ.\n"
  215. " -o=? ðÒÏÉÚ×ÏÌØÎÁÑ ÏÐÃÉÑ ËÏÎÆÉÇÕÒÁÃÉÉ, Ë ÐÒÉÍÅÒÕ, -o dir::cache=/tmp\n"
  216. #: cmdline/apt-extracttemplates.cc:96
  217. #, c-format
  218. msgid "%s not a valid DEB package."
  219. msgstr "%s ÎÅ ÓÏÓÔÏÑÔÅÌØÎÙÊ DEB ÐÁËÅÔ."
  220. #: cmdline/apt-extracttemplates.cc:230
  221. msgid ""
  222. "Usage: apt-extracttemplates file1 [file2 ...]\n"
  223. "\n"
  224. "apt-extracttemplates is a tool to extract config and template info\n"
  225. "from debian packages\n"
  226. "\n"
  227. "Options:\n"
  228. " -h This help text\n"
  229. " -t Set the temp dir\n"
  230. " -c=? Read this configuration file\n"
  231. " -o=? Set an arbitary configuration option, eg -o dir::cache=/tmp\n"
  232. msgstr ""
  233. "éÓÐÏÌØÚÏ×ÁÎÉÅ: apt-extracttemplates file1 [file2 ...]\n"
  234. "\n"
  235. "apt-extracttemplates is a tool to extract config and template info\n"
  236. "from debian packages\n"
  237. "\n"
  238. "ïÐÃÉÉ:\n"
  239. " -h üÔÏÔ ÔÅËÓÔ\n"
  240. " -t õÓÔÁÎÏ×ÉÔØ ËÁÔÁÌÏÇ ×ÒÅÍÅÎÎÙÈ ÆÁÊÌÏ×\n"
  241. " -c=? þÉÔÁÔØ ÕËÁÚÁÎÎÙÊ ËÏÎÆÉÇÕÒÁÃÉÏÎÎÙÊ ÆÁÊÌ\n"
  242. " -o=? ðÒÏÉÚ×ÏÌØÎÁÑ ÏÐÃÉÑ ËÏÎÆÉÇÕÒÁÃÉÉ, Ë ÐÒÉÍÅÒÕ, -o dir::cache=/tmp\n"
  243. #: cmdline/apt-extracttemplates.cc:257 apt-pkg/pkgcachegen.cc:699
  244. #, c-format
  245. msgid "Unable to write to %s"
  246. msgstr "îÅ×ÏÚÍÏÖÎÏ ÚÁÐÉÓÁÔØ × %s"
  247. #: cmdline/apt-extracttemplates.cc:300
  248. msgid "Cannot get debconf version. Is debconf installed?"
  249. msgstr "îÅ×ÏÚÍÏÖÎÏ ÏÐÒÅÄÅÌÉÔØ ×ÅÒÓÉÀ debconf. õÓÔÁÎÏ×ÌÅÎ ÌÉ ÏÎ?"
  250. #. This needs to be a capital
  251. #: cmdline/apt-get.cc:116
  252. msgid "Y"
  253. msgstr "ä"
  254. #: cmdline/apt-get.cc:193
  255. msgid "The following packages have unmet dependencies:"
  256. msgstr "ë ÓÏÖÁÌÅÎÉÀ ÓÌÅÄÕÀÝÉÅ ÐÁËÅÔÙ ÉÍÅÀÔ ÎÅ ÒÁÚÒÅÛÅÎÎÙÅ ÚÁ×ÉÓÉÍÏÓÔÉ:"
  257. #: cmdline/apt-get.cc:283
  258. #, c-format
  259. msgid "but %s is installed"
  260. msgstr "ÎÏ %s ÕÖÅ ÕÓÔÁÎÏ×ÌÅÎ"
  261. #: cmdline/apt-get.cc:285
  262. #, c-format
  263. msgid "but %s is to be installed"
  264. msgstr "ÎÏ %s ÄÏÌÖÅÎ ÂÙÔØ ÕÓÔÁÎÏ×ÌÅÎ"
  265. #: cmdline/apt-get.cc:292
  266. msgid "but it is not installable"
  267. msgstr "ÎÏ ÜÔÏ ÎÅ ÕÓÔÁÎÁ×ÌÉ×ÁÅÍÙÊ ÐÁËÅÔ"
  268. #: cmdline/apt-get.cc:294
  269. msgid "but it is a virtual package"
  270. msgstr "ÎÏ ÜÔÏ ×ÉÒÔÕÁÌØÎÙÊ ÐÁËÅÔ"
  271. #: cmdline/apt-get.cc:297
  272. msgid "but it is not installed"
  273. msgstr "ÎÏ ÜÔÏ ÎÅ ÕÓÔÁÎÏ×ÌÅÎÏ"
  274. #: cmdline/apt-get.cc:297
  275. msgid "but it is not going to be installed"
  276. msgstr "ÎÏ ÜÔÏ ÎÅ ÐÒÅÄÐÏÌÁÇÁÅÔÓÑ ÕÓÔÁÎÁ×ÌÉ×ÁÔØ"
  277. #: cmdline/apt-get.cc:302
  278. msgid " or"
  279. msgstr " ÉÌÉ"
  280. #: cmdline/apt-get.cc:328
  281. msgid "The following NEW packages will be installed:"
  282. msgstr "óÌÅÄÕÀÝÉÅ îï÷ùå ÐÁËÅÔÙ ÂÕÄÕÔ ÕÓÔÁÎÏ×ÌÅÎÙ:"
  283. #: cmdline/apt-get.cc:351
  284. msgid "The following packages will be REMOVED:"
  285. msgstr "üÔÉ ÐÁËÅÔÙ ÂÕÄÕÔ õäáìåîù:"
  286. #: cmdline/apt-get.cc:371
  287. msgid "The following packages have been kept back"
  288. msgstr "üÔÉ ÐÁËÅÔÙ ÂÕÄÕÔ ÓÏÈÒÁÎÅÎÙ"
  289. #: cmdline/apt-get.cc:390
  290. msgid "The following packages will be upgraded"
  291. msgstr "üÔÉ ÐÁËÅÔÙ ÂÕÄÕÔ ÏÂÎÏ×ÌÅÎÙ"
  292. #: cmdline/apt-get.cc:409
  293. msgid "The following packages will be DOWNGRADED"
  294. msgstr "üÔÉ ÐÁËÅÔÙ ÂÕÄÕÔ ÚÁÍÅÎÅÎÙ ÎÁ óôáòùå"
  295. #: cmdline/apt-get.cc:426
  296. msgid "The following held packages will be changed:"
  297. msgstr "üÔÉ ÕÄÅÒÖÉ×ÁÅÍÙÅ ÐÁËÅÔÙ ÂÕÄÕÔ ÚÁÍÅÎÅÎÙ:"
  298. #: cmdline/apt-get.cc:477
  299. #, c-format
  300. msgid "%s (due to %s) "
  301. msgstr "%s (×ÓÌÅÄÓÔ×ÉÅ %s) "
  302. #: cmdline/apt-get.cc:484
  303. msgid ""
  304. "WARNING: The following essential packages will be removed\n"
  305. "This should NOT be done unless you know exactly what you are doing!"
  306. msgstr ""
  307. "÷îéíáîéå: üÔÉ ÓÕÝÅÓÔ×ÅÎÎÏ ×ÁÖÎÙÅ ÐÁËÅÔÙ ÂÕÄÕÔ ÕÄÁÌÅÎÙ\n"
  308. "üÔÏ îå óìåäõåô ÄÅÌÁÔØ ÅÓÌÉ ×Ù ÎÅ ÁÂÓÏÌÀÔÎÏ Õ×ÅÒÅÎÙ × Ó×ÏÉÈ ÄÅÊÓÔ×ÉÑÈ!"
  309. #: cmdline/apt-get.cc:514
  310. #, c-format
  311. msgid "%lu packages upgraded, %lu newly installed, "
  312. msgstr "%lu ÐÁËÅÔÏ× ÏÂÎÏ×ÌÅÎÏ, %lu ÎÏ×ÙÈ ÐÁËÅÔÏ× ÕÓÔÁÎÏ×ÌÅÎÏ, "
  313. #: cmdline/apt-get.cc:518
  314. #, c-format
  315. msgid "%lu reinstalled, "
  316. msgstr "%lu ÐÁËÅÔÏ× ÐÅÒÅÕÓÔÁÎÏ×ÌÅÎÏ, "
  317. #: cmdline/apt-get.cc:520
  318. #, c-format
  319. msgid "%lu downgraded, "
  320. msgstr "%lu ÐÁËÅÔÏ× ÚÁÍÅÎÅÎÙ ÎÁ ÓÔÁÒÙÅ, "
  321. #: cmdline/apt-get.cc:522
  322. #, c-format
  323. msgid "%lu to remove and %lu not upgraded.\n"
  324. msgstr "%lu ÐÁËÅÔÏ× ÄÌÑ ÕÄÁÌÅÎÉÑ É %lu ÎÅ ÏÂÎÏ×ÌÅÎÙ.\n"
  325. #: cmdline/apt-get.cc:526
  326. #, c-format
  327. msgid "%lu packages not fully installed or removed.\n"
  328. msgstr "%lu ÐÁËÅÔÏ× ÎÅ ÐÏÌÎÏÓÔØÀ ÕÓÔÁÎÏ×ÌÅÎÏ ÉÌÉ ÕÄÁÌÅÎÏ.\n"
  329. #: cmdline/apt-get.cc:586
  330. msgid "Correcting dependencies..."
  331. msgstr "éÓÐÒÁ×ÌÅÎÉÅ ÚÁ×ÉÓÉÍÏÓÔÅÊ..."
  332. #: cmdline/apt-get.cc:589
  333. msgid " failed."
  334. msgstr " ÎÅÕÄÁÞÎÏ."
  335. #: cmdline/apt-get.cc:592
  336. msgid "Unable to correct dependencies"
  337. msgstr "îÅ×ÏÚÍÏÖÎÏ ÓËÏÒÒÅËÔÉÒÏ×ÁÔØ ÚÁ×ÉÓÉÍÏÓÔÉ"
  338. #: cmdline/apt-get.cc:595
  339. msgid "Unable to minimize the upgrade set"
  340. msgstr "îÅ×ÏÚÍÏÖÎÏ ÍÉÎÉÍÉÚÉÒÏ×ÁÔØ ÍÎÏÖÅÓÔÏ ÏÂÎÏ×ÌÅÎÉÊ"
  341. #: cmdline/apt-get.cc:597
  342. msgid " Done"
  343. msgstr " óÄÅÌÁÎÏ"
  344. #: cmdline/apt-get.cc:601
  345. msgid "You might want to run `apt-get -f install' to correct these."
  346. msgstr "þÔÏÂÙ ÓËÏÒÒÅËÔÉÒÏ×ÁÔØ ÜÔÏ ×Ù ÍÏÖÅÔÅ ÚÁÐÕÓÔÉÔØ `apt-get -f install'."
  347. #: cmdline/apt-get.cc:604
  348. msgid "Unmet dependencies. Try using -f."
  349. msgstr "îÅ ÒÁÚÒÅÛÅÎÎÙÅ ÚÁ×ÉÓÉÍÏÓÔÉ. ÐÏÐÙÔÁÊÔÅÓØ ÉÓÐÏÌØÚÏ×ÁÔØ -f."
  350. #: cmdline/apt-get.cc:657
  351. msgid "Packages need to be removed but Remove is disabled."
  352. msgstr "ðÁËÅÔÙ ÎÅÏÂÈÏÄÉÍÏ ÕÄÁÌÉÔØ, ÎÏ õÄÁÌÅÎÉÅ ÚÁÐÒÅÝÅÎÏ."
  353. #: cmdline/apt-get.cc:683 cmdline/apt-get.cc:1578 cmdline/apt-get.cc:1611
  354. msgid "Unable to lock the download directory"
  355. msgstr "îÅ×ÏÚÍÏÖÎÏ ÚÁÂÌÏËÉÒÏ×ÁÔØ ËÁÔÁÌÏÇ ÄÌÑ ÚÁÇÒÕÚËÉ"
  356. #: cmdline/apt-get.cc:693 cmdline/apt-get.cc:1659 cmdline/apt-get.cc:1870
  357. #: apt-pkg/cachefile.cc:67
  358. msgid "The list of sources could not be read."
  359. msgstr "îÅ ÞÉÔÁÅÔÓÑ ÓÐÉÓÏË ÉÓÈÏÄÎÙÈ ÔÅËÓÔÏ×."
  360. #: cmdline/apt-get.cc:713
  361. #, c-format
  362. msgid "Need to get %sB/%sB of archives.\n"
  363. msgstr "îÅÏÂÈÏÄÉÍÏ ÓËÁÞÁÔØ %sB/%sB ÁÒÈÉ×Ï×.\n"
  364. #: cmdline/apt-get.cc:716
  365. #, c-format
  366. msgid "Need to get %sB of archives.\n"
  367. msgstr "îÕÖÎÏ ÓËÁÞÁÔØ %sâ ÁÒÈÉ×Ï×.\n"
  368. #: cmdline/apt-get.cc:721
  369. #, c-format
  370. msgid "After unpacking %sB of additional disk space will be used.\n"
  371. msgstr "ðÏÓÌÅ ÒÁÓÐÁËÏ×ËÉ ÂÕÄÅÔ ÚÁÎÑÔÏ %sâ.\n"
  372. #: cmdline/apt-get.cc:724
  373. #, c-format
  374. msgid "After unpacking %sB disk space will be freed.\n"
  375. msgstr "ðÏÓÌÅ ÒÁÓÐÁËÏ×ËÉ ÂÕÄÅÔ ÏÓ×ÏÂÏÖÄÅÎÏ %sâ.\n"
  376. #: cmdline/apt-get.cc:741
  377. #, c-format
  378. msgid "You don't have enough free space in %s."
  379. msgstr "ë ÓÏÖÁÌÅÎÉÀ Õ ×ÁÓ ÎÅ È×ÁÔÁÅÔ ÍÅÓÔÁ × %s."
  380. #: cmdline/apt-get.cc:750
  381. msgid "There are problems and -y was used without --force-yes"
  382. msgstr "óÕÝÅÓÔ×ÕÀÔ ÐÒÏÂÌÅÍÙ, ÐÒÉÞÅÍ ÉÓÐÏÌØÚÏ×ÁÎÁ -y ÂÅÚ --force-yes"
  383. #: cmdline/apt-get.cc:756 cmdline/apt-get.cc:776
  384. msgid "Trivial Only specified but this is not a trivial operation."
  385. msgstr "õËÁÚÁÎÁ Trivial Only, ÎÏ ÜÔÏ ÎÅ ÔÒÉ×ÉÁÌØÎÁÑ ÏÐÅÒÁÃÉÑ."
  386. #: cmdline/apt-get.cc:758
  387. msgid "Yes, do as I say!"
  388. msgstr "äÁ, ÄÅÌÁÔØ ËÁË Ñ ÓËÁÖÕ!"
  389. #: cmdline/apt-get.cc:760
  390. #, c-format
  391. msgid ""
  392. "You are about to do something potentially harmful\n"
  393. "To continue type in the phrase '%s'\n"
  394. " ?] "
  395. msgstr ""
  396. "÷Ù ÓÏÂÒÁÌÉÓØ ÓÄÅÌÁÔØ ÎÅËÏÅ ÐÁÇÕÂÎÏÅ ÄÅÊÓÔ×ÉÅ\n"
  397. "ðÅÒÅÄ ÔÅÍ ËÁË ÐÒÏÄÏÌÖÉÔØ, ××ÅÄÉÔÅ ÆÒÁÚÕ: '%s'\n"
  398. " ?] "
  399. #: cmdline/apt-get.cc:766 cmdline/apt-get.cc:785
  400. msgid "Abort."
  401. msgstr "á×ÁÒÉÊÎÏÅ ÚÁ×ÅÒÛÅÎÉÅ."
  402. #: cmdline/apt-get.cc:781
  403. msgid "Do you want to continue? [Y/n] "
  404. msgstr "èÏÔÉÔÅ ÐÒÏÄÏÌÖÉÔØ? [ä/Î] "
  405. #: cmdline/apt-get.cc:850 cmdline/apt-get.cc:1219 cmdline/apt-get.cc:1768
  406. #, c-format
  407. msgid "Failed to fetch %s %s\n"
  408. msgstr "îÅ ÕÄÁÌÏÓØ ÓËÁÞÁÔØ %s %s\n"
  409. #: cmdline/apt-get.cc:868
  410. msgid "Some files failed to download"
  411. msgstr "îÅËÏÔÏÒÙÅ ÆÁÊÌÙ ÎÅ ÚÁÇÒÕÚÉÌÉÓØ"
  412. #: cmdline/apt-get.cc:869 cmdline/apt-get.cc:1777
  413. msgid "Download complete and in download only mode"
  414. msgstr "úÁÇÒÕÚËÁ ÚÁ×ÅÒÛÅÎÁ, ÎÏ ÕÓÔÁÎÏ×ÌÅÎ ÒÅÖÉÍ download only"
  415. #: cmdline/apt-get.cc:875
  416. msgid ""
  417. "Unable to fetch some archives, maybe run apt-get update or try with --fix-"
  418. "missing?"
  419. msgstr ""
  420. "îÅ×ÏÚÍÏÖÎÏ ÐÏÌÕÞÉÔØ ÎÅËÏÔÏÒÙÅ ÁÒÈÉ×Ù, ×ÅÒÏÑÔÎÏ ÎÁÄÏ ÚÁÐÕÓÔÉÔØ apt-get update "
  421. "ÉÌÉ ÐÏÐÙÔÁÔØÓÑ --fix-missing"
  422. #: cmdline/apt-get.cc:879
  423. msgid "--fix-missing and media swapping is not currently supported"
  424. msgstr "--fix-missing É ÓÍÅÎÁ ÎÏÓÉÔÅÌÑ × ÄÁÎÎÙÊ ÍÏÍÅÎÔ ÎÅ ÐÏÄÄÅÒÖÉ×ÁÀÔÓÑ"
  425. #: cmdline/apt-get.cc:884
  426. msgid "Unable to correct missing packages."
  427. msgstr "îÅ×ÏÚÍÏÖÎÏ ÉÓÐÒÁ×ÉÔØ ÐÒÏÐÕÝÅÎÎÙÅ ÐÁËÅÔÙ."
  428. #: cmdline/apt-get.cc:885
  429. msgid "Aborting Install."
  430. msgstr "á×ÁÒÉÊÎÏÅ ÚÁ×ÅÒÛÅÎÉÅ ÕÓÔÁÎÏ×ËÉ."
  431. #: cmdline/apt-get.cc:918
  432. #, c-format
  433. msgid "Note, selecting %s instead of %s\n"
  434. msgstr "úÁÍÅÔØÔÅ, ×ÙÂÉÒÁÅÔÓÑ %s ×ÍÅÓÔÏ %s\n"
  435. #: cmdline/apt-get.cc:928
  436. #, c-format
  437. msgid "Skipping %s, it is already installed and upgrade is not set.\n"
  438. msgstr "ðÒÏÐÕÓËÁÅÔÓÑ %s - ÐÁËÅÔ ÕÖÅ ÕÓÔÁÎÏ×ÌÅÎ, ÎÏ ÏÐÃÉÑ upgrade ÎÅ ÕÓÔÁÎÏ×ÌÅÎÁ.\n"
  439. #: cmdline/apt-get.cc:946
  440. #, c-format
  441. msgid "Package %s is not installed, so not removed\n"
  442. msgstr "ðÁËÅÔ %s ÎÅ ÕÓÔÁÎÏ×ÌÅÎ, ÐÏÜÔÏÍÕ É ÎÅ ÕÄÁÌÅÎ\n"
  443. #: cmdline/apt-get.cc:957
  444. #, c-format
  445. msgid "Package %s is a virtual package provided by:\n"
  446. msgstr "ðÁËÅÔ %s - ×ÉÒÔÕÁÌØÎÙÊ, ÅÇÏ ÎÁÌÉÞÉÅ ÏÂÅÓÐÅÞÅÎÏ ÐÁËÅÔÏÍ:\n"
  447. #: cmdline/apt-get.cc:969
  448. msgid " [Installed]"
  449. msgstr "[õÓÔÁÎÏ×ÌÅÎ]"
  450. #: cmdline/apt-get.cc:974
  451. msgid "You should explicitly select one to install."
  452. msgstr "äÌÑ ÕÓÔÁÎÏ×ËÉ ×Ù ÄÏÌÖÎÙ ÕËÁÚÁÔØ ÓÔÒÏÇÏ ÏÄÉÎ."
  453. #: cmdline/apt-get.cc:979
  454. #, c-format
  455. msgid ""
  456. "Package %s has no available version, but exists in the database.\n"
  457. "This typically means that the package was mentioned in a dependency and\n"
  458. "never uploaded, has been obsoleted or is not available with the contents\n"
  459. "of sources.list\n"
  460. msgstr ""
  461. "ðÁËÅÔ %s ÎÅ ÉÍÅÅÔ ÐÏÄÈÏÄÑÝÅÊ ×ÅÒÓÉÉ, ÎÏ ÓÕÝÅÓÔ×ÕÅÔ × ÂÁÚÅ.\n"
  462. "ïÂÙÞÎÏ ÜÔÏ ÏÚÎÁÞÁÅÔ, ÞÔÏ ÐÁËÅÔ ÂÙÌ ÕÐÏÍÑÎÕÔ × ÚÁ×ÉÓÉÍÏÓÔÉ,\n"
  463. "ÎÏ ÎÉËÏÇÄÁ ÎÅ ÚÁÇÒÕÖÁÌÓÑ ÉÌÉ ÏÎ ÕÓÔÁÒÅ×ÛÉÊ ÉÌÉ ÎÅ ÐÒÉÇÏÄÅÎ × ËÏÎÔÅËÓÔÅ\n"
  464. "ÉÓÐÏÌØÚÕÅÍÏÇÏ source.list\n"
  465. #: cmdline/apt-get.cc:997
  466. msgid "However the following packages replace it:"
  467. msgstr "ïÄÎÁËÏ ÓÌÅÄÕÀÝÉÅ ÐÁËÅÔÙ ÚÁÍÅÎÑÔ ÅÇÏ:"
  468. #: cmdline/apt-get.cc:1000
  469. #, c-format
  470. msgid "Package %s has no installation candidate"
  471. msgstr "ðÁËÅÔ %s - ÎÅ ËÁÎÄÉÄÁÔ ÎÁ ÕÓÔÁÎÏ×ËÕ"
  472. #: cmdline/apt-get.cc:1020
  473. #, c-format
  474. msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
  475. msgstr "ë ÓÏÖÁÌÅÎÉÀ ÐÅÒÅÕÓÔÁÎÏ×ËÁ %s ÎÅ ×ÏÚÍÏÖÎÁ, ÏÎ ÎÅ ÚÁÇÒÕÖÁÅÔÓÑ.\n"
  476. #: cmdline/apt-get.cc:1028
  477. #, c-format
  478. msgid "%s is already the newest version.\n"
  479. msgstr "ë ÓÏÖÁÌÅÎÉÀ ÎÏ×ÅÊÛÁÑ ×ÅÒÓÉÑ %s ÕÖÅ ÕÓÔÁÎÏ×ÌÅÎÁ.\n"
  480. #: cmdline/apt-get.cc:1055
  481. #, c-format
  482. msgid "Release '%s' for '%s' was not found"
  483. msgstr "òÅÌÉÚ '%s' ÄÌÑ '%s' ÎÅ ÎÁÊÄÅÎ"
  484. #: cmdline/apt-get.cc:1057
  485. #, c-format
  486. msgid "Version '%s' for '%s' was not found"
  487. msgstr "÷ÅÒÓÉÑ '%s' ÄÌÑ '%s' ÎÅ ÎÁÊÄÅÎÁ"
  488. #: cmdline/apt-get.cc:1063
  489. #, c-format
  490. msgid "Selected version %s (%s) for %s\n"
  491. msgstr "÷ÙÂÒÁÎÁ ×ÅÒÓÉÑ %s (%s) ÄÌÑ %s\n"
  492. #: cmdline/apt-get.cc:1173
  493. msgid "The update command takes no arguments"
  494. msgstr "ëÏÍÍÁÎÄÅ update ÎÅ ÎÕÖÎÙ ÁÒÇÕÍÅÎÔÙ"
  495. #: cmdline/apt-get.cc:1186
  496. msgid "Unable to lock the list directory"
  497. msgstr "îÅ×ÏÚÍÏÖÎÏ ÚÁÂÌÏËÉÒÏ×ÁÔØ ÄÉÒÅËÔÏÒÉÀ list"
  498. #: cmdline/apt-get.cc:1238
  499. msgid ""
  500. "Some index files failed to download, they have been ignored, or old ones "
  501. "used instead."
  502. msgstr ""
  503. "îÅËÏÔÏÒÙÅ ÉÎÄÅËÓÎÙÅ ÆÁÊÌÙ ÎÅ ÚÁÇÒÕÚÉÌÉÓØ, ÏÎÉ ÂÙÌÉ ÐÒÏÉÇÎÏÒÉÒÏ×ÁÎÙ ÉÌÉ "
  504. "ÚÁÍÅÎÅÎÙ ÎÁ ÓÔÁÒÙÅ"
  505. #: cmdline/apt-get.cc:1257
  506. msgid "Internal Error, AllUpgrade broke stuff"
  507. msgstr "÷ÎÕÔÒÅÎÎÑÑ ÏÛÉÂËÁ, ÂÉÔÙÊ ÎÁÂÏÒ AllUpgrade"
  508. #: cmdline/apt-get.cc:1347 cmdline/apt-get.cc:1383
  509. #, c-format
  510. msgid "Couldn't find package %s"
  511. msgstr "îÅ ÍÏÇÕ ÎÁÊÔÉ ÐÁËÅÔ %s"
  512. #: cmdline/apt-get.cc:1360
  513. #, c-format
  514. msgid "Regex compilation error - %s"
  515. msgstr "ïÛÉÂËÁ ËÏÍÐÉÌÑÃÉÉ ÒÅÇÕÌÑÒÎÏÇÏ ×ÙÒÁÖÅÎÉÑ - %s"
  516. #: cmdline/apt-get.cc:1370
  517. #, c-format
  518. msgid "Note, selecting %s for regex '%s'\n"
  519. msgstr "úÁÍÅÔØÔÅ, ×ÙÂÉÒÁÅÔÓÑ %s ÄÌÑ ÒÅÇÕÌÑÒÎÏÇÏ ×ÙÒÁÖÅÎÉÑ %s\n"
  520. #: cmdline/apt-get.cc:1400
  521. msgid "You might want to run `apt-get -f install' to correct these:"
  522. msgstr "äÌÑ ÉÓÐÒÁ×ÌÅÎÉÑ ×Ù ÍÏÖÅÔÅ ÚÁÐÕÓÔÉÔØ `apt-get -f install':"
  523. #: cmdline/apt-get.cc:1403
  524. msgid ""
  525. "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
  526. "solution)."
  527. msgstr ""
  528. "îÅÒÁÚÒÅÛÅÎÎÙÅ ÚÁ×ÉÓÉÍÏÓÔÉ. ðÏÐÙÔÁÊÔÅÓØ 'apt-get -f install', ÎÅ ÕËÁÚÙ×ÁÑ "
  529. "ÐÁËÅÔÁ, (ÉÌÉ ÎÁÊÄÉÔÅ ÒÅÛÅÎÉÅ)"
  530. #: cmdline/apt-get.cc:1415
  531. msgid ""
  532. "Some packages could not be installed. This may mean that you have\n"
  533. "requested an impossible situation or if you are using the unstable\n"
  534. "distribution that some required packages have not yet been created\n"
  535. "or been moved out of Incoming."
  536. msgstr ""
  537. "îÅ×ÏÚÍÏÖÎÏ ÕÓÔÁÎÏ×ÉÔØ ÎÅÓËÏÌØËÏ ÐÁËÅÔÏ×. ÷ÅÒÏÑÔÎÏ, ÞÔÏ ÚÁÄÁÎÎÏÅ ÷ÁÍÉ\n"
  538. "ÍÅÓÔÏÐÏÌÏÖÅÎÉÅ - ÎÅ ÓÕÝÅÓÔ×ÕÅÔ, ÉÌÉ ÐÒÉ ÉÓÐÏÌØÚÏ×ÁÎÉÉ ÎÅ ÓÔÁÂÉÌØÎÏÇÏ \n"
  539. "ÄÉÓÔÒÉÂÕÔÉ×Á ÐÏÔÒÅÂÏ×ÁÌÉÓØ ÐÁËÅÔÙ ÅÝÅ ÎÅ ÓÏÚÄÁÎÎÙÅ ÌÉÂÏ\n"
  540. "ÕÂÒÁÎÎÙÅ."
  541. #: cmdline/apt-get.cc:1423
  542. msgid ""
  543. "Since you only requested a single operation it is extremely likely that\n"
  544. "the package is simply not installable and a bug report against\n"
  545. "that package should be filed."
  546. msgstr ""
  547. "ôÁË ËÁË ÷Ù ÚÁÐÒÏÓÉÌÉ ÅÄÉÎÓÔ×ÅÎÎÕÀ ÏÐÅÒÁÃÉÀ, ÔÏ ÏÞÅÎØ ÐÏÈÏÖÅ ÞÔÏ\n"
  548. "ÐÁËÅÔ ÐÒÏÓÔÏ ÎÅ ÕÓÔÁÎÁ×ÌÉ×ÁÅÍÙÊ É bug report ÓÏÏÂÝÁÅÔ,\n"
  549. "ÞÔÏ ÐÁËÅÔ ÂÕÄÅÔ ÄÏ×ÅÄÅÎ."
  550. #: cmdline/apt-get.cc:1428
  551. msgid "The following information may help to resolve the situation:"
  552. msgstr "óÌÅÄÕÀÝÁÑ ÉÎÆÏÒÍÁÃÉÑ ÍÏÖÅÔ ÐÏÍÏÞØ ÒÁÚÒÅÛÉÔØ ÓÉÔÕÁÃÉÀ:"
  553. #: cmdline/apt-get.cc:1431
  554. msgid "Broken packages"
  555. msgstr "óÌÏÍÁÎÎÙÅ ÐÁËÅÔÙ"
  556. #: cmdline/apt-get.cc:1454
  557. msgid "The following extra packages will be installed:"
  558. msgstr "óÌÅÄÕÀÝÉÅ ÄÏÐÏÌÎÉÔÅÌØÎÙÅ ÐÁËÅÔÙ ÂÕÄÕÔ ÕÓÔÁÎÏ×ÌÅÎÙ:"
  559. #: cmdline/apt-get.cc:1473
  560. msgid "Calculating Upgrade... "
  561. msgstr "ïÂÒÁÂÏÔËÁ Upgrade... "
  562. #: cmdline/apt-get.cc:1476
  563. msgid "Failed"
  564. msgstr "îÅ ÕÄÁÞÎÏ"
  565. #: cmdline/apt-get.cc:1481
  566. msgid "Done"
  567. msgstr "óÄÅÌÁÎÏ"
  568. #: cmdline/apt-get.cc:1654
  569. msgid "Must specify at least one package to fetch source for"
  570. msgstr "îÁÄÏ ÕËÁÚÁÔØ ËÁË ÍÉÎÉÍÕÍ ÏÄÉÎ ÐÁËÅÔ ÄÌÑ ÓËÁÞÉ×ÁÎÉÑ ÉÓÈÏÄÎÏÇÏ ÔÅËÓÔÁ"
  571. #: cmdline/apt-get.cc:1681 cmdline/apt-get.cc:1888
  572. #, c-format
  573. msgid "Unable to find a source package for %s"
  574. msgstr "îÅ×ÏÚÍÏÖÎÏ ÎÁÊÔÉ ÐÁËÅÔ ÉÓÈÏÄÎÉËÏ× ÄÌÑ %s"
  575. #: cmdline/apt-get.cc:1728
  576. #, c-format
  577. msgid "You don't have enough free space in %s"
  578. msgstr "ë ÓÏÖÁÌÅÎÉÀ Õ ×ÁÓ ÎÅ È×ÁÔÁÅÔ ÍÅÓÔÁ × %s"
  579. #: cmdline/apt-get.cc:1733
  580. #, c-format
  581. msgid "Need to get %sB/%sB of source archives.\n"
  582. msgstr "îÕÖÎÏ ÓËÁÞÁÔØ %sâ/%sâ ÉÚ ÉÓÈÏÄÎÙÈ ÁÒÈÉ×Ï×.\n"
  583. #: cmdline/apt-get.cc:1736
  584. #, c-format
  585. msgid "Need to get %sB of source archives.\n"
  586. msgstr "îÕÖÎÏ ÓËÁÞÁÔØ %sâ ÉÓÈÏÄÎÙÈ ÁÒÈÉ×Ï×.\n"
  587. #: cmdline/apt-get.cc:1742
  588. #, c-format
  589. msgid "Fetch Source %s\n"
  590. msgstr "óËÁÞÉ×ÁÎÉÅ ÉÓÈÏÄÎÏÇÏ ÔÅËÓÔÁ %s\n"
  591. #: cmdline/apt-get.cc:1773
  592. msgid "Failed to fetch some archives."
  593. msgstr "îÅÕÄÁÞÎÏÅ ÐÏÌÕÞÅÎÉÅ ÎÅÓËÏÌØËÉÈ ÁÒÈÉ×Ï×."
  594. #: cmdline/apt-get.cc:1801
  595. #, c-format
  596. msgid "Skipping unpack of already unpacked source in %s\n"
  597. msgstr "ðÒÏÐÕÝÅÎÁ ÒÁÓÐÁËÏ×ËÁ ÕÖÅ ÒÁÓÐÁËÏ×ÁÎÎÏÇÏ ÉÓÈÏÄÎÏÇÏ ÔÅËÓÔÁ × %s\n"
  598. #: cmdline/apt-get.cc:1813
  599. #, c-format
  600. msgid "Unpack command '%s' failed.\n"
  601. msgstr "ëÏÍÍÁÎÄÁ ÒÁÓÐÁËÏ×ËÉ '%s' ÚÁ×ÅÒÛÉÌÁÓØ ÎÅ ÕÄÁÞÎÏ.\n"
  602. #: cmdline/apt-get.cc:1830
  603. #, c-format
  604. msgid "Build command '%s' failed.\n"
  605. msgstr "ëÏÍÍÁÎÄÁ ÓÂÏÒËÉ '%s' ÚÁ×ÅÒÛÉÌÁÓØ ÎÅ ÕÄÁÞÎÏ.\n"
  606. #: cmdline/apt-get.cc:1849
  607. msgid "Child process failed"
  608. msgstr "äÏÞÅÒÎÉÊ ÐÒÏÃÅÓÓ ÚÁ×ÅÒÛÉÌÓÑ ÎÅ ÕÄÁÞÎÏ"
  609. #: cmdline/apt-get.cc:1865
  610. msgid "Must specify at least one package to check builddeps for"
  611. msgstr "äÌÑ ÐÒÏ×ÅÒËÉ ÓÈÅÍÙ ÚÁ×ÉÓÉÍÏÓÔÅÊ ÎÅÏÂÈÏÄÉÍÏ ÕËÁÚÁÔØ ÎÅ ÍÅÎÅÅ ÏÄÎÏÇÏ ÐÁËÅÔÁ"
  612. #: cmdline/apt-get.cc:1893
  613. #, c-format
  614. msgid "Unable to get build-dependency information for %s"
  615. msgstr "îÅ×ÏÚÍÏÖÎÏ ÐÏÌÕÞÉÔØ ÉÎÆÏÒÍÁÃÉÀ Ï ÓÈÅÍÅ ÚÁ×ÉÓÉÍÏÓÔÅÊ ÄÌÑ %s"
  616. #: cmdline/apt-get.cc:1913
  617. #, c-format
  618. msgid "%s has no build depends.\n"
  619. msgstr "%s ÎÅ ÉÍÅÅÔ ÓÈÅÍÙ ÚÁ×ÉÓÉÍÏÓÔÅÊ.\n"
  620. #: cmdline/apt-get.cc:1931
  621. #, c-format
  622. msgid ""
  623. "%s dependency on %s cannot be satisfied because the package %s cannot be "
  624. "found"
  625. msgstr "úÁ×ÉÓÉÍÏÓÔØ %s ÏÔ %s ÎÅ ÍÏÖÅÔ ÂÙÔØ ÕÄÏ×ÌÅÔ×ÏÒÅÎÁ ÉÂÏ ÐÁËÅÔ %s ÎÅ ÎÁÊÄÅÎ"
  626. #: cmdline/apt-get.cc:1983
  627. msgid ""
  628. "Some broken packages were found while trying to process build-dependencies.\n"
  629. "You might want to run `apt-get -f install' to correct these."
  630. msgstr ""
  631. "îÅÓËÏÌØËÏ ÓÌÏÍÁÎÎÙÈ ÐÁËÅÔÏ× ÂÙÌÏ ÏÂÎÁÒÕÖÅÎÏ ÐÒÉ ÐÏÐÙÔËÅ ÏÂÒÁÂÏÔÁÔØ ÓÈÅÍÕ ÚÁ×ÉÓÉÍÏÓÔÅÊ.\n"
  632. "þÔÏÂÙ ÉÓÐÒÁ×ÉÔØ ÜÔÏ ÐÏÐÙÔÁÊÔÅÓØ ÚÁÐÕÓÔÉÔØ `apt-get -f install'."
  633. #: cmdline/apt-get.cc:1988
  634. msgid "Failed to process build dependencies"
  635. msgstr "ðÒÏÃÅÓÓ ÐÏÓÔÒÏÅÎÉÑ ÚÁ×ÉÓÉÍÏÓÔÅÊ ÚÁ×ÅÒÛÉÌÓÑ ÎÅ ÕÄÁÞÎÏ"
  636. #: cmdline/apt-get.cc:2020
  637. msgid "Supported Modules:"
  638. msgstr "ðÏÄÄÅÒÖÉ×ÁÅÍÙÅ íÏÄÕÌÉ:"
  639. #: cmdline/apt-get.cc:2061
  640. msgid ""
  641. "Usage: apt-get [options] command\n"
  642. " apt-get [options] install|remove pkg1 [pkg2 ...]\n"
  643. " apt-get [options] source pkg1 [pkg2 ...]\n"
  644. "\n"
  645. "apt-get is a simple command line interface for downloading and\n"
  646. "installing packages. The most frequently used commands are update\n"
  647. "and install.\n"
  648. "\n"
  649. "Commands:\n"
  650. " update - Retrieve new lists of packages\n"
  651. " upgrade - Perform an upgrade\n"
  652. " install - Install new packages (pkg is libc6 not libc6.deb)\n"
  653. " remove - Remove packages\n"
  654. " source - Download source archives\n"
  655. " build-dep - Configure build-dependencies for source packages\n"
  656. " dist-upgrade - Distribution upgrade, see apt-get(8)\n"
  657. " dselect-upgrade - Follow dselect selections\n"
  658. " clean - Erase downloaded archive files\n"
  659. " autoclean - Erase old downloaded archive files\n"
  660. " check - Verify that there are no broken dependencies\n"
  661. "\n"
  662. "Options:\n"
  663. " -h This help text.\n"
  664. " -q Loggable output - no progress indicator\n"
  665. " -qq No output except for errors\n"
  666. " -d Download only - do NOT install or unpack archives\n"
  667. " -s No-act. Perform ordering simulation\n"
  668. " -y Assume Yes to all queries and do not prompt\n"
  669. " -f Attempt to continue if the integrity check fails\n"
  670. " -m Attempt to continue if archives are unlocatable\n"
  671. " -u Show a list of upgraded packages as well\n"
  672. " -b Build the source package after fetching it\n"
  673. " -c=? Read this configuration file\n"
  674. " -o=? Set an arbitary configuration option, eg -o dir::cache=/tmp\n"
  675. "See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
  676. "pages for more information and options.\n"
  677. " This APT has Super Cow Powers.\n"
  678. msgstr ""
  679. "éÓÐÏÌØÚÏ×ÁÎÉÅ:\tapt-get [options] command\n"
  680. "\t\tapt-get [options] install|remove pkg1 [pkg2 ...]\n"
  681. "\t\tapt-get [options] source pkg1 [pkg2 ...]\n"
  682. "\n"
  683. "apt-get - ÐÒÏÓÔÏÊ ÉÎÓÔÒÕÍÅÎÔ ËÏÍÍÁÎÄÎÏÊ ÓÔÒÏËÉ ÄÌÑ ÚÁÇÒÕÚËÉ É\n"
  684. "ÕÓÔÁÎÏ×ËÉ ÐÁËÅÔÏ×. îÁÉÂÏÌÅÅ ÞÁÓÔÏ ÉÓÐÏÌØÚÕÅÍÙÅ ËÏÍÍÁÎÄÙ - update \n"
  685. "É install.\n"
  686. "\n"
  687. "ëÏÍÍÁÎÄÙ:\n"
  688. " update - ÐÏÌÕÞÉÔØ ÎÏ×ÙÅ ÓÐÉÓËÉ ÐÁËÅÔÏ×\n"
  689. " upgrade - ×ÙÐÏÌÎÉÔØ ÏÂÎÏ×ÌÅÎÉÅ\n"
  690. " install - ÕÓÔÁÎÏ×ÉÔØ ÎÏ×ÙÅ ÐÁËÅÔÙ (ÐÁËÅÔ ÎÁÚÙ×ÁÅÔÓÑ libc6, Á ÎÅ libc6."
  691. "deb)\n"
  692. " remove - ÕÄÁÌÉÔØ ÐÁËÅÔÙ\n"
  693. " source - ÚÁÇÒÕÚÉÔØ ÁÒÈÉ×Ù ÉÓÈÏÄÎÙÈ ÔÅËÓÔÏ×\n"
  694. " build-dep - ÎÁÓÔÒÏÉÔØ ÓÈÅÍÕ ÚÁ×ÉÓÉÍÏÓÔÅÊ ÄÌÑ ÉÓÈÏÄÎÙÈ ÐÁËÅÔÏ×\n"
  695. " dist-upgrade - ÏÂÎÏ×ÉÔØ ÓÉÓÔÅÍÕ, ÐÏÄÒÏÂÎÅÊ × apt-get(8)\n"
  696. " dselect-upgrade - ÒÕËÏ×ÏÄÓÔ×Ï×ÁÔØÓÑ ÕÓÔÁÎÏ×ËÁÍÉ × dselect'Å\n"
  697. " clean - ÕÄÁÌÉÔØ ÚÁÇÒÕÖÅÎÎÙÅ ÁÒÈÉ×ÎÙÅ ÆÁÊÌÙ\n"
  698. " autoclean - ÕÄÁÌÉÔØ ÓÔÁÒÙÅ ÚÁÇÒÕÖÅÎÎÙÅ ÁÒÈÉ×ÎÙÅ ÆÁÊÌÙ\n"
  699. " check - ÐÒÏ×ÅÒÉÔØ ÎÁ ÐÒÅÄÍÅÔ ÓÌÏÍÁÎÎÙÈ ÚÁ×ÉÓÉÍÏÓÔÅÊ\n"
  700. "\n"
  701. "ïÐÃÉÉ:\n"
  702. " -h ôÅËÓÔ, ÞÔÏ ×Ù ×ÉÄÉÔÅ.\n"
  703. " -q log'ÉÒÕÅÍÙÊ ×Ù×ÏÄ - ÎÅ ×Ù×ÏÄÉÔØ ÉÎÄÉËÁÔÏÒ ÐÒÏÇÒÅÓÓÁ\n"
  704. " -qq ÎÉÞÅÇÏ ÎÅ ×Ù×ÏÄÉÔØ ÉÓËÌÀÞÁÑ ÏÛÉÂËÉ\n"
  705. " -d ÔÏÌØËÏ ÚÁÇÒÕÚÉÔØ - ÎÅ ÕÓÔÁÎÁ×ÌÉ×ÁÔØ É ÎÅ ÒÁÓÐÁËÏ×Ù×ÁÔØ ÁÒÈÉ×Ù\n"
  706. " -s ÎÉËÁËÉÈ ÄÅÊÓÔ×ÉÊ. éÍÉÔÁÃÉÑ ×ÙÐÏÌÎÅÎÉÑ\n"
  707. " -y ÐÒÅÄÐÏÌÁÇÁÅÔÓÑ ÏÔ×ÅÔ Yes ÎÁ ×ÓÅ ×ÏÐÒÏÓÙ, ËÏÔÏÒÙÅ ÐÒÉ ÜÔÏÍ ÎÅ "
  708. "×Ù×ÏÄÑÔÓÑ\n"
  709. " -f ÐÒÏÄÏÌÖÁÔØ, ÄÁÖÅ ÅÓÌÉ ÐÒÏ×ÅÒËÁ ÃÅÌÏÓÔÎÏÓÔÉ ÎÅ ÕÄÁÞÎÁ\n"
  710. " -m ÐÒÏÄÏÌÖÁÔØ, ÄÁÖÅ ÅÓÌÉ ÍÅÓÔÏÐÏÌÏÖÅÎÉÅ ÁÒÈÉ×Ï× ÎÅ ÉÚ×ÅÓÔÎÏ\n"
  711. " -u ÐÌÀÓ ËÏ ×ÓÅÍÕ ÐÏËÁÚÙ×ÁÔØ ÓÐÉÓÏË ÏÂÎÏ×ÌÅÎÎÙÈ ÐÁËÅÔÏ×\n"
  712. " -b ËÏÍÐÉÌÉÒÏ×ÁÔØ ÐÁËÅÔ ÉÓÈÏÄÎÙÈ ÔÅËÓÔÏ× ÐÏÓÌÅ ÅÇÏ ÚÁÇÒÕÚËÉ\n"
  713. " -c=? ÞÉÔÁÔØ ÕËÁÚÁÎÎÙÊ ÆÁÊÌ ËÏÎÆÉÇÕÒÁÃÉÉ\n"
  714. " -o=? ÕÓÔÁÎÏ×ÉÔØ ÐÒÏÉÚ×ÏÌØÎÕÀ ÏÐÃÉÀ, ÎÁÐÒÉÍÅÒ, -o dir::cache=/tmp\n"
  715. "óÔÒÁÎÉÃÙ ÒÕËÏ×ÏÄÓÔ×Á apt-get(8), sources.list(5) É apt.conf(5)\n"
  716. "ÓÏÄÅÒÖÁÔ ÂÏÌØÛÅ ÉÎÆÏÒÍÁÃÉÉ.\n"
  717. " This APT has Super Cow Powers.\n"
  718. #: cmdline/acqprogress.cc:55
  719. msgid "Hit "
  720. msgstr "õÓÐÅÈ "
  721. #: cmdline/acqprogress.cc:79
  722. msgid "Get:"
  723. msgstr "ðÏÌÕÞÅÎÏ:"
  724. #: cmdline/acqprogress.cc:110
  725. msgid "Ign "
  726. msgstr "éÇÎ"
  727. #: cmdline/acqprogress.cc:114
  728. msgid "Err "
  729. msgstr "ïÛÂ "
  730. #: cmdline/acqprogress.cc:135
  731. #, c-format
  732. msgid "Fetched %sB in %s (%sB/s)\n"
  733. msgstr "ðÏÌÕÞÅÎÏ %sâ ÚÁ %s (%sâ/c)\n"
  734. #: cmdline/acqprogress.cc:225
  735. msgid " [Working]"
  736. msgstr "[òÁÂÏÔÁÀ]"
  737. #: cmdline/acqprogress.cc:271
  738. #, c-format
  739. msgid ""
  740. "Media Change: Please insert the disc labeled '%s' in the drive '%s' and "
  741. "press enter\n"
  742. msgstr ""
  743. "óÍÅÎÁ ÎÏÓÉÔÅÌÑ: ×ÓÔÁרÔÅ ÄÉÓË Ó ÍÅÔËÏÊ '%s' × ÕÓÔÒÏÊÓÔ×Ï '%s' É ÎÁÖÍÉÔÅ "
  744. "××ÏÄ\n"
  745. #: cmdline/apt-sortpkgs.cc:84
  746. msgid "Unknown package record!"
  747. msgstr "îÅÉÚ×ÅÓÔÎÁÑ ÚÁÐÉÓØ ÐÁËÅÔÁ"
  748. #: cmdline/apt-sortpkgs.cc:148
  749. msgid ""
  750. "Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
  751. "\n"
  752. "apt-sortpkgs is a simple tool to sort package files. The -s option is used\n"
  753. "to indicate what kind of file it is.\n"
  754. "\n"
  755. "Options:\n"
  756. " -h This help text\n"
  757. " -s Use source file sorting\n"
  758. " -c=? Read this configuration file\n"
  759. " -o=? Set an arbitary configuration option, eg -o dir::cache=/tmp\n"
  760. msgstr ""
  761. "éÓÐÏÌØÚÏ×ÁÎÉÅ: apt-sortpkgs [options] file1 [file2 ...]\n"
  762. "\n"
  763. "apt-sortpkgs - ÐÒÏÓÔÏÊ ÉÎÓÔÒÕÍÅÎÔ ÄÌÑ ÓÏÒÔÉÒÏ×ËÉ ÆÁÊÌÏ× ÐÁËÅÔÏ×. ïÐÃÉÑ -s\n"
  764. "ÉÓÐÏÌØÚÕÅÔÓÑ, ÞÔÏÂÙ ÐÏËÁÚÁÔØ ×ÉÄ ÆÁÊÌÁ.\n"
  765. "\n"
  766. "Options:\n"
  767. " -h ÔÅËÓÔ, ÞÔÏ ×Ù ×ÉÄÉÔÅ\n"
  768. " -s ÓÏÒÔÉÒÏ×ÁÔØ ÆÁÊÌ ÉÓÈÏÄÎÉËÏ×\n"
  769. " -c=? ÞÉÔÁÔØ ÕËÁÚÁÎÎÙÊ ÆÁÊÌ ËÏÎÆÉÇÕÒÁÃÉÉ\n"
  770. " -o=? ÕÓÔÁÎÏ×ÉÔØ ÐÒÏÉÚ×ÏÌØÎÕÀ ÏÐÃÉÀ, ÎÁÐÒÉÍÅÒ, -o dir::cache=/tmp\n"
  771. #: dselect/install:32
  772. msgid "Bad default setting!"
  773. msgstr "îÅÐÒÁ×ÉÌØÎÁÑ ÕÓÔÁÎÏ×ËÁ ÐÏ ÕÍÏÌÞÁÎÉÀ!"
  774. #: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:93
  775. #: dselect/install:104 dselect/update:45
  776. msgid "Press enter to continue."
  777. msgstr "äÌÑ ÐÒÏÄÏÌÖÅÎÉÑ ÎÁÖÍÉÔÅ ××ÏÄ."
  778. #: dselect/install:100
  779. msgid "Some errors occurred while unpacking. I'm going to configure the"
  780. msgstr "îÅÓËÏÌØËÏ ÏÛÉÂÏË ÐÒÏÉÚÏÛÌÏ ×Ï ×ÒÅÍÑ ÒÁÓÐÁËÏ×ËÉ. ñ ÂÕÄÕ ÎÁÓÔÒÁÉ×ÁÔØ"
  781. #: dselect/install:101
  782. msgid "packages that were installed. This may result in duplicate errors"
  783. msgstr ""
  784. "ÕÓÔÁÎÏ×ÌÅÎÎÙÅ ÐÁËÅÔÙ. üÔÏ ÍÏÖÅÔ ÂÙÔØ ÒÅÚÕÌØÔÁÔ ÄÕÂÌÉÒÏ×ÁÎÉÑ ÏÛÉÂÏË ÉÌÉ "
  785. "ÏÛÉÂÏË,"
  786. #: dselect/install:102
  787. msgid "or errors caused by missing dependencies. This is OK, only the errors"
  788. msgstr ""
  789. "ÐÏÌÕÞÅÎÎÙÈ ÐÏ ×ÉÎÅ ÐÒÏÐÕÝÅÎÎÙÈ ÚÁ×ÉÓÉÍÏÓÔÅÊ. üÔÏ ÎÏÒÍÁÌØÎÏ, ×ÁÖÎÙ ÔÏÌØËÏ "
  790. "ÏÛÉÂËÉ,"
  791. #: dselect/install:103
  792. msgid "above this message are important. Please fix them and run [I]nstall again"
  793. msgstr "ÕËÁÚÁÎÎÙÅ ÒÁÎÅÅ. ðÏÖÁÌÕÊÓÔÁ, ÉÓÐÒÁרÔÅ ÉÈ É ÚÁÐÕÓËÁÊÔÅ [õ]ÓÔÁÎÏ×ÉÔØ ÏÐÑÔØ"
  794. #: dselect/update:30
  795. msgid "Merging Available information"
  796. msgstr "óÌÉÑÎÉÅ ÄÏÓÔÕÐÎÏÊ ÉÎÆÏÒÍÁÃÉÉ"
  797. #: apt-pkg/contrib/mmap.cc:82
  798. msgid "Can't mmap an empty file"
  799. msgstr ""
  800. #: apt-pkg/contrib/mmap.cc:87
  801. #, c-format
  802. msgid "Couldn't make mmap of %lu bytes"
  803. msgstr "îÅ ÍÏÇÕ ÓÄÅÌÁÔØ mmap %lu ÂÁÊÔ"
  804. #: apt-pkg/contrib/strutl.cc:935
  805. #, c-format
  806. msgid "Selection %s not found"
  807. msgstr "÷ÙÄÅÌÅÎÎÙÊ %s ÎÅ ÎÁÊÄÅÎ"
  808. #: apt-pkg/contrib/configuration.cc:449
  809. #, c-format
  810. msgid "Opening configuration file %s"
  811. msgstr "ïÔËÒÙÔÉÅ ÆÁÊÌÁ ËÏÎÆÉÇÕÒÁÃÉÉ %s"
  812. #: apt-pkg/contrib/configuration.cc:559
  813. #, c-format
  814. msgid "Syntax error %s:%u: Block starts with no name."
  815. msgstr "óÉÎÔÁËÓÉÞÅÓËÁÑ ÏÛÉÂËÁ %s:%u: ÷ÎÁÞÁÌÅ ÂÌÏËÁ ÎÅÔ ÉÍÅÎÉ"
  816. #: apt-pkg/contrib/configuration.cc:578
  817. #, c-format
  818. msgid "Syntax error %s:%u: Malformed Tag"
  819. msgstr "óÉÎÔÁËÓÉÞÅÓËÁÑ ÏÛÉÂËÁ %s:%u: âÅÓÆÏÒÍÅÎÎÙÊ ÔÜÇ"
  820. #: apt-pkg/contrib/configuration.cc:595
  821. #, c-format
  822. msgid "Syntax error %s:%u: Extra junk after value"
  823. msgstr "óÉÎÔÁËÓÉÞÅÓËÁÑ ÏÛÉÂËÁ %s:%u: äÏÐÏÌÎÉÔÅÌØÎÙÊ ËÕÓÏË ÐÏÓÌÅ ÚÎÁÞÅÎÉÑ"
  824. #: apt-pkg/contrib/configuration.cc:635
  825. #, c-format
  826. msgid "Syntax error %s:%u: Directives can only be done at the top level"
  827. msgstr "óÉÎÔÁËÓÉÞÅÓËÁÑ ÏÛÉÂËÁ %s:%u: äÉÒÅËÔÉ×Ù ÍÏÇÕÔ ÚÁÄÁ×ÁÔØÓÑ ÔÏÌØËÏ ÎÁ ×ÅÒÈÎÅÍ ÕÒÏ×ÎÅ"
  828. #: apt-pkg/contrib/configuration.cc:642
  829. #, c-format
  830. msgid "Syntax error %s:%u: Too many nested includes"
  831. msgstr "óÉÎÔÁËÓÉÞÅÓËÁÑ ÏÛÉÂËÁ %s:%u: óÌÉÛËÏÍ ÍÎÏÇÏ ×ÓÔÒÏÅÎÎÙÈ ×ËÌÀÞÅÎÉÊ"
  832. #: apt-pkg/contrib/configuration.cc:646 apt-pkg/contrib/configuration.cc:651
  833. #, c-format
  834. msgid "Syntax error %s:%u: Included from here"
  835. msgstr "óÉÎÔÁËÓÉÞÅÓËÁÑ ÏÛÉÂËÁ %s:%u: ÷ËÌÀÞÅÎÏ ÏÔÓÀÄÁ"
  836. #: apt-pkg/contrib/configuration.cc:655
  837. #, c-format
  838. msgid "Syntax error %s:%u: Unsupported directive '%s'"
  839. msgstr "óÉÎÔÁËÓÉÞÅÓËÁÑ ÏÛÉÂËÁ %s:%u: îÅÐÏÄÄÅÒÖÉ×ÁÅÍÁÑ ÄÉÒÅËÔÉ×Á '%s'"
  840. #: apt-pkg/contrib/configuration.cc:689
  841. #, c-format
  842. msgid "Syntax error %s:%u: Extra junk at end of file"
  843. msgstr "óÉÎÔÁËÓÉÞÅÓËÁÑ ÏÛÉÂËÁ %s:%u: äÏÐÏÌÎÉÔÅÌØÎÙÊ ËÕÓÏË × ËÏÎÃÅ ÆÁÊÌÁ"
  844. #: apt-pkg/contrib/configuration.cc:701 apt-pkg/contrib/cdromutl.cc:153
  845. #: apt-pkg/acquire.cc:412 apt-pkg/clean.cc:38
  846. #, c-format
  847. msgid "Unable to read %s"
  848. msgstr "îÅ×ÏÚÍÏÖÎÏ ÐÒÏÞÉÔÁÔØ %s"
  849. #: apt-pkg/contrib/progress.cc:154
  850. #, c-format
  851. msgid "\r%s... Error!"
  852. msgstr "\r%s... ïÛÉÂËÁ!"
  853. #: apt-pkg/contrib/progress.cc:156
  854. #, c-format
  855. msgid "\r%s... Done"
  856. msgstr "\r%s... óÄÅÌÁÎÏ"
  857. #: apt-pkg/contrib/cmndline.cc:79
  858. #, c-format
  859. msgid "Command line option '%c' [from %s] is not known."
  860. msgstr "ïÐÃÉÑ ËÏÍÍÁÎÄÎÏÊ ÓÔÒÏËÉ '%c' (ÉÚ %s) - ÎÅ ÉÚ×ÅÓÔÎÁ"
  861. #: apt-pkg/contrib/cmndline.cc:105 apt-pkg/contrib/cmndline.cc:113
  862. #: apt-pkg/contrib/cmndline.cc:121
  863. #, c-format
  864. msgid "Command line option %s is not understood"
  865. msgstr "îÅ ÒÁÓÐÏÚÎÁÎÎÁÑ ÏÐÃÉÑ ËÏÍÍÁÎÄÎÏÊ ÓÔÒÏËÉ %s"
  866. #: apt-pkg/contrib/cmndline.cc:126
  867. #, c-format
  868. msgid "Command line option %s is not boolean"
  869. msgstr "ïÐÃÉÑ ËÏÍÍÁÎÄÎÏÊ ÓÔÒÏËÉ %s - ÎÅ ÂÕÌÅ×Á"
  870. #: apt-pkg/contrib/cmndline.cc:165 apt-pkg/contrib/cmndline.cc:186
  871. #, c-format
  872. msgid "Option %s requires an argument."
  873. msgstr "ïÐÃÉÑ %s ÔÒÅÂÕÅÔ ÁÒÇÕÍÅÎÔÁ"
  874. #: apt-pkg/contrib/cmndline.cc:200 apt-pkg/contrib/cmndline.cc:206
  875. #, c-format
  876. msgid "Option %s: Configuration item sepecification must have an =<val>."
  877. msgstr "ïÐÃÉÑ %s: óÐÅÃÉÆÉËÁÃÉÑ ËÏÎÆÉÇÕÒÁÃÉÏÎÎÏÇÏ ÜÌÅÍÅÎÔÁ ÐÏÄÒÁÚÕÍÅ×ÁÅÔ ËÏÎÓÔÒÕËÃÉÀ =<val>"
  878. #: apt-pkg/contrib/cmndline.cc:236
  879. #, c-format
  880. msgid "Option %s requires an integer argument, not '%s'"
  881. msgstr "ïÐÃÉÑ %s ÔÒÅÂÕÅÔ ÃÅÌÏÇÏ ÁÒÇÕÍÅÎÔÁ, Á ÎÅ '%s'"
  882. #: apt-pkg/contrib/cmndline.cc:267
  883. #, c-format
  884. msgid "Option '%s' is too long"
  885. msgstr "ïÐÃÉÑ '%s' ÓÌÉÛËÏÍ ÄÌÉÎÎÁ"
  886. #: apt-pkg/contrib/cmndline.cc:300
  887. #, c-format
  888. msgid "Sense %s is not understood, try true or false."
  889. msgstr "óÍÙÓÌ %s ÎÅ ÑÓÅÎ, ÐÏÐÙÔÁÊÔÅÓØ true ÉÌÉ false"
  890. #: apt-pkg/contrib/cmndline.cc:350
  891. #, c-format
  892. msgid "Invalid operation %s"
  893. msgstr "îÅ×ÅÒÎÁÑ ÏÐÅÒÁÃÉÑ %s"
  894. #: apt-pkg/contrib/cdromutl.cc:55
  895. #, c-format
  896. msgid "Unable to stat the mount point %s"
  897. msgstr "îÅ×ÏÚÍÏÖÎÏ ÐÏÌÕÞÉÔØ ÁÔÒÉÂÕÔÙ ÔÏÞËÉÍÏÎÔÉÒÏ×ÁÎÉÑ %s"
  898. #: apt-pkg/contrib/cdromutl.cc:149 apt-pkg/acquire.cc:418 apt-pkg/clean.cc:44
  899. #, c-format
  900. msgid "Unable to change to %s"
  901. msgstr "îÅ×ÏÚÍÏÖÎÏ ÓÍÅÎÉÔØ ÔÅËÕÝÉÊ ËÁÔÁÌÏÇ ÎÁ %s"
  902. #: apt-pkg/contrib/cdromutl.cc:190
  903. msgid "Failed to stat the cdrom"
  904. msgstr "îÅ ÕÄÁÌÏÓØ ÐÏÌÕÞÉÔØ ÁÔÔÒÉÂÕÔÙ cdrom."
  905. #: apt-pkg/contrib/fileutl.cc:80
  906. #, c-format
  907. msgid "Not using locking for read only lock file %s"
  908. msgstr ""
  909. #: apt-pkg/contrib/fileutl.cc:85
  910. #, c-format
  911. msgid "Could not open lock file %s"
  912. msgstr "îÅ ÍÏÇÕÏÔËÒÙÔØ lock-ÆÁÊÌ %s"
  913. #: apt-pkg/contrib/fileutl.cc:103
  914. #, c-format
  915. msgid "Not using locking for nfs mounted lock file %s"
  916. msgstr ""
  917. #: apt-pkg/contrib/fileutl.cc:107
  918. #, c-format
  919. msgid "Could not get lock %s"
  920. msgstr "îÅ ÍÏÇÕ ÐÏÌÕÞÉÔØ ÂÌÏËÉÒÏ×ËÕ %s"
  921. #: apt-pkg/contrib/fileutl.cc:358
  922. #, c-format
  923. msgid "Waited, for %s but it wasn't there"
  924. msgstr "ïÖÉÄÁÌÉ ÐÒÏÃÅÓÓ %s, ÎÏ ÅÇÏ ÎÅ ÂÙÌÏ"
  925. #: apt-pkg/contrib/fileutl.cc:368
  926. #, c-format
  927. msgid "Sub-process %s received a segmentation fault."
  928. msgstr "ðÏÄÐÒÏÃÅÓÓ %s ÐÏÌÕÞÉÌ segmentation fault."
  929. #: apt-pkg/contrib/fileutl.cc:371
  930. #, c-format
  931. msgid "Sub-process %s returned an error code (%u)"
  932. msgstr "ðÏÄÐÒÏÃÅÓÓ %s ×ÅÒÎÕÌ ËÏÄ ÏÛÉÂËÉ (%u)"
  933. #: apt-pkg/contrib/fileutl.cc:373
  934. #, c-format
  935. msgid "Sub-process %s exited unexpectedly"
  936. msgstr "ðÏÄÐÒÏÃÅÓÓ %s ÎÅÏÖÉÄÁÎÎÏ ÚÁ×ÅÒÛÉÌÓÑ"
  937. #: apt-pkg/contrib/fileutl.cc:417
  938. #, c-format
  939. msgid "Could not open file %s"
  940. msgstr "îÅ ÍÏÇÕ ÏÔËÒÙÔØ ÆÁÊÌ %s"
  941. #: apt-pkg/contrib/fileutl.cc:452
  942. msgid "Read error"
  943. msgstr "ïÛÉÂËÁ ÞÔÅÎÉÑ"
  944. #: apt-pkg/contrib/fileutl.cc:473
  945. #, c-format
  946. msgid "read, still have %lu to read but none left"
  947. msgstr "ÓÏÂÉÒÁÌÉÓØ ÅÝÅ ÐÒÏÞÉÔÁÔØ %lu, ÎÏ ÎÉÞÅÇÏ ÎÅ ÏÓÔÁÌÏÓØ"
  948. #: apt-pkg/contrib/fileutl.cc:491
  949. msgid "Write error"
  950. msgstr "ïÛÉÂËÁ ÚÁÐÉÓÉ"
  951. #: apt-pkg/contrib/fileutl.cc:503
  952. #, c-format
  953. msgid "write, still have %lu to write but couldn't"
  954. msgstr "ÚÁÐÉÓØ, ÓÏÂÉÒÁÌÉÓØ ÚÁÐÉÓÁÔØ ÅÝÅ %lu, ÎÏ ÎÅ ÓÍÏÇÌÉ"
  955. #: apt-pkg/contrib/fileutl.cc:578
  956. msgid "Problem closing the file"
  957. msgstr "ðÒÏÂÌÅÍÁ ÚÁËÒÙÔÉÑ ÆÁÊÌÁ"
  958. #: apt-pkg/contrib/fileutl.cc:584
  959. msgid "Problem unlinking the file"
  960. msgstr "ðÒÏÂÌÅÍÁ ÐÒÉ ÕÄÁÌÅÎÉÉ ÎÅ ÖÅÓÔËÏÊ Ó×ÑÚÉ ÆÁÊÌÁ"
  961. #: apt-pkg/contrib/fileutl.cc:595
  962. msgid "Problem syncing the file"
  963. msgstr "ðÒÏÂÌÅÍÁ ÓÉÎÈÒÏÎÉÚÁÃÉÉ ÆÁÊÌÁ"
  964. #: apt-pkg/pkgcache.cc:126
  965. msgid "Empty package cache"
  966. msgstr "ëÜÛ ÐÁËÅÔÏ× ÐÕÓÔ"
  967. #: apt-pkg/pkgcache.cc:132
  968. msgid "The package cache file is corrupted"
  969. msgstr "ëÜÛ-ÆÁÊÌ ÐÁËÅÔÁ ÎÅÉÓÐÒÁ×ÅÎ"
  970. #: apt-pkg/pkgcache.cc:137
  971. msgid "The package cache file is an incompatible version"
  972. msgstr "ëÜÛ-ÆÁÊÌ ÐÁËÅÔÁ ÉÍÅÅÔ ÎÅ ÐÏÄÈÏÄÑÝÕÀ ×ÅÒÓÉÀ"
  973. #: apt-pkg/pkgcache.cc:142
  974. #, c-format
  975. msgid "This APT does not support the Versioning System '%s'"
  976. msgstr "äÁÎÎÙÊ APT ÎÅ ÐÏÄÄÅÒÖÉ×ÁÅÔ óÉÓÔÅÍÕ ÷ÅÒÓÉÊ '%s'"
  977. #: apt-pkg/pkgcache.cc:147
  978. msgid "The package cache was build for a different architecture"
  979. msgstr "ëÜÛ ÐÁËÅÔÏ× ÂÙÌ ÓÏÂÒÁÎ ÄÌÑ ÄÒÕÇÏÊ ÁÒÈÉÔÅËÔÕÒÙ"
  980. #: apt-pkg/pkgcache.cc:218
  981. msgid "Depends"
  982. msgstr "úÁ×ÉÓÑÝÉÊ"
  983. #: apt-pkg/pkgcache.cc:218
  984. msgid "PreDepends"
  985. msgstr "ðÒÅÄ-ÚÁ×ÉÓÉÍÙÊ"
  986. #: apt-pkg/pkgcache.cc:218
  987. msgid "Suggests"
  988. msgstr "ðÒÅÄÐÏÌÁÇÁÅÍÙÊ"
  989. #: apt-pkg/pkgcache.cc:219
  990. msgid "Recommends"
  991. msgstr "òÅËÏÍÅÎÄÕÅÍÙÊ"
  992. #: apt-pkg/pkgcache.cc:219
  993. msgid "Conflicts"
  994. msgstr "ëÏÎÆÌÉËÔÕÀÝÉÊ"
  995. #: apt-pkg/pkgcache.cc:219
  996. msgid "Replaces"
  997. msgstr "úÁÍÅÝÁÅÍÙÊ"
  998. #: apt-pkg/pkgcache.cc:220
  999. msgid "Obsoletes"
  1000. msgstr "õÓÔÁÒÅ×ÛÉÊ"
  1001. #: apt-pkg/pkgcache.cc:231
  1002. msgid "important"
  1003. msgstr "×ÁÖÎÙÊ"
  1004. #: apt-pkg/pkgcache.cc:231
  1005. msgid "required"
  1006. msgstr "ÔÒÅÂÕÅÍÙÊ"
  1007. #: apt-pkg/pkgcache.cc:231
  1008. msgid "standard"
  1009. msgstr "ÓÔÁÎÄÁÒÔÎÙÊ"
  1010. #: apt-pkg/pkgcache.cc:232
  1011. msgid "optional"
  1012. msgstr "ÎÅÏÂÑÚÁÔÅÌØÎÙÊ"
  1013. #: apt-pkg/pkgcache.cc:232
  1014. msgid "extra"
  1015. msgstr "ÄÏÐÏÌÎÉÔÅÌØÎÙÊ"
  1016. #: apt-pkg/depcache.cc:60 apt-pkg/depcache.cc:89
  1017. msgid "Building Dependency Tree"
  1018. msgstr "ðÏÓÔÒÏÅÎÉÅ ÄÅÒÅ×Á ÚÁ×ÉÓÉÍÏÓÔÅÊ"
  1019. #: apt-pkg/depcache.cc:61
  1020. msgid "Candidate Versions"
  1021. msgstr "÷ÅÒÓÉÉ-ËÁÎÄÉÄÁÔÙ"
  1022. #: apt-pkg/depcache.cc:90
  1023. msgid "Dependency Generation"
  1024. msgstr "çÅÎÅÒÉÒÏ×ÁÎÉÅ ÚÁ×ÉÓÉÍÏÓÔÉ"
  1025. #: apt-pkg/tagfile.cc:71
  1026. #, c-format
  1027. msgid "Unable to parse package file %s (1)"
  1028. msgstr "îÅ×ÏÚÍÏÖÎÏ ÒÁÚÏÂÒÁÔØ ÆÁÊÌ ÐÁËÅÔÁ %s (1)"
  1029. #: apt-pkg/tagfile.cc:158
  1030. #, c-format
  1031. msgid "Unable to parse package file %s (2)"
  1032. msgstr "îÅ×ÏÚÍÏÖÎÏ ÒÁÚÏÂÒÁÔØ ÆÁÊÌ ÐÁËÅÔÁ %s (2)"
  1033. #: apt-pkg/sourcelist.cc:88
  1034. #, c-format
  1035. msgid "Malformed line %lu in source list %s (URI)"
  1036. msgstr "âÅÓÆÏÒÍÅÎÎÁÑ ÓÔÒÏËÁ %lu × ÓÐÉÓËÅ ÉÓÔÏÞÎÉËÏ× %s (URI)"
  1037. #: apt-pkg/sourcelist.cc:90
  1038. #, c-format
  1039. msgid "Malformed line %lu in source list %s (dist)"
  1040. msgstr "âÅÓÆÏÒÍÅÎÎÁÑ ÓÔÒÏËÁ %lu × ÓÐÉÓËÅ ÉÓÔÏÞÎÉËÏ× %s (dist)"
  1041. #: apt-pkg/sourcelist.cc:93
  1042. #, c-format
  1043. msgid "Malformed line %lu in source list %s (URI parse)"
  1044. msgstr "âÅÓÆÏÒÍÅÎÎÁÑ ÓÔÒÏËÁ %lu × ÓÐÉÓËÅ ÉÓÔÏÞÎÉËÏ× %s (ÁÎÁÌÉÚ URI)"
  1045. #: apt-pkg/sourcelist.cc:99
  1046. #, c-format
  1047. msgid "Malformed line %lu in source list %s (Absolute dist)"
  1048. msgstr "âÅÓÆÏÒÍÅÎÎÁÑ ÓÔÒÏËÁ %lu × ÓÐÉÓËÅ ÉÓÔÏÞÎÉËÏ× %s (Absolute dist)"
  1049. #: apt-pkg/sourcelist.cc:106
  1050. #, c-format
  1051. msgid "Malformed line %lu in source list %s (dist parse)"
  1052. msgstr "âÅÓÆÏÒÍÅÎÎÁÑ ÓÔÒÏËÁ %lu × ÓÐÉÓËÅ ÉÓÔÏÞÎÉËÏ× %s (dist parse)"
  1053. #: apt-pkg/sourcelist.cc:183 apt-pkg/sourcelist.cc:207
  1054. #, c-format
  1055. msgid "Vendor block %s is invalid"
  1056. msgstr "îÅ ×ÅÒÎÙÊ ÂÌÏË ÐÏÓÔÁ×ÝÉËÁ %s"
  1057. #: apt-pkg/sourcelist.cc:235
  1058. #, c-format
  1059. msgid "Opening %s"
  1060. msgstr "ïÔËÒÙÔÉÅ %s"
  1061. #: apt-pkg/sourcelist.cc:249
  1062. #, c-format
  1063. msgid "Line %u too long in source list %s."
  1064. msgstr "óÔÒÏËÁ %u ÓÌÉÛËÏÍ ÄÌÉÎÎÁ × ÓÐÉÓËÅ ÉÓÔÏÞÎÉËÏ× %s"
  1065. #: apt-pkg/sourcelist.cc:266
  1066. #, c-format
  1067. msgid "Malformed line %u in source list %s (type)"
  1068. msgstr "âÅÓÆÏÒÍÅÎÎÁÑ ÓÔÒÏËÁ %u × ÓÐÉÓËÅ ÉÓÔÏÞÎÉËÏ× %s (ÔÉÐ)"
  1069. #: apt-pkg/sourcelist.cc:270
  1070. #, c-format
  1071. msgid "Type '%s' is not known in on line %u in source list %s"
  1072. msgstr "îÅÉÚ×ÅÓÔÅÎ ÔÉÐ '%s' × ÓÔÒÏËÅ %u × ÓÐÉÓËÅ ÉÓÔÏÞÎÉËÏ× %s"
  1073. #: apt-pkg/sourcelist.cc:279 apt-pkg/sourcelist.cc:282
  1074. #, c-format
  1075. msgid "Malformed line %u in source list %s (vendor id)"
  1076. msgstr "âÅÓÆÏÒÍÅÎÎÁÑ ÓÔÒÏËÁ %u × ÓÐÉÓËÅ ÉÓÔÏÞÎÉËÏ× %s (vendor id)"
  1077. #: apt-pkg/sourcelist.cc:296
  1078. #, c-format
  1079. msgid "Unknown vendor ID '%s' in line %u of source list %s"
  1080. msgstr "îÅÉÚ×ÅÓÔÎÙÊ ID ÐÏÓÔÁ×ÝÉËÁ '%s' × ÓÔÒÏËÅ %u ÓÐÉÓËÁ ÉÓÔÏÞÎÉËÏ× %s"
  1081. #: apt-pkg/packagemanager.cc:402
  1082. #, c-format
  1083. msgid ""
  1084. "This installation run will require temporarily removing the essential "
  1085. "package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
  1086. "you really want to do it, activate the APT::Force-LoopBreak option."
  1087. msgstr ""
  1088. "âÌÁÇÏÄÁÒÑ ÚÁÃÉËÌÉ×ÁÎÉÀ Conflicts/Pre-Depends, ÐÒÏÃÅÄÕÒÁ ÕÓÔÁÎÏ×ËÉ ÂÕÄÅÔ "
  1089. "ÔÒÅÂÏ×ÁÔØ ×ÒÅÍÅÎÎÏÇÏ ÕÄÁÌÅÎÉÑ ÓÕÝÅÓÔ×ÅÎÎÏ ×ÁÖÎÏÇÏ ÐÁËÅÔÁ %s. úÁÞÁÓÔÕÀ ÜÔÏ "
  1090. "ÞÒÅ×ÁÔÏ, ÏÄÎÁËÏ, ÅÓÌÉ ÷Ù Õ×ÅÒÅÎÎÙ, ÁËÔÉ×ÉÒÕÊÔÅ APT::Force-LoopBreak."
  1091. #: apt-pkg/pkgrecords.cc:37
  1092. #, c-format
  1093. msgid "Index file type '%s' is not supported"
  1094. msgstr "îÅ ÐÏÄÄÅÒÖÉ×ÁÅÔÓÑ ÉÎÄÅËÓÎÙÊ ÆÁÊÌ ÔÉÐÁ '%s'"
  1095. #: apt-pkg/algorithms.cc:237
  1096. #, c-format
  1097. msgid "The package %s needs to be reinstalled, but I can't find an archive for it."
  1098. msgstr "ðÁËÅÔ %s ÎÕÖÄÁÅÔÓÑ × ÐÅÒÅÕÓÔÁÎÏ×ËÅ, ÎÏ Ñ ÎÅ ÍÏÇÕ ÎÁÊÔÉ ÁÒÈÉ× ÄÌÑ ÎÅÇÏ."
  1099. #: apt-pkg/algorithms.cc:1055
  1100. msgid ""
  1101. "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
  1102. "held packages."
  1103. msgstr ""
  1104. "ïÛÉÂËÁ, pkgProblemResolver::Resolve ÏÓÔÁÎÏ×ÉÌ ×ÙÐÏÌÎÅÎÉÅ, ÜÔÏ ÍÏÖÅÔ ÂÙÔØ "
  1105. "×ÙÚ×ÁÎÏ ÏÔÌÏÖÅÎÎÙÍÉ ÐÁËÅÔÁÍÉ."
  1106. #: apt-pkg/algorithms.cc:1057
  1107. msgid "Unable to correct problems, you have held broken packages."
  1108. msgstr "îÅ ×ÏÚÍÏÖÎÏ ÉÓÐÒÁ×ÉÔØ ÏÛÉÂËÉ, Õ ÷ÁÓ ÏÔÌÏÖÅÎÙ ÂÉÔÙÅ ÐÁËÅÔÙ."
  1109. #: apt-pkg/acquire.cc:61
  1110. #, c-format
  1111. msgid "Lists directory %spartial is missing."
  1112. msgstr "ðÒÏÐÕÝÅÎ ËÁÔÁÌÏÇ %spartial"
  1113. #: apt-pkg/acquire.cc:65
  1114. #, c-format
  1115. msgid "Archive directory %spartial is missing."
  1116. msgstr "ðÒÏÐÕÝÅÎ ËÁÔÁÌÏÇ %spartial"
  1117. #: apt-pkg/acquire-worker.cc:112
  1118. #, c-format
  1119. msgid "The method driver %s could not be found."
  1120. msgstr "äÒÁÊ×ÅÒ ÍÅÔÏÄÁ %s ÎÅ ÎÁÊÄÅÎ."
  1121. #: apt-pkg/acquire-worker.cc:161
  1122. #, c-format
  1123. msgid "Method %s did not start correctly"
  1124. msgstr "íÅÔÏÄ %s ÚÁÐÕÓÔÉÌÓÑ ÎÅ ËÏÒÒÅËÔÎÏ"
  1125. #: apt-pkg/init.cc:117
  1126. #, c-format
  1127. msgid "Packaging system '%s' is not supported"
  1128. msgstr "óÉÓÔÅÍÁ ÕÐÁËÏ×ËÉ '%s' ÎÅ ÐÏÄÄÅÒÖÉ×ÁÅÔÓÑ"
  1129. #: apt-pkg/init.cc:133
  1130. msgid "Unable to determine a suitable system type"
  1131. msgstr "îÅ×ÏÚÍÏÖÎÏ ÏÐÒÅÄÅÌÉÔØ ÐÏÄÈÏÄÑÝÉÊ ÔÉÐ ÓÉÓÔÅÍÙ"
  1132. #: apt-pkg/clean.cc:61
  1133. #, c-format
  1134. msgid "Unable to stat %s."
  1135. msgstr "îÅ×ÏÚÍÏÖÎÏ ÐÏÌÕÞÉÔØ ÁÔÒÉÂÕÔÙ %s."
  1136. #: apt-pkg/srcrecords.cc:49
  1137. msgid "You must put some 'source' URIs in your sources.list"
  1138. msgstr "÷Ù ÄÏÌÖÎÙ ×ÎÅÓÔÉ ËÁËÏÊ-ÎÉÂÕÄØ 'ÉÓÈÏÄÎÙÊ' URI × ×ÁÛ sources.list"
  1139. #: apt-pkg/cachefile.cc:73
  1140. msgid "The package lists or status file could not be parsed or opened."
  1141. msgstr "óÐÉÓËÉ ÐÁËÅÔÏ× ÉÌÉ ÆÁÊÌ ÓÏÓÔÏÑÎÉÑ ÎÅ ÍÏÇÕÔ ÂÙÔØ ÏÔËÒÙÔÙ ÉÌÉ ÐÒÏÁÎÁÌÉÚÉÒÏ×ÁÎÙ."
  1142. #: apt-pkg/cachefile.cc:77
  1143. msgid "You may want to run apt-get update to correct these problems"
  1144. msgstr "÷Ù ÍÏÖÅÔÅ ÚÁÐÕÓÔÉÔØ 'apt-get update' ÄÌÑ ÉÓÐÒÁ×ÌÅÎÉÑ ÜÔÉÈ ÏÛÉÂÏË"
  1145. #: apt-pkg/policy.cc:269
  1146. msgid "Invalid record in the preferences file, no Package header"
  1147. msgstr "îÅ×ÅÒÎÁÑ ÚÁÐÉÓØ × ÆÁÊÌÅ ÐÒÅÄÐÏÞÔÅÎÉÊ: ÏÔÓÕÔÓÔ×ÕÅÔ ÚÁÇÏÌÏ×ÏË ÐÁËÅÔÁ"
  1148. #: apt-pkg/policy.cc:291
  1149. #, c-format
  1150. msgid "Did not understand pin type %s"
  1151. msgstr "îÅ ÉÚ×ÅÓÔÎÙÊ pin-ÔÉÐ %s"
  1152. #: apt-pkg/pkgcachegen.cc:74
  1153. msgid "Cache has an incompatible versioning system"
  1154. msgstr "ëÜÛ ÉÍÅÅÔ ÎÅÓÏ×ÍÅÓÔÉÍÕÀ ÓÉÓÔÅÍÕ ×ÅÒÓÉÊ"
  1155. #: apt-pkg/pkgcachegen.cc:117
  1156. #, c-format
  1157. msgid "Error occured while processing %s (NewPackage)"
  1158. msgstr "ïÛÉÂËÁ ÐÒÏÉÚÏÛÌÁ ×Ï ×ÒÅÍÑ ÏÂÒÁÂÏÔËÉ %s (NewPackage)"
  1159. #: apt-pkg/pkgcachegen.cc:129
  1160. #, c-format
  1161. msgid "Error occured while processing %s (UsePackage1)"
  1162. msgstr "ïÛÉÂËÁ ÐÒÏÉÚÏÛÌÁ ×Ï ×ÒÅÍÑ ÏÂÒÁÂÏÔËÉ %s (UsePackage1)"
  1163. #: apt-pkg/pkgcachegen.cc:150
  1164. #, c-format
  1165. msgid "Error occured while processing %s (UsePackage2)"
  1166. msgstr "ïÛÉÂËÁ ÐÒÏÉÚÏÛÌÁ ×Ï ×ÒÅÍÑ ÏÂÒÁÂÏÔËÉ %s (UsePackage2)"
  1167. #: apt-pkg/pkgcachegen.cc:154
  1168. #, c-format
  1169. msgid "Error occured while processing %s (NewFileVer1)"
  1170. msgstr "ïÛÉÂËÁ ÐÒÏÉÚÏÛÌÁ ×Ï ×ÒÅÍÑ ÏÂÒÁÂÏÔËÉ %s (NewFileVer1)"
  1171. #: apt-pkg/pkgcachegen.cc:184
  1172. #, c-format
  1173. msgid "Error occured while processing %s (NewVersion1)"
  1174. msgstr "ïÛÉÂËÁ ÐÒÏÉÚÏÛÌÁ ×Ï ×ÒÅÍÑ ÏÂÒÁÂÏÔËÉ %s (NewVersion1)"
  1175. #: apt-pkg/pkgcachegen.cc:188
  1176. #, c-format
  1177. msgid "Error occured while processing %s (UsePackage3)"
  1178. msgstr "ïÛÉÂËÁ ÐÒÏÉÚÏÛÌÁ ×Ï ×ÒÅÍÑ ÏÂÒÁÂÏÔËÉ %s (UsePackage3)"
  1179. #: apt-pkg/pkgcachegen.cc:192
  1180. #, c-format
  1181. msgid "Error occured while processing %s (NewVersion2)"
  1182. msgstr "ïÛÉÂËÁ ÐÒÏÉÚÏÛÌÁ ×Ï ×ÒÅÍÑ ÏÂÒÁÂÏÔËÉ %s (NewVersion2)"
  1183. #: apt-pkg/pkgcachegen.cc:207
  1184. msgid "Wow, you exceeded the number of package names this APT is capable of."
  1185. msgstr "ïÇÏ-ÇÏ, ÷Ù ÐÒÅ×ÙÓÉÌÉ ËÏÌÉÞÅÓÔ×Ï ÉÍÅÎ ÐÁËÅÔÏ×, ÞÔÏ APT ÓÐÏÓÏÂÅÎ ÏÂÒÁÂÏÔÁÔØ."
  1186. #: apt-pkg/pkgcachegen.cc:210
  1187. msgid "Wow, you exceeded the number of versions this APT is capable of."
  1188. msgstr "ïÇÏ-ÇÏ, ÷Ù ÐÒÅ×ÙÓÉÌÉ ËÏÌÉÞÅÓÔ×Ï ×ÅÒÓÉÊ, ÞÔÏ APT ÓÐÏÓÏÂÅÎ ÏÂÒÁÂÏÔÁÔØ."
  1189. #: apt-pkg/pkgcachegen.cc:213
  1190. msgid "Wow, you exceeded the number of dependencies this APT is capable of."
  1191. msgstr "ïÇÏ-ÇÏ, ÷Ù ÐÒÅ×ÙÓÉÌÉ ËÏÌÉÞÅÓÔ×Ï ÚÁ×ÉÓÉÍÏÓÔÅÊ, ÞÔÏ APT ÓÐÏÓÏÂÅÎ ÏÂÒÁÂÏÔÁÔØ."
  1192. #: apt-pkg/pkgcachegen.cc:241
  1193. #, c-format
  1194. msgid "Error occured while processing %s (FindPkg)"
  1195. msgstr "ïÛÉÂËÁ ÐÒÏÉÚÏÛÌÁ ×Ï ×ÒÅÍÑ ÏÂÒÁÂÏÔËÉ %s (FindPkg)"
  1196. #: apt-pkg/pkgcachegen.cc:254
  1197. #, c-format
  1198. msgid "Error occured while processing %s (CollectFileProvides)"
  1199. msgstr "ïÛÉÂËÁ ÐÒÏÉÚÏÛÌÁ ×Ï ×ÒÅÍÑ ÏÂÒÁÂÏÔËÉ %s (CollectFileProvides)"
  1200. #: apt-pkg/pkgcachegen.cc:260
  1201. #, c-format
  1202. msgid "Package %s %s was not found while processing file dependencies"
  1203. msgstr "ðÁËÅÔ %s %s ÎÅ ÂÙÌ ÎÁÊÄÅÎ ×Ï ×ÒÅÍÑ ÏÂÒÁÂÏÔËÉ ÆÁÊÌÁ ÚÁ×ÉÓÉÍÏÓÔÅÊ"
  1204. #: apt-pkg/pkgcachegen.cc:574
  1205. #, c-format
  1206. msgid "Couldn't stat source package list %s"
  1207. msgstr "îÅ ÕÄÁÌÏÓØ ÐÏÌÕÞÉÔØ ÁÔÒÉÂÕÔÙ ÓÐÉÓËÁ ÐÁËÅÔÏ× ÉÓÈÏÄÎÙÈ ÔÅËÓÔÏ× %s"
  1208. #. Build the status cache
  1209. #: apt-pkg/pkgcachegen.cc:643 apt-pkg/pkgcachegen.cc:701
  1210. #: apt-pkg/pkgcachegen.cc:706 apt-pkg/pkgcachegen.cc:829
  1211. msgid "Reading Package Lists"
  1212. msgstr "þÔÅÎÉÅ ÓÐÉÓËÏ× ÐÁËÅÔÏ×"
  1213. #: apt-pkg/pkgcachegen.cc:658
  1214. msgid "Collecting File Provides"
  1215. msgstr ""
  1216. #: apt-pkg/pkgcachegen.cc:774 apt-pkg/pkgcachegen.cc:781
  1217. msgid "IO Error saving source cache"
  1218. msgstr "ïÛÉÂËÁ ××ÏÄÁ/×Ù×ÏÄÁ ÐÒÉ ÐÏÐÙÔËÅ ÓÏÈÒÁÎÉÔØ ËÜÛ ÉÓÈÏÄÎÙÈ ÔÅËÓÔÏ×"
  1219. #: apt-pkg/acquire-item.cc:124
  1220. #, c-format
  1221. msgid "rename failed, %s (%s -> %s)."
  1222. msgstr "ÐÅÒÅÉÍÅÎÏ×ÁÎÉÅ ÎÅ ÕÄÁÌÏÓØ, %s (%s -> %s)."
  1223. #: apt-pkg/acquire-item.cc:353
  1224. #, c-format
  1225. msgid ""
  1226. "I wasn't able to locate a file for the %s package. This might mean you need "
  1227. "to manually fix this package. (due to missing arch)"
  1228. msgstr ""
  1229. "ñ ÎÅ × ÓÏÓÔÏÑÎÉÉ ÏÂÎÁÒÕÖÉÔØ ÍÅÓÔÏÐÏÌÏÖÅÎÉÅ ÆÁÊÌÁ Ó ÐÁËÅÔÏÍ %s. üÔÏ ÍÏÖÅÔ "
  1230. "ÏÚÎÁÞÁÔØ, ÞÔÏ ÷ÁÍ ÐÒÉÄÅÔÓÑ ×ÒÕÞÎÕÀ ÕÓÔÁÎÁ×ÌÉ×ÁÔØ ÜÔÏÔ ÐÁËÅÔ (ÄÏÌÖÎÏ ÂÙÔØ "
  1231. "ÐÒÏÐÕÝÅÎ arch)"
  1232. #: apt-pkg/acquire-item.cc:388
  1233. #, c-format
  1234. msgid ""
  1235. "I wasn't able to locate file for the %s package. This might mean you need to "
  1236. "manually fix this package."
  1237. msgstr ""
  1238. "ñ ÎÅ × ÓÏÓÔÏÑÎÉÉ ÏÂÎÁÒÕÖÉÔØ ÍÅÓÔÏÐÏÌÏÖÅÎÉÅ ÆÁÊÌÁ Ó ÐÁËÅÔÏÍ %s. üÔÏ ÍÏÖÅÔ "
  1239. "ÏÚÎÁÞÁÔØ, ÞÔÏ ÷ÁÍ ÐÒÉÄÅÔÓÑ ×ÒÕÞÎÕÀ ÕÓÔÁÎÁ×ÌÉ×ÁÔØ ÜÔÏÔ ÐÁËÅÔ."
  1240. #: apt-pkg/acquire-item.cc:419
  1241. #, c-format
  1242. msgid "The package index files are corrupted. No Filename: field for package %s."
  1243. msgstr "îÅËÏÒÒÅËÔÎÙÊ ÉÎÄÅËÓÎÙÊ ÆÁÊÌ ÐÁËÅÔÁ. îÅÔ ÉÍÅÎÉ ÆÁÊÌÁ: ÐÏÌÅ ÐÁËÅÔÁ %s."
  1244. #: apt-pkg/acquire-item.cc:501
  1245. msgid "Size mismatch"
  1246. msgstr "îÅÐÏÄÈÏÄÑÝÉÊ ÒÁÚÍÅÒ"
  1247. #: apt-pkg/acquire-item.cc:511
  1248. msgid "MD5Sum mismatch"
  1249. msgstr "MD5Sum ÎÅ ÐÏÄÈÏÄÉÔ"
  1250. #~ msgid "Sorry, you don't have enough free space in %s to hold all the .debs."
  1251. #~ msgstr ""
  1252. #~ "ë ÓÏÖÁÌÅÎÉÀ Õ ×ÁÓ ÎÅ ÄÏÓÔÁÔÏÞÎÏ ÍÅÓÔÁ × %s ÄÌÑ ÓÏÈÒÁÎÅÎÉÑ ×ÓÅÈ .deb'Ï×"
  1253. #~ msgid "Unable to read the cdrom database %s"
  1254. #~ msgstr "îÅ×ÏÚÍÏÖÎÏ ÐÒÏÞÉÔÁÔØ CD-ÂÁÚÕ %s"
  1255. #~ msgid ""
  1256. #~ "Please use apt-cdrom to make this CD recognized by APT. apt-get update "
  1257. #~ "cannot be used to add new CDs"
  1258. #~ msgstr ""
  1259. #~ "ðÏÖÁÌÕÊÓÔÁ, ÉÓÐÏÌØÚÕÊÔÅ apt-cdrom, ÞÔÏÂÙ APT ÓÍÏÇ ÒÁÓÐÏÚÎÁÔØ ÄÁÎÎÙÊ CD. "
  1260. #~ "apt-get update ÎÅ ÉÓÐÏÌØÚÕÅÔÓÑ ÄÌÑ ÄÏÂÁ×ÌÅÎÉÑ ÎÏ×ÏÇÏ CD"
  1261. #~ msgid "Wrong CD"
  1262. #~ msgstr "ïÛÉÂÏÞÎÙÊ CD"
  1263. #~ msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
  1264. #~ msgstr ""
  1265. #~ "îÅ×ÏÚÍÏÖÎÏ ÒÁÚÍÏÎÔÉÒÏ×ÁÔØ CD-ROM × %s, ×ÅÒÏÑÔÎÏ ÏÎ ÅÝÅ ÉÓÐÏÌØÚÕÅÔÓÑ."
  1266. #~ msgid "Connecting to %s (%s)"
  1267. #~ msgstr "ðÒÉÓÏÅÄÉÎÅÎÉÅ Ë %s (%s)"
  1268. #~ msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
  1269. #~ msgstr "îÅ ÕÄÁÅÔÓÑ ÓÏÚÄÁÔØ ÓÏËÅÔ ÄÌÑ %s (f=%u t=%u p=%u)"
  1270. #~ msgid "Cannot initiate the connection to %s:%s (%s)."
  1271. #~ msgstr "îÅ×ÏÚÍÏÖÎÏ ÉÎÉÃÉÁÌÉÚÉÒÏ×ÁÔØ ÓÏÅÄÉÎÅÎÉÅ Ó %s:%s (%s)."
  1272. #~ msgid "Could not connect to %s:%s (%s), connection timed out"
  1273. #~ msgstr "îÅ ÕÄÁÅÔÓÑ ÐÒÉÓÏÅÄÉÎÉÔØÓÑ Ë %s:%s (%s), connection timed out"
  1274. #~ msgid "Could not connect to %s:%s (%s)."
  1275. #~ msgstr "îÅ ÕÄÁÅÔÓÑ ÐÒÉÓÏÅÄÉÎÉÔØÓÑ Ë %s:%s (%s)."
  1276. #~ msgid "Connecting to %s"
  1277. #~ msgstr "ðÒÉÓÏÅÄÉÎÅÎÉÅ Ë %s"
  1278. #~ msgid "Something wicked happened resolving '%s:%s' (%i)"
  1279. #~ msgstr "þÔÏ-ÔÏ ÐÏ×ÒÅÄÉÌÏÓØ ÐÒÉ ÒÁÚÒÅÛÅÎÉÉ ÉÍÅÎÉ '%s:%s' (%i)"
  1280. #~ msgid "Unable to connect to %s %s:"
  1281. #~ msgstr "îÅ×ÏÚÍÏÖÎÏ ÐÒÉÓÏÅÄÉÎÉÔØÓÑ Ë %s %s:"
  1282. #~ msgid "Failed to stat"
  1283. #~ msgstr "îÅ ÕÄÁÌÏÓØ ÐÏÌÕÞÉÔØ ÁÔÒÉÂÕÔÙ"
  1284. #~ msgid "Failed to set modification time"
  1285. #~ msgstr "îÅ ÕÄÁÌÏÓØ ÕÓÔÁÎÏ×ÉÔØ ×ÒÅÍÑ ÍÏÄÉÆÉËÁÃÉÉ"
  1286. #~ msgid "Invalid URI, local URIS must not start with //"
  1287. #~ msgstr "îÅÐÒÁ×ÉÌØÎÙÊ URI, ÍÅÓÔÎÙÊ URI ÎÅ ÄÏÌÖÅÎ ÎÁÞÉÎÁÔØÓÑ Ó //"
  1288. #~ msgid "Logging in"
  1289. #~ msgstr "òÅÇÉÓÔÒÁÃÉÑ ×"
  1290. #~ msgid "Unable to determine the peer name"
  1291. #~ msgstr "îÅ×ÏÚÍÏÖÎÏ ÏÐÒÅÄÅÌÉÔØ ÉÍÑ ÕÄÁÌÅÎÎÏÇÏ ÓÅÒ×ÅÒÁ"
  1292. #~ msgid "Unable to determine the local name"
  1293. #~ msgstr "îÅ×ÏÚÍÏÖÎÏ ÏÐÒÅÄÅÌÉÔØ ÌÏËÁÌØÎÏÅ ÉÍÑ"
  1294. #~ msgid "Server refused our connection and said: %s"
  1295. #~ msgstr "óÅÒ×ÅÒ ÒÁÚÏÒ×ÁÌ ÎÁÛÅ ÓÏÅÄÉÎÅÎÉÅ É ÓÏÏÂÝÉÌ: %s"
  1296. #~ msgid "USER failed, server said: %s"
  1297. #~ msgstr "ëÏÍÍÁÎÄÁ USER ÚÁ×ÅÒÛÉÌÁÓØ ÎÅ ÕÄÁÞÎÏ, ÓÅÒ×ÅÒ ÓÏÏÂÝÉÌ: %s"
  1298. #~ msgid "PASS failed, server said: %s"
  1299. #~ msgstr "ëÏÍÍÁÎÄÁ PASS ÚÁ×ÅÒÛÉÌÁÓØ ÎÅ ÕÄÁÞÎÏ, ÓÅÒ×ÅÒ ÓÏÏÂÝÉÌ: %s"
  1300. #~ msgid ""
  1301. #~ "A proxy server was specified but no login script, Acquire::ftp::"
  1302. #~ "ProxyLogin is empty."
  1303. #~ msgstr ""
  1304. #~ "Proxy-ÓÅÒ×ÅÒ ÕËÁÚÁÎ, ÏÄÎÁËÏ ÎÅÔ ÓÃÅÎÁÒÉÑ ×ÈÏÄÁ × ÓÉÓÔÅÍÕ, Acquire::ftp::"
  1305. #~ "ProxyLogin ÐÕÓÔ"
  1306. #~ msgid "Login script command '%s' failed, server said: %s"
  1307. #~ msgstr "ëÏÍÍÁÎÄÁ '%s' ÚÁ×ÅÒÛÉÌÁÓØ ÎÅÕÄÁÞÎÏ, ÓÅÒ×ÅÒ ÓÏÏÂÝÉÌ: %s"
  1308. #~ msgid "TYPE failed, server said: %s"
  1309. #~ msgstr "ëÏÍÍÁÎÄÁ TYPE ÚÁ×ÅÒÛÉÌÁÓØ ÎÅ ÕÄÁÞÎÏ, ÓÅÒ×ÅÒ ÓÏÏÂÝÉÌ: %s"
  1310. #~ msgid "Connection timeout"
  1311. #~ msgstr "÷ÒÅÍÑ ÓÏÅÄÉÎÅÎÉÑ ×ÙÛÌÏ"
  1312. #~ msgid "Server closed the connection"
  1313. #~ msgstr "óÅÒ×ÅÒ ÚÁËÒÙÌ ÓÏÅÄÉÎÅÎÉÅ"
  1314. #~ msgid "A response overflowed the buffer."
  1315. #~ msgstr "ïÔ×ÅÔ ÐÅÒÅÐÏÌÎÉÌ ÂÕÆÅÒ."
  1316. #~ msgid "Protocol corruption"
  1317. #~ msgstr "éÓËÁÖÅÎÉÅ ÐÒÏÔÏËÏÌÁ"
  1318. #~ msgid "Could not create a socket"
  1319. #~ msgstr "îÅ ÕÄÁÌÏÓØ ÓÏÚÄÁÔØ ÓÏËÅÔ"
  1320. #~ msgid "Could not connect data socket, connection timed out"
  1321. #~ msgstr "îÅ ÍÏÇÕ ÐÒÉÓÏÅÄÉÎÉÔØ ÓÏËÅÔ ÄÁÎÎÙÈ, ×ÒÅÍÑ ÓÏÅÄÉÎÅÎÉÑ ×ÙÛÌÏ"
  1322. #~ msgid "Could not connect passive socket."
  1323. #~ msgstr "îÅ×ÏÚÍÏÖÎÏ ÐÒÉÓÏÅÄÉÎÉÔØ ÐÁÓÓÉ×ÎÙÊ ÓÏËÅÔ"
  1324. #, fuzzy
  1325. #~ msgid "Could not bind a socket"
  1326. #~ msgstr "îÅ×ÏÚÍÏÖÎÏ ÐÒÉÓ×ÏÉÔØ ÉÍÑ ÇÎÅÚÄÕ"
  1327. #~ msgid "Could not listen on the socket"
  1328. #~ msgstr "îÅ ÍÏÇÕ ÐÒÉÎÉÍÁÔØ ÚÁÐÒÏÓÙ ÓÏÅÄÉÎÅÎÉÑ ÎÁ ÓÏËÅÔÅ"
  1329. #~ msgid "Could not determine the socket's name"
  1330. #~ msgstr "îÅ ÕÄÁÌÏÓØ ÏÐÒÅÄÅÌÉÔØ ÉÍÑ ÇÎÅÚÄÁ"
  1331. #~ msgid "Unable to send PORT command"
  1332. #~ msgstr "îÅ×ÏÚÍÏÖÎÏ ÐÏÓÌÁÔØ ËÏÍÍÁÎÄÕ PORT"
  1333. #~ msgid "Unkonwn address family %u (AF_*)"
  1334. #~ msgstr "îÅÉÚ×ÅÓÔÎÏÅ ÓÅÍÅÊÓÔ×Ï ÁÄÒÅÓÏ× %u (AF_*)"
  1335. #~ msgid "EPRT failed, server said: %s"
  1336. #~ msgstr "ëÏÍÍÁÎÄÁ EPRT ÚÁ×ÅÒÛÉÌÁÓØ ÎÅ ÕÄÁÞÎÏ, ÓÅÒ×ÅÒ ÓÏÏÂÝÉÌ: %s"
  1337. #~ msgid "Data socket connect timed out"
  1338. #~ msgstr "÷ÒÅÍÑ ÓÏÄÉÎÅÎÉÑ ÓÏËÅÔÁ ÄÁÎÎÙÈ ×ÙÛÌÏ"
  1339. #~ msgid "Unable to accept connection"
  1340. #~ msgstr "îÅ×ÏÚÍÏÖÎÏ ÐÒÉÎÑÔØ ÓÏÅÄÉÎÅÎÉÅ"
  1341. #~ msgid "Unable to fetch file, server said '%s'"
  1342. #~ msgstr "îÅ×ÏÚÍÏÖÎÏ ÐÏÌÕÞÉÔØ ÆÁÊÌ, ÓÅÒ×ÅÒ ÓÏÏÂÝÉÌ: '%s'"
  1343. #~ msgid "Data socket timed out"
  1344. #~ msgstr "÷ÒÅÍÑ ÓÏËÅÔÁ ÄÁÎÎÙÈ ×ÙÛÌÏ"
  1345. #~ msgid "Data transfer failed, server said '%s'"
  1346. #~ msgstr "ðÅÒÅÄÁÞÁ ÄÁÎÎÙÈ ÚÁ×ÅÒÛÉÌÁÓØ ÎÅ ÕÄÁÞÎÏ, ÓÅÒ×ÅÒ ÓÏÏÂÝÉÌ: '%s'"
  1347. #~ msgid "Unable to invoke "
  1348. #~ msgstr "îÅ×ÏÚÍÏÖÎÏ ×ÙÚ×ÁÔØ "
  1349. #~ msgid "Read error from %s process"
  1350. #~ msgstr "ïÛÉÂËÁ ÞÔÅÎÉÑ × ÐÒÏÃÅÓÓÅ %s"
  1351. #~ msgid "Waiting for file"
  1352. #~ msgstr "ïÖÉÄÁÎÉÅ ÆÁÊÌÁ"
  1353. #~ msgid "Got a single header line over %u chars"
  1354. #~ msgstr "ðÏÌÕÞÅÎ ÚÁÇÏÌÏ×ÏË ÄÌÉÎÎÅÅ %u ÓÉÍ×ÏÌÏ×"
  1355. #~ msgid "Bad header line"
  1356. #~ msgstr "îÅ×ÅÒÎÙÊ ÚÁÇÏÌÏ×ÏË"
  1357. #~ msgid "The http server sent an invalid reply header"
  1358. #~ msgstr "http ÓÅÒ×ÅÒ ÐÏÓÌÁÌ ÎÅ×ÅÒÎÙÊ ÚÁÇÏÌÏ×ÏË reply "
  1359. #~ msgid "The http server sent an invalid Content-Length header"
  1360. #~ msgstr "http ÓÅÒ×ÅÒ ÐÏÓÌÁÌ ÎÅ×ÅÒÎÙÊ ÚÁÇÏÌÏ×ÏË Content-Length"
  1361. #~ msgid "The http server sent an invalid Content-Range header"
  1362. #~ msgstr "http ÓÅÒ×ÅÒ ÐÏÓÌÁÌ ÎÅ×ÅÒÎÙÊ ÚÁÇÏÌÏ×ÏË Content-Range"
  1363. #~ msgid "This http server has broken range support"
  1364. #~ msgstr "üÔÏÔ http ÓÅÒ×ÅÒ ÉÍÅÅÔ ÂÕÔÕÀ ÐÏÄÄÅÒÖËÕ ÄÉÁÐÁÚÏÎÁ"
  1365. #~ msgid "Unknown date format"
  1366. #~ msgstr "îÅÉÚ×ÅÓÔÎÙÊ ÆÏÒÍÁÔ ÄÁÎÎÙÈ"
  1367. #~ msgid "Select failed"
  1368. #~ msgstr "÷ÙÂÒÁÔØ ÎÅ ÕÄÁÌÏÓØ"
  1369. #~ msgid "Connection timed out"
  1370. #~ msgstr "÷ÒÅÍÑ ÓÏÅÄÉÎÅÎÉÑ ×ÙÛÌÏ"
  1371. #~ msgid "Error writing to output file"
  1372. #~ msgstr "ïÛÉÂËÁ ÚÁÐÉÓÉ × ×ÙÈÏÄÎÏÊ ÆÁÊÌ"
  1373. #~ msgid "Error writing to file"
  1374. #~ msgstr "ïÛÉÂËÁ ÚÁÐÉÓÉ × ÆÁÊÌ"
  1375. #~ msgid "Error writing to the file"
  1376. #~ msgstr "ïÛÉÂËÁ ÚÁÐÉÓÉ × ÆÁÊÌ"
  1377. #~ msgid "Error reading from server Remote end closed connection"
  1378. #~ msgstr "ïÛÉÂËÁ ÞÔÅÎÉÑ, ÕÄÁÌÅÎÎÙÊ ÓÅÒ×ÅÒ ÚÁËÒÙÌ ÓÏÅÄÉÎÅÎÉÅ"
  1379. #~ msgid "Error reading from server"
  1380. #~ msgstr "ïÛÉÂËÁ ÞÔÅÎÉÑ Ó ÓÅÒ×ÅÒÁ"
  1381. #~ msgid "Bad header Data"
  1382. #~ msgstr "îÅ ×ÅÒÎÙÊ ÚÁÇÏÌÏ×ÏË ÄÁÎÎÙÈ"
  1383. #~ msgid "Connection failed"
  1384. #~ msgstr "óÏÅÄÉÎÅÎÉÅ ÒÁÚÏÒ×ÁÎÏ"
  1385. #~ msgid "Internal error"
  1386. #~ msgstr "÷ÎÕÔÒÅÎÑÑ ÏÛÉÂËÁ"
  1387. #~ msgid "Failed to create IPC pipe to subprocess"
  1388. #~ msgstr "îÅ ÕÄÁÌÏÓØ ÓÏÚÄÁÔØ IPC-ËÁÎÁÌ ÄÌÑ ÐÏÄÐÒÏÃÅÓÓÁ"
  1389. #~ msgid "File Not Found"
  1390. #~ msgstr "æÁÊÌ ÎÅ ÎÁÊÄÅÎ"
  1391. #~ msgid "Connection closed prematurely"
  1392. #~ msgstr "óÏÅÄÉÎÅÎÉÅ ÚÁËÒÙÔÏ ÐÒÅÖÄÅ×ÒÅÍÅÎÎÏ"
  1393. #~ msgid "Failed write file %s"
  1394. #~ msgstr "îÅ ÕÄÁÌÏÓØ ÚÁÐÉÓÁÔØ ÆÁÊÌ %s"
  1395. #~ msgid "Failed to close file %s"
  1396. #~ msgstr "îÅ ÕÄÁÌÏÓØ ÚÁËÒÙÔØ ÆÁÊÌ %s"
  1397. #~ msgid "Unpacking %s more than once"
  1398. #~ msgstr "ðÏ×ÔÏÒÎÁÑ ÒÁÓÐÁËÏ×ËÁ %s"
  1399. #~ msgid "The directory %s is diverted"
  1400. #~ msgstr "äÉÒÅËÔÏÒÉÑ %s ÏÔËÌÏÎÅÎÁ"
  1401. #~ msgid "The package is trying to write to the diversion target %s/%s"
  1402. #~ msgstr "ðÁËÅÔ ÐÙÔÁÅÔÓÑ ÐÉÓÁÔØ × ÏÂÈÏÄÎÏÊ ËÁÔÁÌÏÇ %s/%s"
  1403. #~ msgid "The diversion path is too long"
  1404. #~ msgstr "ïÂÈÏÄÎÏÊ ÐÕÔØ ÓÌÉÛËÏÍ ÄÌÉÎÅÎ"
  1405. #~ msgid "Failed to stat %s"
  1406. #~ msgstr "îÅ ÕÄÁÌÏÓØ ÐÏÌÕÞÉÔØ ÁÔÒÉÂÕÔÙ %s"
  1407. #~ msgid "Failed to rename %s to %s"
  1408. #~ msgstr "îÅ ÕÄÁÌÏÓØ ÐÅÒÅÉÍÅÎÏ×ÁÔØ %s × %s"
  1409. #~ msgid "The directory %s is being replaced by a non-directory"
  1410. #~ msgstr "ëÁÔÁÌÏÇ %s ÂÙÌ ÚÁÍÅÎÅÎ ÎÅ ËÁÔÁÌÏÇÏÍ"
  1411. #~ msgid "Extract "
  1412. #~ msgstr "÷ÙÄÅÌÉÔØ "
  1413. #~ msgid "Aborted, backing out"
  1414. #~ msgstr "á×ÁÒÉÊÎÏÅ ÚÁ×ÅÒÛÅÎÉÅ, ×ÏÚ×ÒÁÔ"
  1415. #~ msgid "Failed to locate node in its hash bucket"
  1416. #~ msgstr "îÅ ÕÄÁÌÏÓØ ÒÁÚÍÅÓÔÉÔØ ÕÚÅÌ × ÅÇÏ ÈÅÛÁÈ"
  1417. #~ msgid "The path is too long"
  1418. #~ msgstr "ðÕÔØ ÓÌÉÛËÏÍ ÄÌÉÎÅÎ"
  1419. #~ msgid "De-replaced "
  1420. #~ msgstr "÷ÏÓÓÔÁÎÏ×ÌÅÎ "
  1421. #~ msgid " from "
  1422. #~ msgstr " ÉÚ "
  1423. #~ msgid "Backing out "
  1424. #~ msgstr "÷ÏÚ×ÒÁÔ "
  1425. #~ msgid " [new node]"
  1426. #~ msgstr " [ÎÏ×ÙÊ ÕÚÅÌ]"
  1427. #~ msgid "Overwrite package match with no version for %s"
  1428. #~ msgstr "õ ÐÅÒÅÐÉÓÙ×ÁÅÍÏÇÏ ÐÁËÅÔÁ ÎÅÔ ×ÅÒÓÉÉ ÄÌÑ %s"
  1429. #~ msgid "Replaced file "
  1430. #~ msgstr "úÁÍÅÝÅÎÎÙÊ ÆÁÊÌ "
  1431. #~ msgid "File %s/%s overwrites the one in the package %s"
  1432. #~ msgstr "æÁÊÌ %s/%s ÐÅÒÅÐÉÓÙ×ÁÅÔ ÆÁÊÌ × ÐÁËÅÔÅ %s"
  1433. #~ msgid "DropNode called on still linked node"
  1434. #~ msgstr "DropNode ×ÙÚ×ÁÎ ÄÌÑ ÉÓÐÏÌØÚÕÀÝÅÇÏÓÑ ÅÝÅ ÕÚÌÁ"
  1435. #~ msgid "Failed to locate the hash element!"
  1436. #~ msgstr "îÅ ÕÄÁÌÏÓØ ÌÏËÁÌÉÚÏ×ÁÔØ hash-ÜÌÅÍÅÎÔ!"
  1437. #~ msgid "Internal Error in AddDiversion"
  1438. #~ msgstr "÷ÎÕÔÒÅÎÎÑ ÏÛÉÂËÁ × AddDiversion"
  1439. #~ msgid "Duplicate conf file %s/%s"
  1440. #~ msgstr "ðÏ×ÔÏÒÎÙÊ ÆÁÊÌ ÎÁÓÔÒÏÅË %s/%s"
  1441. #~ msgid "Invalid archive signature"
  1442. #~ msgstr "îÅ ×ÅÒÎÁÑ ÓÉÇÎÁÔÕÒÁ ÁÒÈÉ×Á"
  1443. #~ msgid "Error reading archive member header"
  1444. #~ msgstr "ïÛÉÂËÁ ÞÔÅÎÉÑ ÚÁÇÏÌÏ×ËÁ ÞÌÅÎÁ ÁÒÈÉ×Á"
  1445. #~ msgid "Invalid archive member header"
  1446. #~ msgstr "îÅÐÒÁ×ÉÌØÎÙÊ ÚÁÇÏÌÏ×ÏË ÞÌÅÎÁ ÁÒÈÉ×Á"
  1447. #~ msgid "Archive is too short"
  1448. #~ msgstr "óÌÉÛËÏÍ ËÏÒÏÔËÉÊ ÁÒÈÉ×"
  1449. #~ msgid "Failed to read the archive headers"
  1450. #~ msgstr "îÅ ÕÄÁÌÏÓØ ÐÒÏÞÉÔÁÔØ ÚÁÇÏÌÏ×ËÉ ÁÒÈÉ×Á"
  1451. #~ msgid "Failed to create pipes"
  1452. #~ msgstr "îÅ ÕÄÁÌÏÓØ ÓÏÚÄÁÔØ ËÁÎÁÌÙ"
  1453. #~ msgid "Failed to exec gzip "
  1454. #~ msgstr "îÅ ÕÄÁÌÏÓØ ×ÙÐÏÌÎÉÔØ gzip "
  1455. #~ msgid "Corrupted archive"
  1456. #~ msgstr "ðÏ×ÒÅÖÄÅÎÎÙÊ ÁÒÈÉ×"
  1457. #~ msgid "Tar Checksum failed, archive corrupted"
  1458. #~ msgstr "îÅÐÒÁ×ÉÌØÎÁÑ ËÏÎÔÒÏÌØÎÁÑ ÓÕÍÍÁ Tar, ÁÒÈÉ× ÐÏ×ÒÅÖÄÅÎ"
  1459. #~ msgid "Unkown TAR header type %u, member %s"
  1460. #~ msgstr "îÅÉÚ×ÅÓÔÎÙÊ ÔÉÐ ÚÁÇÏÌÏ×ËÁ TAR %u, ÓÏÓÔÁ×ÎÁÑ ÞÁÓÔØ %s"
  1461. #~ msgid "This is not a valid DEB archive, missing '%s' member"
  1462. #~ msgstr "üÔÏ ÎÅ ÐÒÁ×ÉÌØÎÙÊ DEB-ÁÒÈÉ× - ÏÔÓÕÔÓÔ×ÕÅÔ ÓÏÓÔÁ×ÎÁÑ ÞÁÓÔØ '%s'"
  1463. #~ msgid "Internal Error, could not locate member %s"
  1464. #~ msgstr "÷ÎÕÔÒÅÎÎÑÑ ÏÛÉÂËÁ, ÎÅ ÍÏÇÕ ÎÁÊÔÉ ÓÏÓÔÁ×ÎÕÀ ÞÁÓÔØ %s"
  1465. #~ msgid "Internal Error, could not locate member"
  1466. #~ msgstr "÷ÎÕÔÒÅÎÎÑÑ ÏÛÉÂËÁ, ÎÅ ÍÏÇÕ ÎÁÊÔÉ ÓÏÓÔÁ×ÎÕÀ ÞÁÓÔØ"
  1467. #~ msgid "Failed to locate a valid control file"
  1468. #~ msgstr "îÅ ÍÏÇÕ ÒÁÚÍÅÓÔÉÔØ ÐÒÁ×ÉÌØÎÙÊ control-ÆÁÊÌ"
  1469. #~ msgid "Unparsible control file"
  1470. #~ msgstr "îÅ ÍÏÇÕ ÒÁÚÏÂÒÁÔØ control-ÆÁÊÌ"
  1471. #~ msgid "Failed to remove %s"
  1472. #~ msgstr "îÅ ÕÄÁÌÏÓØ ÕÄÁÌÉÔØ %s"
  1473. #~ msgid "Unable to create %s"
  1474. #~ msgstr "îÅ ÕÄÁÌÏÓØ ÓÏÚÄÁÔØ %s"
  1475. #~ msgid "Failed to stat %sinfo"
  1476. #~ msgstr "îÅ ÕÄÁÌÏÓØ ÐÏÌÕÞÉÔØ Ó×ÏÊÓÔ×Á %sinfo"
  1477. #~ msgid "The info and temp directories need to be on the same filesystem"
  1478. #~ msgstr "ëÁÔÁÌÏÇÉ info É temp ÄÏÌÖÎÙ ÎÁÈÏÄÉÔØÓÑ × ÏÄÎÏÊ ÆÁÊÌÏ×ÏÊ ÓÉÓÔÅÍÅ"
  1479. #~ msgid "Failed to change to the admin dir %sinfo"
  1480. #~ msgstr ""
  1481. #~ "îÅ ÕÄÁÌÏÓØ ÓÍÅÎÉÔØ ÔÅËÕÝÉÊ ËÁÔÁÌÏÇ ÎÁ ÁÄÍÉÎÉÓÔÒÁÔÉ×ÎÙÊ ËÁÔÁÌÏÇ %sinfo"
  1482. #~ msgid "Internal Error getting a Package Name"
  1483. #~ msgstr "÷ÎÕÔÒÅÎÑÑ ÏÛÉÂËÁ ÐÒÏÉÚÏÛÌÁ ÐÒÉ ÐÏÌÕÞÅÎÉÉ ÉÍÅÎÉ ÐÁËÅÔÁ"
  1484. #, fuzzy
  1485. #~ msgid "Reading File Listing"
  1486. #~ msgstr "þÔÅÎÉÅ ÓÐÉÓËÏ× ÐÁËÅÔÏ×"
  1487. #~ msgid ""
  1488. #~ "Failed to open the list file '%sinfo/%s'. If you cannot restore this file "
  1489. #~ "then make it empty and immediately re-install the same version of the "
  1490. #~ "package!"
  1491. #~ msgstr ""
  1492. #~ "îÅ ÕÄÁÌÏÓØ ÏÔËÒÙÔØ ÆÁÊÌ ÓÐÉÓËÁ '%sinfo/%s'. åÓÌÉ ÷Ù ÎÅ ÍÏÖÅÔÅ "
  1493. #~ "×ÏÓÓÔÁÎÏ×ÉÔØ ÅÇÏ, ÔÏ ÏÂÎÕÌÉÔÅ É ÎÅÍÅÄÌÅÎÎÏ ÐÅÒÅÕÓÔÁÎÏ×ÉÔÅ ÔÁËÕÀ ÖÅ ×ÅÒÓÉÀ "
  1494. #~ "ÐÁËÅÔÁ!"
  1495. #~ msgid "Failed reading the list file %sinfo/%s"
  1496. #~ msgstr "ïÛÉÂËÁ ÞÔÅÎÉÑ ÆÁÊÌÁ ÓÐÉÓËÁ %sinfo/%s"
  1497. #~ msgid "Internal Error getting a Node"
  1498. #~ msgstr "÷ÎÕÔÒÅÎÎÑ ÏÛÉÂËÁ ÐÒÉ ÐÏÌÕÞÅÎÉÉ Node"
  1499. #~ msgid "Failed to open the diversions file %sdiversions"
  1500. #~ msgstr "îÅ ÕÄÁÌÏÓØ ÏÔËÒÙÔØ ÆÁÊÌ %sdiversions"
  1501. #~ msgid "The diversion file is corrupted"
  1502. #~ msgstr "ïÂÈÏÄÎÏÊ ÆÁÊÌ ÐÏ×ÒÅÖÄÅÎ"
  1503. #~ msgid "Invalid line in the diversion file: %s"
  1504. #~ msgstr "îÅ×ÅÒÎÁÑ ÓÔÒÏËÁ × ÏÂÈÏÄÎÏÍ ÆÁÊÌÅ: %s"
  1505. #~ msgid "Internal Error adding a diversion"
  1506. #~ msgstr "÷ÎÕÔÒÅÎÎÑÑ ÏÛÉÂËÁ ÐÒÉ ÄÏÂÁ×ÌÅÎÉÉ ÏÂÈÏÄÁ"
  1507. #~ msgid "The pkg cache must be initialize first"
  1508. #~ msgstr "÷ ÐÅÒ×ÕÀ ÏÞÅÒÅÄØ ÄÏÌÖÅÎ ÂÙÔØ ÐÒÏÉÎÉÃÉÁÌÉÚÉÒÏ×ÁÎ ËÜÛ ÐÁËÅÔÏ×"
  1509. #, fuzzy
  1510. #~ msgid "Reading File List"
  1511. #~ msgstr "þÔÅÎÉÅ ÓÐÉÓËÁ ÐÁËÅÔÏ×"
  1512. #~ msgid "Failed to find a Package: Header, offset %lu"
  1513. #~ msgstr "îÅ ÕÄÁÌÏÓØ ÎÁÊÔÉ ÓÅËÃÉÀ Package: Header, ÓÍÅÝÅÎÉÅ %lu"
  1514. #~ msgid "Bad ConfFile section in the status file. Offset %lu"
  1515. #~ msgstr "îÅ×ÅÒÎÁÑ ÓÅËÃÉÑ ConfFile × status-ÆÁÊÌÅ. óÍÅÝÅÎÉÅ %lu"
  1516. #~ msgid "Error parsing MD5. Offset %lu"
  1517. #~ msgstr "ïÛÉÂËÁ ÁÎÁÌÉÚÁ ËÏÎÔÒÏÌØÎÏÊ ÓÕÍÍÙ. óÍÅÝÅÎÉÅ %lu"
  1518. #~ msgid "Internal Error, Unable to parse a package record"
  1519. #~ msgstr "÷ÎÕÔÒÅÎÎÑÑ ÏÛÉÂËÁ, ÎÅ×ÏÚÍÏÖÎÏ ÐÒÏÁÎÁÌÉÚÉÒÏ×ÁÔØ ÚÁÐÉÓØ ÐÁËÅÔÁ"
  1520. #~ msgid "Unimplemented"
  1521. #~ msgstr "îÅ ÒÅÁÌÉÚÏ×ÁÎÏ"
  1522. #~ msgid "You must give at least one file name"
  1523. #~ msgstr "÷Ù ÄÏÌÖÎÙ ÕËÁÚÁÔØ ÈÏÔÑ ÂÙ ÏÄÎÏ ÉÍÑ ÆÁÊÌÁ"
  1524. #~ msgid "Generating cache"
  1525. #~ msgstr "çÅÎÅÒÁÃÉÑ ËÜÛÁ"
  1526. #~ msgid "Problem opening %s"
  1527. #~ msgstr "ïÂÎÁÒÕÖÅÎÁ ÐÒÏÂÌÅÍÁ %s"
  1528. #~ msgid "Problem with SelectFile"
  1529. #~ msgstr "úÁÔÒÕÄÎÅÎÉÅ Ó SelectFile"
  1530. #~ msgid "Problem with MergeList"
  1531. #~ msgstr "úÁÔÒÕÄÎÅÎÉÅ Ó MergeList"
  1532. #~ msgid "Regex compilation error"
  1533. #~ msgstr "ïÛÉÂËÁ ËÏÍÐÉÌÑÃÉÉ ÒÅÇÕÌÑÒÎÏÇÏ ×ÙÒÁÖÅÎÉÑ"
  1534. #~ msgid "Write to stdout failed"
  1535. #~ msgstr "îÅ ÕÄÁÞÎÁÑ ÚÁÐÉÓØ × stdout"
  1536. #~ msgid "Generate must be enabled for this function"
  1537. #~ msgstr "äÌÑ ÜÔÏÊ ÆÕÎËÃÉÉ ÄÏÌÖÎÁ ÂÙÔØ ÒÁÚÒÅÛÅÎÁ ÇÅÎÅÒÁÃÉÑ"
  1538. #~ msgid "Failed to stat %s%s"
  1539. #~ msgstr "îÅ ÕÄÁÌÏÓØ ÐÏÌÕÞÉÔØ ÁÔÒÉÂÕÔÙ %s%s"
  1540. #~ msgid "Failed to open %s.new"
  1541. #~ msgstr "îÅ ÕÄÁÌÏÓØ ÏÔËÒÙÔØ %s.new"
  1542. #~ msgid "Failed to rename %s.new to %s"
  1543. #~ msgstr "îÅ ÕÄÁÌÏÓØ ÐÅÒÅÉÍÅÎÏ×ÁÔØ %s.new × %s"
  1544. #~ msgid "Using CD-ROM mount point "
  1545. #~ msgstr "éÓÐÏÌØÚÕÅÔÓÑ ÓÌÅÄÕÀÝÁÑ ÔÏÞËÁ ÍÏÎÔÉÒÏ×ÁÎÉÑ CDROM "
  1546. #~ msgid "Unmounting CD-ROM"
  1547. #~ msgstr "òÁÚÍÏÎÔÉÒÏ×ÁÎÉÅ CD-ROM"
  1548. #, fuzzy
  1549. #~ msgid "Please insert a Disc in the drive and press enter"
  1550. #~ msgstr "ðÏÖÁÌÕÊÓÔÁ, ×ÓÔÁרÔÅ ÄÉÓË × ÕÓÔÒÏÊÓÔ×Ï É ÎÁÖÍÉÔÅ Enter"
  1551. #~ msgid "Mounting CD-ROM"
  1552. #~ msgstr "íÏÎÔÉÒÏ×ÁÎÉÅ CD-ROM"
  1553. #~ msgid "Identifying.. "
  1554. #~ msgstr "éÄÅÎÔÉÆÉËÁÃÉÑ.. "
  1555. #~ msgid "Scanning Disc for index files.. "
  1556. #~ msgstr "ðÏÉÓË ÉÎÄÅËÓÎÙÈ ÆÁÊÌÏ× ÎÁ ÄÉÓËÅ.. "
  1557. #~ msgid "I found (binary):"
  1558. #~ msgstr "ñ ÎÁÛÅÌ (Ä×ÏÉÞÎÙÊ):"
  1559. #~ msgid "I found (source):"
  1560. #~ msgstr "ñ ÎÁÛÅÌ (ÉÓÈÏÄÎÙÊ ÔÅËÓÔ):"
  1561. #~ msgid "Found "
  1562. #~ msgstr "îÁÊÄÅÎÏ ÉÎÄÅËÓÏ× ÐÁËÅÔÏ×: "
  1563. #~ msgid " package indexes and "
  1564. #~ msgstr " , Á ÔÁËÖÅ ÉÎÄÅËÓÏ× ÉÓÈÏÄÎÙÈ ÔÅËÓÔÏ×: "
  1565. #~ msgid " source indexes."
  1566. #~ msgstr "."
  1567. #~ msgid ""
  1568. #~ "Unable to locate any package files, perhaps this is not a Debian Disc"
  1569. #~ msgstr ""
  1570. #~ "îÅ×ÏÚÍÏÖÎÏ ÏÂÎÁÒÕÖÉÔØ ÎÉËÁËÉÈ ÆÁÊÌÏ× ÐÁËÅÔÏ×, ×ÏÚÍÏÖÎÏ ÜÔÏÔ ÄÉÓË ÎÅ Debian"
  1571. #~ msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'"
  1572. #~ msgstr "ðÏÖÁÌÕÊÓÔÁ, ÎÁÚÏ×ÉÔÅ ÜÔÏÔ ÄÉÓË, ÎÁÐÒÉÍÅÒ, 'Debian 2.1r1 Disk 1'"
  1573. #~ msgid "That is not a valid name, try again "
  1574. #~ msgstr "üÔÏ ÎÅ×ÅÒÎÏÅ ÉÍÑ, ÐÙÔÁÊÔÅÓØ ÅÝÅ "
  1575. #~ msgid "This Disc is called:"
  1576. #~ msgstr "üÔÏ ÄÉÓË ÎÁÚÙ×ÁÅÔÓÑ:"
  1577. #~ msgid "Writing new source list"
  1578. #~ msgstr "úÁÐÉÓØ ÎÏ×ÏÇÏ ÓÐÉÓËÁ ÉÓÔÏÞÎÉËÏ×"
  1579. #~ msgid "Source List entries for this Disc are:"
  1580. #~ msgstr "úÁÐÉÓÉ ÓÐÉÓËÁ ÉÓÔÏÞÎÉËÏ× ÄÌÑ ÜÔÏÇÏ ÄÉÓËÁ:"
  1581. #~ msgid "Repeat this process for the rest of the CDs in your set."
  1582. #~ msgstr "ðÏ×ÔÏÒÉÔÅ ÐÒÏÃÅÓÓ ÄÌÑ ÏÓÔÁ×ÛÉÈÓÑ ÄÉÓËÏ× ÉÚ ÷ÁÛÅÇÏ ÎÁÂÏÒÁ."
  1583. #~ msgid "Stored Label: '"
  1584. #~ msgstr "óÏÈÒÁÎÅÎÎÁÑ ÍÅÔËÁ: '"
  1585. #~ msgid ""
  1586. #~ "Usage: apt-cdrom [options] command\n"
  1587. #~ "\n"
  1588. #~ "apt-cdrom is a tool to add CDROM's to APT's source list. The\n"
  1589. #~ "CDROM mount point and device information is taken from apt.conf\n"
  1590. #~ "and /etc/fstab.\n"
  1591. #~ "\n"
  1592. #~ "Commands:\n"
  1593. #~ " add - Add a CDROM\n"
  1594. #~ " ident - Report the identity of a CDROM\n"
  1595. #~ "\n"
  1596. #~ "Options:\n"
  1597. #~ " -h This help text\n"
  1598. #~ " -d CD-ROM mount point\n"
  1599. #~ " -r Rename a recognized CD-ROM\n"
  1600. #~ " -m No mounting\n"
  1601. #~ " -f Fast mode, don't check package files\n"
  1602. #~ " -a Thorough scan mode\n"
  1603. #~ " -c=? Read this configuration file\n"
  1604. #~ " -o=? Set an arbitary configuration option, eg -o dir::cache=/tmp\n"
  1605. #~ "See fstab(5)\n"
  1606. #~ msgstr ""
  1607. #~ "éÓÐÏÌØÚÏ×ÁÎÉÅ: apt-cdrom [options] command\n"
  1608. #~ "\n"
  1609. #~ "apt-cdrom - ÉÎÓÔÒÕÍÅÎÔ ÄÌÑ ÄÏÂÁ×ÌÅÎÉÑ CD-ÄÉÓËÏ× × ÓÐÉÓÏË ÉÓÔÏÞÎÉËÏ× "
  1610. #~ "APT'Á. The\n"
  1611. #~ "ôÏÞËÁ ÍÏÎÔÉÒÏ×ÁÎÉÑ CDROM É ÉÎÆÏÒÍÁÃÉÑ Ï ÕÓÔÒÏÊÓÔ×Å ÂÅÒÕÔÓÑ ÉÚ apt.conf\n"
  1612. #~ "É /etc/fstab.\n"
  1613. #~ "\n"
  1614. #~ "ëÏÍÍÁÎÄÙ:\n"
  1615. #~ " add - ÄÏÂÁ×ÉÔØ CD\n"
  1616. #~ " ident - Report the identity of a CDROM\n"
  1617. #~ "\n"
  1618. #~ "Options:\n"
  1619. #~ " -h ÔÅËÓÔ, ÞÔÏ ÷Ù ×ÉÄÉÔÅ\n"
  1620. #~ " -d ÔÏÞËÁ ÍÏÎÔÉÒÏ×ÁÎÉÑ CD-ROM\n"
  1621. #~ " -r Rename a recognized CD-ROM\n"
  1622. #~ " -m ÎÅ ÍÏÎÔÉÒÏ×ÁÔØ\n"
  1623. #~ " -f ÂÙÓÔÒÙÊ ÒÅÖÉÍ, ÎÅ ÐÒÏ×ÅÒÑÔØ ÆÁÊÌÙ ÐÁËÅÔÏ×\n"
  1624. #~ " -a Thorough scan mode\n"
  1625. #~ " -c=? ÞÉÔÁÔØ ÕËÁÚÁÎÎÙÊ ÆÁÊÌ ËÏÎÆÉÇÕÒÁÃÉÉ\n"
  1626. #~ " -o=? ÐÒÏÉÚ×ÏÌØÎÁÑ ÏÐÃÉÑ ËÏÎÆÉÇÕÒÁÃÉÉ, Ë ÐÒÉÍÅÒÕ, -o dir::cache=/tmp\n"
  1627. #~ "óÍÏÔÒÉÔÅ fstab(5)\n"
  1628. #~ msgid "Internal Error, non-zero counts"
  1629. #~ msgstr "÷ÎÕÔÒÅÎÎÑÑ ÏÛÉÂËÁ, ÎÅÎÕÌÅ×ÙÅ ÓÞÅÔÞÉËÉ"
  1630. #~ msgid "Internal Error, InstallPackages was called with broken packages!"
  1631. #~ msgstr ""
  1632. #~ "÷ÎÕÔÒÅÎÎÑÑ ÏÛÉÂËÁ, InstallPackages ÂÙÌ ×ÙÚ×ÁÎ ÓÏ ÓÌÏÍÁÎÎÙÍÉ ÐÁËÅÔÁÍÉ!"
  1633. #~ msgid "Internal Error, Ordering didn't finish"
  1634. #~ msgstr "÷ÎÕÔÒÅÎÎÑÑ ÏÛÉÂËÁ, ÓÏÒÔÉÒÏ×ËÁ ÎÅ ÚÁËÏÎÞÅÎÁ"
  1635. #~ msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
  1636. #~ msgstr ""
  1637. #~ "ëÁË ÓÔÒÁÎÎÏ.. îÅ ÔÅ ÒÁÚÍÅÒÙ, ÏÔÐÒÁרÔÅ ÓÏÏÂÝÅÎÉÅ ÎÁ apt@packages.debian."
  1638. #~ "org"
  1639. #, fuzzy
  1640. #~ msgid "Couldn't determine free space in %s"
  1641. #~ msgstr "îÅ ÕÄÁÌÏÓØ ÏÐÒÅÄÅÌÉÔØ Ó×ÏÂÏÄÎÏÅ ÐÒÏÓÔÒÁÎÓÔ×Ï × %s"
  1642. #~ msgid "Couldn't wait for subprocess"
  1643. #~ msgstr "îÅ ÍÏÇÕ ÄÏÖÄÁÔØÓÑ ÚÁ×ÅÒÛÅÎÉÑ ÐÏÄÐÒÏÃÅÓÓÁ"
  1644. #~ msgid "....\"Have you mooed today?\"..."
  1645. #~ msgstr "....\"÷Ù ÍÙÞÁÌÉ ÓÅÇÏÄÎÑ?\"..."
  1646. #~ msgid "Error Processing directory %s"
  1647. #~ msgstr "ïÛÉÂËÁ ÏÂÒÁÂÏÔËÉ ËÁÔÁÌÏÇÁ %s"
  1648. #~ msgid " New "
  1649. #~ msgstr " îÏ×ÙÊ "
  1650. #~ msgid "B "
  1651. #~ msgstr "â "
  1652. #~ msgid " files "
  1653. #~ msgstr " ÆÁÊÌÙ "
  1654. #~ msgid "Source extension list is too long"
  1655. #~ msgstr "óÐÉÓÏË ÒÁÓÛÉÒÅÎÉÊ ÉÓÈÏÄÎÙÈ ÔÅËÓÔÏ× ÓÌÉÛËÏÍ ÄÌÉÎÅÎ"
  1656. #~ msgid " pkgs in "
  1657. #~ msgstr " ÐÁËÅÔÏ× × "
  1658. #~ msgid "Error writing header to contents file"
  1659. #~ msgstr "ïÛÉÂËÁ ÚÁÐÉÓÉ ÚÁÇÏÌÏ×ËÁ × ÓÏÄÅÒÖÉÍÏÅ ÆÁÊÌÁ"
  1660. #~ msgid "Error Processing Contents %s"
  1661. #~ msgstr "ÏÛÉÂËÁ ÏÂÒÁÂÏÔËÉ ÓÏÄÅÒÖÉÍÏÇÏ %s"
  1662. #~ msgid ""
  1663. #~ "Usage: apt-ftparchive [options] command\n"
  1664. #~ "Commands: packges binarypath [overridefile [pathprefix]]\n"
  1665. #~ " sources srcpath [overridefile [pathprefix]]\n"
  1666. #~ " contents path\n"
  1667. #~ " generate config [groups]\n"
  1668. #~ " clean config\n"
  1669. #~ msgstr ""
  1670. #~ "éÓÐÏÌØÚÏ×ÁÎÉÅ: apt-ftparchive [options] ËÏÍÍÁÎÄÁ\n"
  1671. #~ "ëÏÍÍÁÎÄÙ: packges binarypath [overridefile [pathprefix]]\n"
  1672. #~ "\t sources srcpath [overridefile [pathprefix]]\n"
  1673. #~ "\t contents path\n"
  1674. #~ "\t generate config [groups]\n"
  1675. #~ "\t clean config\n"
  1676. #~ msgid ""
  1677. #~ "apt-ftparchive generates index files for Debian archives. It supports\n"
  1678. #~ "many styles of generation from fully automated to functional "
  1679. #~ "replacements\n"
  1680. #~ "for dpkg-scanpackages and dpkg-scansources\n"
  1681. #~ "\n"
  1682. #~ "apt-ftparchive generates Package files from a tree of .debs. The\n"
  1683. #~ "Package file contains the contents of all the control fields from\n"
  1684. #~ "each package as well as the MD5 hash and filesize. An override file\n"
  1685. #~ "is supported to force the value of Priority and Section.\n"
  1686. #~ "\n"
  1687. #~ "Similarly apt-ftparchive generates Sources files from a tree of .dscs.\n"
  1688. #~ "The --source-override option can be used to specify a src override file\n"
  1689. #~ "\n"
  1690. #~ "The 'packages' and 'sources' command should be run in the root of the\n"
  1691. #~ "tree. BinaryPath should point to the base of the recursive search and \n"
  1692. #~ "override file should contian the override flags. Pathprefix is\n"
  1693. #~ "appended to the filename fields if present. Example usage from the \n"
  1694. #~ "debian archive:\n"
  1695. #~ " apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
  1696. #~ " dists/potato/main/binary-i386/Packages\n"
  1697. #~ msgstr ""
  1698. #~ "apt-ftparchive ÇÅÎÅÒÉÒÕÅÔ ÉÎÄÅÓÎÙÅ ÆÁÊÌÙ ÄÌÑ ÁÒÈÉ×Ï× Debian. "
  1699. #~ "ðÏÄÄÅÒÖÉ×ÁÅÔ\n"
  1700. #~ "ÍÎÏÖÅÓÔ×Ï ÓÔÉÌÅÊ ÇÅÎÅÒÁÃÉÉ ÏÔ ÐÏÌÎÏÓÔØÀ Á×ÔÏÍÁÔÉÞÅÓËÏÊ ÄÏ ÚÁÍÅÎÙ ÆÕÎËÃÉÊ\n"
  1701. #~ "ÐÁËÅÔÏ× dpkg-scanpackages É dpkg-scansources\n"
  1702. #~ "\n"
  1703. #~ "apt-ftparchive ÇÅÎÅÒÉÒÅÕÅÔ ÆÁÊÌÙ Package ÉÚ ÄÅÒÅ×Á .debs. æÁÊÌ Package\n"
  1704. #~ "ÓÏÄÅÒÖÉÔ ÓÏÄÅÒÖÉÍÏÅ ×ÓÅÈ ÕÐÒÁ×ÌÑÀÝÉÈ ÐÏÌÅÊ ÉÚ ËÁÖÄÏÇÏ ÐÁËÅÔÁ, Á ÔÁËÖÅ\n"
  1705. #~ "ÈÅÛÉ MD5 É ÒÁÚÍÅÒÙ ÆÁÊÌÏ×. äÌÑ ÏÐÒÅÄÅÌÅÎÉÑ ÚÎÁÞÅÎÉÊ ðÒÉÏÒÉÔÅÔÁ É òÁÚÄÅÌÁ\n"
  1706. #~ "ÐÏÄÄÅÒÖÉ×ÁÅÔÓÑ ÆÁÊÌ override.\n"
  1707. #~ "\n"
  1708. #~ "áÎÁÌÏÇÉÞÎÏ apt-ftparchive ÇÅÎÅÒÉÒÕÅÔ ÆÁÊÌÙ Sources ÉÚ ÄÅÒÅ×Á .dscs.\n"
  1709. #~ "äÌÑ ÕËÁÚÁÎÉÑ ÆÁÊÌÁ override ÍÏÖÎÏ ÉÓÐÏÌØÚÏ×ÁÔØ ÏÐÃÉÀ --source-override.\n"
  1710. #~ "\n"
  1711. #~ "ëÏÍÁÎÄÙ 'packages' É 'sources' ÎÁÄÏ ÚÁÐÕÓËÁÔØ ÉÚ ËÏÒÎÑ ÄÅÒÅ×Á.\n"
  1712. #~ "BinaryPath ÄÏÌÖÅÎ ÕËÁÚÙ×ÁÔØ ÎÁ ÂÁÚÏ×ÕÀ ÔÏÞËÕ ÒÅËÕÒÓÉ×ÎÏÇÏ ÐÏÉÓËÁ, Á ÆÁÊÌ\n"
  1713. #~ "override ÄÏÌÖÅÎ ÓÏÄÅÒÖÁÔØ ÐÅÒÅËÒÙ×ÁÀÝÉÅ ÆÌÁÖËÉ. Pathprefix, ÅÓÌÉ ÅÓÔØ,\n"
  1714. #~ "ÄÏÂÁ×ÌÑÅÔÓÑ Ë ÐÏÌÑÍ filename. ðÒÉÍÅÒ ÉÓÐÏÌØÚÏ×ÁÎÉÑ ÉÚ ÁÒÈÉ×Á debian:\n"
  1715. #~ " apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
  1716. #~ " dists/potato/main/binary-i386/Packages\n"
  1717. #~ msgid ""
  1718. #~ "Options:\n"
  1719. #~ " -h This help text\n"
  1720. #~ " --md5 Control MD5 generation\n"
  1721. #~ " -s=? Source override file\n"
  1722. #~ " -q Quiet\n"
  1723. #~ " -d=? Select the optional caching database\n"
  1724. #~ " --no-delink Enable delinking debug mode\n"
  1725. #~ " --contents Control contents file generation\n"
  1726. #~ " -c=? Read this configuration file\n"
  1727. #~ " -o=? Set an arbitary configuration option\n"
  1728. #~ msgstr ""
  1729. #~ "ïÐÃÉÉ:\n"
  1730. #~ " -h ÔÅËÓÔ, ËÏÔÏÒÙÊ ×Ù ×ÉÄÉÔÅ.\n"
  1731. #~ " --md5 ÕÐÒÁ×ÌÅÎÉÅ ÇÅÎÅÒÁÃÉÅÊ MD5\n"
  1732. #~ " -s=? override ÆÁÊÌ ÄÌÑ ÉÓÈÏÄÎÉËÏ×\n"
  1733. #~ " -q ÂÅÚ ÌÉÛÎÉÈ ÓÌÏ×\n"
  1734. #~ " -d=? ×ÙÂÒÁÔØ ÄÏÐÏÌÎÉÔÅÌØÎÕÀ ËÅÛÉÒÏ×ÁÎÎÕÀ ÂÁÚÕ ÄÁÎÎÙÈ\n"
  1735. #~ " --no-delink ÒÁÚÒÅÛÉÔØ delinking-ÒÅÖÉÍ ÏÔÌÁÄËÉ\n"
  1736. #~ " --contents ÕÐÒÁ×ÌÅÎÉÅ ÇÅÎÅÒÁÃÉÅÊ ÆÁÊÌÁ ÓÏÄÅÒÖÉÍÏÇÏ\n"
  1737. #~ " -c=? ÞÉÔÁÔØ ÕËÁÚÁÎÎÙÊ ÆÁÊÌ ËÏÎÆÉÇÕÒÁÃÉÉ\n"
  1738. #~ " -o=? ÕÓÔÁÎÏ×ÉÔØ ÐÒÏÉÚ×ÏÌØÎÕÀ ÏÐÃÉÀ\n"
  1739. #~ msgid "No selections matched"
  1740. #~ msgstr "îÅÔ ÓÏÏÔ×ÅÔÓÔ×ÉÊ ×ÙÂÒÁÎÎÏÍÕ"
  1741. #~ msgid "Done Packages, Starting contents."
  1742. #~ msgstr "òÁÂÏÔÁ Ó ÐÁËÅÔÁÍÉ ÚÁ×ÅÒÛÅÎÁ, ÐÒÉÓÔÕÐÁÀ Ë ÓÏÄÅÒÖÉÍÏÍÕ."
  1743. #~ msgid "Some files are missing in the package file group `%s'"
  1744. #~ msgstr "÷ ÇÒÕÐÐÅ ÐÁËÅÔÏ× ÆÁÊÌÏ× `%s' ÐÒÏÐÕÝÅÎÙ ÎÅËÏÔÏÒÙÅ ÆÁÊÌÙ"
  1745. #~ msgid "Hit contents update byte limit"
  1746. #~ msgstr "äÏÓÔÉÇÎÕÔÏ ÏÇÒÁÎÉÞÅÎÉÅ × ÂÁÊÔÁÈ ÎÁ ÉÚÍÅÎÅÎÉÅ ÓÏÄÅÒÖÉÍÏÇÏ"
  1747. #, fuzzy
  1748. #~ msgid "Done. "
  1749. #~ msgstr "óÄÅÌÁÎÏ. "
  1750. #~ msgid "B in "
  1751. #~ msgstr "â × "
  1752. #~ msgid " archives. Took "
  1753. #~ msgstr " ÁÒÈÉ×ÁÈ. ÷ÒÅÍÅÎÉ ÚÁÎÑÌÏ "
  1754. #~ msgid "DB was corrupted, file renamed to %s.old"
  1755. #~ msgstr "âä ÂÙÌÁ ÐÏ×ÒÅÖÄÅÎÁ, ÆÁÊÌ ÐÅÒÅÉÍÅÎÏ×ÁÎ × %s.old"
  1756. #~ msgid "Unable to open DB2 file %s"
  1757. #~ msgstr "îÅ ÕÄÁÌÏÓØ ÏÔËÒÙÔØ DB2 ÆÁÊÌ %s"
  1758. #~ msgid "File date has changed %s"
  1759. #~ msgstr "äÁÔÁ ÆÁÊÌÁ %s ÉÚÍÅÎÅÎÁ"
  1760. #~ msgid "Archive has no control record"
  1761. #~ msgstr "÷ ÁÒÈÉ×Å ÎÅÔ ÕÐÒÁ×ÌÑÀÝÅÊ ÚÁÐÉÓÉ"
  1762. #~ msgid "Unable to get a cursor"
  1763. #~ msgstr "îÅ×ÏÚÍÏÖÎÏ ÐÏÌÕÞÉÔØ ËÕÒÓÏÒ"
  1764. #~ msgid "realloc - Failed to allocate memory"
  1765. #~ msgstr "realloc - ÎÅ ÕÄÁÌÏÓØ ×ÙÄÅÌÉÔØ ÐÁÍÑÔØ"
  1766. #~ msgid "Unknown Compresison Algorithm '%s'"
  1767. #~ msgstr "îÅÉÚ×ÅÓÔÎÙÊ ÁÌÇÏÒÉÔÍ ÓÖÁÔÉÑ '%s'"
  1768. #~ msgid "Failed to create FILE*"
  1769. #~ msgstr "îÅ ÕÄÁÌÏÓØ ÓÏÚÄÁÔØ FILE*"
  1770. #~ msgid "Failed to fork"
  1771. #~ msgstr "îÅ ÕÄÁÌÏÓØ ÚÁÐÕÓÔÉÔØ ÐÏÒÏÖÄÅÎÎÙÊ ÐÒÏÃÅÓÓ"
  1772. #~ msgid "Compress Child"
  1773. #~ msgstr "óÖÁÔÉÅ ÐÏÔÏÍËÁ"
  1774. #~ msgid "Internal Error, Failed to create %s"
  1775. #~ msgstr "÷ÎÕÔÒÅÎÎÑÑ ÏÛÉÂËÁ, ÎÅ ÕÄÁÌÏÓØ ÓÏÚÄÁÔØ %s"
  1776. #~ msgid "Failed to create subprocess IPC"
  1777. #~ msgstr "îÅ ÕÄÁÌÏÓØ ÓÏÚÄÁÔØ ÐÏÄÐÒÏÃÅÓÓ IPC"
  1778. #~ msgid "Failed to exec compressor "
  1779. #~ msgstr "îÅ ÕÄÁÌÏÓØ ×ÙÐÏÌÎÉÔØ ËÏÍÐÒÅÓÓÏÒ "
  1780. #~ msgid "IO to subprocess/file failed"
  1781. #~ msgstr "ïÛÉÂËÁ ××ÏÄÁ/×Ù×ÏÄÁ × ÐÏÄÐÒÏÃÅÓÓ/ÆÁÊÌ"
  1782. #~ msgid "Failed to read while computing MD5"
  1783. #~ msgstr "ïÛÉÂËÁ ÞÔÅÎÉÑ ×Ï ×ÒÅÍÑ ×ÙÞÉÓÌÅÎÉÑ MD5"
  1784. #~ msgid "Unable to open %s"
  1785. #~ msgstr "îÅ ÕÄÁÌÏÓØ ÏÔËÒÙÔØ %s"
  1786. #~ msgid "Failed to read the override file %s"
  1787. #~ msgstr "îÅ ÕÄÁÌÏÓØ ÐÒÏÞÅÓÔØ override-ÆÁÊÌ %s"
  1788. #~ msgid "W: Unable to read directory "
  1789. #~ msgstr "W: îÅÕÄÁÌÏÓØ ÐÒÏÞÉÔÁÔØ ÄÉÒÅËÔÏÒÉÀ "
  1790. #~ msgid "W: Unable to stat "
  1791. #~ msgstr "W: îÅ ÕÄÁÌÏÓØ ÐÏÌÕÞÉÔØ ÁÔÒÉÂÕÔÙ "
  1792. #~ msgid "E: Errors apply to file '"
  1793. #~ msgstr "E: ïÛÉÂËÉ ÏÔÎÏÇÓÑÔØÓÑ Ë ÆÁÊÌÕ '"
  1794. #~ msgid "Failed to resolve %s"
  1795. #~ msgstr "îÅ ÕÄÁÌÏÓØ ÒÁÚÒÅÛÉÔØ %s"
  1796. #~ msgid "Tree walking failed"
  1797. #~ msgstr "îÅ ÕÄÁÌÏÓØ ÓÏ×ÅÒÛÉÔØ ÏÂÈÏÄ ÄÅÒÅ×Á"
  1798. #~ msgid "Failed to open %s"
  1799. #~ msgstr "îÅ ÕÄÁÌÏÓØ ÏÔËÒÙÔØ %s"
  1800. #~ msgid "Failed to unlink %s"
  1801. #~ msgstr "îÅ ÕÄÁÌÏÓØ ÕÄÁÌÉÔØ ÌÉÎË %s"
  1802. #~ msgid "*** Failed to link %s to %s"
  1803. #~ msgstr "*** îÅ ÕÄÁÌÏÓØ ÓÏÚÄÁÔØ ÌÉÎË %s ÎÁ %s"
  1804. #~ msgid " DeLink limit of "
  1805. #~ msgstr " ïÇÒÁÎÉÞÅÎÉÅ DeLink × "
  1806. #~ msgid "B hit."
  1807. #~ msgstr "â ÄÏÓÔÉÇÎÕÔÏ."
  1808. #~ msgid "Archive had no package field"
  1809. #~ msgstr "÷ ÁÒÈÉ×Å ÎÅÔ ÐÏÌÑ package"
  1810. #~ msgid " has no override entry"
  1811. #~ msgstr " ÎÅ ÉÍÅÅÔ ÚÁÐÉÓÉ override"
  1812. #~ msgid " maintainer is "
  1813. #~ msgstr " ÓÏÐÒÏ×ÏÖÄÁÀÝÉÊ "
  1814. #~ msgid " not "
  1815. #~ msgstr " ÎÅ "
  1816. #~ msgid "DSC file '%s' is too large!"
  1817. #~ msgstr "DSC ÆÁÊÌ '%s' ÓÌÉÛËÏÍ ×ÅÌÉË!"
  1818. #, fuzzy
  1819. #~ msgid "Could not find a record in the DSC '%s'"
  1820. #~ msgstr "îÅ ÍÏÇÕ ÎÁÊÔÉ ÚÁÐÉÓØ × DSC '%s'"
  1821. #~ msgid "Error parsing file record"
  1822. #~ msgstr "ïÛÉÂËÁ ÁÎÁÌÉÚÁ ÚÁÐÉÓÉ ÆÁÊÌÁ"
  1823. #~ msgid "Failed too stat %s"
  1824. #~ msgstr "ôÁËÖÅ ÎÅ ÕÄÁÌÏÓØ ÐÏÌÕÞÉÔØ ÁÔÒÉÂÕÔÙ ÆÁÊÌÁ %s"
  1825. #~ msgid "Errors apply to file '%s'"
  1826. #~ msgstr "ïÛÉÂËÉ ÏÔÎÏÓÑÔÓÑ Ë ÆÁÊÌÕ '%s'"