uk.po 149 KB

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