uk.po 149 KB

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