uk.po 147 KB

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