uk.po 110 KB

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