uk.po 149 KB

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