uk.po 141 KB

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