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