uk.po 112 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162
  1. # translation of apt-all.po to Українська
  2. # This file is put in the public domain.
  3. #
  4. # Artem Bondarenko <artem.brz@gmail.com>, 2006.
  5. msgid ""
  6. msgstr ""
  7. "Project-Id-Version: apt-all\n"
  8. "Report-Msgid-Bugs-To: \n"
  9. "POT-Creation-Date: 2010-01-11 15:17+0100\n"
  10. "PO-Revision-Date: 2006-07-29 15:57+0300\n"
  11. "Last-Translator: Artem Bondarenko <artem.brz@gmail.com>\n"
  12. "Language-Team: Українська <uk@li.org>\n"
  13. "MIME-Version: 1.0\n"
  14. "Content-Type: text/plain; charset=UTF-8\n"
  15. "Content-Transfer-Encoding: 8bit\n"
  16. "X-Generator: KBabel 1.11.1\n"
  17. #: cmdline/apt-cache.cc:141
  18. #, c-format
  19. msgid "Package %s version %s has an unmet dep:\n"
  20. msgstr "Пакунок %s версії %s має незадоволену залежність:\n"
  21. #: cmdline/apt-cache.cc:181 cmdline/apt-cache.cc:550 cmdline/apt-cache.cc:644
  22. #: cmdline/apt-cache.cc:797 cmdline/apt-cache.cc:1021
  23. #: cmdline/apt-cache.cc:1423 cmdline/apt-cache.cc:1575
  24. #, c-format
  25. msgid "Unable to locate package %s"
  26. msgstr "Не можу знайти пакунок %s"
  27. #: cmdline/apt-cache.cc:245
  28. msgid "Total package names: "
  29. msgstr "Всього імен пакунків : "
  30. #: cmdline/apt-cache.cc:285
  31. msgid " Normal packages: "
  32. msgstr " Нормальних пакунків: "
  33. #: cmdline/apt-cache.cc:286
  34. msgid " Pure virtual packages: "
  35. msgstr " Чисто віртуальних пакунків: "
  36. #: cmdline/apt-cache.cc:287
  37. msgid " Single virtual packages: "
  38. msgstr " Окремих віртуальних пакунків: "
  39. #: cmdline/apt-cache.cc:288
  40. msgid " Mixed virtual packages: "
  41. msgstr " Змішаних віртуальних пакунків: "
  42. #: cmdline/apt-cache.cc:289
  43. msgid " Missing: "
  44. msgstr " Пропущено: "
  45. #: cmdline/apt-cache.cc:291
  46. msgid "Total distinct versions: "
  47. msgstr "Всього унікальних версій: "
  48. #: cmdline/apt-cache.cc:293
  49. #, fuzzy
  50. msgid "Total distinct descriptions: "
  51. msgstr "Всього унікальних версій: "
  52. #: cmdline/apt-cache.cc:295
  53. msgid "Total dependencies: "
  54. msgstr "Всього залежностей: "
  55. #: cmdline/apt-cache.cc:298
  56. msgid "Total ver/file relations: "
  57. msgstr "Всього відносин Версія/Файл: "
  58. #: cmdline/apt-cache.cc:300
  59. #, fuzzy
  60. msgid "Total Desc/File relations: "
  61. msgstr "Всього відносин Версія/Файл: "
  62. #: cmdline/apt-cache.cc:302
  63. msgid "Total Provides mappings: "
  64. msgstr "Всього відносин Provides: "
  65. #: cmdline/apt-cache.cc:314
  66. msgid "Total globbed strings: "
  67. msgstr "Всього розгорнутих рядків: "
  68. #: cmdline/apt-cache.cc:328
  69. msgid "Total dependency version space: "
  70. msgstr "Всього інформації про залежності: "
  71. #: cmdline/apt-cache.cc:333
  72. msgid "Total slack space: "
  73. msgstr "Порожнього місця в кеші: "
  74. #: cmdline/apt-cache.cc:341
  75. msgid "Total space accounted for: "
  76. msgstr "Загальний простір полічений для: "
  77. #: cmdline/apt-cache.cc:469 cmdline/apt-cache.cc:1221
  78. #, c-format
  79. msgid "Package file %s is out of sync."
  80. msgstr "Перелік пакунків %s розсинхронізований."
  81. #: cmdline/apt-cache.cc:1297
  82. msgid "You must give exactly one pattern"
  83. msgstr "Ви повинні задати рівно один шаблон"
  84. #: cmdline/apt-cache.cc:1451
  85. msgid "No packages found"
  86. msgstr "Не знайдено жодного пакунка"
  87. #: cmdline/apt-cache.cc:1528
  88. msgid "Package files:"
  89. msgstr "Переліки пакунків:"
  90. #: cmdline/apt-cache.cc:1535 cmdline/apt-cache.cc:1622
  91. msgid "Cache is out of sync, can't x-ref a package file"
  92. msgstr "Кеш не синхронізований, неможливо знайти посилання на перелік пакунків"
  93. #. Show any packages have explicit pins
  94. #: cmdline/apt-cache.cc:1549
  95. msgid "Pinned packages:"
  96. msgstr "Зафіксовані пакунки:"
  97. #: cmdline/apt-cache.cc:1561 cmdline/apt-cache.cc:1602
  98. msgid "(not found)"
  99. msgstr "(не знайдено)"
  100. #. Installed version
  101. #: cmdline/apt-cache.cc:1582
  102. msgid " Installed: "
  103. msgstr " Встановлено: "
  104. #: cmdline/apt-cache.cc:1584 cmdline/apt-cache.cc:1592
  105. msgid "(none)"
  106. msgstr "(відсутній)"
  107. #. Candidate Version
  108. #: cmdline/apt-cache.cc:1589
  109. msgid " Candidate: "
  110. msgstr " Кандидат: "
  111. #: cmdline/apt-cache.cc:1599
  112. msgid " Package pin: "
  113. msgstr " Фіксатор(pin) пакунка: "
  114. #. Show the priority tables
  115. #: cmdline/apt-cache.cc:1608
  116. msgid " Version table:"
  117. msgstr " Таблиця версій:"
  118. #: cmdline/apt-cache.cc:1718 cmdline/apt-cdrom.cc:134 cmdline/apt-config.cc:70
  119. #: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547
  120. #: cmdline/apt-get.cc:2675 cmdline/apt-sortpkgs.cc:144
  121. #, fuzzy, c-format
  122. msgid "%s %s for %s compiled on %s %s\n"
  123. msgstr "%s %s для %s %s скомпільовано %s %s\n"
  124. #: cmdline/apt-cache.cc:1725
  125. #, fuzzy
  126. msgid ""
  127. "Usage: apt-cache [options] command\n"
  128. " apt-cache [options] add file1 [file2 ...]\n"
  129. " apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
  130. " apt-cache [options] showsrc pkg1 [pkg2 ...]\n"
  131. "\n"
  132. "apt-cache is a low-level tool used to manipulate APT's binary\n"
  133. "cache files, and query information from them\n"
  134. "\n"
  135. "Commands:\n"
  136. " add - Add a package file to the source cache\n"
  137. " gencaches - Build both the package and source cache\n"
  138. " showpkg - Show some general information for a single package\n"
  139. " showsrc - Show source records\n"
  140. " stats - Show some basic statistics\n"
  141. " dump - Show the entire file in a terse form\n"
  142. " dumpavail - Print an available file to stdout\n"
  143. " unmet - Show unmet dependencies\n"
  144. " search - Search the package list for a regex pattern\n"
  145. " show - Show a readable record for the package\n"
  146. " depends - Show raw dependency information for a package\n"
  147. " rdepends - Show reverse dependency information for a package\n"
  148. " pkgnames - List the names of all packages in the system\n"
  149. " dotty - Generate package graphs for GraphViz\n"
  150. " xvcg - Generate package graphs for xvcg\n"
  151. " policy - Show policy settings\n"
  152. "\n"
  153. "Options:\n"
  154. " -h This help text.\n"
  155. " -p=? The package cache.\n"
  156. " -s=? The source cache.\n"
  157. " -q Disable progress indicator.\n"
  158. " -i Show only important deps for the unmet command.\n"
  159. " -c=? Read this configuration file\n"
  160. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  161. "See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
  162. msgstr ""
  163. "Використання: apt-cache [options] command\n"
  164. " або: apt-cache [options] add file1 [file1 ...]\n"
  165. " або: apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
  166. " або: apt-cache [options] showsrc pkg1 [pkg2 ...]\n"
  167. "\n"
  168. "apt-cache - низькорівневий інструмент, що використається для керування\n"
  169. "двійковими кеш-файлами APT'а, а також для добування інформації з них\n"
  170. "Команди:\n"
  171. " add - додати файл пакунка в кеш джерел\n"
  172. " gencaches - побудувати обидва кеша пакунків - бінарних і з вихідними "
  173. "текстами\n"
  174. " showpkg - загальна інформація про конкретний пакунок\n"
  175. " stats - основна статистика\n"
  176. " dump - показати весь файл у стислій формі\n"
  177. " dumpavail - видати на stdout список доступних пакунків\n"
  178. " unmet - показати незадоволені залежності\n"
  179. " search - знайти пакунки, назва яких задовольняє регулярний вираз\n"
  180. " show - показати інформацію про пакунок в зрозумілій формі\n"
  181. " depends - показати інформацію про залежності пакунка построково\n"
  182. " rdepends - показати інформацію про зворотні залежності пакунка\n"
  183. " pkgnames - показати імена всіх пакунків у системі\n"
  184. " dotty - генерувати граф залежностей пакунків у форматі GraphViz\n"
  185. " xvcg - генерувати граф залежностей пакунків у форматі xvcg\n"
  186. " policy - показати поточну політику вибору пакунків\n"
  187. "\n"
  188. "Опції:\n"
  189. " -h Цей текст.\n"
  190. " -p=? Кеш пакунків.\n"
  191. " -s=? Кеш джерел.\n"
  192. " -q Не показувати індикатор прогресу.\n"
  193. " -i Показувати тільки важливі залежності для команди unmet.\n"
  194. " -c=? Читати зазначений файл конфігурації.\n"
  195. " -o=? Встановити довільну опцію конфігурації, наприклад, -o dir::cache=/"
  196. "tmp\n"
  197. "Подробиці в сторінках керівництва apt-cache(8) і apt.conf(5).\n"
  198. #: cmdline/apt-cdrom.cc:77
  199. #, fuzzy
  200. msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'"
  201. msgstr "Задайте назву для цього диска, наприклад 'Debian 2.1r1 Disk 1'"
  202. #: cmdline/apt-cdrom.cc:92
  203. msgid "Please insert a Disc in the drive and press enter"
  204. msgstr "Вставте диск у пристрій і натисніть Ввід"
  205. #: cmdline/apt-cdrom.cc:114
  206. msgid "Repeat this process for the rest of the CDs in your set."
  207. msgstr "Повторіть цей процес для інших наявних CD."
  208. #: cmdline/apt-config.cc:41
  209. msgid "Arguments not in pairs"
  210. msgstr "Непарні аргументи"
  211. #: cmdline/apt-config.cc:76
  212. msgid ""
  213. "Usage: apt-config [options] command\n"
  214. "\n"
  215. "apt-config is a simple tool to read the APT config file\n"
  216. "\n"
  217. "Commands:\n"
  218. " shell - Shell mode\n"
  219. " dump - Show the configuration\n"
  220. "\n"
  221. "Options:\n"
  222. " -h This help text.\n"
  223. " -c=? Read this configuration file\n"
  224. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  225. msgstr ""
  226. "Використання: apt-config [options] command\n"
  227. "\n"
  228. "apt-config - простий інструмент для читання конфігураційного файлу APT\n"
  229. "\n"
  230. "Команди:\n"
  231. " shell - режим shell\n"
  232. " dump - показати конфігурацію\n"
  233. "\n"
  234. "Опції:\n"
  235. " -h Цей текст.\n"
  236. " -с=? Читати зазначений конфігураційний файл.\n"
  237. " -o=? Встановити довільну опцію, наприклад, -o dir::cache=/tmp\n"
  238. #: cmdline/apt-extracttemplates.cc:98
  239. #, c-format
  240. msgid "%s not a valid DEB package."
  241. msgstr "%s не є правильним DEB-пакунком."
  242. #: cmdline/apt-extracttemplates.cc:232
  243. msgid ""
  244. "Usage: apt-extracttemplates file1 [file2 ...]\n"
  245. "\n"
  246. "apt-extracttemplates is a tool to extract config and template info\n"
  247. "from debian packages\n"
  248. "\n"
  249. "Options:\n"
  250. " -h This help text\n"
  251. " -t Set the temp dir\n"
  252. " -c=? Read this configuration file\n"
  253. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  254. msgstr ""
  255. "Використання: apt-extracttemplates file1 [file2 ...]\n"
  256. "\n"
  257. "apt-extracttemplates витягує з пакунків Debian конфігураційні скрипти\n"
  258. "і файли-шаблони\n"
  259. "\n"
  260. "Опції:\n"
  261. " -h Цей текст\n"
  262. " -t Встановити теку для тимчасових файлів\n"
  263. " -c=? Читати зазначений конфігураційний файл\n"
  264. " -o=? Вказати довільну опцію, наприклад, -o dir::cache=/tmp\n"
  265. #: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:863
  266. #, c-format
  267. msgid "Unable to write to %s"
  268. msgstr "Неможливо записати в %s"
  269. #: cmdline/apt-extracttemplates.cc:310
  270. msgid "Cannot get debconf version. Is debconf installed?"
  271. msgstr "Неможливо визначити версію debconf. Він встановлений?"
  272. #: ftparchive/apt-ftparchive.cc:164 ftparchive/apt-ftparchive.cc:338
  273. msgid "Package extension list is too long"
  274. msgstr "Список розширень, припустимих для пакунків, занадто довгий"
  275. #: ftparchive/apt-ftparchive.cc:166 ftparchive/apt-ftparchive.cc:180
  276. #: ftparchive/apt-ftparchive.cc:203 ftparchive/apt-ftparchive.cc:253
  277. #: ftparchive/apt-ftparchive.cc:267 ftparchive/apt-ftparchive.cc:289
  278. #, c-format
  279. msgid "Error processing directory %s"
  280. msgstr "Помилка обробки течи %s"
  281. #: ftparchive/apt-ftparchive.cc:251
  282. msgid "Source extension list is too long"
  283. msgstr ""
  284. "Список розширень, припустимих для пакунків з вихідними текстами, занадто "
  285. "довгий"
  286. #: ftparchive/apt-ftparchive.cc:368
  287. msgid "Error writing header to contents file"
  288. msgstr "Помилка запису заголовка в повний перелік вмісту пакунків (Contents)"
  289. #: ftparchive/apt-ftparchive.cc:398
  290. #, c-format
  291. msgid "Error processing contents %s"
  292. msgstr "помилка обробки повного переліку вмісту пакунків (Contents) %s"
  293. #: ftparchive/apt-ftparchive.cc:553
  294. msgid ""
  295. "Usage: apt-ftparchive [options] command\n"
  296. "Commands: packages binarypath [overridefile [pathprefix]]\n"
  297. " sources srcpath [overridefile [pathprefix]]\n"
  298. " contents path\n"
  299. " release path\n"
  300. " generate config [groups]\n"
  301. " clean config\n"
  302. "\n"
  303. "apt-ftparchive generates index files for Debian archives. It supports\n"
  304. "many styles of generation from fully automated to functional replacements\n"
  305. "for dpkg-scanpackages and dpkg-scansources\n"
  306. "\n"
  307. "apt-ftparchive generates Package files from a tree of .debs. The\n"
  308. "Package file contains the contents of all the control fields from\n"
  309. "each package as well as the MD5 hash and filesize. An override file\n"
  310. "is supported to force the value of Priority and Section.\n"
  311. "\n"
  312. "Similarly apt-ftparchive generates Sources files from a tree of .dscs.\n"
  313. "The --source-override option can be used to specify a src override file\n"
  314. "\n"
  315. "The 'packages' and 'sources' command should be run in the root of the\n"
  316. "tree. BinaryPath should point to the base of the recursive search and \n"
  317. "override file should contain the override flags. Pathprefix is\n"
  318. "appended to the filename fields if present. Example usage from the \n"
  319. "Debian archive:\n"
  320. " apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
  321. " dists/potato/main/binary-i386/Packages\n"
  322. "\n"
  323. "Options:\n"
  324. " -h This help text\n"
  325. " --md5 Control MD5 generation\n"
  326. " -s=? Source override file\n"
  327. " -q Quiet\n"
  328. " -d=? Select the optional caching database\n"
  329. " --no-delink Enable delinking debug mode\n"
  330. " --contents Control contents file generation\n"
  331. " -c=? Read this configuration file\n"
  332. " -o=? Set an arbitrary configuration option"
  333. msgstr ""
  334. "Використання: apt-ftparchive [параметри] команда\n"
  335. "Команди: packages binarypath [overridefile [pathprefix]]\n"
  336. " sources srcpath [overridefile [pathprefix]]\n"
  337. " contents path\n"
  338. " release path\n"
  339. " generate config [groups]\n"
  340. " clean config\n"
  341. "\n"
  342. "apt-ftparchive генерує індексні файли архівів Debian. Він підтримує\n"
  343. "безліч стилів генерації: від повністю автоматичного до функціональної "
  344. "заміни\n"
  345. "програм dpkg-scanpackages і dpkg-scansources\n"
  346. "\n"
  347. "apt-ftparchive генерує файли Package (переліки пакунків) для дерева\n"
  348. "тек, що містять файли .deb. Файл Package містить у собі керуючі\n"
  349. "поля кожного пакунка, а також хеш MD5 і розмір файлу. Значення керуючих\n"
  350. "полів \"пріоритет\" (Priority) і \"секція\" (Section) можуть бути змінені з\n"
  351. "допомогою файлу override.\n"
  352. "\n"
  353. "Крім того, apt-ftparchive може генерувати файли Sources з дерева\n"
  354. "тек, що містять файли .dsc. Для вказівки файлу override у цьому \n"
  355. "режимі можна використати параметр --source-override.\n"
  356. "\n"
  357. "Команди 'packages' і 'sources' треба виконувати, перебуваючи в кореневій "
  358. "теці\n"
  359. "дерева, що ви хочете обробити. BinaryPath повинен вказувати на місце,\n"
  360. "з якого починається рекурсивний обхід, а файл перепризначень (override)\n"
  361. "повинен містити запис про перепризначення керуючих полів. Якщо був "
  362. "зазначений\n"
  363. "Pathprefix, то його значення додається до керуючих полів, що містять\n"
  364. "імена файлів. Приклад використання для архіву Debian:\n"
  365. " apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
  366. " dists/potato/main/binary-i386/Packages\n"
  367. "\n"
  368. "Параметри:\n"
  369. " -h Цей текст\n"
  370. " --md5 Керування генерацією MD5-хешів\n"
  371. " -s=? Вказати файл перепризначень (override) для пакунків з вихідними "
  372. "текстами\n"
  373. " -q Не виводити повідомлення в процесі роботи\n"
  374. " -d=? Вказати кешуючу базу даних (не обов'язково)\n"
  375. " --no-delink Включити режим налагодження процесу видалення файлів\n"
  376. " --contents Керування генерацією повного переліку вмісту пакунків\n"
  377. " (файлу Contents)\n"
  378. " -c=? Використати зазначений конфігураційний файл\n"
  379. " -o=? Вказати довільний параметр конфігурації"
  380. #: ftparchive/apt-ftparchive.cc:759
  381. msgid "No selections matched"
  382. msgstr "Збігів не виявлено"
  383. #: ftparchive/apt-ftparchive.cc:832
  384. #, c-format
  385. msgid "Some files are missing in the package file group `%s'"
  386. msgstr "У групі пакунків '%s' відсутні деякі файли"
  387. #: ftparchive/cachedb.cc:43
  388. #, c-format
  389. msgid "DB was corrupted, file renamed to %s.old"
  390. msgstr "БД була пошкоджена, файл перейменований в %s.old"
  391. #: ftparchive/cachedb.cc:61
  392. #, c-format
  393. msgid "DB is old, attempting to upgrade %s"
  394. msgstr "DB застаріла, намагаюсь оновити %s"
  395. #: ftparchive/cachedb.cc:72
  396. #, fuzzy
  397. msgid ""
  398. "DB format is invalid. If you upgraded from an older version of apt, please "
  399. "remove and re-create the database."
  400. msgstr ""
  401. "Формати DB не є правильним. Якщо ви оновилися зі старої версії apt, будь-"
  402. "ласка видаліть і наново створіть базу."
  403. #: ftparchive/cachedb.cc:77
  404. #, c-format
  405. msgid "Unable to open DB file %s: %s"
  406. msgstr "Не вдалося відкрити DB файл %s: %s"
  407. #: ftparchive/cachedb.cc:123 apt-inst/extract.cc:178 apt-inst/extract.cc:190
  408. #: apt-inst/extract.cc:207 apt-inst/deb/dpkgdb.cc:117
  409. #, c-format
  410. msgid "Failed to stat %s"
  411. msgstr "Не вдалося одержати атрибути %s"
  412. #: ftparchive/cachedb.cc:242
  413. msgid "Archive has no control record"
  414. msgstr "В архіві немає поля control"
  415. #: ftparchive/cachedb.cc:448
  416. msgid "Unable to get a cursor"
  417. msgstr "Неможливо одержати курсор"
  418. #: ftparchive/writer.cc:76
  419. #, c-format
  420. msgid "W: Unable to read directory %s\n"
  421. msgstr "W: Не вдалося прочитати теку %s\n"
  422. #: ftparchive/writer.cc:81
  423. #, c-format
  424. msgid "W: Unable to stat %s\n"
  425. msgstr "W: Неможливо прочитати атрибути %s\n"
  426. #: ftparchive/writer.cc:132
  427. msgid "E: "
  428. msgstr "E: "
  429. #: ftparchive/writer.cc:134
  430. msgid "W: "
  431. msgstr "W: "
  432. #: ftparchive/writer.cc:141
  433. msgid "E: Errors apply to file "
  434. msgstr "E: Помилки відносяться до файлу"
  435. #: ftparchive/writer.cc:158 ftparchive/writer.cc:188
  436. #, c-format
  437. msgid "Failed to resolve %s"
  438. msgstr "Не вдалося піти по посиланню %s"
  439. #: ftparchive/writer.cc:170
  440. msgid "Tree walking failed"
  441. msgstr "Не вдалося зробити обхід дерева"
  442. #: ftparchive/writer.cc:195
  443. #, c-format
  444. msgid "Failed to open %s"
  445. msgstr "Не вдалося відкрити %s"
  446. #: ftparchive/writer.cc:254
  447. #, c-format
  448. msgid " DeLink %s [%s]\n"
  449. msgstr "DeLink %s [%s]\n"
  450. #: ftparchive/writer.cc:262
  451. #, c-format
  452. msgid "Failed to readlink %s"
  453. msgstr "Не вдалося прочитати посилання %s"
  454. #: ftparchive/writer.cc:266
  455. #, c-format
  456. msgid "Failed to unlink %s"
  457. msgstr "Не вдалося видалити %s"
  458. #: ftparchive/writer.cc:273
  459. #, c-format
  460. msgid "*** Failed to link %s to %s"
  461. msgstr "*** Не вдалося створити посилання %s на %s"
  462. #: ftparchive/writer.cc:283
  463. #, c-format
  464. msgid " DeLink limit of %sB hit.\n"
  465. msgstr "Перевищено ліміт в %s в DeLink.\n"
  466. #: ftparchive/writer.cc:389
  467. msgid "Archive had no package field"
  468. msgstr "В архіві немає поля package"
  469. #: ftparchive/writer.cc:397 ftparchive/writer.cc:628
  470. #, c-format
  471. msgid " %s has no override entry\n"
  472. msgstr " Відсутній запис про перепризначення для %s\n"
  473. #: ftparchive/writer.cc:458 ftparchive/writer.cc:716
  474. #, c-format
  475. msgid " %s maintainer is %s not %s\n"
  476. msgstr " пакунок %s супроводжує %s, а не %s\n"
  477. #: ftparchive/writer.cc:638
  478. #, c-format
  479. msgid " %s has no source override entry\n"
  480. msgstr ""
  481. #: ftparchive/writer.cc:642
  482. #, c-format
  483. msgid " %s has no binary override entry either\n"
  484. msgstr ""
  485. #: ftparchive/contents.cc:321
  486. #, c-format
  487. msgid "Internal error, could not locate member %s"
  488. msgstr "Внутрішня помилка, не можу знайти складову частину %s"
  489. #: ftparchive/contents.cc:358 ftparchive/contents.cc:389
  490. msgid "realloc - Failed to allocate memory"
  491. msgstr "realloc - не вдалося виділити пам'ять"
  492. #: ftparchive/override.cc:34 ftparchive/override.cc:142
  493. #, c-format
  494. msgid "Unable to open %s"
  495. msgstr "Не вдалося відкрити %s"
  496. #: ftparchive/override.cc:60 ftparchive/override.cc:166
  497. #, c-format
  498. msgid "Malformed override %s line %lu #1"
  499. msgstr "Спотворений запис про перепризначення (override) %s на рядку %lu #1"
  500. #: ftparchive/override.cc:74 ftparchive/override.cc:178
  501. #, c-format
  502. msgid "Malformed override %s line %lu #2"
  503. msgstr "Спотворений запис про перепризначення (override) %s на рядку %lu #2"
  504. #: ftparchive/override.cc:88 ftparchive/override.cc:191
  505. #, c-format
  506. msgid "Malformed override %s line %lu #3"
  507. msgstr "Спотворений запис про перепризначення (override) %s на рядку %lu #3"
  508. #: ftparchive/override.cc:127 ftparchive/override.cc:201
  509. #, c-format
  510. msgid "Failed to read the override file %s"
  511. msgstr "Не вдалося прочитати файл перепризначень (override)%s"
  512. #: ftparchive/multicompress.cc:72
  513. #, c-format
  514. msgid "Unknown compression algorithm '%s'"
  515. msgstr "Невідомий алгоритм стиснення '%s'"
  516. #: ftparchive/multicompress.cc:102
  517. #, c-format
  518. msgid "Compressed output %s needs a compression set"
  519. msgstr "Для отримання стиснутого виводу %s необхідно ввімкнути пакування"
  520. #: ftparchive/multicompress.cc:169 methods/rsh.cc:91
  521. msgid "Failed to create IPC pipe to subprocess"
  522. msgstr "Не вдалося створити IPC-канал для породженого процесу"
  523. #: ftparchive/multicompress.cc:195
  524. msgid "Failed to create FILE*"
  525. msgstr "Не вдалося створити FILE*"
  526. #: ftparchive/multicompress.cc:198
  527. msgid "Failed to fork"
  528. msgstr "Не вдалося виконати породжений процес"
  529. #: ftparchive/multicompress.cc:212
  530. msgid "Compress child"
  531. msgstr "Процес-нащадок, що виконує пакування"
  532. #: ftparchive/multicompress.cc:235
  533. #, c-format
  534. msgid "Internal error, failed to create %s"
  535. msgstr "Внутрішня помилка, не вдалося створити %s"
  536. #: ftparchive/multicompress.cc:286
  537. msgid "Failed to create subprocess IPC"
  538. msgstr "Не вдалося створити IPC з породженим процесом"
  539. #: ftparchive/multicompress.cc:321
  540. msgid "Failed to exec compressor "
  541. msgstr "Не вдалося виконати компресор "
  542. #: ftparchive/multicompress.cc:360
  543. msgid "decompressor"
  544. msgstr "декомпресор"
  545. #: ftparchive/multicompress.cc:403
  546. msgid "IO to subprocess/file failed"
  547. msgstr "Помилка уведення/виводу в підпроцес/файл"
  548. #: ftparchive/multicompress.cc:455
  549. msgid "Failed to read while computing MD5"
  550. msgstr "Помилка читання під час обчислення MD5"
  551. #: ftparchive/multicompress.cc:472
  552. #, c-format
  553. msgid "Problem unlinking %s"
  554. msgstr "Не вдалося видалити %s"
  555. #: ftparchive/multicompress.cc:487 apt-inst/extract.cc:185
  556. #, c-format
  557. msgid "Failed to rename %s to %s"
  558. msgstr "Не вдалося перейменувати %s в %s"
  559. #: cmdline/apt-get.cc:127
  560. msgid "Y"
  561. msgstr "Т"
  562. #: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1740
  563. #, c-format
  564. msgid "Regex compilation error - %s"
  565. msgstr "Помилка компіляції регулярного виразу - %s"
  566. #: cmdline/apt-get.cc:244
  567. msgid "The following packages have unmet dependencies:"
  568. msgstr "Пакунки, що мають незадоволені залежності:"
  569. #: cmdline/apt-get.cc:334
  570. #, c-format
  571. msgid "but %s is installed"
  572. msgstr "але %s вже встановлений"
  573. #: cmdline/apt-get.cc:336
  574. #, c-format
  575. msgid "but %s is to be installed"
  576. msgstr "але %s буде встановлений"
  577. #: cmdline/apt-get.cc:343
  578. msgid "but it is not installable"
  579. msgstr "але він не може бути встановлений"
  580. #: cmdline/apt-get.cc:345
  581. msgid "but it is a virtual package"
  582. msgstr "але це віртуальний пакунок"
  583. #: cmdline/apt-get.cc:348
  584. msgid "but it is not installed"
  585. msgstr "але він не встановлений"
  586. #: cmdline/apt-get.cc:348
  587. msgid "but it is not going to be installed"
  588. msgstr "але він не буде встановлений"
  589. #: cmdline/apt-get.cc:353
  590. msgid " or"
  591. msgstr " чи"
  592. #: cmdline/apt-get.cc:382
  593. msgid "The following NEW packages will be installed:"
  594. msgstr "НОВІ пакунки, які будуть встановлені:"
  595. #: cmdline/apt-get.cc:408
  596. msgid "The following packages will be REMOVED:"
  597. msgstr "Пакунки, які будуть ВИДАЛЕНІ:"
  598. #: cmdline/apt-get.cc:430
  599. msgid "The following packages have been kept back:"
  600. msgstr "Пакунки, які будуть залишені в незмінному вигляді:"
  601. #: cmdline/apt-get.cc:451
  602. msgid "The following packages will be upgraded:"
  603. msgstr "Пакунки, які будуть ОНОВЛЕНІ:"
  604. #: cmdline/apt-get.cc:472
  605. msgid "The following packages will be DOWNGRADED:"
  606. msgstr "Пакунки, будуть замінені на більш СТАРІ версії:"
  607. #: cmdline/apt-get.cc:492
  608. msgid "The following held packages will be changed:"
  609. msgstr "Пакунки, які повинні були б залишитися без змін, але будуть замінені:"
  610. #: cmdline/apt-get.cc:545
  611. #, c-format
  612. msgid "%s (due to %s) "
  613. msgstr "%s (внаслідок %s) "
  614. #: cmdline/apt-get.cc:553
  615. msgid ""
  616. "WARNING: The following essential packages will be removed.\n"
  617. "This should NOT be done unless you know exactly what you are doing!"
  618. msgstr ""
  619. "УВАГА: Ці істотно важливі пакунки будуть вилучені.\n"
  620. "НЕ РОБІТЬ цього, якщо ви НЕ уявляєте собі всі можливі наслідки!"
  621. #: cmdline/apt-get.cc:584
  622. #, c-format
  623. msgid "%lu upgraded, %lu newly installed, "
  624. msgstr "оновлено %lu, встановлено %lu нових пакунків, "
  625. #: cmdline/apt-get.cc:588
  626. #, c-format
  627. msgid "%lu reinstalled, "
  628. msgstr " %lu перевстановлено, "
  629. #: cmdline/apt-get.cc:590
  630. #, c-format
  631. msgid "%lu downgraded, "
  632. msgstr "%lu пакунків замінено на старі версії, "
  633. #: cmdline/apt-get.cc:592
  634. #, c-format
  635. msgid "%lu to remove and %lu not upgraded.\n"
  636. msgstr "для видалення відмічено %lu пакунків, і %lu пакунків не оновлено.\n"
  637. #: cmdline/apt-get.cc:596
  638. #, c-format
  639. msgid "%lu not fully installed or removed.\n"
  640. msgstr "не встановлено до кінця чи видалено %lu пакунків.\n"
  641. #: cmdline/apt-get.cc:669
  642. msgid "Correcting dependencies..."
  643. msgstr "Виправлення залежностей..."
  644. #: cmdline/apt-get.cc:672
  645. msgid " failed."
  646. msgstr " невдача."
  647. #: cmdline/apt-get.cc:675
  648. msgid "Unable to correct dependencies"
  649. msgstr "Неможливо скоригувати залежності"
  650. #: cmdline/apt-get.cc:678
  651. msgid "Unable to minimize the upgrade set"
  652. msgstr "Неможливо мінімізувати набір оновлень"
  653. #: cmdline/apt-get.cc:680
  654. msgid " Done"
  655. msgstr " Виконано"
  656. #: cmdline/apt-get.cc:684
  657. msgid "You might want to run `apt-get -f install' to correct these."
  658. msgstr ""
  659. "Можливо, для виправлення цих помилок ви захочете скористатися 'apt-get -f "
  660. "install'."
  661. #: cmdline/apt-get.cc:687
  662. msgid "Unmet dependencies. Try using -f."
  663. msgstr "Незадоволені залежності. Спробуйте використати -f."
  664. #: cmdline/apt-get.cc:712
  665. msgid "WARNING: The following packages cannot be authenticated!"
  666. msgstr "УВАГА: Наступні пакунки неможливо автентифікувати!"
  667. #: cmdline/apt-get.cc:716
  668. msgid "Authentication warning overridden.\n"
  669. msgstr "Автентифікаційне попередження не прийнято до уваги.\n"
  670. #: cmdline/apt-get.cc:723
  671. msgid "Install these packages without verification [y/N]? "
  672. msgstr "Встановити ці пакунки без перевірки [т/Н]? "
  673. #: cmdline/apt-get.cc:725
  674. msgid "Some packages could not be authenticated"
  675. msgstr "Деякі пакунки неможливо автентифікувати"
  676. #: cmdline/apt-get.cc:734 cmdline/apt-get.cc:890
  677. msgid "There are problems and -y was used without --force-yes"
  678. msgstr "Існують проблеми, а опція -y використана без --force-yes"
  679. #: cmdline/apt-get.cc:775
  680. msgid "Internal error, InstallPackages was called with broken packages!"
  681. msgstr ""
  682. "Внутрішня помилка, InstallPackages була викликана з непрацездатними "
  683. "пакунками!"
  684. #: cmdline/apt-get.cc:784
  685. msgid "Packages need to be removed but remove is disabled."
  686. msgstr "Пакунки необхідно видалити, але видалення заборонене."
  687. #: cmdline/apt-get.cc:795
  688. msgid "Internal error, Ordering didn't finish"
  689. msgstr "Внутрішня помилка, Ordering не завершилася"
  690. #: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2082 cmdline/apt-get.cc:2115
  691. msgid "Unable to lock the download directory"
  692. msgstr "Неможливо заблокувати теку для завантаження"
  693. #: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2163 cmdline/apt-get.cc:2416
  694. #: apt-pkg/cachefile.cc:65
  695. msgid "The list of sources could not be read."
  696. msgstr "Неможливо прочитати перелік джерел."
  697. #: cmdline/apt-get.cc:836
  698. msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
  699. msgstr "Дивно.. Розбіжність розмірів, напишіть на apt@packages.debian.org"
  700. #: cmdline/apt-get.cc:841
  701. #, c-format
  702. msgid "Need to get %sB/%sB of archives.\n"
  703. msgstr "Необхідно завантажити %sB/%sB архівів.\n"
  704. #: cmdline/apt-get.cc:844
  705. #, c-format
  706. msgid "Need to get %sB of archives.\n"
  707. msgstr "Необхідно завантажити %sB архівів.\n"
  708. #: cmdline/apt-get.cc:849
  709. #, fuzzy, c-format
  710. msgid "After this operation, %sB of additional disk space will be used.\n"
  711. msgstr "Після розпакування об'єм зайнятого дискового простору зросте на %sB.\n"
  712. #: cmdline/apt-get.cc:852
  713. #, fuzzy, c-format
  714. msgid "After this operation, %sB disk space will be freed.\n"
  715. msgstr ""
  716. "Після розпакування об'єм зайнятого дискового простору зменшиться на %sB.\n"
  717. #: cmdline/apt-get.cc:867 cmdline/apt-get.cc:870 cmdline/apt-get.cc:2259
  718. #: cmdline/apt-get.cc:2262
  719. #, c-format
  720. msgid "Couldn't determine free space in %s"
  721. msgstr "Не вдалося визначити кількість вільного місця в %s"
  722. #: cmdline/apt-get.cc:880
  723. #, c-format
  724. msgid "You don't have enough free space in %s."
  725. msgstr "Недостатньо вільного місця в %s."
  726. #: cmdline/apt-get.cc:896 cmdline/apt-get.cc:916
  727. msgid "Trivial Only specified but this is not a trivial operation."
  728. msgstr ""
  729. "Запитане виконання тільки тривіальних операцій, але це не тривіальна "
  730. "операція."
  731. #: cmdline/apt-get.cc:898
  732. msgid "Yes, do as I say!"
  733. msgstr "Так, робити, як я скажу!"
  734. #: cmdline/apt-get.cc:900
  735. #, c-format
  736. msgid ""
  737. "You are about to do something potentially harmful.\n"
  738. "To continue type in the phrase '%s'\n"
  739. " ?] "
  740. msgstr ""
  741. "Те, що ви хочете зробити, може мати небажані наслідки.\n"
  742. "Щоб продовжити, введіть фразу: '%s'\n"
  743. " ?] "
  744. #: cmdline/apt-get.cc:906 cmdline/apt-get.cc:925
  745. msgid "Abort."
  746. msgstr "Перервано."
  747. #: cmdline/apt-get.cc:921
  748. msgid "Do you want to continue [Y/n]? "
  749. msgstr "Бажаєте продовжити [Т/н]? "
  750. #: cmdline/apt-get.cc:993 cmdline/apt-get.cc:2313 apt-pkg/algorithms.cc:1389
  751. #, c-format
  752. msgid "Failed to fetch %s %s\n"
  753. msgstr "Не вдалося завантажити %s %s\n"
  754. #: cmdline/apt-get.cc:1011
  755. msgid "Some files failed to download"
  756. msgstr "Деякі файли не вдалося завантажити"
  757. #: cmdline/apt-get.cc:1012 cmdline/apt-get.cc:2322
  758. msgid "Download complete and in download only mode"
  759. msgstr "Вказано режим \"тільки завантаження\", і завантаження завершено"
  760. #: cmdline/apt-get.cc:1018
  761. msgid ""
  762. "Unable to fetch some archives, maybe run apt-get update or try with --fix-"
  763. "missing?"
  764. msgstr ""
  765. "Неможливо завантажити деякі архіви, імовірно треба виконати apt-get update "
  766. "або спробувати повторити запуск з ключем --fix-missing?"
  767. #: cmdline/apt-get.cc:1022
  768. msgid "--fix-missing and media swapping is not currently supported"
  769. msgstr "--fix-missing і зміна носія в даний момент не підтримується"
  770. #: cmdline/apt-get.cc:1027
  771. msgid "Unable to correct missing packages."
  772. msgstr "Неможливо виправити втрачені пакунки."
  773. #: cmdline/apt-get.cc:1028
  774. msgid "Aborting install."
  775. msgstr "Переривається встановлення."
  776. #: cmdline/apt-get.cc:1086
  777. #, c-format
  778. msgid "Note, selecting %s instead of %s\n"
  779. msgstr "Помітьте, замість %2$s вибирається %1$s\n"
  780. #: cmdline/apt-get.cc:1097
  781. #, c-format
  782. msgid "Skipping %s, it is already installed and upgrade is not set.\n"
  783. msgstr ""
  784. "Пропускається %s - пакунок вже встановлений, і опція upgrade не "
  785. "встановлена.\n"
  786. #: cmdline/apt-get.cc:1115
  787. #, c-format
  788. msgid "Package %s is not installed, so not removed\n"
  789. msgstr "Пакунок %s не встановлений, тому не може бути видалений\n"
  790. #: cmdline/apt-get.cc:1126
  791. #, c-format
  792. msgid "Package %s is a virtual package provided by:\n"
  793. msgstr "Пакунок %s - віртуальний, його функції надаються пакунками:\n"
  794. #: cmdline/apt-get.cc:1138
  795. msgid " [Installed]"
  796. msgstr " [Встановлено]"
  797. #: cmdline/apt-get.cc:1143
  798. msgid "You should explicitly select one to install."
  799. msgstr "Ви повинні явно вказати, який саме ви хочете встановити."
  800. #: cmdline/apt-get.cc:1148
  801. #, c-format
  802. msgid ""
  803. "Package %s is not available, but is referred to by another package.\n"
  804. "This may mean that the package is missing, has been obsoleted, or\n"
  805. "is only available from another source\n"
  806. msgstr ""
  807. "Пакунок %s недоступний, але згадується у переліку залежностей іншого "
  808. "пакунка.\n"
  809. "Це може означати, що пакунок відсутній, застарів, або доступний з джерел, не "
  810. "згаданих в sources.list\n"
  811. #: cmdline/apt-get.cc:1167
  812. msgid "However the following packages replace it:"
  813. msgstr "Однак наступні пакунки можуть його замінити:"
  814. #: cmdline/apt-get.cc:1170
  815. #, c-format
  816. msgid "Package %s has no installation candidate"
  817. msgstr "Для пакунка %s не знайдені кандидати на встановлення"
  818. #: cmdline/apt-get.cc:1190
  819. #, c-format
  820. msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
  821. msgstr "Перевстановлення %s неможливе, бо він не може бути завантаженим.\n"
  822. #: cmdline/apt-get.cc:1198
  823. #, c-format
  824. msgid "%s is already the newest version.\n"
  825. msgstr "Вже встановлена найновіша версія %s.\n"
  826. #: cmdline/apt-get.cc:1227
  827. #, c-format
  828. msgid "Release '%s' for '%s' was not found"
  829. msgstr "Реліз '%s' для '%s' не знайдений"
  830. #: cmdline/apt-get.cc:1229
  831. #, c-format
  832. msgid "Version '%s' for '%s' was not found"
  833. msgstr "Версія '%s' для '%s' не знайдена"
  834. #: cmdline/apt-get.cc:1235
  835. #, c-format
  836. msgid "Selected version %s (%s) for %s\n"
  837. msgstr "Обрана версія %s (%s) для %s\n"
  838. #: cmdline/apt-get.cc:1321
  839. #, c-format
  840. msgid "Ignore unavailable target release '%s' of package '%s'"
  841. msgstr ""
  842. #: cmdline/apt-get.cc:1352
  843. #, fuzzy, c-format
  844. msgid "Picking '%s' as source package instead of '%s'\n"
  845. msgstr "Не вдалося прочитати атрибути переліку вихідних текстів%s"
  846. #. if (VerTag.empty() == false && Last == 0)
  847. #: cmdline/apt-get.cc:1389
  848. #, c-format
  849. msgid "Ignore unavailable version '%s' of package '%s'"
  850. msgstr ""
  851. #: cmdline/apt-get.cc:1405
  852. msgid "The update command takes no arguments"
  853. msgstr "Команді update не потрібні аргументи"
  854. #: cmdline/apt-get.cc:1418
  855. msgid "Unable to lock the list directory"
  856. msgstr "Неможливо заблокувати теку з переліками пакунків"
  857. #: cmdline/apt-get.cc:1474
  858. msgid "We are not supposed to delete stuff, can't start AutoRemover"
  859. msgstr ""
  860. #: cmdline/apt-get.cc:1523
  861. #, fuzzy
  862. msgid ""
  863. "The following packages were automatically installed and are no longer "
  864. "required:"
  865. msgstr "НОВІ пакунки були встановлені автоматично і більше не потрібні:"
  866. #: cmdline/apt-get.cc:1525
  867. #, fuzzy, c-format
  868. msgid "%lu packages were automatically installed and are no longer required.\n"
  869. msgstr "НОВІ пакунки були встановлені автоматично і більше не потрібні:"
  870. #: cmdline/apt-get.cc:1526
  871. msgid "Use 'apt-get autoremove' to remove them."
  872. msgstr "Використовуйте 'apt-get autoremove' щоб видалити їх."
  873. #: cmdline/apt-get.cc:1531
  874. msgid ""
  875. "Hmm, seems like the AutoRemover destroyed something which really\n"
  876. "shouldn't happen. Please file a bug report against apt."
  877. msgstr ""
  878. "Хм, виглядає так, що AutoRemover помилково знищив щось потрібне\n"
  879. "Будь-ласка відправте багрепорт щодо apt."
  880. #.
  881. #. if (Packages == 1)
  882. #. {
  883. #. c1out << endl;
  884. #. c1out <<
  885. #. _("Since you only requested a single operation it is extremely likely that\n"
  886. #. "the package is simply not installable and a bug report against\n"
  887. #. "that package should be filed.") << endl;
  888. #. }
  889. #.
  890. #: cmdline/apt-get.cc:1534 cmdline/apt-get.cc:1824
  891. msgid "The following information may help to resolve the situation:"
  892. msgstr "Наступна інформація можливо допоможе Вам:"
  893. #: cmdline/apt-get.cc:1538
  894. #, fuzzy
  895. msgid "Internal Error, AutoRemover broke stuff"
  896. msgstr "Внутрішня помилка, вирішувач проблем все поламав"
  897. #: cmdline/apt-get.cc:1557
  898. msgid "Internal error, AllUpgrade broke stuff"
  899. msgstr "Внутрішня помилка, AllUpgrade все поламав"
  900. #: cmdline/apt-get.cc:1612
  901. #, fuzzy, c-format
  902. msgid "Couldn't find task %s"
  903. msgstr "Не можу знайти пакунок %s"
  904. #: cmdline/apt-get.cc:1727 cmdline/apt-get.cc:1763
  905. #, c-format
  906. msgid "Couldn't find package %s"
  907. msgstr "Не можу знайти пакунок %s"
  908. #: cmdline/apt-get.cc:1750
  909. #, c-format
  910. msgid "Note, selecting %s for regex '%s'\n"
  911. msgstr "Помітьте, регулярний вираз %2$s призводить до вибору %1$s\n"
  912. #: cmdline/apt-get.cc:1781
  913. #, fuzzy, c-format
  914. msgid "%s set to manually installed.\n"
  915. msgstr "але %s буде встановлений"
  916. #: cmdline/apt-get.cc:1794
  917. msgid "You might want to run `apt-get -f install' to correct these:"
  918. msgstr ""
  919. "Можливо, для виправлення цих помилок Ви захочете скористатися 'apt-get -f "
  920. "install':"
  921. #: cmdline/apt-get.cc:1797
  922. msgid ""
  923. "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
  924. "solution)."
  925. msgstr ""
  926. "Незадоволені залежності. Спробуйте виконати 'apt-get -f install', не "
  927. "вказуючи імені пакунка (або знайдіть інше рішення)."
  928. #: cmdline/apt-get.cc:1809
  929. msgid ""
  930. "Some packages could not be installed. This may mean that you have\n"
  931. "requested an impossible situation or if you are using the unstable\n"
  932. "distribution that some required packages have not yet been created\n"
  933. "or been moved out of Incoming."
  934. msgstr ""
  935. "Деякі пакунки неможливо встановити. Можливо, Ви просите неможливого,\n"
  936. "або ж використаєте нестабільний дистрибутив, і запитані Вами пакунки\n"
  937. "ще не створені або були вилучені з Incoming."
  938. #: cmdline/apt-get.cc:1827
  939. msgid "Broken packages"
  940. msgstr "Зламані пакунки"
  941. #: cmdline/apt-get.cc:1856
  942. msgid "The following extra packages will be installed:"
  943. msgstr "Будуть встановлені наступні додаткові пакунки:"
  944. #: cmdline/apt-get.cc:1945
  945. msgid "Suggested packages:"
  946. msgstr "Пропоновані пакунки:"
  947. #: cmdline/apt-get.cc:1946
  948. msgid "Recommended packages:"
  949. msgstr "Рекомендовані пакунки:"
  950. #: cmdline/apt-get.cc:1975
  951. msgid "Calculating upgrade... "
  952. msgstr "Обчислення оновлень... "
  953. #: cmdline/apt-get.cc:1978 methods/ftp.cc:708 methods/connect.cc:112
  954. msgid "Failed"
  955. msgstr "Невдача"
  956. #: cmdline/apt-get.cc:1983
  957. msgid "Done"
  958. msgstr "Виконано"
  959. #: cmdline/apt-get.cc:2050 cmdline/apt-get.cc:2058
  960. msgid "Internal error, problem resolver broke stuff"
  961. msgstr "Внутрішня помилка, вирішувач проблем все поламав"
  962. #: cmdline/apt-get.cc:2158
  963. msgid "Must specify at least one package to fetch source for"
  964. msgstr ""
  965. "Вкажіть як мінімум один пакунок, для якого необхідно завантажити вихідні "
  966. "тексти"
  967. #: cmdline/apt-get.cc:2188 cmdline/apt-get.cc:2434
  968. #, c-format
  969. msgid "Unable to find a source package for %s"
  970. msgstr "Неможливо знайти пакунок з вихідними текстами для %s"
  971. #: cmdline/apt-get.cc:2237
  972. #, c-format
  973. msgid "Skipping already downloaded file '%s'\n"
  974. msgstr "Пропускаємо вже завантажений файл '%s'\n"
  975. #: cmdline/apt-get.cc:2272
  976. #, c-format
  977. msgid "You don't have enough free space in %s"
  978. msgstr "Недостатньо місця в %s"
  979. #: cmdline/apt-get.cc:2278
  980. #, c-format
  981. msgid "Need to get %sB/%sB of source archives.\n"
  982. msgstr "Необхідно завантажити %sB/%sB з архівів вихідних текстів.\n"
  983. #: cmdline/apt-get.cc:2281
  984. #, c-format
  985. msgid "Need to get %sB of source archives.\n"
  986. msgstr "Потрібно завантажити %sB архівів з вихідними текстами.\n"
  987. #: cmdline/apt-get.cc:2287
  988. #, c-format
  989. msgid "Fetch source %s\n"
  990. msgstr "Завантаження вихідних текстів %s\n"
  991. #: cmdline/apt-get.cc:2318
  992. msgid "Failed to fetch some archives."
  993. msgstr "Деякі архіви не вдалося завантажити."
  994. #: cmdline/apt-get.cc:2346
  995. #, c-format
  996. msgid "Skipping unpack of already unpacked source in %s\n"
  997. msgstr ""
  998. "Розпакування вихідних текстів пропущено, тому що в %s вже перебувають "
  999. "розпаковані вихідні тексти\n"
  1000. #: cmdline/apt-get.cc:2358
  1001. #, c-format
  1002. msgid "Unpack command '%s' failed.\n"
  1003. msgstr "Команда розпакування '%s' завершилася невдало.\n"
  1004. #: cmdline/apt-get.cc:2359
  1005. #, c-format
  1006. msgid "Check if the 'dpkg-dev' package is installed.\n"
  1007. msgstr "Перевірте, чи встановлений пакунок 'dpkg-dev'.\n"
  1008. #: cmdline/apt-get.cc:2376
  1009. #, c-format
  1010. msgid "Build command '%s' failed.\n"
  1011. msgstr "Команда побудови '%s' закінчилася невдало.\n"
  1012. #: cmdline/apt-get.cc:2395
  1013. msgid "Child process failed"
  1014. msgstr "Породжений процес завершився невдало"
  1015. #: cmdline/apt-get.cc:2411
  1016. msgid "Must specify at least one package to check builddeps for"
  1017. msgstr ""
  1018. "Для перевірки залежностей для побудови необхідно вказати як мінімум один "
  1019. "пакунок"
  1020. #: cmdline/apt-get.cc:2439
  1021. #, c-format
  1022. msgid "Unable to get build-dependency information for %s"
  1023. msgstr "Неможливо одержати інформацію про залежності для побудови %s"
  1024. #: cmdline/apt-get.cc:2459
  1025. #, c-format
  1026. msgid "%s has no build depends.\n"
  1027. msgstr "%s не має залежностей для побудови.\n"
  1028. #: cmdline/apt-get.cc:2511
  1029. #, c-format
  1030. msgid ""
  1031. "%s dependency for %s cannot be satisfied because the package %s cannot be "
  1032. "found"
  1033. msgstr ""
  1034. "Залежність типу %s для %s не може бути задоволена, бо пакунок %s не знайдено"
  1035. #: cmdline/apt-get.cc:2564
  1036. #, c-format
  1037. msgid ""
  1038. "%s dependency for %s cannot be satisfied because no available versions of "
  1039. "package %s can satisfy version requirements"
  1040. msgstr ""
  1041. "Залежність типу %s для %s не може бути задоволена, бо ні одна з версій "
  1042. "пакунка %s не задовольняє умови"
  1043. #: cmdline/apt-get.cc:2600
  1044. #, c-format
  1045. msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
  1046. msgstr ""
  1047. "Не вдалося задовольнити залежність типу %s для пакунка %s: Встановлений "
  1048. "пакунок %s новіше, аніж треба"
  1049. #: cmdline/apt-get.cc:2627
  1050. #, c-format
  1051. msgid "Failed to satisfy %s dependency for %s: %s"
  1052. msgstr "Неможливо задовольнити залежність типу %s для пакунка %s: %s"
  1053. #: cmdline/apt-get.cc:2643
  1054. #, c-format
  1055. msgid "Build-dependencies for %s could not be satisfied."
  1056. msgstr "Залежності для побудови %s не можуть бути задоволені."
  1057. #: cmdline/apt-get.cc:2648
  1058. msgid "Failed to process build dependencies"
  1059. msgstr "Обробка залежностей для побудови закінчилася невдало"
  1060. #: cmdline/apt-get.cc:2680
  1061. msgid "Supported modules:"
  1062. msgstr "Підтримувані модулі:"
  1063. #: cmdline/apt-get.cc:2721
  1064. #, fuzzy
  1065. msgid ""
  1066. "Usage: apt-get [options] command\n"
  1067. " apt-get [options] install|remove pkg1 [pkg2 ...]\n"
  1068. " apt-get [options] source pkg1 [pkg2 ...]\n"
  1069. "\n"
  1070. "apt-get is a simple command line interface for downloading and\n"
  1071. "installing packages. The most frequently used commands are update\n"
  1072. "and install.\n"
  1073. "\n"
  1074. "Commands:\n"
  1075. " update - Retrieve new lists of packages\n"
  1076. " upgrade - Perform an upgrade\n"
  1077. " install - Install new packages (pkg is libc6 not libc6.deb)\n"
  1078. " remove - Remove packages\n"
  1079. " autoremove - Remove automatically all unused packages\n"
  1080. " purge - Remove packages and config files\n"
  1081. " source - Download source archives\n"
  1082. " build-dep - Configure build-dependencies for source packages\n"
  1083. " dist-upgrade - Distribution upgrade, see apt-get(8)\n"
  1084. " dselect-upgrade - Follow dselect selections\n"
  1085. " clean - Erase downloaded archive files\n"
  1086. " autoclean - Erase old downloaded archive files\n"
  1087. " check - Verify that there are no broken dependencies\n"
  1088. "\n"
  1089. "Options:\n"
  1090. " -h This help text.\n"
  1091. " -q Loggable output - no progress indicator\n"
  1092. " -qq No output except for errors\n"
  1093. " -d Download only - do NOT install or unpack archives\n"
  1094. " -s No-act. Perform ordering simulation\n"
  1095. " -y Assume Yes to all queries and do not prompt\n"
  1096. " -f Attempt to correct a system with broken dependencies in place\n"
  1097. " -m Attempt to continue if archives are unlocatable\n"
  1098. " -u Show a list of upgraded packages as well\n"
  1099. " -b Build the source package after fetching it\n"
  1100. " -V Show verbose version numbers\n"
  1101. " -c=? Read this configuration file\n"
  1102. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  1103. "See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
  1104. "pages for more information and options.\n"
  1105. " This APT has Super Cow Powers.\n"
  1106. msgstr ""
  1107. "Використання: apt-get [options] command\n"
  1108. " apt-get [options] install|remove pkg1 [pkg2 ...]\n"
  1109. " apt-get [options] source pkg1 [pkg2 ...]\n"
  1110. "\n"
  1111. "apt-get - простий інтерфейс командного рядка для завантаження й\n"
  1112. "встановлення пакунків. Найбільш часто використовувані команди - update \n"
  1113. "і install.\n"
  1114. "\n"
  1115. "Команди:\n"
  1116. " update - завантажити нові переліки пакунків\n"
  1117. " upgrade - виконати оновлення пакунків\n"
  1118. " install - встановити нові пакунки (назва пакунка вказується\n"
  1119. " як libc6, а не libc6.deb)\n"
  1120. " remove - видалити пакунок\n"
  1121. " source - завантажити архіви з вихідними текстами\n"
  1122. " build-dep - завантажити все необхідне для побудови зазначеного\n"
  1123. " пакунку з вихідних текстів\n"
  1124. " dist-upgrade - оновити всю систему, докладніше - в apt-get(8)\n"
  1125. " dselect-upgrade - керуватися вибором, зробленим в dselect'і\n"
  1126. " clean - видалити завантажені архіви\n"
  1127. " autoclean - видалити старі завантажені архіви\n"
  1128. " check - перевірити наявність порушених залежностей\n"
  1129. "\n"
  1130. "Опції:\n"
  1131. " -h Цей текст.\n"
  1132. " -q Виводити повідомлення, придатні для запису у файл журналу.\n"
  1133. " Не виводити індикатор прогресу\n"
  1134. " -qq Виводити тільки повідомлення про помилки\n"
  1135. " -d Тільки завантажити - не встановлювати й не розпаковувати архіви\n"
  1136. " -s Не виконувати дії насправді. Імітація роботи\n"
  1137. " -y Відповідати \"Так\" на всі питання. Самі питання при цьому не "
  1138. "виводяться\n"
  1139. " -f Продовжувати, навіть якщо перевірка цілісності не пройшла\n"
  1140. " -m Продовжувати, навіть якщо місце розташування архівів невідомо\n"
  1141. " -u Показувати список оновлюваних пакунків\n"
  1142. " -b Компілювати пакунок з вихідних текстів після їхнього завантаження\n"
  1143. " -V Показувати версії пакунків\n"
  1144. " -c=? Читати зазначений файл конфігурації\n"
  1145. " -o=? Встановити довільну опцію, наприклад, -o dir::cache=/tmp\n"
  1146. "Сторінки керівництва apt-get(8), sources.list(5) і apt.conf(5)\n"
  1147. "містять більше інформації.\n"
  1148. " This APT has Super Cow Powers.\n"
  1149. #: cmdline/apt-get.cc:2889
  1150. msgid ""
  1151. "NOTE: This is only a simulation!\n"
  1152. " apt-get needs root privileges for real execution.\n"
  1153. " Keep also in mind that locking is deactivated,\n"
  1154. " so don't depend on the relevance to the real current situation!"
  1155. msgstr ""
  1156. #: cmdline/acqprogress.cc:55
  1157. msgid "Hit "
  1158. msgstr "В кеші "
  1159. #: cmdline/acqprogress.cc:79
  1160. msgid "Get:"
  1161. msgstr "Отр:"
  1162. #: cmdline/acqprogress.cc:110
  1163. msgid "Ign "
  1164. msgstr "Ігн "
  1165. #: cmdline/acqprogress.cc:114
  1166. msgid "Err "
  1167. msgstr "Пом "
  1168. #: cmdline/acqprogress.cc:135
  1169. #, c-format
  1170. msgid "Fetched %sB in %s (%sB/s)\n"
  1171. msgstr "Отримано %sB за %sB (%sB/s)\n"
  1172. #: cmdline/acqprogress.cc:225
  1173. #, c-format
  1174. msgid " [Working]"
  1175. msgstr " [Йде робота]"
  1176. #: cmdline/acqprogress.cc:271
  1177. #, c-format
  1178. msgid ""
  1179. "Media change: please insert the disc labeled\n"
  1180. " '%s'\n"
  1181. "in the drive '%s' and press enter\n"
  1182. msgstr ""
  1183. "Зміна носія: вставте диск з міткою '%s' у пристрій '%s' і натисніть Ввід\n"
  1184. #: cmdline/apt-sortpkgs.cc:86
  1185. msgid "Unknown package record!"
  1186. msgstr "Запис про невідомий пакунок!"
  1187. #: cmdline/apt-sortpkgs.cc:150
  1188. msgid ""
  1189. "Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
  1190. "\n"
  1191. "apt-sortpkgs is a simple tool to sort package files. The -s option is used\n"
  1192. "to indicate what kind of file it is.\n"
  1193. "\n"
  1194. "Options:\n"
  1195. " -h This help text\n"
  1196. " -s Use source file sorting\n"
  1197. " -c=? Read this configuration file\n"
  1198. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  1199. msgstr ""
  1200. "Використання: apt-sortpkgs [options] file1 [file2 ...]\n"
  1201. "\n"
  1202. "apt-sortpkgs - простий інструмент для сортування переліків пакунків. Опція -"
  1203. "s\n"
  1204. "використається, щоб вказати тип списку.\n"
  1205. "\n"
  1206. "Опції:\n"
  1207. " -h цей текст\n"
  1208. " -s сортувати список файлів з вихідними текстами\n"
  1209. " -c=? читати зазначений файл конфігурації\n"
  1210. " -o=? встановити довільну опцію, наприклад, -o dir::cache=/tmp\n"
  1211. #: dselect/install:32
  1212. msgid "Bad default setting!"
  1213. msgstr "Неправильне значення по замовчуванню!"
  1214. #: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:94
  1215. #: dselect/install:105 dselect/update:45
  1216. msgid "Press enter to continue."
  1217. msgstr "Для продовження натисніть Ввід."
  1218. #: dselect/install:91
  1219. msgid "Do you want to erase any previously downloaded .deb files?"
  1220. msgstr "Чи хочете ви видалити всі завантажені раніше файли .deb"
  1221. #: dselect/install:101
  1222. #, fuzzy
  1223. msgid "Some errors occurred while unpacking. Packages that were installed"
  1224. msgstr ""
  1225. "Під час розпакування виникли помилки. Буде продовжено процес налаштування"
  1226. #: dselect/install:102
  1227. #, fuzzy
  1228. msgid "will be configured. This may result in duplicate errors"
  1229. msgstr "встановлених пакунків. Це може призвести до повторення помилок або"
  1230. #: dselect/install:103
  1231. msgid "or errors caused by missing dependencies. This is OK, only the errors"
  1232. msgstr "виникненню нових через незадоволені залежності. Це нормально,"
  1233. #: dselect/install:104
  1234. msgid ""
  1235. "above this message are important. Please fix them and run [I]nstall again"
  1236. msgstr ""
  1237. "важливі тільки помилки, зазначені вище. Виправте їх і виконаєте установку ще "
  1238. "раз"
  1239. #: dselect/update:30
  1240. msgid "Merging available information"
  1241. msgstr "Об'єднання інформації про доступні пакунки"
  1242. #: apt-inst/contrib/extracttar.cc:114
  1243. msgid "Failed to create pipes"
  1244. msgstr "Не вдалося створити канали (pipes)"
  1245. #: apt-inst/contrib/extracttar.cc:141
  1246. msgid "Failed to exec gzip "
  1247. msgstr "Не вдалося виконати компресор gzip"
  1248. #: apt-inst/contrib/extracttar.cc:178 apt-inst/contrib/extracttar.cc:204
  1249. msgid "Corrupted archive"
  1250. msgstr "Пошкоджений архів"
  1251. #: apt-inst/contrib/extracttar.cc:193
  1252. msgid "Tar checksum failed, archive corrupted"
  1253. msgstr "Контрольна сума tar архіва невірна, архів пошкоджений"
  1254. #: apt-inst/contrib/extracttar.cc:296
  1255. #, c-format
  1256. msgid "Unknown TAR header type %u, member %s"
  1257. msgstr "Невідомий тип заголовку TAR %u, член %s"
  1258. #: apt-inst/contrib/arfile.cc:70
  1259. msgid "Invalid archive signature"
  1260. msgstr "Невірний підпис архіву"
  1261. #: apt-inst/contrib/arfile.cc:78
  1262. msgid "Error reading archive member header"
  1263. msgstr "Неможливо прочитати заголовок \"member\" архіву"
  1264. #: apt-inst/contrib/arfile.cc:90
  1265. #, fuzzy, c-format
  1266. msgid "Invalid archive member header %s"
  1267. msgstr "Невірний заголовок \"member\" архіву"
  1268. #: apt-inst/contrib/arfile.cc:102
  1269. msgid "Invalid archive member header"
  1270. msgstr "Невірний заголовок \"member\" архіву"
  1271. #: apt-inst/contrib/arfile.cc:128
  1272. msgid "Archive is too short"
  1273. msgstr "Архів занадто малий"
  1274. #: apt-inst/contrib/arfile.cc:132
  1275. msgid "Failed to read the archive headers"
  1276. msgstr "Не вдалося прочитати заголовки архіву"
  1277. #: apt-inst/filelist.cc:380
  1278. #, fuzzy
  1279. msgid "DropNode called on still linked node"
  1280. msgstr "DropNode викликаний для вузла, який ще використовується"
  1281. #: apt-inst/filelist.cc:412
  1282. msgid "Failed to locate the hash element!"
  1283. msgstr "Не вдалося знайти елемент хешу!"
  1284. #: apt-inst/filelist.cc:459
  1285. #, fuzzy
  1286. msgid "Failed to allocate diversion"
  1287. msgstr "Не вдалося створити diversion"
  1288. #: apt-inst/filelist.cc:464
  1289. msgid "Internal error in AddDiversion"
  1290. msgstr "Внутрішня помилка в AddDiversion"
  1291. #: apt-inst/filelist.cc:477
  1292. #, fuzzy, c-format
  1293. msgid "Trying to overwrite a diversion, %s -> %s and %s/%s"
  1294. msgstr "Спроба зміни diversion, %s -> %s і %s/%s"
  1295. #: apt-inst/filelist.cc:506
  1296. #, fuzzy, c-format
  1297. msgid "Double add of diversion %s -> %s"
  1298. msgstr "Подвійне додавання diversion %s -> %s"
  1299. #: apt-inst/filelist.cc:549
  1300. #, c-format
  1301. msgid "Duplicate conf file %s/%s"
  1302. msgstr "Копія конфігураційного файлу %s/%s"
  1303. #: apt-inst/dirstream.cc:41 apt-inst/dirstream.cc:46 apt-inst/dirstream.cc:49
  1304. #, c-format
  1305. msgid "Failed to write file %s"
  1306. msgstr "Не вдалося записати файл %s"
  1307. #: apt-inst/dirstream.cc:92 apt-inst/dirstream.cc:100
  1308. #, c-format
  1309. msgid "Failed to close file %s"
  1310. msgstr "Не вдалося закрити файл %s"
  1311. #: apt-inst/extract.cc:93 apt-inst/extract.cc:164
  1312. #, c-format
  1313. msgid "The path %s is too long"
  1314. msgstr "Шлях %s занадто довгий"
  1315. #: apt-inst/extract.cc:124
  1316. #, c-format
  1317. msgid "Unpacking %s more than once"
  1318. msgstr "Розпакування %s більш ніж один раз"
  1319. #: apt-inst/extract.cc:134
  1320. #, fuzzy, c-format
  1321. msgid "The directory %s is diverted"
  1322. msgstr "Тека %s входить до переліку diverted"
  1323. #: apt-inst/extract.cc:144
  1324. #, fuzzy, c-format
  1325. msgid "The package is trying to write to the diversion target %s/%s"
  1326. msgstr "Пакет пробує писати у diversion %s/%s"
  1327. #: apt-inst/extract.cc:154 apt-inst/extract.cc:297
  1328. #, fuzzy
  1329. msgid "The diversion path is too long"
  1330. msgstr "Шлях diversion занадто довгий"
  1331. #: apt-inst/extract.cc:240
  1332. #, c-format
  1333. msgid "The directory %s is being replaced by a non-directory"
  1334. msgstr "Тека %s замінюється не текою"
  1335. #: apt-inst/extract.cc:280
  1336. #, fuzzy
  1337. msgid "Failed to locate node in its hash bucket"
  1338. msgstr "Не вдалося розмістити вузол у хеші"
  1339. #: apt-inst/extract.cc:284
  1340. msgid "The path is too long"
  1341. msgstr "Шлях занадто довгий"
  1342. #: apt-inst/extract.cc:414
  1343. #, fuzzy, c-format
  1344. msgid "Overwrite package match with no version for %s"
  1345. msgstr "Файли заміняються вмістом пакета %s без версії"
  1346. #: apt-inst/extract.cc:431
  1347. #, fuzzy, c-format
  1348. msgid "File %s/%s overwrites the one in the package %s"
  1349. msgstr "Файл %s/%s перезаписує інший з пакету %s"
  1350. #. Only warn if there are no sources.list.d.
  1351. #. Only warn if there is no sources.list file.
  1352. #: apt-inst/extract.cc:464 apt-pkg/contrib/cdromutl.cc:157
  1353. #: apt-pkg/contrib/fileutl.cc:240 apt-pkg/sourcelist.cc:159
  1354. #: apt-pkg/sourcelist.cc:165 apt-pkg/acquire.cc:419 apt-pkg/init.cc:90
  1355. #: apt-pkg/init.cc:98 apt-pkg/clean.cc:33 apt-pkg/policy.cc:279
  1356. #, c-format
  1357. msgid "Unable to read %s"
  1358. msgstr "Неможливо прочитати %s"
  1359. #: apt-inst/extract.cc:491
  1360. #, c-format
  1361. msgid "Unable to stat %s"
  1362. msgstr "Неможливо прочитати атрибути %s"
  1363. #: apt-inst/deb/dpkgdb.cc:51 apt-inst/deb/dpkgdb.cc:57
  1364. #, c-format
  1365. msgid "Failed to remove %s"
  1366. msgstr "Невдача видалення %s"
  1367. #: apt-inst/deb/dpkgdb.cc:106 apt-inst/deb/dpkgdb.cc:108
  1368. #, c-format
  1369. msgid "Unable to create %s"
  1370. msgstr "Неможливо створити %s"
  1371. #: apt-inst/deb/dpkgdb.cc:114
  1372. #, c-format
  1373. msgid "Failed to stat %sinfo"
  1374. msgstr "Не вдалося прочитати атрибути %sinfo"
  1375. #: apt-inst/deb/dpkgdb.cc:119
  1376. msgid "The info and temp directories need to be on the same filesystem"
  1377. msgstr "Теки info і temp повинні бути на тій самій файловій системі"
  1378. #. Build the status cache
  1379. #: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:793
  1380. #: apt-pkg/pkgcachegen.cc:865 apt-pkg/pkgcachegen.cc:870
  1381. #: apt-pkg/pkgcachegen.cc:1008
  1382. msgid "Reading package lists"
  1383. msgstr "Читання переліків пакетів"
  1384. #: apt-inst/deb/dpkgdb.cc:176
  1385. #, c-format
  1386. msgid "Failed to change to the admin dir %sinfo"
  1387. msgstr "Невдача зміни до адмінової теки %sinfo"
  1388. #: apt-inst/deb/dpkgdb.cc:197 apt-inst/deb/dpkgdb.cc:351
  1389. #: apt-inst/deb/dpkgdb.cc:444
  1390. msgid "Internal error getting a package name"
  1391. msgstr "Внутрішня помилка отримання назви пакунку"
  1392. #: apt-inst/deb/dpkgdb.cc:201 apt-inst/deb/dpkgdb.cc:382
  1393. msgid "Reading file listing"
  1394. msgstr "Читання переліку файлів"
  1395. #: apt-inst/deb/dpkgdb.cc:212
  1396. #, c-format
  1397. msgid ""
  1398. "Failed to open the list file '%sinfo/%s'. If you cannot restore this file "
  1399. "then make it empty and immediately re-install the same version of the "
  1400. "package!"
  1401. msgstr ""
  1402. "Не вдалося відкрити list файл '%sinfo/%s'. Якщо Ви не можете відновити цей "
  1403. "файл, тоді зробіть його пустим і негайно реінсталюйте ту ж саму версію "
  1404. "пакунка!"
  1405. #: apt-inst/deb/dpkgdb.cc:225 apt-inst/deb/dpkgdb.cc:238
  1406. #, c-format
  1407. msgid "Failed reading the list file %sinfo/%s"
  1408. msgstr "Невдача читання list файла %sinfo/%s"
  1409. #: apt-inst/deb/dpkgdb.cc:262
  1410. #, fuzzy
  1411. msgid "Internal error getting a node"
  1412. msgstr "Внутрішня помилка при отриманні Node"
  1413. #: apt-inst/deb/dpkgdb.cc:305
  1414. #, fuzzy, c-format
  1415. msgid "Failed to open the diversions file %sdiversions"
  1416. msgstr "Не вдалося відкрити файл diversions %sdiversions"
  1417. #: apt-inst/deb/dpkgdb.cc:320
  1418. #, fuzzy
  1419. msgid "The diversion file is corrupted"
  1420. msgstr "Файл diversions пошкоджений"
  1421. #: apt-inst/deb/dpkgdb.cc:327 apt-inst/deb/dpkgdb.cc:332
  1422. #: apt-inst/deb/dpkgdb.cc:337
  1423. #, fuzzy, c-format
  1424. msgid "Invalid line in the diversion file: %s"
  1425. msgstr "Невірна лінія в файлі diversions: %s"
  1426. #: apt-inst/deb/dpkgdb.cc:358
  1427. #, fuzzy
  1428. msgid "Internal error adding a diversion"
  1429. msgstr "Внутрішня помилка при додаванні diversion"
  1430. #: apt-inst/deb/dpkgdb.cc:379
  1431. msgid "The pkg cache must be initialized first"
  1432. msgstr "Кеш пакунків повинен бути ініціалізованим першим"
  1433. #: apt-inst/deb/dpkgdb.cc:439
  1434. #, fuzzy, c-format
  1435. msgid "Failed to find a Package: header, offset %lu"
  1436. msgstr "Не вдалося знайти пакунок: заголовок, зсув %lu"
  1437. #: apt-inst/deb/dpkgdb.cc:461
  1438. #, fuzzy, c-format
  1439. msgid "Bad ConfFile section in the status file. Offset %lu"
  1440. msgstr "Погана секція ConfFile у статусному файлі. Зсув %lu"
  1441. #: apt-inst/deb/dpkgdb.cc:466
  1442. #, fuzzy, c-format
  1443. msgid "Error parsing MD5. Offset %lu"
  1444. msgstr "Помилка обробки MD5. Зсув %lu"
  1445. #: apt-inst/deb/debfile.cc:38 apt-inst/deb/debfile.cc:43
  1446. #, c-format
  1447. msgid "This is not a valid DEB archive, missing '%s' member"
  1448. msgstr "Невірний DEB архів, відсутній член '%s'"
  1449. #: apt-inst/deb/debfile.cc:50
  1450. #, fuzzy, c-format
  1451. msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
  1452. msgstr "Невірний DEB архів, відсутній член '%s' чи '%s'"
  1453. #: apt-inst/deb/debfile.cc:110
  1454. #, c-format
  1455. msgid "Couldn't change to %s"
  1456. msgstr "Неможливо змінити %s"
  1457. #: apt-inst/deb/debfile.cc:140
  1458. msgid "Internal error, could not locate member"
  1459. msgstr "Внутрішня помилка, не можу знайти member"
  1460. #: apt-inst/deb/debfile.cc:173
  1461. msgid "Failed to locate a valid control file"
  1462. msgstr "Не вдалося знайти правильний контрольний (control) файл"
  1463. #: apt-inst/deb/debfile.cc:258
  1464. msgid "Unparsable control file"
  1465. msgstr "Контрольний файл не можливо обробити"
  1466. #: methods/cdrom.cc:200
  1467. #, c-format
  1468. msgid "Unable to read the cdrom database %s"
  1469. msgstr "Неможливо прочитати базу %s з cdrom'у"
  1470. #: methods/cdrom.cc:209
  1471. msgid ""
  1472. "Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update "
  1473. "cannot be used to add new CD-ROMs"
  1474. msgstr ""
  1475. "Будь-ласка використовуйте apt-cdrom, щоб APT розпізнав цей CD-ROM, apt-get "
  1476. "update не може бути використаним для додання нових CD"
  1477. #: methods/cdrom.cc:219
  1478. msgid "Wrong CD-ROM"
  1479. msgstr "Невірний CD-ROM"
  1480. #: methods/cdrom.cc:245
  1481. #, c-format
  1482. msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
  1483. msgstr "Неможливо демонтувати CDROM в %s, можливо він все ще використовується."
  1484. #: methods/cdrom.cc:250
  1485. msgid "Disk not found."
  1486. msgstr "Диск не знайдено."
  1487. #: methods/cdrom.cc:258 methods/file.cc:79 methods/rsh.cc:264
  1488. msgid "File not found"
  1489. msgstr "Файл не знайдено"
  1490. #: methods/copy.cc:43 methods/gzip.cc:141 methods/gzip.cc:150
  1491. #: methods/rred.cc:483 methods/rred.cc:492
  1492. msgid "Failed to stat"
  1493. msgstr "Не вдалося одержати атрибути"
  1494. #: methods/copy.cc:80 methods/gzip.cc:147 methods/rred.cc:489
  1495. msgid "Failed to set modification time"
  1496. msgstr "Не вдалося встановити час модифікації"
  1497. #: methods/file.cc:44
  1498. msgid "Invalid URI, local URIS must not start with //"
  1499. msgstr "Невірне посилання, локальні посилання повинні починатися з //"
  1500. #. Login must be before getpeername otherwise dante won't work.
  1501. #: methods/ftp.cc:168
  1502. msgid "Logging in"
  1503. msgstr "Логінюсь в"
  1504. #: methods/ftp.cc:174
  1505. msgid "Unable to determine the peer name"
  1506. msgstr "Неможливо визначити назву вузла"
  1507. #: methods/ftp.cc:179
  1508. msgid "Unable to determine the local name"
  1509. msgstr "Неможливо визначити локальну назву"
  1510. #: methods/ftp.cc:210 methods/ftp.cc:238
  1511. #, c-format
  1512. msgid "The server refused the connection and said: %s"
  1513. msgstr "Сервер розірвав з'єднання і мовив: %s"
  1514. #: methods/ftp.cc:216
  1515. #, c-format
  1516. msgid "USER failed, server said: %s"
  1517. msgstr "USER невдало, сервер мовив: %s"
  1518. #: methods/ftp.cc:223
  1519. #, c-format
  1520. msgid "PASS failed, server said: %s"
  1521. msgstr "PASS невдало, сервер мовив: %s"
  1522. #: methods/ftp.cc:243
  1523. msgid ""
  1524. "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin "
  1525. "is empty."
  1526. msgstr ""
  1527. "Вказано проксі-сервер, але відсутній скрипт логіну, Acquire::ftp::ProxyLogin "
  1528. "пустий."
  1529. #: methods/ftp.cc:271
  1530. #, c-format
  1531. msgid "Login script command '%s' failed, server said: %s"
  1532. msgstr "Команда '%s'скрипту логіна не вдалася, сервер мовив: %s"
  1533. #: methods/ftp.cc:297
  1534. #, c-format
  1535. msgid "TYPE failed, server said: %s"
  1536. msgstr "TYPE невдало, сервер мовив: %s"
  1537. #: methods/ftp.cc:335 methods/ftp.cc:446 methods/rsh.cc:183 methods/rsh.cc:226
  1538. msgid "Connection timeout"
  1539. msgstr "Час з'єднання вичерпався"
  1540. #: methods/ftp.cc:341
  1541. msgid "Server closed the connection"
  1542. msgstr "Сервер закрив з'єднання"
  1543. #: methods/ftp.cc:344 apt-pkg/contrib/fileutl.cc:667 methods/rsh.cc:190
  1544. msgid "Read error"
  1545. msgstr "Помилка читання"
  1546. #: methods/ftp.cc:351 methods/rsh.cc:197
  1547. msgid "A response overflowed the buffer."
  1548. msgstr "Відповідь переповнила буфер."
  1549. #: methods/ftp.cc:368 methods/ftp.cc:380
  1550. msgid "Protocol corruption"
  1551. msgstr "Спотворений протокол"
  1552. #: methods/ftp.cc:452 apt-pkg/contrib/fileutl.cc:706 methods/rsh.cc:232
  1553. msgid "Write error"
  1554. msgstr "Помилка запису"
  1555. #: methods/ftp.cc:693 methods/ftp.cc:699 methods/ftp.cc:735
  1556. msgid "Could not create a socket"
  1557. msgstr "Неможливо створити сокет (socket)"
  1558. #: methods/ftp.cc:704
  1559. msgid "Could not connect data socket, connection timed out"
  1560. msgstr "Неможливо під'єднати сокет (socket) з даними, час з'єднання вичерпався"
  1561. #: methods/ftp.cc:710
  1562. msgid "Could not connect passive socket."
  1563. msgstr "Неможливо під'єднати пасивний сокет (passive socket)."
  1564. #: methods/ftp.cc:728
  1565. #, fuzzy
  1566. msgid "getaddrinfo was unable to get a listening socket"
  1567. msgstr "Виклик getaddrinfo не зміг отримати сокет"
  1568. #: methods/ftp.cc:742
  1569. msgid "Could not bind a socket"
  1570. msgstr "Неможливо приєднатися до сокета"
  1571. #: methods/ftp.cc:746
  1572. #, fuzzy
  1573. msgid "Could not listen on the socket"
  1574. msgstr "Не можливо утримувати з'єднання на сокеті"
  1575. #: methods/ftp.cc:753
  1576. msgid "Could not determine the socket's name"
  1577. msgstr "Не вдалося визначити назву сокета"
  1578. #: methods/ftp.cc:785
  1579. msgid "Unable to send PORT command"
  1580. msgstr "Неможливо відіслати команду PORT"
  1581. #: methods/ftp.cc:795
  1582. #, c-format
  1583. msgid "Unknown address family %u (AF_*)"
  1584. msgstr "Невідоме адресове сімейство %u (AF_*)"
  1585. #: methods/ftp.cc:804
  1586. #, c-format
  1587. msgid "EPRT failed, server said: %s"
  1588. msgstr "EPRT невдало, сервер мовив: %s"
  1589. #: methods/ftp.cc:824
  1590. msgid "Data socket connect timed out"
  1591. msgstr "Час з'єднання з сокетом даних вичерпався"
  1592. #: methods/ftp.cc:831
  1593. msgid "Unable to accept connection"
  1594. msgstr "Неможливо прийняти з'єднання"
  1595. #: methods/ftp.cc:870 methods/http.cc:1000 methods/rsh.cc:303
  1596. msgid "Problem hashing file"
  1597. msgstr "Проблема хешування файла"
  1598. #: methods/ftp.cc:883
  1599. #, c-format
  1600. msgid "Unable to fetch file, server said '%s'"
  1601. msgstr "Неможливо завантажити файл, сервер мовив: '%s'"
  1602. #: methods/ftp.cc:898 methods/rsh.cc:322
  1603. msgid "Data socket timed out"
  1604. msgstr "Час з'єднання з сокетом (socket) з даними вичерпався"
  1605. #: methods/ftp.cc:928
  1606. #, c-format
  1607. msgid "Data transfer failed, server said '%s'"
  1608. msgstr "Передача даних обірвалася, сервер мовив '%s'"
  1609. #. Get the files information
  1610. #: methods/ftp.cc:1005
  1611. msgid "Query"
  1612. msgstr "Черга"
  1613. #: methods/ftp.cc:1117
  1614. msgid "Unable to invoke "
  1615. msgstr "Неможливо викликати "
  1616. #: methods/connect.cc:70
  1617. #, c-format
  1618. msgid "Connecting to %s (%s)"
  1619. msgstr "З'єднання з %s (%s)"
  1620. #: methods/connect.cc:81
  1621. #, c-format
  1622. msgid "[IP: %s %s]"
  1623. msgstr "[IP: %s %s]"
  1624. #: methods/connect.cc:90
  1625. #, c-format
  1626. msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
  1627. msgstr "Неможливо створити сокет для %s (f=%u t=%u p=%u)"
  1628. #: methods/connect.cc:96
  1629. #, c-format
  1630. msgid "Cannot initiate the connection to %s:%s (%s)."
  1631. msgstr "Неможливо ініціалізувати з'єднання з %s:%s (%s)."
  1632. #: methods/connect.cc:104
  1633. #, c-format
  1634. msgid "Could not connect to %s:%s (%s), connection timed out"
  1635. msgstr "Неможливо з'єднатися з %s:%s (%s), час з'єднання вичерпався"
  1636. #: methods/connect.cc:119
  1637. #, c-format
  1638. msgid "Could not connect to %s:%s (%s)."
  1639. msgstr "Не можливо під'єднатися до %s:%s (%s)."
  1640. #. We say this mainly because the pause here is for the
  1641. #. ssh connection that is still going
  1642. #: methods/connect.cc:147 methods/rsh.cc:425
  1643. #, c-format
  1644. msgid "Connecting to %s"
  1645. msgstr "З'єднання з %s"
  1646. #: methods/connect.cc:166 methods/connect.cc:185
  1647. #, c-format
  1648. msgid "Could not resolve '%s'"
  1649. msgstr "Не можу знайти IP адрес для %s"
  1650. #: methods/connect.cc:191
  1651. #, c-format
  1652. msgid "Temporary failure resolving '%s'"
  1653. msgstr "Тимчасова помилка при отриманні IP адреси '%s'"
  1654. #: methods/connect.cc:194
  1655. #, fuzzy, c-format
  1656. msgid "Something wicked happened resolving '%s:%s' (%i - %s)"
  1657. msgstr "Сталося щось дивне при спробі отримати IP адрес для '%s:%s' (%i)"
  1658. #: methods/connect.cc:241
  1659. #, fuzzy, c-format
  1660. msgid "Unable to connect to %s:%s:"
  1661. msgstr "Не можливо під'єднатися до %s %s:"
  1662. #. TRANSLATOR: %s is the trusted keyring parts directory
  1663. #: methods/gpgv.cc:78
  1664. #, fuzzy, c-format
  1665. msgid "No keyring installed in %s."
  1666. msgstr "Переривається встановлення."
  1667. #: methods/gpgv.cc:104
  1668. msgid "E: Too many keyrings should be passed to gpgv. Exiting."
  1669. msgstr ""
  1670. #: methods/gpgv.cc:121
  1671. msgid "E: Argument list from Acquire::gpgv::Options too long. Exiting."
  1672. msgstr ""
  1673. "E: Перелік аргументів з Acquire::gpgv::Options занадто довгий. Відміна."
  1674. #: methods/gpgv.cc:237
  1675. msgid ""
  1676. "Internal error: Good signature, but could not determine key fingerprint?!"
  1677. msgstr ""
  1678. "Внутрішня помилка: Вірний підпис (signature), але не можливо визначити його "
  1679. "відбиток?!"
  1680. #: methods/gpgv.cc:242
  1681. msgid "At least one invalid signature was encountered."
  1682. msgstr "Знайдено як мінімум один невірний підпис."
  1683. #: methods/gpgv.cc:246
  1684. #, c-format
  1685. msgid "Could not execute '%s' to verify signature (is gpgv installed?)"
  1686. msgstr "Неможливо виконати '%s' для перевірки підпису, gpgv встановлено?"
  1687. #: methods/gpgv.cc:251
  1688. msgid "Unknown error executing gpgv"
  1689. msgstr "Невідома помилка виконання gpgv"
  1690. #: methods/gpgv.cc:285 methods/gpgv.cc:292
  1691. msgid "The following signatures were invalid:\n"
  1692. msgstr "Слідуючі підписи були невірними:\n"
  1693. #: methods/gpgv.cc:299
  1694. msgid ""
  1695. "The following signatures couldn't be verified because the public key is not "
  1696. "available:\n"
  1697. msgstr ""
  1698. "Слідуючі підписи не можуть бути перевірені, тому що, публічний ключ "
  1699. "відсутній:\n"
  1700. #: methods/gzip.cc:64
  1701. #, c-format
  1702. msgid "Couldn't open pipe for %s"
  1703. msgstr "Неможливо відкрити канал (pipe) для %s"
  1704. #: methods/gzip.cc:109
  1705. #, c-format
  1706. msgid "Read error from %s process"
  1707. msgstr "Помилка читання з процесу %s"
  1708. #: methods/http.cc:385
  1709. msgid "Waiting for headers"
  1710. msgstr "Очікування на заголовки"
  1711. #: methods/http.cc:531
  1712. #, c-format
  1713. msgid "Got a single header line over %u chars"
  1714. msgstr "Отримано одну заголовкову лінію понад %u символів"
  1715. #: methods/http.cc:539
  1716. msgid "Bad header line"
  1717. msgstr "Невірна лінія заголовку"
  1718. #: methods/http.cc:558 methods/http.cc:565
  1719. msgid "The HTTP server sent an invalid reply header"
  1720. msgstr "HTTP сервер відіслав невірний заголовок 'reply'"
  1721. #: methods/http.cc:594
  1722. msgid "The HTTP server sent an invalid Content-Length header"
  1723. msgstr "HTTP сервер відіслав невірний заголовок 'Content-Length'"
  1724. #: methods/http.cc:609
  1725. msgid "The HTTP server sent an invalid Content-Range header"
  1726. msgstr "HTTP сервер відіслав невірний заголовок 'Content-Length'"
  1727. #: methods/http.cc:611
  1728. msgid "This HTTP server has broken range support"
  1729. msgstr "Цей HTTP сервер має поламану підтримку 'range'"
  1730. #: methods/http.cc:635
  1731. msgid "Unknown date format"
  1732. msgstr "Невідомий формат дати"
  1733. #: methods/http.cc:791
  1734. msgid "Select failed"
  1735. msgstr "Вибір не вдався"
  1736. #: methods/http.cc:796
  1737. msgid "Connection timed out"
  1738. msgstr "Час очікування з'єднання вийшов"
  1739. #: methods/http.cc:819
  1740. msgid "Error writing to output file"
  1741. msgstr "Помилка запису в вихідний файл"
  1742. #: methods/http.cc:850
  1743. #, fuzzy
  1744. msgid "Error writing to file"
  1745. msgstr "Помилка запису в файл"
  1746. #: methods/http.cc:878
  1747. #, fuzzy
  1748. msgid "Error writing to the file"
  1749. msgstr "Помилка запису в файл"
  1750. #: methods/http.cc:892
  1751. msgid "Error reading from server. Remote end closed connection"
  1752. msgstr "Помилка читання з сервера. Віддалена сторона закрила з'єднання"
  1753. #: methods/http.cc:894
  1754. msgid "Error reading from server"
  1755. msgstr "Помилка читання з сервера"
  1756. #: methods/http.cc:985 apt-pkg/contrib/mmap.cc:233
  1757. #, fuzzy
  1758. msgid "Failed to truncate file"
  1759. msgstr "Не вдалося записати файл %s"
  1760. #: methods/http.cc:1150
  1761. msgid "Bad header data"
  1762. msgstr "Погана заголовкова інформація"
  1763. #: methods/http.cc:1167 methods/http.cc:1222
  1764. msgid "Connection failed"
  1765. msgstr "З'єднання не вдалося"
  1766. #: methods/http.cc:1314
  1767. msgid "Internal error"
  1768. msgstr "Внутрішня помилка"
  1769. #: apt-pkg/contrib/mmap.cc:76
  1770. msgid "Can't mmap an empty file"
  1771. msgstr "Неможливо відобразити в пам'яті пустий файл"
  1772. #: apt-pkg/contrib/mmap.cc:81 apt-pkg/contrib/mmap.cc:202
  1773. #, c-format
  1774. msgid "Couldn't make mmap of %lu bytes"
  1775. msgstr "Неможливо відобразити в пам'яті %lu байт"
  1776. #: apt-pkg/contrib/mmap.cc:252
  1777. #, c-format
  1778. msgid ""
  1779. "Dynamic MMap ran out of room. Please increase the size of APT::Cache-Limit. "
  1780. "Current value: %lu. (man 5 apt.conf)"
  1781. msgstr ""
  1782. #: apt-pkg/contrib/mmap.cc:347
  1783. #, c-format
  1784. msgid ""
  1785. "The size of a MMap has already reached the defined limit of %lu bytes,abort "
  1786. "the try to grow the MMap."
  1787. msgstr ""
  1788. #. d means days, h means hours, min means minutes, s means seconds
  1789. #: apt-pkg/contrib/strutl.cc:346
  1790. #, c-format
  1791. msgid "%lid %lih %limin %lis"
  1792. msgstr ""
  1793. #. h means hours, min means minutes, s means seconds
  1794. #: apt-pkg/contrib/strutl.cc:353
  1795. #, c-format
  1796. msgid "%lih %limin %lis"
  1797. msgstr ""
  1798. #. min means minutes, s means seconds
  1799. #: apt-pkg/contrib/strutl.cc:360
  1800. #, c-format
  1801. msgid "%limin %lis"
  1802. msgstr ""
  1803. #. s means seconds
  1804. #: apt-pkg/contrib/strutl.cc:365
  1805. #, c-format
  1806. msgid "%lis"
  1807. msgstr ""
  1808. #: apt-pkg/contrib/strutl.cc:1040
  1809. #, c-format
  1810. msgid "Selection %s not found"
  1811. msgstr "Вибір %s не знайдено"
  1812. #: apt-pkg/contrib/configuration.cc:452
  1813. #, c-format
  1814. msgid "Unrecognized type abbreviation: '%c'"
  1815. msgstr "Нерозпізнаваний тип абревіатури: '%c'"
  1816. #: apt-pkg/contrib/configuration.cc:510
  1817. #, c-format
  1818. msgid "Opening configuration file %s"
  1819. msgstr "Відкривається конфігураційний файл %s"
  1820. #: apt-pkg/contrib/configuration.cc:678
  1821. #, c-format
  1822. msgid "Syntax error %s:%u: Block starts with no name."
  1823. msgstr "Синтаксова помилка %s:%u: Блок починається без назви."
  1824. #: apt-pkg/contrib/configuration.cc:697
  1825. #, c-format
  1826. msgid "Syntax error %s:%u: Malformed tag"
  1827. msgstr "Синтаксова помилка %s:%u: спотворений тег"
  1828. #: apt-pkg/contrib/configuration.cc:714
  1829. #, c-format
  1830. msgid "Syntax error %s:%u: Extra junk after value"
  1831. msgstr "Синтаксова помилка %s:%u: зайві символи після величини"
  1832. #: apt-pkg/contrib/configuration.cc:754
  1833. #, fuzzy, c-format
  1834. msgid "Syntax error %s:%u: Directives can only be done at the top level"
  1835. msgstr ""
  1836. "Синтаксова помилка %s:%u: Директиви можуть бути виконані тільки на "
  1837. "найвищому рівні"
  1838. #: apt-pkg/contrib/configuration.cc:761
  1839. #, c-format
  1840. msgid "Syntax error %s:%u: Too many nested includes"
  1841. msgstr "Синтаксова помилка %s:%u: Забагато вмонтованих включень"
  1842. #: apt-pkg/contrib/configuration.cc:765 apt-pkg/contrib/configuration.cc:770
  1843. #, c-format
  1844. msgid "Syntax error %s:%u: Included from here"
  1845. msgstr "Синтаксова помилка %s:%u: Включена звідси"
  1846. #: apt-pkg/contrib/configuration.cc:774
  1847. #, c-format
  1848. msgid "Syntax error %s:%u: Unsupported directive '%s'"
  1849. msgstr "Синтаксова помилка %s:%u: Директива '%s' не підтримується"
  1850. #: apt-pkg/contrib/configuration.cc:825
  1851. #, c-format
  1852. msgid "Syntax error %s:%u: Extra junk at end of file"
  1853. msgstr "Синтаксова помилка %s:%u: зайві символи в кінці файла"
  1854. #: apt-pkg/contrib/progress.cc:153
  1855. #, c-format
  1856. msgid "%c%s... Error!"
  1857. msgstr "%c%s... Помилка!"
  1858. #: apt-pkg/contrib/progress.cc:155
  1859. #, c-format
  1860. msgid "%c%s... Done"
  1861. msgstr "%c%s... Виконано"
  1862. #: apt-pkg/contrib/cmndline.cc:77
  1863. #, c-format
  1864. msgid "Command line option '%c' [from %s] is not known."
  1865. msgstr "Невідомий параметр '%c' [з %s] командного рядка."
  1866. #: apt-pkg/contrib/cmndline.cc:103 apt-pkg/contrib/cmndline.cc:111
  1867. #: apt-pkg/contrib/cmndline.cc:119
  1868. #, c-format
  1869. msgid "Command line option %s is not understood"
  1870. msgstr "Незрозумілий параметр %s командного рядка"
  1871. #: apt-pkg/contrib/cmndline.cc:124
  1872. #, c-format
  1873. msgid "Command line option %s is not boolean"
  1874. msgstr "Не логічний параметр %s командного рядка"
  1875. #: apt-pkg/contrib/cmndline.cc:163 apt-pkg/contrib/cmndline.cc:184
  1876. #, c-format
  1877. msgid "Option %s requires an argument."
  1878. msgstr "Параметр %s потребує аргумента."
  1879. #: apt-pkg/contrib/cmndline.cc:198 apt-pkg/contrib/cmndline.cc:204
  1880. #, c-format
  1881. msgid "Option %s: Configuration item specification must have an =<val>."
  1882. msgstr ""
  1883. #: apt-pkg/contrib/cmndline.cc:234
  1884. #, c-format
  1885. msgid "Option %s requires an integer argument, not '%s'"
  1886. msgstr "Параметр %s потребує цілочислений аргумент, але не '%s'"
  1887. #: apt-pkg/contrib/cmndline.cc:265
  1888. #, c-format
  1889. msgid "Option '%s' is too long"
  1890. msgstr "Параметр '%s' занадто довгий"
  1891. #: apt-pkg/contrib/cmndline.cc:298
  1892. #, c-format
  1893. msgid "Sense %s is not understood, try true or false."
  1894. msgstr "Незрозумілий вираз %s , спробуйте true чи false."
  1895. #: apt-pkg/contrib/cmndline.cc:348
  1896. #, c-format
  1897. msgid "Invalid operation %s"
  1898. msgstr "Невірна дія %s"
  1899. #: apt-pkg/contrib/cdromutl.cc:52
  1900. #, c-format
  1901. msgid "Unable to stat the mount point %s"
  1902. msgstr "Неможливо прочитати атрибути точки монтування %s"
  1903. #: apt-pkg/contrib/cdromutl.cc:153 apt-pkg/contrib/cdromutl.cc:187
  1904. #: apt-pkg/acquire.cc:425 apt-pkg/acquire.cc:450 apt-pkg/clean.cc:39
  1905. #, c-format
  1906. msgid "Unable to change to %s"
  1907. msgstr "Неможливо зробити зміни у %s"
  1908. #: apt-pkg/contrib/cdromutl.cc:195
  1909. msgid "Failed to stat the cdrom"
  1910. msgstr "Не вдалося прочитати атрибути cdrom"
  1911. #: apt-pkg/contrib/fileutl.cc:151
  1912. #, c-format
  1913. msgid "Not using locking for read only lock file %s"
  1914. msgstr ""
  1915. "Блокування не використовується, так як файл блокування %s доступний тільки "
  1916. "для читання"
  1917. #: apt-pkg/contrib/fileutl.cc:156
  1918. #, c-format
  1919. msgid "Could not open lock file %s"
  1920. msgstr "Не можливо відкрити lock файл %s"
  1921. #: apt-pkg/contrib/fileutl.cc:174
  1922. #, c-format
  1923. msgid "Not using locking for nfs mounted lock file %s"
  1924. msgstr ""
  1925. "Блокування не використовується, так як файл блокування %s знаходиться на "
  1926. "файловій системі nfs"
  1927. #: apt-pkg/contrib/fileutl.cc:178
  1928. #, fuzzy, c-format
  1929. msgid "Could not get lock %s"
  1930. msgstr "Не можливо отримати lock %s"
  1931. #: apt-pkg/contrib/fileutl.cc:568
  1932. #, c-format
  1933. msgid "Waited for %s but it wasn't there"
  1934. msgstr "Очікується на %s але його тут немає"
  1935. #: apt-pkg/contrib/fileutl.cc:580
  1936. #, c-format
  1937. msgid "Sub-process %s received a segmentation fault."
  1938. msgstr "Підпроцес %s отримав segmentation fault."
  1939. #: apt-pkg/contrib/fileutl.cc:582
  1940. #, fuzzy, c-format
  1941. msgid "Sub-process %s received signal %u."
  1942. msgstr "Підпроцес %s отримав segmentation fault."
  1943. #: apt-pkg/contrib/fileutl.cc:586
  1944. #, c-format
  1945. msgid "Sub-process %s returned an error code (%u)"
  1946. msgstr "Підпроцес %s повернув код помилки (%u)"
  1947. #: apt-pkg/contrib/fileutl.cc:588
  1948. #, c-format
  1949. msgid "Sub-process %s exited unexpectedly"
  1950. msgstr "Підпроцес %s раптово завершився"
  1951. #: apt-pkg/contrib/fileutl.cc:632
  1952. #, c-format
  1953. msgid "Could not open file %s"
  1954. msgstr "Не можливо відкрити файл %s"
  1955. #: apt-pkg/contrib/fileutl.cc:688
  1956. #, c-format
  1957. msgid "read, still have %lu to read but none left"
  1958. msgstr ""
  1959. "помилка при читанні. мали прочитати ще %lu байт, але нічого більше нема"
  1960. #: apt-pkg/contrib/fileutl.cc:718
  1961. #, c-format
  1962. msgid "write, still have %lu to write but couldn't"
  1963. msgstr "помилка при записі, мали прочитати ще %lu байт, але не змогли"
  1964. #: apt-pkg/contrib/fileutl.cc:793
  1965. msgid "Problem closing the file"
  1966. msgstr "Проблема з закриттям файла"
  1967. #: apt-pkg/contrib/fileutl.cc:799
  1968. msgid "Problem unlinking the file"
  1969. msgstr "Проблема з роз'єднанням файла"
  1970. #: apt-pkg/contrib/fileutl.cc:810
  1971. msgid "Problem syncing the file"
  1972. msgstr "Проблема з синхронізацією файла"
  1973. #: apt-pkg/pkgcache.cc:133
  1974. msgid "Empty package cache"
  1975. msgstr "Кеш пакунків пустий"
  1976. #: apt-pkg/pkgcache.cc:139
  1977. msgid "The package cache file is corrupted"
  1978. msgstr "Файл кешу пакунків пошкоджений"
  1979. #: apt-pkg/pkgcache.cc:144
  1980. msgid "The package cache file is an incompatible version"
  1981. msgstr "Файл кешу пакунків має несумісну версію"
  1982. #: apt-pkg/pkgcache.cc:149
  1983. #, c-format
  1984. msgid "This APT does not support the versioning system '%s'"
  1985. msgstr "APT не підтримує систему призначення версій '%s'"
  1986. #: apt-pkg/pkgcache.cc:154
  1987. msgid "The package cache was built for a different architecture"
  1988. msgstr "Кеш пакунків був побудований для іншої архітектури"
  1989. #: apt-pkg/pkgcache.cc:225
  1990. msgid "Depends"
  1991. msgstr "Залежності (Depends)"
  1992. #: apt-pkg/pkgcache.cc:225
  1993. msgid "PreDepends"
  1994. msgstr "Пре-Залежності (PreDepends)"
  1995. #: apt-pkg/pkgcache.cc:225
  1996. msgid "Suggests"
  1997. msgstr "Пропонує (Suggests)"
  1998. #: apt-pkg/pkgcache.cc:226
  1999. msgid "Recommends"
  2000. msgstr "Рекомендує"
  2001. #: apt-pkg/pkgcache.cc:226
  2002. msgid "Conflicts"
  2003. msgstr "Конфлікти"
  2004. #: apt-pkg/pkgcache.cc:226
  2005. msgid "Replaces"
  2006. msgstr "Заміняє (Replaces)"
  2007. #: apt-pkg/pkgcache.cc:227
  2008. msgid "Obsoletes"
  2009. msgstr "Застарілі (Obsoletes)"
  2010. #: apt-pkg/pkgcache.cc:227
  2011. msgid "Breaks"
  2012. msgstr ""
  2013. #: apt-pkg/pkgcache.cc:227
  2014. msgid "Enhances"
  2015. msgstr ""
  2016. #: apt-pkg/pkgcache.cc:238
  2017. msgid "important"
  2018. msgstr "Важливі (Important)"
  2019. #: apt-pkg/pkgcache.cc:238
  2020. msgid "required"
  2021. msgstr "Необхідні (Required)"
  2022. #: apt-pkg/pkgcache.cc:238
  2023. msgid "standard"
  2024. msgstr "Стандартні (Standard)"
  2025. #: apt-pkg/pkgcache.cc:239
  2026. msgid "optional"
  2027. msgstr "Необов'язкові (Optional)"
  2028. #: apt-pkg/pkgcache.cc:239
  2029. msgid "extra"
  2030. msgstr "Додаткові (Extra)"
  2031. #: apt-pkg/depcache.cc:123 apt-pkg/depcache.cc:152
  2032. msgid "Building dependency tree"
  2033. msgstr "Побудова дерева залежностей"
  2034. #: apt-pkg/depcache.cc:124
  2035. msgid "Candidate versions"
  2036. msgstr "Версії кандидатів"
  2037. #: apt-pkg/depcache.cc:153
  2038. msgid "Dependency generation"
  2039. msgstr "Ґенерація залежностей"
  2040. #: apt-pkg/depcache.cc:173 apt-pkg/depcache.cc:193 apt-pkg/depcache.cc:197
  2041. #, fuzzy
  2042. msgid "Reading state information"
  2043. msgstr "Об'єднання інформації про доступні пакунки"
  2044. #: apt-pkg/depcache.cc:223
  2045. #, fuzzy, c-format
  2046. msgid "Failed to open StateFile %s"
  2047. msgstr "Не вдалося відкрити %s"
  2048. #: apt-pkg/depcache.cc:229
  2049. #, fuzzy, c-format
  2050. msgid "Failed to write temporary StateFile %s"
  2051. msgstr "Не вдалося записати файл %s"
  2052. #: apt-pkg/tagfile.cc:102
  2053. #, c-format
  2054. msgid "Unable to parse package file %s (1)"
  2055. msgstr "Неможливо обробити файл %s пакунку (1)"
  2056. #: apt-pkg/tagfile.cc:189
  2057. #, c-format
  2058. msgid "Unable to parse package file %s (2)"
  2059. msgstr "Неможливо обробити файл %s пакунку (2)"
  2060. #: apt-pkg/sourcelist.cc:83
  2061. #, c-format
  2062. msgid "Malformed line %lu in source list %s (URI)"
  2063. msgstr "Спотворена лінія %lu у переліку джерел %s (проблема в URI)"
  2064. #: apt-pkg/sourcelist.cc:85
  2065. #, c-format
  2066. msgid "Malformed line %lu in source list %s (dist)"
  2067. msgstr ""
  2068. "Спотворена лінія %lu у переліку джерел %s (проблема в назві дистрибутиву)"
  2069. #: apt-pkg/sourcelist.cc:88
  2070. #, c-format
  2071. msgid "Malformed line %lu in source list %s (URI parse)"
  2072. msgstr "Спотворена лінія %lu у переліку джерел %s (обробка URI)"
  2073. #: apt-pkg/sourcelist.cc:94
  2074. #, c-format
  2075. msgid "Malformed line %lu in source list %s (absolute dist)"
  2076. msgstr "Спотворена лінія %lu у переліку джерел %s (absolute dist)"
  2077. #: apt-pkg/sourcelist.cc:101
  2078. #, c-format
  2079. msgid "Malformed line %lu in source list %s (dist parse)"
  2080. msgstr "Спотворена лінія %lu у переліку джерел %s (dist parse)"
  2081. #: apt-pkg/sourcelist.cc:199
  2082. #, c-format
  2083. msgid "Opening %s"
  2084. msgstr "Відкриття %s"
  2085. #: apt-pkg/sourcelist.cc:216 apt-pkg/cdrom.cc:445
  2086. #, c-format
  2087. msgid "Line %u too long in source list %s."
  2088. msgstr "Лінія %u занадто довга в переліку джерел %s."
  2089. #: apt-pkg/sourcelist.cc:236
  2090. #, c-format
  2091. msgid "Malformed line %u in source list %s (type)"
  2092. msgstr "Спотворена лінія %u у переліку джерел %s (тип)"
  2093. #: apt-pkg/sourcelist.cc:240
  2094. #, c-format
  2095. msgid "Type '%s' is not known on line %u in source list %s"
  2096. msgstr "Невідомий тип '%s' в лінії %u в переліку джерел %s"
  2097. #: apt-pkg/sourcelist.cc:248 apt-pkg/sourcelist.cc:251
  2098. #, c-format
  2099. msgid "Malformed line %u in source list %s (vendor id)"
  2100. msgstr "Спотворена лінія %u у переліку джерел %s (vendor id)"
  2101. #: apt-pkg/packagemanager.cc:324 apt-pkg/packagemanager.cc:586
  2102. #, c-format
  2103. msgid ""
  2104. "Could not perform immediate configuration on '%s'.Please see man 5 apt.conf "
  2105. "under APT::Immediate-Configure for details. (%d)"
  2106. msgstr ""
  2107. #: apt-pkg/packagemanager.cc:440
  2108. #, c-format
  2109. msgid ""
  2110. "This installation run will require temporarily removing the essential "
  2111. "package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
  2112. "you really want to do it, activate the APT::Force-LoopBreak option."
  2113. msgstr ""
  2114. "Для виконання даного встановлення потрібне тимчасове видалення важливого "
  2115. "пакету %s через конфлікти/петлеві пре-залежності (Pre-Depends loop). Це "
  2116. "погано, але якщо Ви дійсно бажаєте зробити це, активуйте параметр APT::Force-"
  2117. "LoopBreak."
  2118. #: apt-pkg/packagemanager.cc:478
  2119. #, c-format
  2120. msgid ""
  2121. "Could not perform immediate configuration on already unpacked '%s'.Please "
  2122. "see man 5 apt.conf under APT::Immediate-Configure for details."
  2123. msgstr ""
  2124. #: apt-pkg/pkgrecords.cc:32
  2125. #, c-format
  2126. msgid "Index file type '%s' is not supported"
  2127. msgstr "Тип '%s' індексного файлу не підтримується"
  2128. #: apt-pkg/algorithms.cc:248
  2129. #, c-format
  2130. msgid ""
  2131. "The package %s needs to be reinstalled, but I can't find an archive for it."
  2132. msgstr ""
  2133. "Пакунок %s повинен бути перевстановленим, але я не можу знайти архіву для "
  2134. "нього."
  2135. #: apt-pkg/algorithms.cc:1138
  2136. msgid ""
  2137. "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
  2138. "held packages."
  2139. msgstr ""
  2140. "Помилка, pkgProblemResolver::Resolve згенерував зупинку, це може бути "
  2141. "пов'язано з зафіксованими пакунками."
  2142. #: apt-pkg/algorithms.cc:1140
  2143. msgid "Unable to correct problems, you have held broken packages."
  2144. msgstr "Неможливо усунути проблеми, Ви маєте поламані зафіксовані пакунки."
  2145. #: apt-pkg/algorithms.cc:1415 apt-pkg/algorithms.cc:1417
  2146. msgid ""
  2147. "Some index files failed to download, they have been ignored, or old ones "
  2148. "used instead."
  2149. msgstr ""
  2150. "Деякі індексні файли не завантажилися, вони були зігноровані або замість них "
  2151. "були використані старі версії."
  2152. #: apt-pkg/acquire.cc:60
  2153. #, c-format
  2154. msgid "Lists directory %spartial is missing."
  2155. msgstr "Lists тека %spartial відсутня."
  2156. #: apt-pkg/acquire.cc:64
  2157. #, c-format
  2158. msgid "Archive directory %spartial is missing."
  2159. msgstr "Архівна тека %spartial відсутня."
  2160. #. only show the ETA if it makes sense
  2161. #. two days
  2162. #: apt-pkg/acquire.cc:826
  2163. #, fuzzy, c-format
  2164. msgid "Retrieving file %li of %li (%s remaining)"
  2165. msgstr "Завантажується файл %li з %li (%s залишилось)"
  2166. #: apt-pkg/acquire.cc:828
  2167. #, fuzzy, c-format
  2168. msgid "Retrieving file %li of %li"
  2169. msgstr "Завантажується файл %li з %li"
  2170. #: apt-pkg/acquire-worker.cc:110
  2171. #, c-format
  2172. msgid "The method driver %s could not be found."
  2173. msgstr "Драйвер для метода %s не знайдено."
  2174. #: apt-pkg/acquire-worker.cc:159
  2175. #, c-format
  2176. msgid "Method %s did not start correctly"
  2177. msgstr "Метод %s не стартував коректно"
  2178. #: apt-pkg/acquire-worker.cc:413
  2179. #, c-format
  2180. msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
  2181. msgstr ""
  2182. "Будь-ласка, вставте диск з поміткою: '%s' в CD привід '%s' і натисніть Enter."
  2183. #: apt-pkg/init.cc:133
  2184. #, c-format
  2185. msgid "Packaging system '%s' is not supported"
  2186. msgstr "Система пакування '%s' не підтримується"
  2187. #: apt-pkg/init.cc:149
  2188. msgid "Unable to determine a suitable packaging system type"
  2189. msgstr "Неможливо визначити тип необхідної системи пакування "
  2190. #: apt-pkg/clean.cc:56
  2191. #, c-format
  2192. msgid "Unable to stat %s."
  2193. msgstr "Неможливо прочитати атрибути %s."
  2194. #: apt-pkg/srcrecords.cc:44
  2195. msgid "You must put some 'source' URIs in your sources.list"
  2196. msgstr "Ви повинні записати певні 'source' посилання в твій sources.list"
  2197. #: apt-pkg/cachefile.cc:71
  2198. msgid "The package lists or status file could not be parsed or opened."
  2199. msgstr "Не можу обробити чи відкрити перелік пакунків чи status файл."
  2200. #: apt-pkg/cachefile.cc:75
  2201. msgid "You may want to run apt-get update to correct these problems"
  2202. msgstr "Можливо, для виправлення цих помилок Ви захочете запустити apt-get"
  2203. #: apt-pkg/policy.cc:316
  2204. #, fuzzy, c-format
  2205. msgid "Invalid record in the preferences file %s, no Package header"
  2206. msgstr "Невірний запис в preferences файлі, відсутній заголовок Package"
  2207. #: apt-pkg/policy.cc:338
  2208. #, c-format
  2209. msgid "Did not understand pin type %s"
  2210. msgstr "Не зрозумів тип %s для pin"
  2211. #: apt-pkg/policy.cc:346
  2212. msgid "No priority (or zero) specified for pin"
  2213. msgstr "Не встановлено пріоритету (або встановлено 0) для pin"
  2214. #: apt-pkg/pkgcachegen.cc:74
  2215. msgid "Cache has an incompatible versioning system"
  2216. msgstr "Кеш має несумісну систему призначення версій"
  2217. #: apt-pkg/pkgcachegen.cc:117
  2218. #, c-format
  2219. msgid "Error occurred while processing %s (NewPackage)"
  2220. msgstr "Помилка, яка була викликана внаслідок обробки %s (NewPackage)"
  2221. #: apt-pkg/pkgcachegen.cc:132
  2222. #, c-format
  2223. msgid "Error occurred while processing %s (UsePackage1)"
  2224. msgstr "Помилка, яка була викликана внаслідок обробки %s (UsePackage1)"
  2225. #: apt-pkg/pkgcachegen.cc:166
  2226. #, fuzzy, c-format
  2227. msgid "Error occurred while processing %s (NewFileDesc1)"
  2228. msgstr "Помилка, яка була викликана внаслідок обробки %s (NewFileVer1)"
  2229. #: apt-pkg/pkgcachegen.cc:191
  2230. #, c-format
  2231. msgid "Error occurred while processing %s (UsePackage2)"
  2232. msgstr "Помилка, яка була викликана внаслідок обробки %s (UsePackage2)"
  2233. #: apt-pkg/pkgcachegen.cc:195
  2234. #, c-format
  2235. msgid "Error occurred while processing %s (NewFileVer1)"
  2236. msgstr "Помилка, яка була викликана внаслідок обробки %s (NewFileVer1)"
  2237. #: apt-pkg/pkgcachegen.cc:226
  2238. #, c-format
  2239. msgid "Error occurred while processing %s (NewVersion1)"
  2240. msgstr "Помилка, яка була викликана внаслідок обробки %s (NewVersion1)"
  2241. #: apt-pkg/pkgcachegen.cc:230
  2242. #, c-format
  2243. msgid "Error occurred while processing %s (UsePackage3)"
  2244. msgstr "Помилка, яка була викликана внаслідок обробки %s (UsePackage3)"
  2245. #: apt-pkg/pkgcachegen.cc:234
  2246. #, c-format
  2247. msgid "Error occurred while processing %s (NewVersion2)"
  2248. msgstr "Помилка, яка була викликана внаслідок обробки %s (NewVersion2)"
  2249. #: apt-pkg/pkgcachegen.cc:258
  2250. #, fuzzy, c-format
  2251. msgid "Error occurred while processing %s (NewFileDesc2)"
  2252. msgstr "Помилка, яка була викликана внаслідок обробки %s (NewFileVer1)"
  2253. #: apt-pkg/pkgcachegen.cc:264
  2254. msgid "Wow, you exceeded the number of package names this APT is capable of."
  2255. msgstr "Ви перевищили кількість імен пакунків, які APT може обробити."
  2256. #: apt-pkg/pkgcachegen.cc:267
  2257. msgid "Wow, you exceeded the number of versions this APT is capable of."
  2258. msgstr "Ви перевищили кількість версій, які APT може обробити."
  2259. #: apt-pkg/pkgcachegen.cc:270
  2260. #, fuzzy
  2261. msgid "Wow, you exceeded the number of descriptions this APT is capable of."
  2262. msgstr "Ви перевищили кількість версій, які APT може обробити."
  2263. #: apt-pkg/pkgcachegen.cc:273
  2264. msgid "Wow, you exceeded the number of dependencies this APT is capable of."
  2265. msgstr "Ви перевищили кількість залежностей які APT може обробити."
  2266. #: apt-pkg/pkgcachegen.cc:301
  2267. #, c-format
  2268. msgid "Error occurred while processing %s (FindPkg)"
  2269. msgstr "Помилка, яка була викликана внаслідок обробки %s (FindPkg)"
  2270. #: apt-pkg/pkgcachegen.cc:314
  2271. #, c-format
  2272. msgid "Error occurred while processing %s (CollectFileProvides)"
  2273. msgstr "Помилка, яка була викликана внаслідок обробки %s (CollectFileProvides)"
  2274. #: apt-pkg/pkgcachegen.cc:320
  2275. #, c-format
  2276. msgid "Package %s %s was not found while processing file dependencies"
  2277. msgstr "Пакунок %s %s не був знайдений під час обробки залежностей файла"
  2278. #: apt-pkg/pkgcachegen.cc:706
  2279. #, c-format
  2280. msgid "Couldn't stat source package list %s"
  2281. msgstr "Не вдалося прочитати атрибути переліку вихідних текстів%s"
  2282. #: apt-pkg/pkgcachegen.cc:808
  2283. #, fuzzy
  2284. msgid "Collecting File Provides"
  2285. msgstr "Збирання інформації про файлів "
  2286. #: apt-pkg/pkgcachegen.cc:952 apt-pkg/pkgcachegen.cc:959
  2287. msgid "IO Error saving source cache"
  2288. msgstr "Помилка IO під час збереження джерельного кешу"
  2289. #: apt-pkg/acquire-item.cc:128
  2290. #, c-format
  2291. msgid "rename failed, %s (%s -> %s)."
  2292. msgstr "Не вдалося перейменувати, %s (%s -> %s)."
  2293. #: apt-pkg/acquire-item.cc:432
  2294. msgid "MD5Sum mismatch"
  2295. msgstr "Невідповідність MD5Sum"
  2296. #: apt-pkg/acquire-item.cc:693 apt-pkg/acquire-item.cc:1455
  2297. #, fuzzy
  2298. msgid "Hash Sum mismatch"
  2299. msgstr "Невідповідність MD5Sum"
  2300. #: apt-pkg/acquire-item.cc:1150
  2301. #, fuzzy
  2302. msgid "There is no public key available for the following key IDs:\n"
  2303. msgstr "Відсутній публічний ключ для заданих ID ключа:\n"
  2304. #: apt-pkg/acquire-item.cc:1260
  2305. #, c-format
  2306. msgid ""
  2307. "I wasn't able to locate a file for the %s package. This might mean you need "
  2308. "to manually fix this package. (due to missing arch)"
  2309. msgstr ""
  2310. "Я не можу знайти файл для пакунку %s. Можливо, Ви захочете власноруч "
  2311. "виправити цей пакунок. (due to missing arch)"
  2312. #: apt-pkg/acquire-item.cc:1319
  2313. #, c-format
  2314. msgid ""
  2315. "I wasn't able to locate file for the %s package. This might mean you need to "
  2316. "manually fix this package."
  2317. msgstr ""
  2318. "Я не можу знайти файл для пакунку %s. Можливо, Ви захочете власноруч "
  2319. "виправити цей пакунок."
  2320. #: apt-pkg/acquire-item.cc:1360
  2321. #, c-format
  2322. msgid ""
  2323. "The package index files are corrupted. No Filename: field for package %s."
  2324. msgstr ""
  2325. "Індексні файли пакунків пошкоджені. Немає поля Filename для пакунку %s."
  2326. #: apt-pkg/acquire-item.cc:1447
  2327. msgid "Size mismatch"
  2328. msgstr "Невідповідність розміру"
  2329. #: apt-pkg/indexrecords.cc:40
  2330. #, fuzzy, c-format
  2331. msgid "Unable to parse Release file %s"
  2332. msgstr "Неможливо обробити файл %s пакунку (1)"
  2333. #: apt-pkg/indexrecords.cc:47
  2334. #, fuzzy, c-format
  2335. msgid "No sections in Release file %s"
  2336. msgstr "Помітьте, замість %2$s вибирається %1$s\n"
  2337. #: apt-pkg/indexrecords.cc:81
  2338. #, c-format
  2339. msgid "No Hash entry in Release file %s"
  2340. msgstr ""
  2341. #: apt-pkg/vendorlist.cc:66
  2342. #, c-format
  2343. msgid "Vendor block %s contains no fingerprint"
  2344. msgstr "Блок постачальника %s не містить відбитку (fingerprint)"
  2345. #: apt-pkg/cdrom.cc:525
  2346. #, c-format
  2347. msgid ""
  2348. "Using CD-ROM mount point %s\n"
  2349. "Mounting CD-ROM\n"
  2350. msgstr ""
  2351. "Використовується точка монтування CDROM: %s\n"
  2352. "Монтування CD-ROM\n"
  2353. #: apt-pkg/cdrom.cc:534 apt-pkg/cdrom.cc:622
  2354. msgid "Identifying.. "
  2355. msgstr "Ідентифікація.. "
  2356. #: apt-pkg/cdrom.cc:559
  2357. #, c-format
  2358. msgid "Stored label: %s\n"
  2359. msgstr "Записано мітку: %s \n"
  2360. #: apt-pkg/cdrom.cc:566 apt-pkg/cdrom.cc:836
  2361. #, fuzzy
  2362. msgid "Unmounting CD-ROM...\n"
  2363. msgstr "Демонтується CD-ROM..."
  2364. #: apt-pkg/cdrom.cc:585
  2365. #, c-format
  2366. msgid "Using CD-ROM mount point %s\n"
  2367. msgstr "Використовується точка монтування CDROM: %s\n"
  2368. #: apt-pkg/cdrom.cc:603
  2369. msgid "Unmounting CD-ROM\n"
  2370. msgstr "Демонтується CD-ROM\n"
  2371. #: apt-pkg/cdrom.cc:607
  2372. msgid "Waiting for disc...\n"
  2373. msgstr "Чекаю на диск...\n"
  2374. #. Mount the new CDROM
  2375. #: apt-pkg/cdrom.cc:615
  2376. msgid "Mounting CD-ROM...\n"
  2377. msgstr "Монтується CD-ROM...\n"
  2378. #: apt-pkg/cdrom.cc:633
  2379. msgid "Scanning disc for index files..\n"
  2380. msgstr "Диск сканується на індексні файли..\n"
  2381. #: apt-pkg/cdrom.cc:673
  2382. #, fuzzy, c-format
  2383. msgid ""
  2384. "Found %zu package indexes, %zu source indexes, %zu translation indexes and %"
  2385. "zu signatures\n"
  2386. msgstr "Знайдено %i індексів пакунків, %i індексів джерел і %i підписів\n"
  2387. #: apt-pkg/cdrom.cc:684
  2388. msgid ""
  2389. "Unable to locate any package files, perhaps this is not a Debian Disc or the "
  2390. "wrong architecture?"
  2391. msgstr ""
  2392. #: apt-pkg/cdrom.cc:710
  2393. #, fuzzy, c-format
  2394. msgid "Found label '%s'\n"
  2395. msgstr "Записано мітку: %s \n"
  2396. #: apt-pkg/cdrom.cc:739
  2397. msgid "That is not a valid name, try again.\n"
  2398. msgstr "Не є вірною назвою, спробуйте ще.\n"
  2399. #: apt-pkg/cdrom.cc:755
  2400. #, c-format
  2401. msgid ""
  2402. "This disc is called: \n"
  2403. "'%s'\n"
  2404. msgstr ""
  2405. "Цей диск зветься: \n"
  2406. "'%s'\n"
  2407. #: apt-pkg/cdrom.cc:759
  2408. msgid "Copying package lists..."
  2409. msgstr "Копіюються переліки пакунків..."
  2410. #: apt-pkg/cdrom.cc:785
  2411. msgid "Writing new source list\n"
  2412. msgstr "Записується новий перелік джерел\n"
  2413. #: apt-pkg/cdrom.cc:794
  2414. msgid "Source list entries for this disc are:\n"
  2415. msgstr "Перелік джерел для цього диску:\n"
  2416. #: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:835
  2417. #, c-format
  2418. msgid "Wrote %i records.\n"
  2419. msgstr "Записано %i записів.\n"
  2420. #: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:837
  2421. #, c-format
  2422. msgid "Wrote %i records with %i missing files.\n"
  2423. msgstr "Записано %i записів з %i відсутніми файлами.\n"
  2424. #: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:840
  2425. #, c-format
  2426. msgid "Wrote %i records with %i mismatched files\n"
  2427. msgstr "Записано %i записів з %i невідповідними файлам\n"
  2428. #: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:843
  2429. #, c-format
  2430. msgid "Wrote %i records with %i missing files and %i mismatched files\n"
  2431. msgstr "Записано %i записів з %i відсутніми і %i невідповідними файлами\n"
  2432. #: apt-pkg/indexcopy.cc:530
  2433. #, fuzzy, c-format
  2434. msgid "Skipping nonexistent file %s"
  2435. msgstr "Відкривається конфігураційний файл %s"
  2436. #: apt-pkg/indexcopy.cc:536
  2437. #, c-format
  2438. msgid "Can't find authentication record for: %s"
  2439. msgstr ""
  2440. #: apt-pkg/indexcopy.cc:542
  2441. #, fuzzy, c-format
  2442. msgid "Hash mismatch for: %s"
  2443. msgstr "Невідповідність MD5Sum"
  2444. #: apt-pkg/deb/dpkgpm.cc:49
  2445. #, fuzzy, c-format
  2446. msgid "Installing %s"
  2447. msgstr "Встановлено %s"
  2448. #: apt-pkg/deb/dpkgpm.cc:50 apt-pkg/deb/dpkgpm.cc:661
  2449. #, c-format
  2450. msgid "Configuring %s"
  2451. msgstr "Конфігурація %s"
  2452. #: apt-pkg/deb/dpkgpm.cc:51 apt-pkg/deb/dpkgpm.cc:668
  2453. #, c-format
  2454. msgid "Removing %s"
  2455. msgstr "Видаляється %s"
  2456. #: apt-pkg/deb/dpkgpm.cc:52
  2457. #, fuzzy, c-format
  2458. msgid "Completely removing %s"
  2459. msgstr "Повністю видалено %s"
  2460. #: apt-pkg/deb/dpkgpm.cc:53
  2461. #, c-format
  2462. msgid "Running post-installation trigger %s"
  2463. msgstr ""
  2464. #: apt-pkg/deb/dpkgpm.cc:558
  2465. #, fuzzy, c-format
  2466. msgid "Directory '%s' missing"
  2467. msgstr "Lists тека %spartial відсутня."
  2468. #: apt-pkg/deb/dpkgpm.cc:654
  2469. #, c-format
  2470. msgid "Preparing %s"
  2471. msgstr "Підготовка %s"
  2472. #: apt-pkg/deb/dpkgpm.cc:655
  2473. #, c-format
  2474. msgid "Unpacking %s"
  2475. msgstr "Розпакування %s"
  2476. #: apt-pkg/deb/dpkgpm.cc:660
  2477. #, c-format
  2478. msgid "Preparing to configure %s"
  2479. msgstr "Підготовка до конфігурації %s"
  2480. #: apt-pkg/deb/dpkgpm.cc:662
  2481. #, c-format
  2482. msgid "Installed %s"
  2483. msgstr "Встановлено %s"
  2484. #: apt-pkg/deb/dpkgpm.cc:667
  2485. #, c-format
  2486. msgid "Preparing for removal of %s"
  2487. msgstr "Підготовка до видалення %s"
  2488. #: apt-pkg/deb/dpkgpm.cc:669
  2489. #, c-format
  2490. msgid "Removed %s"
  2491. msgstr "Видалено %s"
  2492. #: apt-pkg/deb/dpkgpm.cc:674
  2493. #, c-format
  2494. msgid "Preparing to completely remove %s"
  2495. msgstr "Підготовка до повного видалення %s"
  2496. #: apt-pkg/deb/dpkgpm.cc:675
  2497. #, c-format
  2498. msgid "Completely removed %s"
  2499. msgstr "Повністю видалено %s"
  2500. #: apt-pkg/deb/dpkgpm.cc:879
  2501. msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
  2502. msgstr ""
  2503. "Неможливо записати в лог, проблема з openpty() (не змонтовано /dev/pts?)\n"
  2504. #: apt-pkg/deb/dpkgpm.cc:909
  2505. msgid "Running dpkg"
  2506. msgstr ""
  2507. #: apt-pkg/deb/debsystem.cc:70
  2508. #, c-format
  2509. msgid ""
  2510. "Unable to lock the administration directory (%s), is another process using "
  2511. "it?"
  2512. msgstr ""
  2513. #: apt-pkg/deb/debsystem.cc:73
  2514. #, fuzzy, c-format
  2515. msgid "Unable to lock the administration directory (%s), are you root?"
  2516. msgstr "Неможливо заблокувати теку з переліками пакунків"
  2517. #: apt-pkg/deb/debsystem.cc:82
  2518. msgid ""
  2519. "dpkg was interrupted, you must manually run 'dpkg --configure -a' to correct "
  2520. "the problem. "
  2521. msgstr ""
  2522. #: apt-pkg/deb/debsystem.cc:100
  2523. msgid "Not locked"
  2524. msgstr ""
  2525. #: methods/rred.cc:465
  2526. #, c-format
  2527. msgid ""
  2528. "Could not patch %s with mmap and with file operation usage - the patch seems "
  2529. "to be corrupt."
  2530. msgstr ""
  2531. #: methods/rred.cc:470
  2532. #, c-format
  2533. msgid ""
  2534. "Could not patch %s with mmap (but no mmap specific fail) - the patch seems "
  2535. "to be corrupt."
  2536. msgstr ""
  2537. #: methods/rsh.cc:330
  2538. msgid "Connection closed prematurely"
  2539. msgstr "З'єднання завершено передчасно"
  2540. #, fuzzy
  2541. #~ msgid "Couldn't access keyring: '%s'"
  2542. #~ msgstr "Неможливо отримати доступ до keyring: '%s'"
  2543. #~ msgid "Could not patch file"
  2544. #~ msgstr "Неможливо накласти латку на файл"
  2545. #~ msgid " %4i %s\n"
  2546. #~ msgstr " %4i %s\n"
  2547. #~ msgid "%4i %s\n"
  2548. #~ msgstr "%4i %s\n"
  2549. #, fuzzy
  2550. #~ msgid "Processing triggers for %s"
  2551. #~ msgstr "Помилка обробки течи %s"
  2552. #~ msgid ""
  2553. #~ "Since you only requested a single operation it is extremely likely that\n"
  2554. #~ "the package is simply not installable and a bug report against\n"
  2555. #~ "that package should be filed."
  2556. #~ msgstr ""
  2557. #~ "Так як Ви просили виконати тільки одну операцію, те найімовірніше, що\n"
  2558. #~ "пакунок просто не може бути встановлений через помилки в самому пакунку.\n"
  2559. #~ "Необхідно відіслати звіт про цю помилку."
  2560. #, fuzzy
  2561. #~ msgid "Line %d too long (max %lu)"
  2562. #~ msgstr "Лінія %d занадто довга (максимум %d)"
  2563. #, fuzzy
  2564. #~ msgid "Line %d too long (max %d)"
  2565. #~ msgstr "Лінія %d занадто довга (максимум %d)"
  2566. #, fuzzy
  2567. #~ msgid "Error occured while processing %s (NewFileDesc1)"
  2568. #~ msgstr "Помилка, яка була викликана внаслідок обробки %s (NewFileVer1)"
  2569. #, fuzzy
  2570. #~ msgid "Error occured while processing %s (NewFileDesc2)"
  2571. #~ msgstr "Помилка, яка була викликана внаслідок обробки %s (NewFileVer1)"
  2572. #, fuzzy
  2573. #~ msgid "Stored label: %s \n"
  2574. #~ msgstr "Записано мітку: %s \n"
  2575. #, fuzzy
  2576. #~ msgid ""
  2577. #~ "Found %i package indexes, %i source indexes, %i translation indexes and %"
  2578. #~ "i signatures\n"
  2579. #~ msgstr "Знайдено %i індексів пакунків, %i індексів джерел і %i підписів\n"
  2580. #, fuzzy
  2581. #~ msgid "openpty failed\n"
  2582. #~ msgstr "Вибір не вдався"