uk.po 152 KB

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