uk.po 112 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135
  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: 2009-11-27 00:15+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:1623
  119. #, c-format
  120. msgid " %4i %s\n"
  121. msgstr " %4i %s\n"
  122. #: cmdline/apt-cache.cc:1718 cmdline/apt-cdrom.cc:134 cmdline/apt-config.cc:70
  123. #: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547
  124. #: cmdline/apt-get.cc:2653 cmdline/apt-sortpkgs.cc:144
  125. #, fuzzy, c-format
  126. msgid "%s %s for %s compiled on %s %s\n"
  127. msgstr "%s %s для %s %s скомпільовано %s %s\n"
  128. #: cmdline/apt-cache.cc:1725
  129. #, fuzzy
  130. msgid ""
  131. "Usage: apt-cache [options] command\n"
  132. " apt-cache [options] add file1 [file2 ...]\n"
  133. " apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
  134. " apt-cache [options] showsrc pkg1 [pkg2 ...]\n"
  135. "\n"
  136. "apt-cache is a low-level tool used to manipulate APT's binary\n"
  137. "cache files, and query information from them\n"
  138. "\n"
  139. "Commands:\n"
  140. " add - Add a package file to the source cache\n"
  141. " gencaches - Build both the package and source cache\n"
  142. " showpkg - Show some general information for a single package\n"
  143. " showsrc - Show source records\n"
  144. " stats - Show some basic statistics\n"
  145. " dump - Show the entire file in a terse form\n"
  146. " dumpavail - Print an available file to stdout\n"
  147. " unmet - Show unmet dependencies\n"
  148. " search - Search the package list for a regex pattern\n"
  149. " show - Show a readable record for the package\n"
  150. " depends - Show raw dependency information for a package\n"
  151. " rdepends - Show reverse dependency information for a package\n"
  152. " pkgnames - List the names of all packages in the system\n"
  153. " dotty - Generate package graphs for GraphViz\n"
  154. " xvcg - Generate package graphs for xvcg\n"
  155. " policy - Show policy settings\n"
  156. "\n"
  157. "Options:\n"
  158. " -h This help text.\n"
  159. " -p=? The package cache.\n"
  160. " -s=? The source cache.\n"
  161. " -q Disable progress indicator.\n"
  162. " -i Show only important deps for the unmet command.\n"
  163. " -c=? Read this configuration file\n"
  164. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  165. "See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
  166. msgstr ""
  167. "Використання: apt-cache [options] command\n"
  168. " або: apt-cache [options] add file1 [file1 ...]\n"
  169. " або: apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
  170. " або: apt-cache [options] showsrc pkg1 [pkg2 ...]\n"
  171. "\n"
  172. "apt-cache - низькорівневий інструмент, що використається для керування\n"
  173. "двійковими кеш-файлами APT'а, а також для добування інформації з них\n"
  174. "Команди:\n"
  175. " add - додати файл пакунка в кеш джерел\n"
  176. " gencaches - побудувати обидва кеша пакунків - бінарних і з вихідними "
  177. "текстами\n"
  178. " showpkg - загальна інформація про конкретний пакунок\n"
  179. " stats - основна статистика\n"
  180. " dump - показати весь файл у стислій формі\n"
  181. " dumpavail - видати на stdout список доступних пакунків\n"
  182. " unmet - показати незадоволені залежності\n"
  183. " search - знайти пакунки, назва яких задовольняє регулярний вираз\n"
  184. " show - показати інформацію про пакунок в зрозумілій формі\n"
  185. " depends - показати інформацію про залежності пакунка построково\n"
  186. " rdepends - показати інформацію про зворотні залежності пакунка\n"
  187. " pkgnames - показати імена всіх пакунків у системі\n"
  188. " dotty - генерувати граф залежностей пакунків у форматі GraphViz\n"
  189. " xvcg - генерувати граф залежностей пакунків у форматі xvcg\n"
  190. " policy - показати поточну політику вибору пакунків\n"
  191. "\n"
  192. "Опції:\n"
  193. " -h Цей текст.\n"
  194. " -p=? Кеш пакунків.\n"
  195. " -s=? Кеш джерел.\n"
  196. " -q Не показувати індикатор прогресу.\n"
  197. " -i Показувати тільки важливі залежності для команди unmet.\n"
  198. " -c=? Читати зазначений файл конфігурації.\n"
  199. " -o=? Встановити довільну опцію конфігурації, наприклад, -o dir::cache=/"
  200. "tmp\n"
  201. "Подробиці в сторінках керівництва apt-cache(8) і apt.conf(5).\n"
  202. #: cmdline/apt-cdrom.cc:77
  203. #, fuzzy
  204. msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'"
  205. msgstr "Задайте назву для цього диска, наприклад 'Debian 2.1r1 Disk 1'"
  206. #: cmdline/apt-cdrom.cc:92
  207. msgid "Please insert a Disc in the drive and press enter"
  208. msgstr "Вставте диск у пристрій і натисніть Ввід"
  209. #: cmdline/apt-cdrom.cc:114
  210. msgid "Repeat this process for the rest of the CDs in your set."
  211. msgstr "Повторіть цей процес для інших наявних CD."
  212. #: cmdline/apt-config.cc:41
  213. msgid "Arguments not in pairs"
  214. msgstr "Непарні аргументи"
  215. #: cmdline/apt-config.cc:76
  216. msgid ""
  217. "Usage: apt-config [options] command\n"
  218. "\n"
  219. "apt-config is a simple tool to read the APT config file\n"
  220. "\n"
  221. "Commands:\n"
  222. " shell - Shell mode\n"
  223. " dump - Show the configuration\n"
  224. "\n"
  225. "Options:\n"
  226. " -h This help text.\n"
  227. " -c=? Read this configuration file\n"
  228. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  229. msgstr ""
  230. "Використання: apt-config [options] command\n"
  231. "\n"
  232. "apt-config - простий інструмент для читання конфігураційного файлу APT\n"
  233. "\n"
  234. "Команди:\n"
  235. " shell - режим shell\n"
  236. " dump - показати конфігурацію\n"
  237. "\n"
  238. "Опції:\n"
  239. " -h Цей текст.\n"
  240. " -с=? Читати зазначений конфігураційний файл.\n"
  241. " -o=? Встановити довільну опцію, наприклад, -o dir::cache=/tmp\n"
  242. #: cmdline/apt-extracttemplates.cc:98
  243. #, c-format
  244. msgid "%s not a valid DEB package."
  245. msgstr "%s не є правильним DEB-пакунком."
  246. #: cmdline/apt-extracttemplates.cc:232
  247. msgid ""
  248. "Usage: apt-extracttemplates file1 [file2 ...]\n"
  249. "\n"
  250. "apt-extracttemplates is a tool to extract config and template info\n"
  251. "from debian packages\n"
  252. "\n"
  253. "Options:\n"
  254. " -h This help text\n"
  255. " -t Set the temp dir\n"
  256. " -c=? Read this configuration file\n"
  257. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  258. msgstr ""
  259. "Використання: apt-extracttemplates file1 [file2 ...]\n"
  260. "\n"
  261. "apt-extracttemplates витягує з пакунків Debian конфігураційні скрипти\n"
  262. "і файли-шаблони\n"
  263. "\n"
  264. "Опції:\n"
  265. " -h Цей текст\n"
  266. " -t Встановити теку для тимчасових файлів\n"
  267. " -c=? Читати зазначений конфігураційний файл\n"
  268. " -o=? Вказати довільну опцію, наприклад, -o dir::cache=/tmp\n"
  269. #: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:830
  270. #, c-format
  271. msgid "Unable to write to %s"
  272. msgstr "Неможливо записати в %s"
  273. #: cmdline/apt-extracttemplates.cc:310
  274. msgid "Cannot get debconf version. Is debconf installed?"
  275. msgstr "Неможливо визначити версію debconf. Він встановлений?"
  276. #: ftparchive/apt-ftparchive.cc:164 ftparchive/apt-ftparchive.cc:338
  277. msgid "Package extension list is too long"
  278. msgstr "Список розширень, припустимих для пакунків, занадто довгий"
  279. #: ftparchive/apt-ftparchive.cc:166 ftparchive/apt-ftparchive.cc:180
  280. #: ftparchive/apt-ftparchive.cc:203 ftparchive/apt-ftparchive.cc:253
  281. #: ftparchive/apt-ftparchive.cc:267 ftparchive/apt-ftparchive.cc:289
  282. #, c-format
  283. msgid "Error processing directory %s"
  284. msgstr "Помилка обробки течи %s"
  285. #: ftparchive/apt-ftparchive.cc:251
  286. msgid "Source extension list is too long"
  287. msgstr ""
  288. "Список розширень, припустимих для пакунків з вихідними текстами, занадто "
  289. "довгий"
  290. #: ftparchive/apt-ftparchive.cc:368
  291. msgid "Error writing header to contents file"
  292. msgstr "Помилка запису заголовка в повний перелік вмісту пакунків (Contents)"
  293. #: ftparchive/apt-ftparchive.cc:398
  294. #, c-format
  295. msgid "Error processing contents %s"
  296. msgstr "помилка обробки повного переліку вмісту пакунків (Contents) %s"
  297. #: ftparchive/apt-ftparchive.cc:553
  298. msgid ""
  299. "Usage: apt-ftparchive [options] command\n"
  300. "Commands: packages binarypath [overridefile [pathprefix]]\n"
  301. " sources srcpath [overridefile [pathprefix]]\n"
  302. " contents path\n"
  303. " release path\n"
  304. " generate config [groups]\n"
  305. " clean config\n"
  306. "\n"
  307. "apt-ftparchive generates index files for Debian archives. It supports\n"
  308. "many styles of generation from fully automated to functional replacements\n"
  309. "for dpkg-scanpackages and dpkg-scansources\n"
  310. "\n"
  311. "apt-ftparchive generates Package files from a tree of .debs. The\n"
  312. "Package file contains the contents of all the control fields from\n"
  313. "each package as well as the MD5 hash and filesize. An override file\n"
  314. "is supported to force the value of Priority and Section.\n"
  315. "\n"
  316. "Similarly apt-ftparchive generates Sources files from a tree of .dscs.\n"
  317. "The --source-override option can be used to specify a src override file\n"
  318. "\n"
  319. "The 'packages' and 'sources' command should be run in the root of the\n"
  320. "tree. BinaryPath should point to the base of the recursive search and \n"
  321. "override file should contain the override flags. Pathprefix is\n"
  322. "appended to the filename fields if present. Example usage from the \n"
  323. "Debian archive:\n"
  324. " apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
  325. " dists/potato/main/binary-i386/Packages\n"
  326. "\n"
  327. "Options:\n"
  328. " -h This help text\n"
  329. " --md5 Control MD5 generation\n"
  330. " -s=? Source override file\n"
  331. " -q Quiet\n"
  332. " -d=? Select the optional caching database\n"
  333. " --no-delink Enable delinking debug mode\n"
  334. " --contents Control contents file generation\n"
  335. " -c=? Read this configuration file\n"
  336. " -o=? Set an arbitrary configuration option"
  337. msgstr ""
  338. "Використання: apt-ftparchive [параметри] команда\n"
  339. "Команди: packages binarypath [overridefile [pathprefix]]\n"
  340. " sources srcpath [overridefile [pathprefix]]\n"
  341. " contents path\n"
  342. " release path\n"
  343. " generate config [groups]\n"
  344. " clean config\n"
  345. "\n"
  346. "apt-ftparchive генерує індексні файли архівів Debian. Він підтримує\n"
  347. "безліч стилів генерації: від повністю автоматичного до функціональної "
  348. "заміни\n"
  349. "програм dpkg-scanpackages і dpkg-scansources\n"
  350. "\n"
  351. "apt-ftparchive генерує файли Package (переліки пакунків) для дерева\n"
  352. "тек, що містять файли .deb. Файл Package містить у собі керуючі\n"
  353. "поля кожного пакунка, а також хеш MD5 і розмір файлу. Значення керуючих\n"
  354. "полів \"пріоритет\" (Priority) і \"секція\" (Section) можуть бути змінені з\n"
  355. "допомогою файлу override.\n"
  356. "\n"
  357. "Крім того, apt-ftparchive може генерувати файли Sources з дерева\n"
  358. "тек, що містять файли .dsc. Для вказівки файлу override у цьому \n"
  359. "режимі можна використати параметр --source-override.\n"
  360. "\n"
  361. "Команди 'packages' і 'sources' треба виконувати, перебуваючи в кореневій "
  362. "теці\n"
  363. "дерева, що ви хочете обробити. BinaryPath повинен вказувати на місце,\n"
  364. "з якого починається рекурсивний обхід, а файл перепризначень (override)\n"
  365. "повинен містити запис про перепризначення керуючих полів. Якщо був "
  366. "зазначений\n"
  367. "Pathprefix, то його значення додається до керуючих полів, що містять\n"
  368. "імена файлів. Приклад використання для архіву Debian:\n"
  369. " apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
  370. " dists/potato/main/binary-i386/Packages\n"
  371. "\n"
  372. "Параметри:\n"
  373. " -h Цей текст\n"
  374. " --md5 Керування генерацією MD5-хешів\n"
  375. " -s=? Вказати файл перепризначень (override) для пакунків з вихідними "
  376. "текстами\n"
  377. " -q Не виводити повідомлення в процесі роботи\n"
  378. " -d=? Вказати кешуючу базу даних (не обов'язково)\n"
  379. " --no-delink Включити режим налагодження процесу видалення файлів\n"
  380. " --contents Керування генерацією повного переліку вмісту пакунків\n"
  381. " (файлу Contents)\n"
  382. " -c=? Використати зазначений конфігураційний файл\n"
  383. " -o=? Вказати довільний параметр конфігурації"
  384. #: ftparchive/apt-ftparchive.cc:759
  385. msgid "No selections matched"
  386. msgstr "Збігів не виявлено"
  387. #: ftparchive/apt-ftparchive.cc:832
  388. #, c-format
  389. msgid "Some files are missing in the package file group `%s'"
  390. msgstr "У групі пакунків '%s' відсутні деякі файли"
  391. #: ftparchive/cachedb.cc:43
  392. #, c-format
  393. msgid "DB was corrupted, file renamed to %s.old"
  394. msgstr "БД була пошкоджена, файл перейменований в %s.old"
  395. #: ftparchive/cachedb.cc:61
  396. #, c-format
  397. msgid "DB is old, attempting to upgrade %s"
  398. msgstr "DB застаріла, намагаюсь оновити %s"
  399. #: ftparchive/cachedb.cc:72
  400. msgid ""
  401. "DB format is invalid. If you upgraded from a older version of apt, please "
  402. "remove and re-create the database."
  403. msgstr ""
  404. "Формати DB не є правильним. Якщо ви оновилися зі старої версії apt, будь-"
  405. "ласка видаліть і наново створіть базу."
  406. #: ftparchive/cachedb.cc:77
  407. #, c-format
  408. msgid "Unable to open DB file %s: %s"
  409. msgstr "Не вдалося відкрити DB файл %s: %s"
  410. #: ftparchive/cachedb.cc:123 apt-inst/extract.cc:178 apt-inst/extract.cc:190
  411. #: apt-inst/extract.cc:207 apt-inst/deb/dpkgdb.cc:117
  412. #, c-format
  413. msgid "Failed to stat %s"
  414. msgstr "Не вдалося одержати атрибути %s"
  415. #: ftparchive/cachedb.cc:238
  416. msgid "Archive has no control record"
  417. msgstr "В архіві немає поля control"
  418. #: ftparchive/cachedb.cc:444
  419. msgid "Unable to get a cursor"
  420. msgstr "Неможливо одержати курсор"
  421. #: ftparchive/writer.cc:76
  422. #, c-format
  423. msgid "W: Unable to read directory %s\n"
  424. msgstr "W: Не вдалося прочитати теку %s\n"
  425. #: ftparchive/writer.cc:81
  426. #, c-format
  427. msgid "W: Unable to stat %s\n"
  428. msgstr "W: Неможливо прочитати атрибути %s\n"
  429. #: ftparchive/writer.cc:132
  430. msgid "E: "
  431. msgstr "E: "
  432. #: ftparchive/writer.cc:134
  433. msgid "W: "
  434. msgstr "W: "
  435. #: ftparchive/writer.cc:141
  436. msgid "E: Errors apply to file "
  437. msgstr "E: Помилки відносяться до файлу"
  438. #: ftparchive/writer.cc:158 ftparchive/writer.cc:188
  439. #, c-format
  440. msgid "Failed to resolve %s"
  441. msgstr "Не вдалося піти по посиланню %s"
  442. #: ftparchive/writer.cc:170
  443. msgid "Tree walking failed"
  444. msgstr "Не вдалося зробити обхід дерева"
  445. #: ftparchive/writer.cc:195
  446. #, c-format
  447. msgid "Failed to open %s"
  448. msgstr "Не вдалося відкрити %s"
  449. #: ftparchive/writer.cc:254
  450. #, c-format
  451. msgid " DeLink %s [%s]\n"
  452. msgstr "DeLink %s [%s]\n"
  453. #: ftparchive/writer.cc:262
  454. #, c-format
  455. msgid "Failed to readlink %s"
  456. msgstr "Не вдалося прочитати посилання %s"
  457. #: ftparchive/writer.cc:266
  458. #, c-format
  459. msgid "Failed to unlink %s"
  460. msgstr "Не вдалося видалити %s"
  461. #: ftparchive/writer.cc:273
  462. #, c-format
  463. msgid "*** Failed to link %s to %s"
  464. msgstr "*** Не вдалося створити посилання %s на %s"
  465. #: ftparchive/writer.cc:283
  466. #, c-format
  467. msgid " DeLink limit of %sB hit.\n"
  468. msgstr "Перевищено ліміт в %s в DeLink.\n"
  469. #: ftparchive/writer.cc:388
  470. msgid "Archive had no package field"
  471. msgstr "В архіві немає поля package"
  472. #: ftparchive/writer.cc:396 ftparchive/writer.cc:627
  473. #, c-format
  474. msgid " %s has no override entry\n"
  475. msgstr " Відсутній запис про перепризначення для %s\n"
  476. #: ftparchive/writer.cc:457 ftparchive/writer.cc:715
  477. #, c-format
  478. msgid " %s maintainer is %s not %s\n"
  479. msgstr " пакунок %s супроводжує %s, а не %s\n"
  480. #: ftparchive/writer.cc:637
  481. #, c-format
  482. msgid " %s has no source override entry\n"
  483. msgstr ""
  484. #: ftparchive/writer.cc:641
  485. #, c-format
  486. msgid " %s has no binary override entry either\n"
  487. msgstr ""
  488. #: ftparchive/contents.cc:321
  489. #, c-format
  490. msgid "Internal error, could not locate member %s"
  491. msgstr "Внутрішня помилка, не можу знайти складову частину %s"
  492. #: ftparchive/contents.cc:358 ftparchive/contents.cc:389
  493. msgid "realloc - Failed to allocate memory"
  494. msgstr "realloc - не вдалося виділити пам'ять"
  495. #: ftparchive/override.cc:34 ftparchive/override.cc:142
  496. #, c-format
  497. msgid "Unable to open %s"
  498. msgstr "Не вдалося відкрити %s"
  499. #: ftparchive/override.cc:60 ftparchive/override.cc:166
  500. #, c-format
  501. msgid "Malformed override %s line %lu #1"
  502. msgstr "Спотворений запис про перепризначення (override) %s на рядку %lu #1"
  503. #: ftparchive/override.cc:74 ftparchive/override.cc:178
  504. #, c-format
  505. msgid "Malformed override %s line %lu #2"
  506. msgstr "Спотворений запис про перепризначення (override) %s на рядку %lu #2"
  507. #: ftparchive/override.cc:88 ftparchive/override.cc:191
  508. #, c-format
  509. msgid "Malformed override %s line %lu #3"
  510. msgstr "Спотворений запис про перепризначення (override) %s на рядку %lu #3"
  511. #: ftparchive/override.cc:127 ftparchive/override.cc:201
  512. #, c-format
  513. msgid "Failed to read the override file %s"
  514. msgstr "Не вдалося прочитати файл перепризначень (override)%s"
  515. #: ftparchive/multicompress.cc:72
  516. #, c-format
  517. msgid "Unknown compression algorithm '%s'"
  518. msgstr "Невідомий алгоритм стиснення '%s'"
  519. #: ftparchive/multicompress.cc:102
  520. #, c-format
  521. msgid "Compressed output %s needs a compression set"
  522. msgstr "Для отримання стиснутого виводу %s необхідно ввімкнути пакування"
  523. #: ftparchive/multicompress.cc:169 methods/rsh.cc:91
  524. msgid "Failed to create IPC pipe to subprocess"
  525. msgstr "Не вдалося створити IPC-канал для породженого процесу"
  526. #: ftparchive/multicompress.cc:195
  527. msgid "Failed to create FILE*"
  528. msgstr "Не вдалося створити FILE*"
  529. #: ftparchive/multicompress.cc:198
  530. msgid "Failed to fork"
  531. msgstr "Не вдалося виконати породжений процес"
  532. #: ftparchive/multicompress.cc:212
  533. msgid "Compress child"
  534. msgstr "Процес-нащадок, що виконує пакування"
  535. #: ftparchive/multicompress.cc:235
  536. #, c-format
  537. msgid "Internal error, failed to create %s"
  538. msgstr "Внутрішня помилка, не вдалося створити %s"
  539. #: ftparchive/multicompress.cc:286
  540. msgid "Failed to create subprocess IPC"
  541. msgstr "Не вдалося створити IPC з породженим процесом"
  542. #: ftparchive/multicompress.cc:321
  543. msgid "Failed to exec compressor "
  544. msgstr "Не вдалося виконати компресор "
  545. #: ftparchive/multicompress.cc:360
  546. msgid "decompressor"
  547. msgstr "декомпресор"
  548. #: ftparchive/multicompress.cc:403
  549. msgid "IO to subprocess/file failed"
  550. msgstr "Помилка уведення/виводу в підпроцес/файл"
  551. #: ftparchive/multicompress.cc:455
  552. msgid "Failed to read while computing MD5"
  553. msgstr "Помилка читання під час обчислення MD5"
  554. #: ftparchive/multicompress.cc:472
  555. #, c-format
  556. msgid "Problem unlinking %s"
  557. msgstr "Не вдалося видалити %s"
  558. #: ftparchive/multicompress.cc:487 apt-inst/extract.cc:185
  559. #, c-format
  560. msgid "Failed to rename %s to %s"
  561. msgstr "Не вдалося перейменувати %s в %s"
  562. #: cmdline/apt-get.cc:127
  563. msgid "Y"
  564. msgstr "Т"
  565. #: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1718
  566. #, c-format
  567. msgid "Regex compilation error - %s"
  568. msgstr "Помилка компіляції регулярного виразу - %s"
  569. #: cmdline/apt-get.cc:244
  570. msgid "The following packages have unmet dependencies:"
  571. msgstr "Пакунки, що мають незадоволені залежності:"
  572. #: cmdline/apt-get.cc:334
  573. #, c-format
  574. msgid "but %s is installed"
  575. msgstr "але %s вже встановлений"
  576. #: cmdline/apt-get.cc:336
  577. #, c-format
  578. msgid "but %s is to be installed"
  579. msgstr "але %s буде встановлений"
  580. #: cmdline/apt-get.cc:343
  581. msgid "but it is not installable"
  582. msgstr "але він не може бути встановлений"
  583. #: cmdline/apt-get.cc:345
  584. msgid "but it is a virtual package"
  585. msgstr "але це віртуальний пакунок"
  586. #: cmdline/apt-get.cc:348
  587. msgid "but it is not installed"
  588. msgstr "але він не встановлений"
  589. #: cmdline/apt-get.cc:348
  590. msgid "but it is not going to be installed"
  591. msgstr "але він не буде встановлений"
  592. #: cmdline/apt-get.cc:353
  593. msgid " or"
  594. msgstr " чи"
  595. #: cmdline/apt-get.cc:382
  596. msgid "The following NEW packages will be installed:"
  597. msgstr "НОВІ пакунки, які будуть встановлені:"
  598. #: cmdline/apt-get.cc:408
  599. msgid "The following packages will be REMOVED:"
  600. msgstr "Пакунки, які будуть ВИДАЛЕНІ:"
  601. #: cmdline/apt-get.cc:430
  602. msgid "The following packages have been kept back:"
  603. msgstr "Пакунки, які будуть залишені в незмінному вигляді:"
  604. #: cmdline/apt-get.cc:451
  605. msgid "The following packages will be upgraded:"
  606. msgstr "Пакунки, які будуть ОНОВЛЕНІ:"
  607. #: cmdline/apt-get.cc:472
  608. msgid "The following packages will be DOWNGRADED:"
  609. msgstr "Пакунки, будуть замінені на більш СТАРІ версії:"
  610. #: cmdline/apt-get.cc:492
  611. msgid "The following held packages will be changed:"
  612. msgstr "Пакунки, які повинні були б залишитися без змін, але будуть замінені:"
  613. #: cmdline/apt-get.cc:545
  614. #, c-format
  615. msgid "%s (due to %s) "
  616. msgstr "%s (внаслідок %s) "
  617. #: cmdline/apt-get.cc:553
  618. msgid ""
  619. "WARNING: The following essential packages will be removed.\n"
  620. "This should NOT be done unless you know exactly what you are doing!"
  621. msgstr ""
  622. "УВАГА: Ці істотно важливі пакунки будуть вилучені.\n"
  623. "НЕ РОБІТЬ цього, якщо ви НЕ уявляєте собі всі можливі наслідки!"
  624. #: cmdline/apt-get.cc:584
  625. #, c-format
  626. msgid "%lu upgraded, %lu newly installed, "
  627. msgstr "оновлено %lu, встановлено %lu нових пакунків, "
  628. #: cmdline/apt-get.cc:588
  629. #, c-format
  630. msgid "%lu reinstalled, "
  631. msgstr " %lu перевстановлено, "
  632. #: cmdline/apt-get.cc:590
  633. #, c-format
  634. msgid "%lu downgraded, "
  635. msgstr "%lu пакунків замінено на старі версії, "
  636. #: cmdline/apt-get.cc:592
  637. #, c-format
  638. msgid "%lu to remove and %lu not upgraded.\n"
  639. msgstr "для видалення відмічено %lu пакунків, і %lu пакунків не оновлено.\n"
  640. #: cmdline/apt-get.cc:596
  641. #, c-format
  642. msgid "%lu not fully installed or removed.\n"
  643. msgstr "не встановлено до кінця чи видалено %lu пакунків.\n"
  644. #: cmdline/apt-get.cc:669
  645. msgid "Correcting dependencies..."
  646. msgstr "Виправлення залежностей..."
  647. #: cmdline/apt-get.cc:672
  648. msgid " failed."
  649. msgstr " невдача."
  650. #: cmdline/apt-get.cc:675
  651. msgid "Unable to correct dependencies"
  652. msgstr "Неможливо скоригувати залежності"
  653. #: cmdline/apt-get.cc:678
  654. msgid "Unable to minimize the upgrade set"
  655. msgstr "Неможливо мінімізувати набір оновлень"
  656. #: cmdline/apt-get.cc:680
  657. msgid " Done"
  658. msgstr " Виконано"
  659. #: cmdline/apt-get.cc:684
  660. msgid "You might want to run `apt-get -f install' to correct these."
  661. msgstr ""
  662. "Можливо, для виправлення цих помилок ви захочете скористатися 'apt-get -f "
  663. "install'."
  664. #: cmdline/apt-get.cc:687
  665. msgid "Unmet dependencies. Try using -f."
  666. msgstr "Незадоволені залежності. Спробуйте використати -f."
  667. #: cmdline/apt-get.cc:712
  668. msgid "WARNING: The following packages cannot be authenticated!"
  669. msgstr "УВАГА: Наступні пакунки неможливо автентифікувати!"
  670. #: cmdline/apt-get.cc:716
  671. msgid "Authentication warning overridden.\n"
  672. msgstr "Автентифікаційне попередження не прийнято до уваги.\n"
  673. #: cmdline/apt-get.cc:723
  674. msgid "Install these packages without verification [y/N]? "
  675. msgstr "Встановити ці пакунки без перевірки [т/Н]? "
  676. #: cmdline/apt-get.cc:725
  677. msgid "Some packages could not be authenticated"
  678. msgstr "Деякі пакунки неможливо автентифікувати"
  679. #: cmdline/apt-get.cc:734 cmdline/apt-get.cc:890
  680. msgid "There are problems and -y was used without --force-yes"
  681. msgstr "Існують проблеми, а опція -y використана без --force-yes"
  682. #: cmdline/apt-get.cc:775
  683. msgid "Internal error, InstallPackages was called with broken packages!"
  684. msgstr ""
  685. "Внутрішня помилка, InstallPackages була викликана з непрацездатними "
  686. "пакунками!"
  687. #: cmdline/apt-get.cc:784
  688. msgid "Packages need to be removed but remove is disabled."
  689. msgstr "Пакунки необхідно видалити, але видалення заборонене."
  690. #: cmdline/apt-get.cc:795
  691. msgid "Internal error, Ordering didn't finish"
  692. msgstr "Внутрішня помилка, Ordering не завершилася"
  693. #: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2060 cmdline/apt-get.cc:2093
  694. msgid "Unable to lock the download directory"
  695. msgstr "Неможливо заблокувати теку для завантаження"
  696. #: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2141 cmdline/apt-get.cc:2394
  697. #: apt-pkg/cachefile.cc:65
  698. msgid "The list of sources could not be read."
  699. msgstr "Неможливо прочитати перелік джерел."
  700. #: cmdline/apt-get.cc:836
  701. msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
  702. msgstr "Дивно.. Розбіжність розмірів, напишіть на apt@packages.debian.org"
  703. #: cmdline/apt-get.cc:841
  704. #, c-format
  705. msgid "Need to get %sB/%sB of archives.\n"
  706. msgstr "Необхідно завантажити %sB/%sB архівів.\n"
  707. #: cmdline/apt-get.cc:844
  708. #, c-format
  709. msgid "Need to get %sB of archives.\n"
  710. msgstr "Необхідно завантажити %sB архівів.\n"
  711. #: cmdline/apt-get.cc:849
  712. #, fuzzy, c-format
  713. msgid "After this operation, %sB of additional disk space will be used.\n"
  714. msgstr "Після розпакування об'єм зайнятого дискового простору зросте на %sB.\n"
  715. #: cmdline/apt-get.cc:852
  716. #, fuzzy, c-format
  717. msgid "After this operation, %sB disk space will be freed.\n"
  718. msgstr ""
  719. "Після розпакування об'єм зайнятого дискового простору зменшиться на %sB.\n"
  720. #: cmdline/apt-get.cc:867 cmdline/apt-get.cc:870 cmdline/apt-get.cc:2237
  721. #: cmdline/apt-get.cc:2240
  722. #, c-format
  723. msgid "Couldn't determine free space in %s"
  724. msgstr "Не вдалося визначити кількість вільного місця в %s"
  725. #: cmdline/apt-get.cc:880
  726. #, c-format
  727. msgid "You don't have enough free space in %s."
  728. msgstr "Недостатньо вільного місця в %s."
  729. #: cmdline/apt-get.cc:896 cmdline/apt-get.cc:916
  730. msgid "Trivial Only specified but this is not a trivial operation."
  731. msgstr ""
  732. "Запитане виконання тільки тривіальних операцій, але це не тривіальна "
  733. "операція."
  734. #: cmdline/apt-get.cc:898
  735. msgid "Yes, do as I say!"
  736. msgstr "Так, робити, як я скажу!"
  737. #: cmdline/apt-get.cc:900
  738. #, c-format
  739. msgid ""
  740. "You are about to do something potentially harmful.\n"
  741. "To continue type in the phrase '%s'\n"
  742. " ?] "
  743. msgstr ""
  744. "Те, що ви хочете зробити, може мати небажані наслідки.\n"
  745. "Щоб продовжити, введіть фразу: '%s'\n"
  746. " ?] "
  747. #: cmdline/apt-get.cc:906 cmdline/apt-get.cc:925
  748. msgid "Abort."
  749. msgstr "Перервано."
  750. #: cmdline/apt-get.cc:921
  751. msgid "Do you want to continue [Y/n]? "
  752. msgstr "Бажаєте продовжити [Т/н]? "
  753. #: cmdline/apt-get.cc:993 cmdline/apt-get.cc:2291 apt-pkg/algorithms.cc:1389
  754. #, c-format
  755. msgid "Failed to fetch %s %s\n"
  756. msgstr "Не вдалося завантажити %s %s\n"
  757. #: cmdline/apt-get.cc:1011
  758. msgid "Some files failed to download"
  759. msgstr "Деякі файли не вдалося завантажити"
  760. #: cmdline/apt-get.cc:1012 cmdline/apt-get.cc:2300
  761. msgid "Download complete and in download only mode"
  762. msgstr "Вказано режим \"тільки завантаження\", і завантаження завершено"
  763. #: cmdline/apt-get.cc:1018
  764. msgid ""
  765. "Unable to fetch some archives, maybe run apt-get update or try with --fix-"
  766. "missing?"
  767. msgstr ""
  768. "Неможливо завантажити деякі архіви, імовірно треба виконати apt-get update "
  769. "або спробувати повторити запуск з ключем --fix-missing?"
  770. #: cmdline/apt-get.cc:1022
  771. msgid "--fix-missing and media swapping is not currently supported"
  772. msgstr "--fix-missing і зміна носія в даний момент не підтримується"
  773. #: cmdline/apt-get.cc:1027
  774. msgid "Unable to correct missing packages."
  775. msgstr "Неможливо виправити втрачені пакунки."
  776. #: cmdline/apt-get.cc:1028
  777. msgid "Aborting install."
  778. msgstr "Переривається встановлення."
  779. #: cmdline/apt-get.cc:1086
  780. #, c-format
  781. msgid "Note, selecting %s instead of %s\n"
  782. msgstr "Помітьте, замість %2$s вибирається %1$s\n"
  783. #: cmdline/apt-get.cc:1097
  784. #, c-format
  785. msgid "Skipping %s, it is already installed and upgrade is not set.\n"
  786. msgstr ""
  787. "Пропускається %s - пакунок вже встановлений, і опція upgrade не "
  788. "встановлена.\n"
  789. #: cmdline/apt-get.cc:1115
  790. #, c-format
  791. msgid "Package %s is not installed, so not removed\n"
  792. msgstr "Пакунок %s не встановлений, тому не може бути видалений\n"
  793. #: cmdline/apt-get.cc:1126
  794. #, c-format
  795. msgid "Package %s is a virtual package provided by:\n"
  796. msgstr "Пакунок %s - віртуальний, його функції надаються пакунками:\n"
  797. #: cmdline/apt-get.cc:1138
  798. msgid " [Installed]"
  799. msgstr " [Встановлено]"
  800. #: cmdline/apt-get.cc:1143
  801. msgid "You should explicitly select one to install."
  802. msgstr "Ви повинні явно вказати, який саме ви хочете встановити."
  803. #: cmdline/apt-get.cc:1148
  804. #, c-format
  805. msgid ""
  806. "Package %s is not available, but is referred to by another package.\n"
  807. "This may mean that the package is missing, has been obsoleted, or\n"
  808. "is only available from another source\n"
  809. msgstr ""
  810. "Пакунок %s недоступний, але згадується у переліку залежностей іншого "
  811. "пакунка.\n"
  812. "Це може означати, що пакунок відсутній, застарів, або доступний з джерел, не "
  813. "згаданих в sources.list\n"
  814. #: cmdline/apt-get.cc:1167
  815. msgid "However the following packages replace it:"
  816. msgstr "Однак наступні пакунки можуть його замінити:"
  817. #: cmdline/apt-get.cc:1170
  818. #, c-format
  819. msgid "Package %s has no installation candidate"
  820. msgstr "Для пакунка %s не знайдені кандидати на встановлення"
  821. #: cmdline/apt-get.cc:1190
  822. #, c-format
  823. msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
  824. msgstr "Перевстановлення %s неможливе, бо він не може бути завантаженим.\n"
  825. #: cmdline/apt-get.cc:1198
  826. #, c-format
  827. msgid "%s is already the newest version.\n"
  828. msgstr "Вже встановлена найновіша версія %s.\n"
  829. #: cmdline/apt-get.cc:1227
  830. #, c-format
  831. msgid "Release '%s' for '%s' was not found"
  832. msgstr "Реліз '%s' для '%s' не знайдений"
  833. #: cmdline/apt-get.cc:1229
  834. #, c-format
  835. msgid "Version '%s' for '%s' was not found"
  836. msgstr "Версія '%s' для '%s' не знайдена"
  837. #: cmdline/apt-get.cc:1235
  838. #, c-format
  839. msgid "Selected version %s (%s) for %s\n"
  840. msgstr "Обрана версія %s (%s) для %s\n"
  841. #. if (VerTag.empty() == false && Last == 0)
  842. #: cmdline/apt-get.cc:1305 cmdline/apt-get.cc:1367
  843. #, c-format
  844. msgid "Ignore unavailable version '%s' of package '%s'"
  845. msgstr ""
  846. #: cmdline/apt-get.cc:1307
  847. #, c-format
  848. msgid "Ignore unavailable target release '%s' of package '%s'"
  849. msgstr ""
  850. #: cmdline/apt-get.cc:1332
  851. #, fuzzy, c-format
  852. msgid "Picking '%s' as source package instead of '%s'\n"
  853. msgstr "Не вдалося прочитати атрибути переліку вихідних текстів%s"
  854. #: cmdline/apt-get.cc:1383
  855. msgid "The update command takes no arguments"
  856. msgstr "Команді update не потрібні аргументи"
  857. #: cmdline/apt-get.cc:1396
  858. msgid "Unable to lock the list directory"
  859. msgstr "Неможливо заблокувати теку з переліками пакунків"
  860. #: cmdline/apt-get.cc:1452
  861. msgid "We are not supposed to delete stuff, can't start AutoRemover"
  862. msgstr ""
  863. #: cmdline/apt-get.cc:1501
  864. #, fuzzy
  865. msgid ""
  866. "The following packages were automatically installed and are no longer "
  867. "required:"
  868. msgstr "НОВІ пакунки були встановлені автоматично і більше не потрібні:"
  869. #: cmdline/apt-get.cc:1503
  870. #, fuzzy, c-format
  871. msgid "%lu packages were automatically installed and are no longer required.\n"
  872. msgstr "НОВІ пакунки були встановлені автоматично і більше не потрібні:"
  873. #: cmdline/apt-get.cc:1504
  874. msgid "Use 'apt-get autoremove' to remove them."
  875. msgstr "Використовуйте 'apt-get autoremove' щоб видалити їх."
  876. #: cmdline/apt-get.cc:1509
  877. msgid ""
  878. "Hmm, seems like the AutoRemover destroyed something which really\n"
  879. "shouldn't happen. Please file a bug report against apt."
  880. msgstr ""
  881. "Хм, виглядає так, що AutoRemover помилково знищив щось потрібне\n"
  882. "Будь-ласка відправте багрепорт щодо apt."
  883. #.
  884. #. if (Packages == 1)
  885. #. {
  886. #. c1out << endl;
  887. #. c1out <<
  888. #. _("Since you only requested a single operation it is extremely likely that\n"
  889. #. "the package is simply not installable and a bug report against\n"
  890. #. "that package should be filed.") << endl;
  891. #. }
  892. #.
  893. #: cmdline/apt-get.cc:1512 cmdline/apt-get.cc:1802
  894. msgid "The following information may help to resolve the situation:"
  895. msgstr "Наступна інформація можливо допоможе Вам:"
  896. #: cmdline/apt-get.cc:1516
  897. #, fuzzy
  898. msgid "Internal Error, AutoRemover broke stuff"
  899. msgstr "Внутрішня помилка, вирішувач проблем все поламав"
  900. #: cmdline/apt-get.cc:1535
  901. msgid "Internal error, AllUpgrade broke stuff"
  902. msgstr "Внутрішня помилка, AllUpgrade все поламав"
  903. #: cmdline/apt-get.cc:1590
  904. #, fuzzy, c-format
  905. msgid "Couldn't find task %s"
  906. msgstr "Не можу знайти пакунок %s"
  907. #: cmdline/apt-get.cc:1705 cmdline/apt-get.cc:1741
  908. #, c-format
  909. msgid "Couldn't find package %s"
  910. msgstr "Не можу знайти пакунок %s"
  911. #: cmdline/apt-get.cc:1728
  912. #, c-format
  913. msgid "Note, selecting %s for regex '%s'\n"
  914. msgstr "Помітьте, регулярний вираз %2$s призводить до вибору %1$s\n"
  915. #: cmdline/apt-get.cc:1759
  916. #, fuzzy, c-format
  917. msgid "%s set to manually installed.\n"
  918. msgstr "але %s буде встановлений"
  919. #: cmdline/apt-get.cc:1772
  920. msgid "You might want to run `apt-get -f install' to correct these:"
  921. msgstr ""
  922. "Можливо, для виправлення цих помилок Ви захочете скористатися 'apt-get -f "
  923. "install':"
  924. #: cmdline/apt-get.cc:1775
  925. msgid ""
  926. "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
  927. "solution)."
  928. msgstr ""
  929. "Незадоволені залежності. Спробуйте виконати 'apt-get -f install', не "
  930. "вказуючи імені пакунка (або знайдіть інше рішення)."
  931. #: cmdline/apt-get.cc:1787
  932. msgid ""
  933. "Some packages could not be installed. This may mean that you have\n"
  934. "requested an impossible situation or if you are using the unstable\n"
  935. "distribution that some required packages have not yet been created\n"
  936. "or been moved out of Incoming."
  937. msgstr ""
  938. "Деякі пакунки неможливо встановити. Можливо, Ви просите неможливого,\n"
  939. "або ж використаєте нестабільний дистрибутив, і запитані Вами пакунки\n"
  940. "ще не створені або були вилучені з Incoming."
  941. #: cmdline/apt-get.cc:1805
  942. msgid "Broken packages"
  943. msgstr "Зламані пакунки"
  944. #: cmdline/apt-get.cc:1834
  945. msgid "The following extra packages will be installed:"
  946. msgstr "Будуть встановлені наступні додаткові пакунки:"
  947. #: cmdline/apt-get.cc:1923
  948. msgid "Suggested packages:"
  949. msgstr "Пропоновані пакунки:"
  950. #: cmdline/apt-get.cc:1924
  951. msgid "Recommended packages:"
  952. msgstr "Рекомендовані пакунки:"
  953. #: cmdline/apt-get.cc:1953
  954. msgid "Calculating upgrade... "
  955. msgstr "Обчислення оновлень... "
  956. #: cmdline/apt-get.cc:1956 methods/ftp.cc:707 methods/connect.cc:112
  957. msgid "Failed"
  958. msgstr "Невдача"
  959. #: cmdline/apt-get.cc:1961
  960. msgid "Done"
  961. msgstr "Виконано"
  962. #: cmdline/apt-get.cc:2028 cmdline/apt-get.cc:2036
  963. msgid "Internal error, problem resolver broke stuff"
  964. msgstr "Внутрішня помилка, вирішувач проблем все поламав"
  965. #: cmdline/apt-get.cc:2136
  966. msgid "Must specify at least one package to fetch source for"
  967. msgstr ""
  968. "Вкажіть як мінімум один пакунок, для якого необхідно завантажити вихідні "
  969. "тексти"
  970. #: cmdline/apt-get.cc:2166 cmdline/apt-get.cc:2412
  971. #, c-format
  972. msgid "Unable to find a source package for %s"
  973. msgstr "Неможливо знайти пакунок з вихідними текстами для %s"
  974. #: cmdline/apt-get.cc:2215
  975. #, c-format
  976. msgid "Skipping already downloaded file '%s'\n"
  977. msgstr "Пропускаємо вже завантажений файл '%s'\n"
  978. #: cmdline/apt-get.cc:2250
  979. #, c-format
  980. msgid "You don't have enough free space in %s"
  981. msgstr "Недостатньо місця в %s"
  982. #: cmdline/apt-get.cc:2256
  983. #, c-format
  984. msgid "Need to get %sB/%sB of source archives.\n"
  985. msgstr "Необхідно завантажити %sB/%sB з архівів вихідних текстів.\n"
  986. #: cmdline/apt-get.cc:2259
  987. #, c-format
  988. msgid "Need to get %sB of source archives.\n"
  989. msgstr "Потрібно завантажити %sB архівів з вихідними текстами.\n"
  990. #: cmdline/apt-get.cc:2265
  991. #, c-format
  992. msgid "Fetch source %s\n"
  993. msgstr "Завантаження вихідних текстів %s\n"
  994. #: cmdline/apt-get.cc:2296
  995. msgid "Failed to fetch some archives."
  996. msgstr "Деякі архіви не вдалося завантажити."
  997. #: cmdline/apt-get.cc:2324
  998. #, c-format
  999. msgid "Skipping unpack of already unpacked source in %s\n"
  1000. msgstr ""
  1001. "Розпакування вихідних текстів пропущено, тому що в %s вже перебувають "
  1002. "розпаковані вихідні тексти\n"
  1003. #: cmdline/apt-get.cc:2336
  1004. #, c-format
  1005. msgid "Unpack command '%s' failed.\n"
  1006. msgstr "Команда розпакування '%s' завершилася невдало.\n"
  1007. #: cmdline/apt-get.cc:2337
  1008. #, c-format
  1009. msgid "Check if the 'dpkg-dev' package is installed.\n"
  1010. msgstr "Перевірте, чи встановлений пакунок 'dpkg-dev'.\n"
  1011. #: cmdline/apt-get.cc:2354
  1012. #, c-format
  1013. msgid "Build command '%s' failed.\n"
  1014. msgstr "Команда побудови '%s' закінчилася невдало.\n"
  1015. #: cmdline/apt-get.cc:2373
  1016. msgid "Child process failed"
  1017. msgstr "Породжений процес завершився невдало"
  1018. #: cmdline/apt-get.cc:2389
  1019. msgid "Must specify at least one package to check builddeps for"
  1020. msgstr ""
  1021. "Для перевірки залежностей для побудови необхідно вказати як мінімум один "
  1022. "пакунок"
  1023. #: cmdline/apt-get.cc:2417
  1024. #, c-format
  1025. msgid "Unable to get build-dependency information for %s"
  1026. msgstr "Неможливо одержати інформацію про залежності для побудови %s"
  1027. #: cmdline/apt-get.cc:2437
  1028. #, c-format
  1029. msgid "%s has no build depends.\n"
  1030. msgstr "%s не має залежностей для побудови.\n"
  1031. #: cmdline/apt-get.cc:2489
  1032. #, c-format
  1033. msgid ""
  1034. "%s dependency for %s cannot be satisfied because the package %s cannot be "
  1035. "found"
  1036. msgstr ""
  1037. "Залежність типу %s для %s не може бути задоволена, бо пакунок %s не знайдено"
  1038. #: cmdline/apt-get.cc:2542
  1039. #, c-format
  1040. msgid ""
  1041. "%s dependency for %s cannot be satisfied because no available versions of "
  1042. "package %s can satisfy version requirements"
  1043. msgstr ""
  1044. "Залежність типу %s для %s не може бути задоволена, бо ні одна з версій "
  1045. "пакунка %s не задовольняє умови"
  1046. #: cmdline/apt-get.cc:2578
  1047. #, c-format
  1048. msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
  1049. msgstr ""
  1050. "Не вдалося задовольнити залежність типу %s для пакунка %s: Встановлений "
  1051. "пакунок %s новіше, аніж треба"
  1052. #: cmdline/apt-get.cc:2605
  1053. #, c-format
  1054. msgid "Failed to satisfy %s dependency for %s: %s"
  1055. msgstr "Неможливо задовольнити залежність типу %s для пакунка %s: %s"
  1056. #: cmdline/apt-get.cc:2621
  1057. #, c-format
  1058. msgid "Build-dependencies for %s could not be satisfied."
  1059. msgstr "Залежності для побудови %s не можуть бути задоволені."
  1060. #: cmdline/apt-get.cc:2626
  1061. msgid "Failed to process build dependencies"
  1062. msgstr "Обробка залежностей для побудови закінчилася невдало"
  1063. #: cmdline/apt-get.cc:2658
  1064. msgid "Supported modules:"
  1065. msgstr "Підтримувані модулі:"
  1066. #: cmdline/apt-get.cc:2699
  1067. #, fuzzy
  1068. msgid ""
  1069. "Usage: apt-get [options] command\n"
  1070. " apt-get [options] install|remove pkg1 [pkg2 ...]\n"
  1071. " apt-get [options] source pkg1 [pkg2 ...]\n"
  1072. "\n"
  1073. "apt-get is a simple command line interface for downloading and\n"
  1074. "installing packages. The most frequently used commands are update\n"
  1075. "and install.\n"
  1076. "\n"
  1077. "Commands:\n"
  1078. " update - Retrieve new lists of packages\n"
  1079. " upgrade - Perform an upgrade\n"
  1080. " install - Install new packages (pkg is libc6 not libc6.deb)\n"
  1081. " remove - Remove packages\n"
  1082. " autoremove - Remove automatically all unused packages\n"
  1083. " purge - Remove packages and config files\n"
  1084. " source - Download source archives\n"
  1085. " build-dep - Configure build-dependencies for source packages\n"
  1086. " dist-upgrade - Distribution upgrade, see apt-get(8)\n"
  1087. " dselect-upgrade - Follow dselect selections\n"
  1088. " clean - Erase downloaded archive files\n"
  1089. " autoclean - Erase old downloaded archive files\n"
  1090. " check - Verify that there are no broken dependencies\n"
  1091. "\n"
  1092. "Options:\n"
  1093. " -h This help text.\n"
  1094. " -q Loggable output - no progress indicator\n"
  1095. " -qq No output except for errors\n"
  1096. " -d Download only - do NOT install or unpack archives\n"
  1097. " -s No-act. Perform ordering simulation\n"
  1098. " -y Assume Yes to all queries and do not prompt\n"
  1099. " -f Attempt to correct a system with broken dependencies in place\n"
  1100. " -m Attempt to continue if archives are unlocatable\n"
  1101. " -u Show a list of upgraded packages as well\n"
  1102. " -b Build the source package after fetching it\n"
  1103. " -V Show verbose version numbers\n"
  1104. " -c=? Read this configuration file\n"
  1105. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  1106. "See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
  1107. "pages for more information and options.\n"
  1108. " This APT has Super Cow Powers.\n"
  1109. msgstr ""
  1110. "Використання: apt-get [options] command\n"
  1111. " apt-get [options] install|remove pkg1 [pkg2 ...]\n"
  1112. " apt-get [options] source pkg1 [pkg2 ...]\n"
  1113. "\n"
  1114. "apt-get - простий інтерфейс командного рядка для завантаження й\n"
  1115. "встановлення пакунків. Найбільш часто використовувані команди - update \n"
  1116. "і install.\n"
  1117. "\n"
  1118. "Команди:\n"
  1119. " update - завантажити нові переліки пакунків\n"
  1120. " upgrade - виконати оновлення пакунків\n"
  1121. " install - встановити нові пакунки (назва пакунка вказується\n"
  1122. " як libc6, а не libc6.deb)\n"
  1123. " remove - видалити пакунок\n"
  1124. " source - завантажити архіви з вихідними текстами\n"
  1125. " build-dep - завантажити все необхідне для побудови зазначеного\n"
  1126. " пакунку з вихідних текстів\n"
  1127. " dist-upgrade - оновити всю систему, докладніше - в apt-get(8)\n"
  1128. " dselect-upgrade - керуватися вибором, зробленим в dselect'і\n"
  1129. " clean - видалити завантажені архіви\n"
  1130. " autoclean - видалити старі завантажені архіви\n"
  1131. " check - перевірити наявність порушених залежностей\n"
  1132. "\n"
  1133. "Опції:\n"
  1134. " -h Цей текст.\n"
  1135. " -q Виводити повідомлення, придатні для запису у файл журналу.\n"
  1136. " Не виводити індикатор прогресу\n"
  1137. " -qq Виводити тільки повідомлення про помилки\n"
  1138. " -d Тільки завантажити - не встановлювати й не розпаковувати архіви\n"
  1139. " -s Не виконувати дії насправді. Імітація роботи\n"
  1140. " -y Відповідати \"Так\" на всі питання. Самі питання при цьому не "
  1141. "виводяться\n"
  1142. " -f Продовжувати, навіть якщо перевірка цілісності не пройшла\n"
  1143. " -m Продовжувати, навіть якщо місце розташування архівів невідомо\n"
  1144. " -u Показувати список оновлюваних пакунків\n"
  1145. " -b Компілювати пакунок з вихідних текстів після їхнього завантаження\n"
  1146. " -V Показувати версії пакунків\n"
  1147. " -c=? Читати зазначений файл конфігурації\n"
  1148. " -o=? Встановити довільну опцію, наприклад, -o dir::cache=/tmp\n"
  1149. "Сторінки керівництва apt-get(8), sources.list(5) і apt.conf(5)\n"
  1150. "містять більше інформації.\n"
  1151. " This APT has Super Cow Powers.\n"
  1152. #: cmdline/apt-get.cc:2866
  1153. msgid ""
  1154. "NOTE: This is only a simulation!\n"
  1155. " apt-get needs root privileges for real execution.\n"
  1156. " Keep also in mind that locking is deactivated,\n"
  1157. " so don't depend on the relevance to the real current situation!"
  1158. msgstr ""
  1159. #: cmdline/acqprogress.cc:55
  1160. msgid "Hit "
  1161. msgstr "В кеші "
  1162. #: cmdline/acqprogress.cc:79
  1163. msgid "Get:"
  1164. msgstr "Отр:"
  1165. #: cmdline/acqprogress.cc:110
  1166. msgid "Ign "
  1167. msgstr "Ігн "
  1168. #: cmdline/acqprogress.cc:114
  1169. msgid "Err "
  1170. msgstr "Пом "
  1171. #: cmdline/acqprogress.cc:135
  1172. #, c-format
  1173. msgid "Fetched %sB in %s (%sB/s)\n"
  1174. msgstr "Отримано %sB за %sB (%sB/s)\n"
  1175. #: cmdline/acqprogress.cc:225
  1176. #, c-format
  1177. msgid " [Working]"
  1178. msgstr " [Йде робота]"
  1179. #: cmdline/acqprogress.cc:271
  1180. #, c-format
  1181. msgid ""
  1182. "Media change: please insert the disc labeled\n"
  1183. " '%s'\n"
  1184. "in the drive '%s' and press enter\n"
  1185. msgstr ""
  1186. "Зміна носія: вставте диск з міткою '%s' у пристрій '%s' і натисніть Ввід\n"
  1187. #: cmdline/apt-sortpkgs.cc:86
  1188. msgid "Unknown package record!"
  1189. msgstr "Запис про невідомий пакунок!"
  1190. #: cmdline/apt-sortpkgs.cc:150
  1191. msgid ""
  1192. "Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
  1193. "\n"
  1194. "apt-sortpkgs is a simple tool to sort package files. The -s option is used\n"
  1195. "to indicate what kind of file it is.\n"
  1196. "\n"
  1197. "Options:\n"
  1198. " -h This help text\n"
  1199. " -s Use source file sorting\n"
  1200. " -c=? Read this configuration file\n"
  1201. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  1202. msgstr ""
  1203. "Використання: apt-sortpkgs [options] file1 [file2 ...]\n"
  1204. "\n"
  1205. "apt-sortpkgs - простий інструмент для сортування переліків пакунків. Опція -"
  1206. "s\n"
  1207. "використається, щоб вказати тип списку.\n"
  1208. "\n"
  1209. "Опції:\n"
  1210. " -h цей текст\n"
  1211. " -s сортувати список файлів з вихідними текстами\n"
  1212. " -c=? читати зазначений файл конфігурації\n"
  1213. " -o=? встановити довільну опцію, наприклад, -o dir::cache=/tmp\n"
  1214. #: dselect/install:32
  1215. msgid "Bad default setting!"
  1216. msgstr "Неправильне значення по замовчуванню!"
  1217. #: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:94
  1218. #: dselect/install:105 dselect/update:45
  1219. msgid "Press enter to continue."
  1220. msgstr "Для продовження натисніть Ввід."
  1221. #: dselect/install:91
  1222. msgid "Do you want to erase any previously downloaded .deb files?"
  1223. msgstr "Чи хочете ви видалити всі завантажені раніше файли .deb"
  1224. #: dselect/install:101
  1225. #, fuzzy
  1226. msgid "Some errors occurred while unpacking. Packages that were installed"
  1227. msgstr ""
  1228. "Під час розпакування виникли помилки. Буде продовжено процес налаштування"
  1229. #: dselect/install:102
  1230. #, fuzzy
  1231. msgid "will be configured. This may result in duplicate errors"
  1232. msgstr "встановлених пакунків. Це може призвести до повторення помилок або"
  1233. #: dselect/install:103
  1234. msgid "or errors caused by missing dependencies. This is OK, only the errors"
  1235. msgstr "виникненню нових через незадоволені залежності. Це нормально,"
  1236. #: dselect/install:104
  1237. msgid ""
  1238. "above this message are important. Please fix them and run [I]nstall again"
  1239. msgstr ""
  1240. "важливі тільки помилки, зазначені вище. Виправте їх і виконаєте установку ще "
  1241. "раз"
  1242. #: dselect/update:30
  1243. msgid "Merging available information"
  1244. msgstr "Об'єднання інформації про доступні пакунки"
  1245. #: apt-inst/contrib/extracttar.cc:114
  1246. msgid "Failed to create pipes"
  1247. msgstr "Не вдалося створити канали (pipes)"
  1248. #: apt-inst/contrib/extracttar.cc:141
  1249. msgid "Failed to exec gzip "
  1250. msgstr "Не вдалося виконати компресор gzip"
  1251. #: apt-inst/contrib/extracttar.cc:178 apt-inst/contrib/extracttar.cc:204
  1252. msgid "Corrupted archive"
  1253. msgstr "Пошкоджений архів"
  1254. #: apt-inst/contrib/extracttar.cc:193
  1255. msgid "Tar checksum failed, archive corrupted"
  1256. msgstr "Контрольна сума tar архіва невірна, архів пошкоджений"
  1257. #: apt-inst/contrib/extracttar.cc:296
  1258. #, c-format
  1259. msgid "Unknown TAR header type %u, member %s"
  1260. msgstr "Невідомий тип заголовку TAR %u, член %s"
  1261. #: apt-inst/contrib/arfile.cc:70
  1262. msgid "Invalid archive signature"
  1263. msgstr "Невірний підпис архіву"
  1264. #: apt-inst/contrib/arfile.cc:78
  1265. msgid "Error reading archive member header"
  1266. msgstr "Неможливо прочитати заголовок \"member\" архіву"
  1267. #: apt-inst/contrib/arfile.cc:90
  1268. #, fuzzy, c-format
  1269. msgid "Invalid archive member header %s"
  1270. msgstr "Невірний заголовок \"member\" архіву"
  1271. #: apt-inst/contrib/arfile.cc:102
  1272. msgid "Invalid archive member header"
  1273. msgstr "Невірний заголовок \"member\" архіву"
  1274. #: apt-inst/contrib/arfile.cc:128
  1275. msgid "Archive is too short"
  1276. msgstr "Архів занадто малий"
  1277. #: apt-inst/contrib/arfile.cc:132
  1278. msgid "Failed to read the archive headers"
  1279. msgstr "Не вдалося прочитати заголовки архіву"
  1280. #: apt-inst/filelist.cc:380
  1281. #, fuzzy
  1282. msgid "DropNode called on still linked node"
  1283. msgstr "DropNode викликаний для вузла, який ще використовується"
  1284. #: apt-inst/filelist.cc:412
  1285. msgid "Failed to locate the hash element!"
  1286. msgstr "Не вдалося знайти елемент хешу!"
  1287. #: apt-inst/filelist.cc:459
  1288. #, fuzzy
  1289. msgid "Failed to allocate diversion"
  1290. msgstr "Не вдалося створити diversion"
  1291. #: apt-inst/filelist.cc:464
  1292. msgid "Internal error in AddDiversion"
  1293. msgstr "Внутрішня помилка в AddDiversion"
  1294. #: apt-inst/filelist.cc:477
  1295. #, fuzzy, c-format
  1296. msgid "Trying to overwrite a diversion, %s -> %s and %s/%s"
  1297. msgstr "Спроба зміни diversion, %s -> %s і %s/%s"
  1298. #: apt-inst/filelist.cc:506
  1299. #, fuzzy, c-format
  1300. msgid "Double add of diversion %s -> %s"
  1301. msgstr "Подвійне додавання diversion %s -> %s"
  1302. #: apt-inst/filelist.cc:549
  1303. #, c-format
  1304. msgid "Duplicate conf file %s/%s"
  1305. msgstr "Копія конфігураційного файлу %s/%s"
  1306. #: apt-inst/dirstream.cc:41 apt-inst/dirstream.cc:46 apt-inst/dirstream.cc:49
  1307. #, c-format
  1308. msgid "Failed to write file %s"
  1309. msgstr "Не вдалося записати файл %s"
  1310. #: apt-inst/dirstream.cc:92 apt-inst/dirstream.cc:100
  1311. #, c-format
  1312. msgid "Failed to close file %s"
  1313. msgstr "Не вдалося закрити файл %s"
  1314. #: apt-inst/extract.cc:93 apt-inst/extract.cc:164
  1315. #, c-format
  1316. msgid "The path %s is too long"
  1317. msgstr "Шлях %s занадто довгий"
  1318. #: apt-inst/extract.cc:124
  1319. #, c-format
  1320. msgid "Unpacking %s more than once"
  1321. msgstr "Розпакування %s більш ніж один раз"
  1322. #: apt-inst/extract.cc:134
  1323. #, fuzzy, c-format
  1324. msgid "The directory %s is diverted"
  1325. msgstr "Тека %s входить до переліку diverted"
  1326. #: apt-inst/extract.cc:144
  1327. #, fuzzy, c-format
  1328. msgid "The package is trying to write to the diversion target %s/%s"
  1329. msgstr "Пакет пробує писати у diversion %s/%s"
  1330. #: apt-inst/extract.cc:154 apt-inst/extract.cc:297
  1331. #, fuzzy
  1332. msgid "The diversion path is too long"
  1333. msgstr "Шлях diversion занадто довгий"
  1334. #: apt-inst/extract.cc:240
  1335. #, c-format
  1336. msgid "The directory %s is being replaced by a non-directory"
  1337. msgstr "Тека %s замінюється не текою"
  1338. #: apt-inst/extract.cc:280
  1339. #, fuzzy
  1340. msgid "Failed to locate node in its hash bucket"
  1341. msgstr "Не вдалося розмістити вузол у хеші"
  1342. #: apt-inst/extract.cc:284
  1343. msgid "The path is too long"
  1344. msgstr "Шлях занадто довгий"
  1345. #: apt-inst/extract.cc:414
  1346. #, fuzzy, c-format
  1347. msgid "Overwrite package match with no version for %s"
  1348. msgstr "Файли заміняються вмістом пакета %s без версії"
  1349. #: apt-inst/extract.cc:431
  1350. #, fuzzy, c-format
  1351. msgid "File %s/%s overwrites the one in the package %s"
  1352. msgstr "Файл %s/%s перезаписує інший з пакету %s"
  1353. #. Only warn if there are no sources.list.d.
  1354. #. Only warn if there is no sources.list file.
  1355. #: apt-inst/extract.cc:464 apt-pkg/contrib/configuration.cc:843
  1356. #: apt-pkg/contrib/cdromutl.cc:157 apt-pkg/sourcelist.cc:166
  1357. #: apt-pkg/sourcelist.cc:172 apt-pkg/sourcelist.cc:327 apt-pkg/acquire.cc:419
  1358. #: apt-pkg/init.cc:89 apt-pkg/init.cc:97 apt-pkg/clean.cc:33
  1359. #: apt-pkg/policy.cc:281 apt-pkg/policy.cc:287
  1360. #, c-format
  1361. msgid "Unable to read %s"
  1362. msgstr "Неможливо прочитати %s"
  1363. #: apt-inst/extract.cc:491
  1364. #, c-format
  1365. msgid "Unable to stat %s"
  1366. msgstr "Неможливо прочитати атрибути %s"
  1367. #: apt-inst/deb/dpkgdb.cc:51 apt-inst/deb/dpkgdb.cc:57
  1368. #, c-format
  1369. msgid "Failed to remove %s"
  1370. msgstr "Невдача видалення %s"
  1371. #: apt-inst/deb/dpkgdb.cc:106 apt-inst/deb/dpkgdb.cc:108
  1372. #, c-format
  1373. msgid "Unable to create %s"
  1374. msgstr "Неможливо створити %s"
  1375. #: apt-inst/deb/dpkgdb.cc:114
  1376. #, c-format
  1377. msgid "Failed to stat %sinfo"
  1378. msgstr "Не вдалося прочитати атрибути %sinfo"
  1379. #: apt-inst/deb/dpkgdb.cc:119
  1380. msgid "The info and temp directories need to be on the same filesystem"
  1381. msgstr "Теки info і temp повинні бути на тій самій файловій системі"
  1382. #. Build the status cache
  1383. #: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:763
  1384. #: apt-pkg/pkgcachegen.cc:832 apt-pkg/pkgcachegen.cc:837
  1385. #: apt-pkg/pkgcachegen.cc:961
  1386. msgid "Reading package lists"
  1387. msgstr "Читання переліків пакетів"
  1388. #: apt-inst/deb/dpkgdb.cc:176
  1389. #, c-format
  1390. msgid "Failed to change to the admin dir %sinfo"
  1391. msgstr "Невдача зміни до адмінової теки %sinfo"
  1392. #: apt-inst/deb/dpkgdb.cc:197 apt-inst/deb/dpkgdb.cc:351
  1393. #: apt-inst/deb/dpkgdb.cc:444
  1394. msgid "Internal error getting a package name"
  1395. msgstr "Внутрішня помилка отримання назви пакунку"
  1396. #: apt-inst/deb/dpkgdb.cc:201 apt-inst/deb/dpkgdb.cc:382
  1397. msgid "Reading file listing"
  1398. msgstr "Читання переліку файлів"
  1399. #: apt-inst/deb/dpkgdb.cc:212
  1400. #, c-format
  1401. msgid ""
  1402. "Failed to open the list file '%sinfo/%s'. If you cannot restore this file "
  1403. "then make it empty and immediately re-install the same version of the "
  1404. "package!"
  1405. msgstr ""
  1406. "Не вдалося відкрити list файл '%sinfo/%s'. Якщо Ви не можете відновити цей "
  1407. "файл, тоді зробіть його пустим і негайно реінсталюйте ту ж саму версію "
  1408. "пакунка!"
  1409. #: apt-inst/deb/dpkgdb.cc:225 apt-inst/deb/dpkgdb.cc:238
  1410. #, c-format
  1411. msgid "Failed reading the list file %sinfo/%s"
  1412. msgstr "Невдача читання list файла %sinfo/%s"
  1413. #: apt-inst/deb/dpkgdb.cc:262
  1414. #, fuzzy
  1415. msgid "Internal error getting a node"
  1416. msgstr "Внутрішня помилка при отриманні Node"
  1417. #: apt-inst/deb/dpkgdb.cc:305
  1418. #, fuzzy, c-format
  1419. msgid "Failed to open the diversions file %sdiversions"
  1420. msgstr "Не вдалося відкрити файл diversions %sdiversions"
  1421. #: apt-inst/deb/dpkgdb.cc:320
  1422. #, fuzzy
  1423. msgid "The diversion file is corrupted"
  1424. msgstr "Файл diversions пошкоджений"
  1425. #: apt-inst/deb/dpkgdb.cc:327 apt-inst/deb/dpkgdb.cc:332
  1426. #: apt-inst/deb/dpkgdb.cc:337
  1427. #, fuzzy, c-format
  1428. msgid "Invalid line in the diversion file: %s"
  1429. msgstr "Невірна лінія в файлі diversions: %s"
  1430. #: apt-inst/deb/dpkgdb.cc:358
  1431. #, fuzzy
  1432. msgid "Internal error adding a diversion"
  1433. msgstr "Внутрішня помилка при додаванні diversion"
  1434. #: apt-inst/deb/dpkgdb.cc:379
  1435. msgid "The pkg cache must be initialized first"
  1436. msgstr "Кеш пакунків повинен бути ініціалізованим першим"
  1437. #: apt-inst/deb/dpkgdb.cc:439
  1438. #, fuzzy, c-format
  1439. msgid "Failed to find a Package: header, offset %lu"
  1440. msgstr "Не вдалося знайти пакунок: заголовок, зсув %lu"
  1441. #: apt-inst/deb/dpkgdb.cc:461
  1442. #, fuzzy, c-format
  1443. msgid "Bad ConfFile section in the status file. Offset %lu"
  1444. msgstr "Погана секція ConfFile у статусному файлі. Зсув %lu"
  1445. #: apt-inst/deb/dpkgdb.cc:466
  1446. #, fuzzy, c-format
  1447. msgid "Error parsing MD5. Offset %lu"
  1448. msgstr "Помилка обробки MD5. Зсув %lu"
  1449. #: apt-inst/deb/debfile.cc:38 apt-inst/deb/debfile.cc:43
  1450. #, c-format
  1451. msgid "This is not a valid DEB archive, missing '%s' member"
  1452. msgstr "Невірний DEB архів, відсутній член '%s'"
  1453. #: apt-inst/deb/debfile.cc:50
  1454. #, fuzzy, c-format
  1455. msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
  1456. msgstr "Невірний DEB архів, відсутній член '%s' чи '%s'"
  1457. #: apt-inst/deb/debfile.cc:110
  1458. #, c-format
  1459. msgid "Couldn't change to %s"
  1460. msgstr "Неможливо змінити %s"
  1461. #: apt-inst/deb/debfile.cc:140
  1462. msgid "Internal error, could not locate member"
  1463. msgstr "Внутрішня помилка, не можу знайти member"
  1464. #: apt-inst/deb/debfile.cc:173
  1465. msgid "Failed to locate a valid control file"
  1466. msgstr "Не вдалося знайти правильний контрольний (control) файл"
  1467. #: apt-inst/deb/debfile.cc:258
  1468. msgid "Unparsable control file"
  1469. msgstr "Контрольний файл не можливо обробити"
  1470. #: methods/cdrom.cc:200
  1471. #, c-format
  1472. msgid "Unable to read the cdrom database %s"
  1473. msgstr "Неможливо прочитати базу %s з cdrom'у"
  1474. #: methods/cdrom.cc:209
  1475. msgid ""
  1476. "Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update "
  1477. "cannot be used to add new CD-ROMs"
  1478. msgstr ""
  1479. "Будь-ласка використовуйте apt-cdrom, щоб APT розпізнав цей CD-ROM, apt-get "
  1480. "update не може бути використаним для додання нових CD"
  1481. #: methods/cdrom.cc:219
  1482. msgid "Wrong CD-ROM"
  1483. msgstr "Невірний CD-ROM"
  1484. #: methods/cdrom.cc:245
  1485. #, c-format
  1486. msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
  1487. msgstr "Неможливо демонтувати CDROM в %s, можливо він все ще використовується."
  1488. #: methods/cdrom.cc:250
  1489. msgid "Disk not found."
  1490. msgstr "Диск не знайдено."
  1491. #: methods/cdrom.cc:258 methods/file.cc:79 methods/rsh.cc:264
  1492. msgid "File not found"
  1493. msgstr "Файл не знайдено"
  1494. #: methods/copy.cc:43 methods/gzip.cc:141 methods/gzip.cc:150
  1495. #: methods/rred.cc:483 methods/rred.cc:492
  1496. msgid "Failed to stat"
  1497. msgstr "Не вдалося одержати атрибути"
  1498. #: methods/copy.cc:80 methods/gzip.cc:147 methods/rred.cc:489
  1499. msgid "Failed to set modification time"
  1500. msgstr "Не вдалося встановити час модифікації"
  1501. #: methods/file.cc:44
  1502. msgid "Invalid URI, local URIS must not start with //"
  1503. msgstr "Невірне посилання, локальні посилання повинні починатися з //"
  1504. #. Login must be before getpeername otherwise dante won't work.
  1505. #: methods/ftp.cc:167
  1506. msgid "Logging in"
  1507. msgstr "Логінюсь в"
  1508. #: methods/ftp.cc:173
  1509. msgid "Unable to determine the peer name"
  1510. msgstr "Неможливо визначити назву вузла"
  1511. #: methods/ftp.cc:178
  1512. msgid "Unable to determine the local name"
  1513. msgstr "Неможливо визначити локальну назву"
  1514. #: methods/ftp.cc:209 methods/ftp.cc:237
  1515. #, c-format
  1516. msgid "The server refused the connection and said: %s"
  1517. msgstr "Сервер розірвав з'єднання і мовив: %s"
  1518. #: methods/ftp.cc:215
  1519. #, c-format
  1520. msgid "USER failed, server said: %s"
  1521. msgstr "USER невдало, сервер мовив: %s"
  1522. #: methods/ftp.cc:222
  1523. #, c-format
  1524. msgid "PASS failed, server said: %s"
  1525. msgstr "PASS невдало, сервер мовив: %s"
  1526. #: methods/ftp.cc:242
  1527. msgid ""
  1528. "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin "
  1529. "is empty."
  1530. msgstr ""
  1531. "Вказано проксі-сервер, але відсутній скрипт логіну, Acquire::ftp::ProxyLogin "
  1532. "пустий."
  1533. #: methods/ftp.cc:270
  1534. #, c-format
  1535. msgid "Login script command '%s' failed, server said: %s"
  1536. msgstr "Команда '%s'скрипту логіна не вдалася, сервер мовив: %s"
  1537. #: methods/ftp.cc:296
  1538. #, c-format
  1539. msgid "TYPE failed, server said: %s"
  1540. msgstr "TYPE невдало, сервер мовив: %s"
  1541. #: methods/ftp.cc:334 methods/ftp.cc:445 methods/rsh.cc:183 methods/rsh.cc:226
  1542. msgid "Connection timeout"
  1543. msgstr "Час з'єднання вичерпався"
  1544. #: methods/ftp.cc:340
  1545. msgid "Server closed the connection"
  1546. msgstr "Сервер закрив з'єднання"
  1547. #: methods/ftp.cc:343 apt-pkg/contrib/fileutl.cc:543 methods/rsh.cc:190
  1548. msgid "Read error"
  1549. msgstr "Помилка читання"
  1550. #: methods/ftp.cc:350 methods/rsh.cc:197
  1551. msgid "A response overflowed the buffer."
  1552. msgstr "Відповідь переповнила буфер."
  1553. #: methods/ftp.cc:367 methods/ftp.cc:379
  1554. msgid "Protocol corruption"
  1555. msgstr "Спотворений протокол"
  1556. #: methods/ftp.cc:451 apt-pkg/contrib/fileutl.cc:582 methods/rsh.cc:232
  1557. msgid "Write error"
  1558. msgstr "Помилка запису"
  1559. #: methods/ftp.cc:692 methods/ftp.cc:698 methods/ftp.cc:734
  1560. msgid "Could not create a socket"
  1561. msgstr "Неможливо створити сокет (socket)"
  1562. #: methods/ftp.cc:703
  1563. msgid "Could not connect data socket, connection timed out"
  1564. msgstr "Неможливо під'єднати сокет (socket) з даними, час з'єднання вичерпався"
  1565. #: methods/ftp.cc:709
  1566. msgid "Could not connect passive socket."
  1567. msgstr "Неможливо під'єднати пасивний сокет (passive socket)."
  1568. #: methods/ftp.cc:727
  1569. #, fuzzy
  1570. msgid "getaddrinfo was unable to get a listening socket"
  1571. msgstr "Виклик getaddrinfo не зміг отримати сокет"
  1572. #: methods/ftp.cc:741
  1573. msgid "Could not bind a socket"
  1574. msgstr "Неможливо приєднатися до сокета"
  1575. #: methods/ftp.cc:745
  1576. #, fuzzy
  1577. msgid "Could not listen on the socket"
  1578. msgstr "Не можливо утримувати з'єднання на сокеті"
  1579. #: methods/ftp.cc:752
  1580. msgid "Could not determine the socket's name"
  1581. msgstr "Не вдалося визначити назву сокета"
  1582. #: methods/ftp.cc:784
  1583. msgid "Unable to send PORT command"
  1584. msgstr "Неможливо відіслати команду PORT"
  1585. #: methods/ftp.cc:794
  1586. #, c-format
  1587. msgid "Unknown address family %u (AF_*)"
  1588. msgstr "Невідоме адресове сімейство %u (AF_*)"
  1589. #: methods/ftp.cc:803
  1590. #, c-format
  1591. msgid "EPRT failed, server said: %s"
  1592. msgstr "EPRT невдало, сервер мовив: %s"
  1593. #: methods/ftp.cc:823
  1594. msgid "Data socket connect timed out"
  1595. msgstr "Час з'єднання з сокетом даних вичерпався"
  1596. #: methods/ftp.cc:830
  1597. msgid "Unable to accept connection"
  1598. msgstr "Неможливо прийняти з'єднання"
  1599. #: methods/ftp.cc:869 methods/http.cc:997 methods/rsh.cc:303
  1600. msgid "Problem hashing file"
  1601. msgstr "Проблема хешування файла"
  1602. #: methods/ftp.cc:882
  1603. #, c-format
  1604. msgid "Unable to fetch file, server said '%s'"
  1605. msgstr "Неможливо завантажити файл, сервер мовив: '%s'"
  1606. #: methods/ftp.cc:897 methods/rsh.cc:322
  1607. msgid "Data socket timed out"
  1608. msgstr "Час з'єднання з сокетом (socket) з даними вичерпався"
  1609. #: methods/ftp.cc:927
  1610. #, c-format
  1611. msgid "Data transfer failed, server said '%s'"
  1612. msgstr "Передача даних обірвалася, сервер мовив '%s'"
  1613. #. Get the files information
  1614. #: methods/ftp.cc:1002
  1615. msgid "Query"
  1616. msgstr "Черга"
  1617. #: methods/ftp.cc:1114
  1618. msgid "Unable to invoke "
  1619. msgstr "Неможливо викликати "
  1620. #: methods/connect.cc:70
  1621. #, c-format
  1622. msgid "Connecting to %s (%s)"
  1623. msgstr "З'єднання з %s (%s)"
  1624. #: methods/connect.cc:81
  1625. #, c-format
  1626. msgid "[IP: %s %s]"
  1627. msgstr "[IP: %s %s]"
  1628. #: methods/connect.cc:90
  1629. #, c-format
  1630. msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
  1631. msgstr "Неможливо створити сокет для %s (f=%u t=%u p=%u)"
  1632. #: methods/connect.cc:96
  1633. #, c-format
  1634. msgid "Cannot initiate the connection to %s:%s (%s)."
  1635. msgstr "Неможливо ініціалізувати з'єднання з %s:%s (%s)."
  1636. #: methods/connect.cc:104
  1637. #, c-format
  1638. msgid "Could not connect to %s:%s (%s), connection timed out"
  1639. msgstr "Неможливо з'єднатися з %s:%s (%s), час з'єднання вичерпався"
  1640. #: methods/connect.cc:119
  1641. #, c-format
  1642. msgid "Could not connect to %s:%s (%s)."
  1643. msgstr "Не можливо під'єднатися до %s:%s (%s)."
  1644. #. We say this mainly because the pause here is for the
  1645. #. ssh connection that is still going
  1646. #: methods/connect.cc:147 methods/rsh.cc:425
  1647. #, c-format
  1648. msgid "Connecting to %s"
  1649. msgstr "З'єднання з %s"
  1650. #: methods/connect.cc:165 methods/connect.cc:184
  1651. #, c-format
  1652. msgid "Could not resolve '%s'"
  1653. msgstr "Не можу знайти IP адрес для %s"
  1654. #: methods/connect.cc:190
  1655. #, c-format
  1656. msgid "Temporary failure resolving '%s'"
  1657. msgstr "Тимчасова помилка при отриманні IP адреси '%s'"
  1658. #: methods/connect.cc:193
  1659. #, fuzzy, c-format
  1660. msgid "Something wicked happened resolving '%s:%s' (%i - %s)"
  1661. msgstr "Сталося щось дивне при спробі отримати IP адрес для '%s:%s' (%i)"
  1662. #: methods/connect.cc:240
  1663. #, fuzzy, c-format
  1664. msgid "Unable to connect to %s:%s:"
  1665. msgstr "Не можливо під'єднатися до %s %s:"
  1666. #: methods/gpgv.cc:71
  1667. #, fuzzy, c-format
  1668. msgid "Couldn't access keyring: '%s'"
  1669. msgstr "Неможливо отримати доступ до keyring: '%s'"
  1670. #: methods/gpgv.cc:107
  1671. msgid "E: Argument list from Acquire::gpgv::Options too long. Exiting."
  1672. msgstr ""
  1673. "E: Перелік аргументів з Acquire::gpgv::Options занадто довгий. Відміна."
  1674. #: methods/gpgv.cc:223
  1675. msgid ""
  1676. "Internal error: Good signature, but could not determine key fingerprint?!"
  1677. msgstr ""
  1678. "Внутрішня помилка: Вірний підпис (signature), але не можливо визначити його "
  1679. "відбиток?!"
  1680. #: methods/gpgv.cc:228
  1681. msgid "At least one invalid signature was encountered."
  1682. msgstr "Знайдено як мінімум один невірний підпис."
  1683. #: methods/gpgv.cc:232
  1684. #, c-format
  1685. msgid "Could not execute '%s' to verify signature (is gpgv installed?)"
  1686. msgstr "Неможливо виконати '%s' для перевірки підпису, gpgv встановлено?"
  1687. #: methods/gpgv.cc:237
  1688. msgid "Unknown error executing gpgv"
  1689. msgstr "Невідома помилка виконання gpgv"
  1690. #: methods/gpgv.cc:271 methods/gpgv.cc:278
  1691. msgid "The following signatures were invalid:\n"
  1692. msgstr "Слідуючі підписи були невірними:\n"
  1693. #: methods/gpgv.cc:285
  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:384
  1709. msgid "Waiting for headers"
  1710. msgstr "Очікування на заголовки"
  1711. #: methods/http.cc:530
  1712. #, c-format
  1713. msgid "Got a single header line over %u chars"
  1714. msgstr "Отримано одну заголовкову лінію понад %u символів"
  1715. #: methods/http.cc:538
  1716. msgid "Bad header line"
  1717. msgstr "Невірна лінія заголовку"
  1718. #: methods/http.cc:557 methods/http.cc:564
  1719. msgid "The HTTP server sent an invalid reply header"
  1720. msgstr "HTTP сервер відіслав невірний заголовок 'reply'"
  1721. #: methods/http.cc:593
  1722. msgid "The HTTP server sent an invalid Content-Length header"
  1723. msgstr "HTTP сервер відіслав невірний заголовок 'Content-Length'"
  1724. #: methods/http.cc:608
  1725. msgid "The HTTP server sent an invalid Content-Range header"
  1726. msgstr "HTTP сервер відіслав невірний заголовок 'Content-Length'"
  1727. #: methods/http.cc:610
  1728. msgid "This HTTP server has broken range support"
  1729. msgstr "Цей HTTP сервер має поламану підтримку 'range'"
  1730. #: methods/http.cc:634
  1731. msgid "Unknown date format"
  1732. msgstr "Невідомий формат дати"
  1733. #: methods/http.cc:788
  1734. msgid "Select failed"
  1735. msgstr "Вибір не вдався"
  1736. #: methods/http.cc:793
  1737. msgid "Connection timed out"
  1738. msgstr "Час очікування з'єднання вийшов"
  1739. #: methods/http.cc:816
  1740. msgid "Error writing to output file"
  1741. msgstr "Помилка запису в вихідний файл"
  1742. #: methods/http.cc:847
  1743. #, fuzzy
  1744. msgid "Error writing to file"
  1745. msgstr "Помилка запису в файл"
  1746. #: methods/http.cc:875
  1747. #, fuzzy
  1748. msgid "Error writing to the file"
  1749. msgstr "Помилка запису в файл"
  1750. #: methods/http.cc:889
  1751. msgid "Error reading from server. Remote end closed connection"
  1752. msgstr "Помилка читання з сервера. Віддалена сторона закрила з'єднання"
  1753. #: methods/http.cc:891
  1754. msgid "Error reading from server"
  1755. msgstr "Помилка читання з сервера"
  1756. #: methods/http.cc:982 apt-pkg/contrib/mmap.cc:233
  1757. #, fuzzy
  1758. msgid "Failed to truncate file"
  1759. msgstr "Не вдалося записати файл %s"
  1760. #: methods/http.cc:1147
  1761. msgid "Bad header data"
  1762. msgstr "Погана заголовкова інформація"
  1763. #: methods/http.cc:1164 methods/http.cc:1219
  1764. msgid "Connection failed"
  1765. msgstr "З'єднання не вдалося"
  1766. #: methods/http.cc:1311
  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:458
  1813. #, c-format
  1814. msgid "Unrecognized type abbreviation: '%c'"
  1815. msgstr "Нерозпізнаваний тип абревіатури: '%c'"
  1816. #: apt-pkg/contrib/configuration.cc:516
  1817. #, c-format
  1818. msgid "Opening configuration file %s"
  1819. msgstr "Відкривається конфігураційний файл %s"
  1820. #: apt-pkg/contrib/configuration.cc:684
  1821. #, c-format
  1822. msgid "Syntax error %s:%u: Block starts with no name."
  1823. msgstr "Синтаксова помилка %s:%u: Блок починається без назви."
  1824. #: apt-pkg/contrib/configuration.cc:703
  1825. #, c-format
  1826. msgid "Syntax error %s:%u: Malformed tag"
  1827. msgstr "Синтаксова помилка %s:%u: спотворений тег"
  1828. #: apt-pkg/contrib/configuration.cc:720
  1829. #, c-format
  1830. msgid "Syntax error %s:%u: Extra junk after value"
  1831. msgstr "Синтаксова помилка %s:%u: зайві символи після величини"
  1832. #: apt-pkg/contrib/configuration.cc:760
  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:767
  1839. #, c-format
  1840. msgid "Syntax error %s:%u: Too many nested includes"
  1841. msgstr "Синтаксова помилка %s:%u: Забагато вмонтованих включень"
  1842. #: apt-pkg/contrib/configuration.cc:771 apt-pkg/contrib/configuration.cc:776
  1843. #, c-format
  1844. msgid "Syntax error %s:%u: Included from here"
  1845. msgstr "Синтаксова помилка %s:%u: Включена звідси"
  1846. #: apt-pkg/contrib/configuration.cc:780
  1847. #, c-format
  1848. msgid "Syntax error %s:%u: Unsupported directive '%s'"
  1849. msgstr "Синтаксова помилка %s:%u: Директива '%s' не підтримується"
  1850. #: apt-pkg/contrib/configuration.cc:831
  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:149
  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:154
  1918. #, c-format
  1919. msgid "Could not open lock file %s"
  1920. msgstr "Не можливо відкрити lock файл %s"
  1921. #: apt-pkg/contrib/fileutl.cc:172
  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:176
  1928. #, fuzzy, c-format
  1929. msgid "Could not get lock %s"
  1930. msgstr "Не можливо отримати lock %s"
  1931. #: apt-pkg/contrib/fileutl.cc:444
  1932. #, c-format
  1933. msgid "Waited for %s but it wasn't there"
  1934. msgstr "Очікується на %s але його тут немає"
  1935. #: apt-pkg/contrib/fileutl.cc:456
  1936. #, c-format
  1937. msgid "Sub-process %s received a segmentation fault."
  1938. msgstr "Підпроцес %s отримав segmentation fault."
  1939. #: apt-pkg/contrib/fileutl.cc:458
  1940. #, fuzzy, c-format
  1941. msgid "Sub-process %s received signal %u."
  1942. msgstr "Підпроцес %s отримав segmentation fault."
  1943. #: apt-pkg/contrib/fileutl.cc:462
  1944. #, c-format
  1945. msgid "Sub-process %s returned an error code (%u)"
  1946. msgstr "Підпроцес %s повернув код помилки (%u)"
  1947. #: apt-pkg/contrib/fileutl.cc:464
  1948. #, c-format
  1949. msgid "Sub-process %s exited unexpectedly"
  1950. msgstr "Підпроцес %s раптово завершився"
  1951. #: apt-pkg/contrib/fileutl.cc:508
  1952. #, c-format
  1953. msgid "Could not open file %s"
  1954. msgstr "Не можливо відкрити файл %s"
  1955. #: apt-pkg/contrib/fileutl.cc:564
  1956. #, c-format
  1957. msgid "read, still have %lu to read but none left"
  1958. msgstr ""
  1959. "помилка при читанні. мали прочитати ще %lu байт, але нічого більше нема"
  1960. #: apt-pkg/contrib/fileutl.cc:594
  1961. #, c-format
  1962. msgid "write, still have %lu to write but couldn't"
  1963. msgstr "помилка при записі, мали прочитати ще %lu байт, але не змогли"
  1964. #: apt-pkg/contrib/fileutl.cc:669
  1965. msgid "Problem closing the file"
  1966. msgstr "Проблема з закриттям файла"
  1967. #: apt-pkg/contrib/fileutl.cc:675
  1968. msgid "Problem unlinking the file"
  1969. msgstr "Проблема з роз'єднанням файла"
  1970. #: apt-pkg/contrib/fileutl.cc:686
  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:90
  2061. #, c-format
  2062. msgid "Malformed line %lu in source list %s (URI)"
  2063. msgstr "Спотворена лінія %lu у переліку джерел %s (проблема в URI)"
  2064. #: apt-pkg/sourcelist.cc:92
  2065. #, c-format
  2066. msgid "Malformed line %lu in source list %s (dist)"
  2067. msgstr ""
  2068. "Спотворена лінія %lu у переліку джерел %s (проблема в назві дистрибутиву)"
  2069. #: apt-pkg/sourcelist.cc:95
  2070. #, c-format
  2071. msgid "Malformed line %lu in source list %s (URI parse)"
  2072. msgstr "Спотворена лінія %lu у переліку джерел %s (обробка URI)"
  2073. #: apt-pkg/sourcelist.cc:101
  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:108
  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:206
  2082. #, c-format
  2083. msgid "Opening %s"
  2084. msgstr "Відкриття %s"
  2085. #: apt-pkg/sourcelist.cc:223 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:243
  2090. #, c-format
  2091. msgid "Malformed line %u in source list %s (type)"
  2092. msgstr "Спотворена лінія %u у переліку джерел %s (тип)"
  2093. #: apt-pkg/sourcelist.cc:247
  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:255 apt-pkg/sourcelist.cc:258
  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:321 apt-pkg/packagemanager.cc:576
  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:437
  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:475
  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:132
  2184. #, c-format
  2185. msgid "Packaging system '%s' is not supported"
  2186. msgstr "Система пакування '%s' не підтримується"
  2187. #: apt-pkg/init.cc:148
  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:347
  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:369
  2208. #, c-format
  2209. msgid "Did not understand pin type %s"
  2210. msgstr "Не зрозумів тип %s для pin"
  2211. #: apt-pkg/policy.cc:377
  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:693
  2279. #, c-format
  2280. msgid "Couldn't stat source package list %s"
  2281. msgstr "Не вдалося прочитати атрибути переліку вихідних текстів%s"
  2282. #: apt-pkg/pkgcachegen.cc:778
  2283. #, fuzzy
  2284. msgid "Collecting File Provides"
  2285. msgstr "Збирання інформації про файлів "
  2286. #: apt-pkg/pkgcachegen.cc:907 apt-pkg/pkgcachegen.cc:914
  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:396
  2294. msgid "MD5Sum mismatch"
  2295. msgstr "Невідповідність MD5Sum"
  2296. #: apt-pkg/acquire-item.cc:657 apt-pkg/acquire-item.cc:1419
  2297. #, fuzzy
  2298. msgid "Hash Sum mismatch"
  2299. msgstr "Невідповідність MD5Sum"
  2300. #: apt-pkg/acquire-item.cc:1114
  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:1224
  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:1283
  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:1324
  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:1411
  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/deb/dpkgpm.cc:49
  2433. #, fuzzy, c-format
  2434. msgid "Installing %s"
  2435. msgstr "Встановлено %s"
  2436. #: apt-pkg/deb/dpkgpm.cc:50 apt-pkg/deb/dpkgpm.cc:660
  2437. #, c-format
  2438. msgid "Configuring %s"
  2439. msgstr "Конфігурація %s"
  2440. #: apt-pkg/deb/dpkgpm.cc:51 apt-pkg/deb/dpkgpm.cc:667
  2441. #, c-format
  2442. msgid "Removing %s"
  2443. msgstr "Видаляється %s"
  2444. #: apt-pkg/deb/dpkgpm.cc:52
  2445. #, c-format
  2446. msgid "Running post-installation trigger %s"
  2447. msgstr ""
  2448. #: apt-pkg/deb/dpkgpm.cc:557
  2449. #, fuzzy, c-format
  2450. msgid "Directory '%s' missing"
  2451. msgstr "Lists тека %spartial відсутня."
  2452. #: apt-pkg/deb/dpkgpm.cc:653
  2453. #, c-format
  2454. msgid "Preparing %s"
  2455. msgstr "Підготовка %s"
  2456. #: apt-pkg/deb/dpkgpm.cc:654
  2457. #, c-format
  2458. msgid "Unpacking %s"
  2459. msgstr "Розпакування %s"
  2460. #: apt-pkg/deb/dpkgpm.cc:659
  2461. #, c-format
  2462. msgid "Preparing to configure %s"
  2463. msgstr "Підготовка до конфігурації %s"
  2464. #: apt-pkg/deb/dpkgpm.cc:661
  2465. #, c-format
  2466. msgid "Installed %s"
  2467. msgstr "Встановлено %s"
  2468. #: apt-pkg/deb/dpkgpm.cc:666
  2469. #, c-format
  2470. msgid "Preparing for removal of %s"
  2471. msgstr "Підготовка до видалення %s"
  2472. #: apt-pkg/deb/dpkgpm.cc:668
  2473. #, c-format
  2474. msgid "Removed %s"
  2475. msgstr "Видалено %s"
  2476. #: apt-pkg/deb/dpkgpm.cc:673
  2477. #, c-format
  2478. msgid "Preparing to completely remove %s"
  2479. msgstr "Підготовка до повного видалення %s"
  2480. #: apt-pkg/deb/dpkgpm.cc:674
  2481. #, c-format
  2482. msgid "Completely removed %s"
  2483. msgstr "Повністю видалено %s"
  2484. #: apt-pkg/deb/dpkgpm.cc:878
  2485. msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
  2486. msgstr ""
  2487. "Неможливо записати в лог, проблема з openpty() (не змонтовано /dev/pts?)\n"
  2488. #: apt-pkg/deb/dpkgpm.cc:907
  2489. msgid "Running dpkg"
  2490. msgstr ""
  2491. #: apt-pkg/deb/debsystem.cc:70
  2492. #, c-format
  2493. msgid ""
  2494. "Unable to lock the administration directory (%s), is another process using "
  2495. "it?"
  2496. msgstr ""
  2497. #: apt-pkg/deb/debsystem.cc:73
  2498. #, fuzzy, c-format
  2499. msgid "Unable to lock the administration directory (%s), are you root?"
  2500. msgstr "Неможливо заблокувати теку з переліками пакунків"
  2501. #: apt-pkg/deb/debsystem.cc:82
  2502. msgid ""
  2503. "dpkg was interrupted, you must manually run 'dpkg --configure -a' to correct "
  2504. "the problem. "
  2505. msgstr ""
  2506. #: apt-pkg/deb/debsystem.cc:100
  2507. msgid "Not locked"
  2508. msgstr ""
  2509. #: methods/rred.cc:465
  2510. #, c-format
  2511. msgid ""
  2512. "Could not patch %s with mmap and with file operation usage - the patch seems "
  2513. "to be corrupt."
  2514. msgstr ""
  2515. #: methods/rred.cc:470
  2516. #, c-format
  2517. msgid ""
  2518. "Could not patch %s with mmap (but no mmap specific fail) - the patch seems "
  2519. "to be corrupt."
  2520. msgstr ""
  2521. #: methods/rsh.cc:330
  2522. msgid "Connection closed prematurely"
  2523. msgstr "З'єднання завершено передчасно"
  2524. #~ msgid "Could not patch file"
  2525. #~ msgstr "Неможливо накласти латку на файл"
  2526. #~ msgid "%4i %s\n"
  2527. #~ msgstr "%4i %s\n"
  2528. #, fuzzy
  2529. #~ msgid "Processing triggers for %s"
  2530. #~ msgstr "Помилка обробки течи %s"
  2531. #~ msgid ""
  2532. #~ "Since you only requested a single operation it is extremely likely that\n"
  2533. #~ "the package is simply not installable and a bug report against\n"
  2534. #~ "that package should be filed."
  2535. #~ msgstr ""
  2536. #~ "Так як Ви просили виконати тільки одну операцію, те найімовірніше, що\n"
  2537. #~ "пакунок просто не може бути встановлений через помилки в самому пакунку.\n"
  2538. #~ "Необхідно відіслати звіт про цю помилку."
  2539. #, fuzzy
  2540. #~ msgid "Line %d too long (max %lu)"
  2541. #~ msgstr "Лінія %d занадто довга (максимум %d)"
  2542. #, fuzzy
  2543. #~ msgid "Line %d too long (max %d)"
  2544. #~ msgstr "Лінія %d занадто довга (максимум %d)"
  2545. #, fuzzy
  2546. #~ msgid "Error occured while processing %s (NewFileDesc1)"
  2547. #~ msgstr "Помилка, яка була викликана внаслідок обробки %s (NewFileVer1)"
  2548. #, fuzzy
  2549. #~ msgid "Error occured while processing %s (NewFileDesc2)"
  2550. #~ msgstr "Помилка, яка була викликана внаслідок обробки %s (NewFileVer1)"
  2551. #, fuzzy
  2552. #~ msgid "Stored label: %s \n"
  2553. #~ msgstr "Записано мітку: %s \n"
  2554. #, fuzzy
  2555. #~ msgid ""
  2556. #~ "Found %i package indexes, %i source indexes, %i translation indexes and %"
  2557. #~ "i signatures\n"
  2558. #~ msgstr "Знайдено %i індексів пакунків, %i індексів джерел і %i підписів\n"
  2559. #, fuzzy
  2560. #~ msgid "openpty failed\n"
  2561. #~ msgstr "Вибір не вдався"