sk.po 125 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263
  1. # Slovak translation of APT
  2. #
  3. # initial sk.po made from Czech translation (cs.po)
  4. # thanks to Miroslav Kure <kurem@debian.cz>
  5. #
  6. # Peter Mann <Peter.Mann@tuke.sk>, 2006.
  7. # Ivan Masár <helix84@centrum.sk>, 2008, 2009, 2010, 2011, 2012.
  8. #
  9. msgid ""
  10. msgstr ""
  11. "Project-Id-Version: apt 1.0.5\n"
  12. "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
  13. "POT-Creation-Date: 2016-11-25 23:46+0100\n"
  14. "PO-Revision-Date: 2012-06-28 20:49+0100\n"
  15. "Last-Translator: Ivan Masár <helix84@centrum.sk>\n"
  16. "Language-Team: Slovak <sk-i18n@lists.linux.sk>\n"
  17. "Language: sk\n"
  18. "MIME-Version: 1.0\n"
  19. "Content-Type: text/plain; charset=UTF-8\n"
  20. "Content-Transfer-Encoding: 8bit\n"
  21. "Plural-Forms: nplurals=3; plural=((n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2);\n"
  22. #: apt-inst/contrib/arfile.cc
  23. msgid "Invalid archive signature"
  24. msgstr "Neplatný podpis archívu"
  25. #: apt-inst/contrib/arfile.cc
  26. msgid "Error reading archive member header"
  27. msgstr "Chyba pri čítaní záhlavia prvku archívu"
  28. #: apt-inst/contrib/arfile.cc
  29. #, c-format
  30. msgid "Invalid archive member header %s"
  31. msgstr "Neplatná hlavička prvku archívu %s"
  32. #: apt-inst/contrib/arfile.cc
  33. msgid "Invalid archive member header"
  34. msgstr "Neplatné záhlavie prvku archívu"
  35. #: apt-inst/contrib/arfile.cc
  36. msgid "Archive is too short"
  37. msgstr "Archív je príliš krátky"
  38. #: apt-inst/contrib/arfile.cc
  39. msgid "Failed to read the archive headers"
  40. msgstr "Chyba pri čítaní hlavičiek archívu"
  41. #: apt-inst/contrib/extracttar.cc
  42. #, fuzzy, c-format
  43. msgid "Cannot find a configured compressor for '%s'"
  44. msgstr "Nebolo možné nájsť autentifikačný záznam pre: %s"
  45. #: apt-inst/contrib/extracttar.cc
  46. msgid "Corrupted archive"
  47. msgstr "Porušený archív"
  48. #: apt-inst/contrib/extracttar.cc
  49. msgid "Tar checksum failed, archive corrupted"
  50. msgstr "Kontrolný súčet pre tar zlyhal, archív je poškodený"
  51. #: apt-inst/contrib/extracttar.cc
  52. #, c-format
  53. msgid "Unknown TAR header type %u, member %s"
  54. msgstr "Neznáma TAR hlavička typu %u, člen %s"
  55. #: apt-inst/deb/debfile.cc
  56. #, c-format
  57. msgid "This is not a valid DEB archive, missing '%s' member"
  58. msgstr "Toto nie je platný DEB archív, chýba časť „%s“"
  59. #: apt-inst/deb/debfile.cc
  60. #, c-format
  61. msgid "Internal error, could not locate member %s"
  62. msgstr "Vnútorná chyba, nedá sa nájsť časť %s"
  63. #: apt-inst/deb/debfile.cc
  64. msgid "Unparsable control file"
  65. msgstr "Nespracovateľný riadiaci súbor"
  66. #: apt-inst/dirstream.cc
  67. #, c-format
  68. msgid "Failed to write file %s"
  69. msgstr "Zápis súboru %s zlyhal"
  70. #: apt-inst/dirstream.cc
  71. #, c-format
  72. msgid "Failed to close file %s"
  73. msgstr "Zatvorenie súboru %s zlyhalo"
  74. #: apt-inst/extract.cc
  75. #, c-format
  76. msgid "The path %s is too long"
  77. msgstr "Cesta %s je príliš dlhá"
  78. #: apt-inst/extract.cc
  79. #, c-format
  80. msgid "Unpacking %s more than once"
  81. msgstr "%s sa rozbaľuje viackrát"
  82. #: apt-inst/extract.cc
  83. #, c-format
  84. msgid "The directory %s is diverted"
  85. msgstr "Adresár %s je divertovaný"
  86. #: apt-inst/extract.cc
  87. #, c-format
  88. msgid "The package is trying to write to the diversion target %s/%s"
  89. msgstr "Balík sa pokúša zapisovať do diverzného cieľa %s/%s"
  90. #: apt-inst/extract.cc
  91. msgid "The diversion path is too long"
  92. msgstr "Diverzná cesta je príliš dlhá"
  93. #: apt-inst/extract.cc apt-pkg/acquire-item.cc ftparchive/cachedb.cc
  94. #: methods/rred.cc
  95. #, c-format
  96. msgid "Failed to stat %s"
  97. msgstr "%s sa nedá vyhodnotiť"
  98. #: apt-inst/extract.cc ftparchive/multicompress.cc
  99. #, c-format
  100. msgid "Failed to rename %s to %s"
  101. msgstr "Premenovanie %s na %s zlyhalo"
  102. #: apt-inst/extract.cc
  103. #, c-format
  104. msgid "The directory %s is being replaced by a non-directory"
  105. msgstr "Adresár %s sa nahradí neadresárom"
  106. #: apt-inst/extract.cc
  107. msgid "Failed to locate node in its hash bucket"
  108. msgstr "Nedá sa nájsť uzol na adrese jeho hašu"
  109. #: apt-inst/extract.cc
  110. msgid "The path is too long"
  111. msgstr "Cesta je príliš dlhá"
  112. #: apt-inst/extract.cc
  113. #, c-format
  114. msgid "Overwrite package match with no version for %s"
  115. msgstr "Prepísať zodpovedajúci balík bez udania verzie pre %s"
  116. #: apt-inst/extract.cc
  117. #, c-format
  118. msgid "File %s/%s overwrites the one in the package %s"
  119. msgstr "Súbor %s/%s prepisuje ten z balíka %s"
  120. #. Only warn if there are no sources.list.d.
  121. #. Only warn if there is no sources.list file.
  122. #: apt-inst/extract.cc apt-pkg/acquire.cc apt-pkg/clean.cc
  123. #: apt-pkg/contrib/cdromutl.cc apt-pkg/contrib/fileutl.cc apt-pkg/deb/dpkgpm.cc
  124. #: apt-pkg/init.cc apt-pkg/policy.cc apt-pkg/sourcelist.cc methods/mirror.cc
  125. #, c-format
  126. msgid "Unable to read %s"
  127. msgstr "Nedá sa načítať %s"
  128. #: apt-inst/extract.cc
  129. #, c-format
  130. msgid "Unable to stat %s"
  131. msgstr "Nedá sa vyhodnotiť %s"
  132. #: apt-inst/filelist.cc
  133. msgid "DropNode called on still linked node"
  134. msgstr "Pokus o uvoľnenie uzla (DropNode) na stále prepojenom uzle"
  135. #: apt-inst/filelist.cc
  136. msgid "Failed to locate the hash element!"
  137. msgstr "Hašovací prvok sa nedá nájsť!"
  138. #: apt-inst/filelist.cc
  139. msgid "Failed to allocate diversion"
  140. msgstr "Nedá sa alokovať diverzia"
  141. #: apt-inst/filelist.cc
  142. msgid "Internal error in AddDiversion"
  143. msgstr "Vnútorná chyba pri AddDiversion"
  144. #: apt-inst/filelist.cc
  145. #, c-format
  146. msgid "Trying to overwrite a diversion, %s -> %s and %s/%s"
  147. msgstr "Pokus o prepísanie diverzie, %s -> %s a %s/%s"
  148. #: apt-inst/filelist.cc
  149. #, c-format
  150. msgid "Double add of diversion %s -> %s"
  151. msgstr "Dvojité pridanie diverzie %s -> %s"
  152. #: apt-inst/filelist.cc
  153. #, c-format
  154. msgid "Duplicate conf file %s/%s"
  155. msgstr "Duplicitný konfiguračný súbor %s/%s"
  156. #: apt-pkg/acquire-item.cc
  157. msgid ""
  158. "Updating from such a repository can't be done securely, and is therefore "
  159. "disabled by default."
  160. msgstr ""
  161. #: apt-pkg/acquire-item.cc
  162. msgid ""
  163. "Data from such a repository can't be authenticated and is therefore "
  164. "potentially dangerous to use."
  165. msgstr ""
  166. #: apt-pkg/acquire-item.cc
  167. msgid ""
  168. "See apt-secure(8) manpage for repository creation and user configuration "
  169. "details."
  170. msgstr ""
  171. #: apt-pkg/acquire-item.cc
  172. #, fuzzy, c-format
  173. msgid "The repository '%s' is no longer signed."
  174. msgstr "Adresár %s je divertovaný"
  175. #: apt-pkg/acquire-item.cc
  176. #, fuzzy, c-format
  177. msgid "The repository '%s' does no longer have a Release file."
  178. msgstr "Adresár %s je divertovaný"
  179. #: apt-pkg/acquire-item.cc
  180. msgid ""
  181. "This is normally not allowed, but the option Acquire::"
  182. "AllowDowngradeToInsecureRepositories was given to override it."
  183. msgstr ""
  184. #: apt-pkg/acquire-item.cc
  185. #, fuzzy, c-format
  186. msgid "The repository '%s' is not signed."
  187. msgstr "Adresár %s je divertovaný"
  188. #: apt-pkg/acquire-item.cc
  189. #, fuzzy, c-format
  190. msgid "The repository '%s' does not have a Release file."
  191. msgstr "Adresár %s je divertovaný"
  192. #: apt-pkg/acquire-item.cc
  193. #, fuzzy, c-format
  194. msgid "The repository '%s' provides only weak security information."
  195. msgstr "Adresár %s je divertovaný"
  196. #: apt-pkg/acquire-item.cc ftparchive/writer.cc
  197. #, c-format
  198. msgid "Failed to readlink %s"
  199. msgstr "Nie je možné vykonať readlink %s"
  200. #: apt-pkg/acquire-item.cc
  201. msgid "Hash Sum mismatch"
  202. msgstr "Nezhoda kontrolných haš súčtov"
  203. #: apt-pkg/acquire-item.cc
  204. msgid "Insufficient information available to perform this download securely"
  205. msgstr ""
  206. #: apt-pkg/acquire-item.cc apt-pkg/contrib/fileutl.cc
  207. #, c-format
  208. msgid "rename failed, %s (%s -> %s)."
  209. msgstr "premenovanie zlyhalo, %s (%s -> %s)."
  210. #: apt-pkg/acquire-item.cc
  211. msgid "Size mismatch"
  212. msgstr "Veľkosti sa nezhodujú"
  213. #: apt-pkg/acquire-item.cc
  214. #, fuzzy
  215. msgid "Invalid file format"
  216. msgstr "Neplatná operácia %s"
  217. #: apt-pkg/acquire-item.cc
  218. #, fuzzy
  219. msgid "Signature error"
  220. msgstr "Chyba pri zápise"
  221. #. TRANSLATORS: %s is a single techy word like 'NODATA'
  222. #: apt-pkg/acquire-item.cc methods/gpgv.cc
  223. #, c-format
  224. msgid ""
  225. "Clearsigned file isn't valid, got '%s' (does the network require "
  226. "authentication?)"
  227. msgstr ""
  228. #: apt-pkg/acquire-item.cc
  229. #, fuzzy, c-format
  230. msgid ""
  231. "An error occurred during the signature verification. The repository is not "
  232. "updated and the previous index files will be used. GPG error: %s: %s"
  233. msgstr ""
  234. "Počas overovania podpisu sa vyskytla chyba. Repozitár nie je aktualizovaný a "
  235. "použijú sa predošlé indexové súbory. Chyba GPG: %s: %s\n"
  236. #. Invalid signature file, reject (LP: #346386) (Closes: #627642)
  237. #: apt-pkg/acquire-item.cc
  238. #, c-format
  239. msgid "GPG error: %s: %s"
  240. msgstr "Chyba GPG: %s: %s"
  241. #: apt-pkg/acquire-item.cc
  242. #, c-format
  243. msgid ""
  244. "Skipping acquire of configured file '%s' as repository '%s' doesn't support "
  245. "architecture '%s'"
  246. msgstr ""
  247. #: apt-pkg/acquire-item.cc
  248. #, c-format
  249. msgid ""
  250. "Unable to find expected entry '%s' in Release file (Wrong sources.list entry "
  251. "or malformed file)"
  252. msgstr ""
  253. "Nepodarilo sa nájsť očakávanú položku „%s“ v súbore Release (Nesprávna "
  254. "položka sources.list alebo chybný formát súboru)"
  255. #: apt-pkg/acquire-item.cc
  256. #, c-format
  257. msgid ""
  258. "Skipping acquire of configured file '%s' as repository '%s' provides only "
  259. "weak security information for it"
  260. msgstr ""
  261. #. TRANSLATOR: The first %s is the URL of the bad Release file, the second is
  262. #. the time since then the file is invalid - formatted in the same way as in
  263. #. the download progress display (e.g. 7d 3h 42min 1s)
  264. #: apt-pkg/acquire-item.cc
  265. #, c-format
  266. msgid ""
  267. "Release file for %s is expired (invalid since %s). Updates for this "
  268. "repository will not be applied."
  269. msgstr ""
  270. "Súbor Release pre %s vypršal (neplatný od %s). Aktualizácie tohto zdroja "
  271. "softvéru sa nepoužijú."
  272. #: apt-pkg/acquire-item.cc
  273. #, c-format
  274. msgid "Conflicting distribution: %s (expected %s but got %s)"
  275. msgstr "V konflikte s distribúciou: %s (očakávalo sa %s ale dostali sme %s)"
  276. #: apt-pkg/acquire-item.cc
  277. #, c-format
  278. msgid ""
  279. "I wasn't able to locate a file for the %s package. This might mean you need "
  280. "to manually fix this package. (due to missing arch)"
  281. msgstr ""
  282. "Nedá sa nájsť súbor s balíkom %s. To by mohlo znamenať, že tento balík je "
  283. "potrebné opraviť manuálne (kvôli chýbajúcej architektúre)."
  284. #: apt-pkg/acquire-item.cc
  285. #, c-format
  286. msgid "Can't find a source to download version '%s' of '%s'"
  287. msgstr "Nie je možné nájsť zdroj na stiahnutie verzie „%s“ balíka „%s“"
  288. #: apt-pkg/acquire-item.cc
  289. #, c-format
  290. msgid ""
  291. "The package index files are corrupted. No Filename: field for package %s."
  292. msgstr "Indexové súbory balíka sú narušené. Chýba pole Filename: pre balík %s."
  293. #. TRANSLATOR: %s=%s is sourcename=sourceversion, e.g. apt=1.1
  294. #: apt-pkg/acquire-item.cc
  295. #, fuzzy, c-format
  296. msgid "Changelog unavailable for %s=%s"
  297. msgstr "Záznam zmien %s (%s)"
  298. #: apt-pkg/acquire-worker.cc
  299. #, c-format
  300. msgid "The method '%s' is explicitly disabled via configuration."
  301. msgstr ""
  302. #: apt-pkg/acquire-worker.cc methods/connect.cc
  303. #, c-format
  304. msgid "If you meant to use Tor remember to use %s instead of %s."
  305. msgstr ""
  306. #: apt-pkg/acquire-worker.cc
  307. #, c-format
  308. msgid "The method driver %s could not be found."
  309. msgstr "Nedá sa nájsť ovládač spôsobu %s."
  310. #: apt-pkg/acquire-worker.cc
  311. #, fuzzy, c-format
  312. msgid "Is the package %s installed?"
  313. msgstr "Skontrolujte, či je nainštalovaný balík „dpkg-dev“.\n"
  314. #: apt-pkg/acquire-worker.cc
  315. #, c-format
  316. msgid "Method %s did not start correctly"
  317. msgstr "Spôsob %s nebol správne spustený"
  318. #: apt-pkg/acquire-worker.cc
  319. #, fuzzy, c-format
  320. msgid ""
  321. "Please insert the disc labeled: '%s' in the drive '%s' and press [Enter]."
  322. msgstr "Vložte disk nazvaný „%s“ do mechaniky „%s“ a stlačte Enter."
  323. #: apt-pkg/acquire.cc apt-pkg/cdrom.cc
  324. #, c-format
  325. msgid "List directory %spartial is missing."
  326. msgstr "Adresár zoznamov %spartial chýba."
  327. #: apt-pkg/acquire.cc
  328. #, c-format
  329. msgid "Archives directory %spartial is missing."
  330. msgstr "Archívny adresár %spartial chýba."
  331. #: apt-pkg/acquire.cc
  332. #, c-format
  333. msgid "Unable to lock directory %s"
  334. msgstr "Adresár %s sa nedá zamknúť"
  335. #: apt-pkg/acquire.cc
  336. #, c-format
  337. msgid "No sandbox user '%s' on the system, can not drop privileges"
  338. msgstr ""
  339. #: apt-pkg/acquire.cc
  340. #, c-format
  341. msgid ""
  342. "Can't drop privileges for downloading as file '%s' couldn't be accessed by "
  343. "user '%s'."
  344. msgstr ""
  345. #: apt-pkg/acquire.cc apt-pkg/clean.cc
  346. #, fuzzy, c-format
  347. msgid "Clean of %s is not supported"
  348. msgstr "Indexový súbor typu „%s“ nie je podporovaný"
  349. #: apt-pkg/acquire.cc apt-pkg/clean.cc apt-pkg/contrib/cdromutl.cc
  350. #: methods/mirror.cc
  351. #, c-format
  352. msgid "Unable to change to %s"
  353. msgstr "Nedá sa prejsť do %s"
  354. #. only show the ETA if it makes sense
  355. #. two days
  356. #: apt-pkg/acquire.cc
  357. #, c-format
  358. msgid "Retrieving file %li of %li (%s remaining)"
  359. msgstr "Sťahuje sa %li. súbor z %li (zostáva %s)"
  360. #: apt-pkg/acquire.cc
  361. #, c-format
  362. msgid "Retrieving file %li of %li"
  363. msgstr "Sťahuje sa %li. súbor z %li"
  364. #: apt-pkg/algorithms.cc
  365. #, c-format
  366. msgid ""
  367. "The package %s needs to be reinstalled, but I can't find an archive for it."
  368. msgstr "Je nutné preinštalovať balík %s, ale nedá sa nájsť jeho archív."
  369. #: apt-pkg/algorithms.cc
  370. msgid ""
  371. "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
  372. "held packages."
  373. msgstr ""
  374. "Chyba, pkgProblemResolver::Resolve vytvára poruchy, čo môže být spôsobené "
  375. "pridržanými balíkmi."
  376. #: apt-pkg/algorithms.cc
  377. msgid "Unable to correct problems, you have held broken packages."
  378. msgstr "Problémy sa nedajú opraviť, niektoré balíky držíte v poškodenom stave."
  379. #: apt-pkg/cachefile.cc
  380. msgid "The package lists or status file could not be parsed or opened."
  381. msgstr "Zoznamy balíkov alebo stavový súbor sa nedajú spracovať alebo otvoriť."
  382. #: apt-pkg/cachefile.cc
  383. msgid "You may want to run apt-get update to correct these problems"
  384. msgstr "Na opravu týchto problémov môžete skúsiť spustiť apt-get update"
  385. #: apt-pkg/cachefile.cc
  386. msgid "The list of sources could not be read."
  387. msgstr "Nedá sa načítať zoznam zdrojov."
  388. #: apt-pkg/cachefilter.cc apt-private/private-output.cc
  389. #, c-format
  390. msgid "Regex compilation error - %s"
  391. msgstr "Chyba pri preklade regulárneho výrazu - %s"
  392. #: apt-pkg/cacheset.cc
  393. #, c-format
  394. msgid "Release '%s' for '%s' was not found"
  395. msgstr "Nebolo nájdené vydanie „%s“ pre „%s“"
  396. #: apt-pkg/cacheset.cc
  397. #, c-format
  398. msgid "Version '%s' for '%s' was not found"
  399. msgstr "Nebola nájdená verzia „%s“ pre „%s“"
  400. #: apt-pkg/cacheset.cc
  401. #, c-format
  402. msgid "Couldn't find task '%s'"
  403. msgstr "Nebolo možné nájsť úlohu „%s“"
  404. #: apt-pkg/cacheset.cc
  405. #, c-format
  406. msgid "Couldn't find any package by regex '%s'"
  407. msgstr "Nebol nájdený žiaden balík zodpovedajúci regulárnemu výrazu „%s“"
  408. #: apt-pkg/cacheset.cc
  409. #, fuzzy, c-format
  410. msgid "Couldn't find any package by glob '%s'"
  411. msgstr "Nebol nájdený žiaden balík zodpovedajúci regulárnemu výrazu „%s“"
  412. #: apt-pkg/cacheset.cc apt-private/private-show.cc
  413. #, c-format
  414. msgid "Unable to locate package %s"
  415. msgstr "Nedá sa nájsť balík %s"
  416. #: apt-pkg/cacheset.cc
  417. #, c-format
  418. msgid "Can't select versions from package '%s' as it is purely virtual"
  419. msgstr "Nie je možné vybrať verzie z balíka „%s“, pretože je čisto virtuálny"
  420. #: apt-pkg/cacheset.cc
  421. #, c-format
  422. msgid "Can't select newest version from package '%s' as it is purely virtual"
  423. msgstr ""
  424. "Nie je možné vybrať najnovšiu verziu z balíka „%s“, pretože je čisto "
  425. "virtuálny"
  426. #: apt-pkg/cacheset.cc
  427. #, c-format
  428. msgid "Can't select candidate version from package %s as it has no candidate"
  429. msgstr ""
  430. "Nie je možné vybrať kandidátsku verziu z balíka „%s“, pretože nemá kandidáta"
  431. #: apt-pkg/cacheset.cc
  432. #, c-format
  433. msgid "Can't select installed version from package %s as it is not installed"
  434. msgstr ""
  435. "Nie je možné vybrať nainštalovanú verziu z balíka „%s“, pretože nie je "
  436. "nainštalovaný"
  437. #: apt-pkg/cacheset.cc
  438. #, c-format
  439. msgid ""
  440. "Can't select installed nor candidate version from package '%s' as it has "
  441. "neither of them"
  442. msgstr ""
  443. "Nie je možné vybrať nainštalované ani kandidátske verzie z balíka „%s“, "
  444. "pretože nemá žiadnu z nich"
  445. #: apt-pkg/cdrom.cc
  446. #, c-format
  447. msgid "Line %u too long in source list %s."
  448. msgstr "Riadok %u v zozname zdrojov %s je príliš dlhý."
  449. #: apt-pkg/cdrom.cc
  450. msgid "Unmounting CD-ROM...\n"
  451. msgstr "CD-ROM sa odpája...\n"
  452. #: apt-pkg/cdrom.cc
  453. #, c-format
  454. msgid "Using CD-ROM mount point %s\n"
  455. msgstr "Použije sa prípojný bod CD-ROM %s\n"
  456. #: apt-pkg/cdrom.cc
  457. msgid "Waiting for disc...\n"
  458. msgstr "Čaká sa na disk...\n"
  459. #: apt-pkg/cdrom.cc
  460. msgid "Mounting CD-ROM...\n"
  461. msgstr "Pripája sa CD-ROM...\n"
  462. #: apt-pkg/cdrom.cc
  463. msgid "Identifying... "
  464. msgstr "Identifikuje sa..."
  465. #: apt-pkg/cdrom.cc
  466. #, c-format
  467. msgid "Stored label: %s\n"
  468. msgstr "Uložená menovka: %s \n"
  469. #: apt-pkg/cdrom.cc
  470. msgid "Scanning disc for index files...\n"
  471. msgstr "Na disku sa hľadajú indexové súbory...\n"
  472. #: apt-pkg/cdrom.cc
  473. #, c-format
  474. msgid ""
  475. "Found %zu package indexes, %zu source indexes, %zu translation indexes and "
  476. "%zu signatures\n"
  477. msgstr ""
  478. "Nájdených %zu indexov balíkov, %zu indexov zdrojových balíkov, %zu indexov "
  479. "prekladov a %zu signatúr\n"
  480. #: apt-pkg/cdrom.cc
  481. msgid ""
  482. "Unable to locate any package files, perhaps this is not a Debian Disc or the "
  483. "wrong architecture?"
  484. msgstr ""
  485. "Nepodarilo sa nájsť žiadne súbory balíkov, možno toto nie je disk s Debianom "
  486. "alebo je pre nesprávnu architektúru?"
  487. #: apt-pkg/cdrom.cc
  488. #, c-format
  489. msgid "Found label '%s'\n"
  490. msgstr "Nájdená menovka: „%s“\n"
  491. #: apt-pkg/cdrom.cc
  492. msgid "That is not a valid name, try again.\n"
  493. msgstr "Neplatný názov, skúste znova.\n"
  494. #: apt-pkg/cdrom.cc
  495. #, c-format
  496. msgid ""
  497. "This disc is called: \n"
  498. "'%s'\n"
  499. msgstr ""
  500. "Názov tohto disku je: \n"
  501. "„%s“\n"
  502. #: apt-pkg/cdrom.cc
  503. msgid "Copying package lists..."
  504. msgstr "Kopírujú sa zoznamy balíkov..."
  505. #: apt-pkg/cdrom.cc
  506. msgid "Writing new source list\n"
  507. msgstr "Zapisuje sa nový zoznam zdrojov\n"
  508. #: apt-pkg/cdrom.cc
  509. msgid "Source list entries for this disc are:\n"
  510. msgstr "Položky zoznamu zdrojov pre tento disk sú:\n"
  511. #: apt-pkg/clean.cc
  512. #, c-format
  513. msgid "Unable to stat %s."
  514. msgstr "Nie je možné vykonať stat %s."
  515. #: apt-pkg/contrib/cdromutl.cc
  516. #, c-format
  517. msgid "Unable to stat the mount point %s"
  518. msgstr "Prípojný bod %s sa nedá vyhodnotiť"
  519. #: apt-pkg/contrib/cdromutl.cc
  520. msgid "Failed to stat the cdrom"
  521. msgstr "Nedá sa vykonať stat() CD-ROM"
  522. #: apt-pkg/contrib/cmndline.cc
  523. #, fuzzy, c-format
  524. msgid ""
  525. "Command line option '%c' [from %s] is not understood in combination with the "
  526. "other options."
  527. msgstr "Parameter príkazového riadka „%c“ [z %s] je neznámy"
  528. #: apt-pkg/contrib/cmndline.cc
  529. #, fuzzy, c-format
  530. msgid ""
  531. "Command line option %s is not understood in combination with the other "
  532. "options"
  533. msgstr "Nezrozumiteľný parameter %s na príkazovom riadku"
  534. #: apt-pkg/contrib/cmndline.cc
  535. #, c-format
  536. msgid "Command line option %s is not boolean"
  537. msgstr "Parameter príkazového riadku %s nie je pravdivostná hodnota"
  538. #: apt-pkg/contrib/cmndline.cc
  539. #, c-format
  540. msgid "Option %s requires an argument."
  541. msgstr "Voľba %s vyžaduje argument."
  542. #: apt-pkg/contrib/cmndline.cc
  543. #, c-format
  544. msgid "Option %s: Configuration item specification must have an =<val>."
  545. msgstr "Parameter %s: Zadanie konfiguračnej položky musí obsahovať =<hodn>."
  546. #: apt-pkg/contrib/cmndline.cc
  547. #, c-format
  548. msgid "Option %s requires an integer argument, not '%s'"
  549. msgstr "Voľba %s vyžaduje ako argument celé číslo (integer), nie „%s“"
  550. #: apt-pkg/contrib/cmndline.cc
  551. #, c-format
  552. msgid "Option '%s' is too long"
  553. msgstr "Voľba „%s“ je príliš dlhá"
  554. #: apt-pkg/contrib/cmndline.cc
  555. #, c-format
  556. msgid "Sense %s is not understood, try true or false."
  557. msgstr "Nezrozumiteľný význam %s, skúste true alebo false. "
  558. #: apt-pkg/contrib/cmndline.cc
  559. #, c-format
  560. msgid "Invalid operation %s"
  561. msgstr "Neplatná operácia %s"
  562. #: apt-pkg/contrib/configuration.cc
  563. #, c-format
  564. msgid "Unrecognized type abbreviation: '%c'"
  565. msgstr "Nerozpoznaná skratka typu: „%c“"
  566. #: apt-pkg/contrib/configuration.cc
  567. #, c-format
  568. msgid "Opening configuration file %s"
  569. msgstr "Otvára sa konfiguračný súbor %s"
  570. #: apt-pkg/contrib/configuration.cc
  571. #, c-format
  572. msgid "Syntax error %s:%u: Block starts with no name."
  573. msgstr "Syntaktická chyba %s:%u: Blok začína bez názvu."
  574. #: apt-pkg/contrib/configuration.cc
  575. #, c-format
  576. msgid "Syntax error %s:%u: Malformed tag"
  577. msgstr "Syntaktická chyba %s:%u: Skomolená značka"
  578. #: apt-pkg/contrib/configuration.cc
  579. #, c-format
  580. msgid "Syntax error %s:%u: Extra junk after value"
  581. msgstr "Syntaktická chyba %s:%u: Za hodnotou nasledujú chybné údaje"
  582. #: apt-pkg/contrib/configuration.cc
  583. #, c-format
  584. msgid "Syntax error %s:%u: Directives can only be done at the top level"
  585. msgstr ""
  586. "Syntaktická chyba %s:%u: Direktívy sa dajú vykonať len na najvyššej úrovni"
  587. #: apt-pkg/contrib/configuration.cc
  588. #, c-format
  589. msgid "Syntax error %s:%u: Too many nested includes"
  590. msgstr "Syntaktická chyba %s:%u: Príliš mnoho vnorených prepojení (include)"
  591. #: apt-pkg/contrib/configuration.cc
  592. #, c-format
  593. msgid "Syntax error %s:%u: Included from here"
  594. msgstr "Syntaktická chyba %s:%u: Zahrnuté odtiaľ"
  595. #: apt-pkg/contrib/configuration.cc
  596. #, c-format
  597. msgid "Syntax error %s:%u: Unsupported directive '%s'"
  598. msgstr "Syntaktická chyba %s:%u: Nepodporovaná direktíva „%s“"
  599. #: apt-pkg/contrib/configuration.cc
  600. #, c-format
  601. msgid "Syntax error %s:%u: clear directive requires an option tree as argument"
  602. msgstr ""
  603. "Syntaktická chyba %s:%u: direktíva clear vyžaduje ako argument strom volieb"
  604. #: apt-pkg/contrib/configuration.cc
  605. #, c-format
  606. msgid "Syntax error %s:%u: Extra junk at end of file"
  607. msgstr "Syntaktická chyba %s:%u: Na konci súboru sú chybné údaje"
  608. #: apt-pkg/contrib/fileutl.cc
  609. #, c-format
  610. msgid "Problem unlinking the file %s"
  611. msgstr "Problém pri odstraňovaní súboru %s"
  612. #: apt-pkg/contrib/fileutl.cc
  613. #, c-format
  614. msgid "Not using locking for read only lock file %s"
  615. msgstr "Zamykanie pre súbor zámku %s, ktorý je iba na čítanie, sa nepoužíva"
  616. #: apt-pkg/contrib/fileutl.cc
  617. #, c-format
  618. msgid "Could not open lock file %s"
  619. msgstr "Súbor zámku %s sa nedá otvoriť"
  620. #: apt-pkg/contrib/fileutl.cc
  621. #, c-format
  622. msgid "Not using locking for nfs mounted lock file %s"
  623. msgstr "Zamykanie pre súbor zámku %s pripojený cez NFS sa nepoužíva"
  624. #: apt-pkg/contrib/fileutl.cc
  625. #, c-format
  626. msgid "Could not get lock %s"
  627. msgstr "Zámok %s sa nedá získať"
  628. #: apt-pkg/contrib/fileutl.cc
  629. #, c-format
  630. msgid "List of files can't be created as '%s' is not a directory"
  631. msgstr "Zoznam súborov nemožno vytvoriť, pretože „%s“ nie je adresár"
  632. #: apt-pkg/contrib/fileutl.cc
  633. #, c-format
  634. msgid "Ignoring '%s' in directory '%s' as it is not a regular file"
  635. msgstr "Ignoruje sa „%s“ v adresári „%s“, pretože to nie je obyčajný súbor"
  636. #: apt-pkg/contrib/fileutl.cc
  637. #, c-format
  638. msgid "Ignoring file '%s' in directory '%s' as it has no filename extension"
  639. msgstr "Ignoruje sa „%s“ v adresári „%s“, pretože nemá príponu názvu súboru"
  640. #: apt-pkg/contrib/fileutl.cc
  641. #, c-format
  642. msgid ""
  643. "Ignoring file '%s' in directory '%s' as it has an invalid filename extension"
  644. msgstr ""
  645. "Ignoruje sa „%s“ v adresári „%s“, pretože má neplatnú príponu názvu súboru"
  646. #: apt-pkg/contrib/fileutl.cc apt-pkg/contrib/gpgv.cc apt-pkg/deb/debsystem.cc
  647. #: cmdline/apt-dump-solver.cc
  648. #, c-format
  649. msgid "Waited for %s but it wasn't there"
  650. msgstr "Čakalo sa na %s, ale nebolo to tam"
  651. #: apt-pkg/contrib/fileutl.cc
  652. #, c-format
  653. msgid "Sub-process %s received a segmentation fault."
  654. msgstr "Podproces %s obdržal chybu segmentácie."
  655. #: apt-pkg/contrib/fileutl.cc
  656. #, c-format
  657. msgid "Sub-process %s received signal %u."
  658. msgstr "Podproces %s dostal signál %u."
  659. #. we forward the statuscode, so don't generate a message on the fd in this case
  660. #: apt-pkg/contrib/fileutl.cc apt-pkg/contrib/gpgv.cc
  661. #, c-format
  662. msgid "Sub-process %s returned an error code (%u)"
  663. msgstr "Podproces %s vrátil chybový kód (%u)"
  664. #: apt-pkg/contrib/fileutl.cc apt-pkg/contrib/gpgv.cc
  665. #, c-format
  666. msgid "Sub-process %s exited unexpectedly"
  667. msgstr "Podproces %s neočakávane skončil"
  668. #: apt-pkg/contrib/fileutl.cc methods/ftp.cc methods/rsh.cc
  669. msgid "Read error"
  670. msgstr "Chyba pri čítaní"
  671. #: apt-pkg/contrib/fileutl.cc methods/ftp.cc methods/rsh.cc
  672. msgid "Write error"
  673. msgstr "Chyba pri zápise"
  674. #: apt-pkg/contrib/fileutl.cc
  675. #, c-format
  676. msgid "Problem closing the gzip file %s"
  677. msgstr "Problém pri zatváraní gzip súboru %s"
  678. #: apt-pkg/contrib/fileutl.cc
  679. msgid "Unexpected end of file"
  680. msgstr ""
  681. #: apt-pkg/contrib/fileutl.cc
  682. msgid "Failed to create subprocess IPC"
  683. msgstr "Nedá sa vytvoriť podproces IPC"
  684. #: apt-pkg/contrib/fileutl.cc
  685. msgid "Failed to exec compressor "
  686. msgstr "Nepodarilo sa spustiť kompresor "
  687. #: apt-pkg/contrib/fileutl.cc
  688. #, c-format
  689. msgid "Could not open file %s"
  690. msgstr "Nedá sa otvoriť súbor %s"
  691. #: apt-pkg/contrib/fileutl.cc
  692. #, c-format
  693. msgid "Could not open file descriptor %d"
  694. msgstr "Nedá sa otvoriť popisovač súboru %d"
  695. #: apt-pkg/contrib/fileutl.cc
  696. #, c-format
  697. msgid "read, still have %llu to read but none left"
  698. msgstr "čítanie, treba prečítať ešte %llu, ale už nič neostáva"
  699. #: apt-pkg/contrib/fileutl.cc
  700. #, c-format
  701. msgid "write, still have %llu to write but couldn't"
  702. msgstr "zápis, treba zapísať ešte %llu, no nedá sa to"
  703. #: apt-pkg/contrib/fileutl.cc
  704. #, c-format
  705. msgid "Problem closing the file %s"
  706. msgstr "Problém pri zatváraní súboru %s"
  707. #: apt-pkg/contrib/fileutl.cc
  708. #, c-format
  709. msgid "Problem renaming the file %s to %s"
  710. msgstr "Problém pri synchronizovaní súboru %s na %s"
  711. #: apt-pkg/contrib/fileutl.cc
  712. msgid "Problem syncing the file"
  713. msgstr "Problém pri synchronizovaní súboru"
  714. #: apt-pkg/contrib/fileutl.cc cmdline/apt-extracttemplates.cc
  715. #, fuzzy, c-format
  716. msgid "Unable to mkstemp %s"
  717. msgstr "Nedá sa vyhodnotiť %s"
  718. #: apt-pkg/contrib/fileutl.cc cmdline/apt-extracttemplates.cc
  719. #, c-format
  720. msgid "Unable to write to %s"
  721. msgstr "Do %s sa nedá zapisovať"
  722. #: apt-pkg/contrib/mmap.cc
  723. msgid "Can't mmap an empty file"
  724. msgstr "Nedá sa vykonať mmap prázdneho súboru"
  725. #: apt-pkg/contrib/mmap.cc
  726. #, c-format
  727. msgid "Couldn't make mmap of %llu bytes"
  728. msgstr "Nedá sa urobiť mmap %llu bajtov"
  729. #: apt-pkg/contrib/mmap.cc
  730. #, c-format
  731. msgid "Couldn't duplicate file descriptor %i"
  732. msgstr "Nedá sa duplikovať popisovač súboru %i"
  733. #: apt-pkg/contrib/mmap.cc
  734. msgid "Unable to close mmap"
  735. msgstr "Nedá sa zatvoriť mmap"
  736. #: apt-pkg/contrib/mmap.cc
  737. msgid "Unable to synchronize mmap"
  738. msgstr "Nedá sa synchronizovať mmap"
  739. #: apt-pkg/contrib/mmap.cc
  740. #, c-format
  741. msgid "Couldn't make mmap of %lu bytes"
  742. msgstr "Nedá sa urobiť mmap %lu bajtov"
  743. #: apt-pkg/contrib/mmap.cc
  744. msgid "Failed to truncate file"
  745. msgstr "Nepodarilo sa skrátiť súbor"
  746. #: apt-pkg/contrib/mmap.cc
  747. #, c-format
  748. msgid ""
  749. "Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. "
  750. "Current value: %lu. (man 5 apt.conf)"
  751. msgstr ""
  752. "Nedostatok miesta pre dynamický MMap. Prosím, zväčšite veľkosť APT::Cache-"
  753. "Start. Aktuálna hodnota: %lu. (man 5 apt.conf)"
  754. #: apt-pkg/contrib/mmap.cc
  755. #, c-format
  756. msgid ""
  757. "Unable to increase the size of the MMap as the limit of %lu bytes is already "
  758. "reached."
  759. msgstr ""
  760. "Napodarilo sa zväčšiť veľkosť MMap, pretože limit %lu už bol dosiahnutý."
  761. #: apt-pkg/contrib/mmap.cc
  762. msgid ""
  763. "Unable to increase size of the MMap as automatic growing is disabled by user."
  764. msgstr ""
  765. "Napodarilo sa zväčšiť veľkosť MMap, pretože automatické zväčovanie vypol "
  766. "používateľ."
  767. #: apt-pkg/contrib/progress.cc
  768. #, c-format
  769. msgid "%c%s... Error!"
  770. msgstr "%c%s... Chyba!"
  771. #: apt-pkg/contrib/progress.cc
  772. #, c-format
  773. msgid "%c%s... Done"
  774. msgstr "%c%s... Hotovo"
  775. #: apt-pkg/contrib/progress.cc
  776. msgid "..."
  777. msgstr ""
  778. #. Print the spinner
  779. #: apt-pkg/contrib/progress.cc
  780. #, fuzzy, c-format
  781. msgid "%c%s... %u%%"
  782. msgstr "%c%s... Hotovo"
  783. #. TRANSLATOR: d means days, h means hours, min means minutes, s means seconds
  784. #: apt-pkg/contrib/strutl.cc
  785. #, c-format
  786. msgid "%lid %lih %limin %lis"
  787. msgstr "%li d %li h %li min %li s"
  788. #. TRANSLATOR: h means hours, min means minutes, s means seconds
  789. #: apt-pkg/contrib/strutl.cc
  790. #, c-format
  791. msgid "%lih %limin %lis"
  792. msgstr "%li h %li min %li s"
  793. #. TRANSLATOR: min means minutes, s means seconds
  794. #: apt-pkg/contrib/strutl.cc
  795. #, c-format
  796. msgid "%limin %lis"
  797. msgstr "%li min %li s"
  798. #. TRANSLATOR: s means seconds
  799. #: apt-pkg/contrib/strutl.cc
  800. #, c-format
  801. msgid "%lis"
  802. msgstr "%li s"
  803. #: apt-pkg/contrib/strutl.cc
  804. #, c-format
  805. msgid "Selection %s not found"
  806. msgstr "Voľba %s nenájdená"
  807. #. TRANSLATOR: an identifier like Packages; Releasefile key indicating
  808. #. a file like main/binary-amd64/Packages; another identifier like Contents;
  809. #. filename and linenumber of the sources.list entry currently parsed
  810. #: apt-pkg/deb/debmetaindex.cc
  811. #, c-format
  812. msgid "Target %s wants to acquire the same file (%s) as %s from source %s"
  813. msgstr ""
  814. #. TRANSLATOR: an identifier like Packages; Releasefile key indicating
  815. #. a file like main/binary-amd64/Packages; filename and linenumber of
  816. #. two sources.list entries
  817. #: apt-pkg/deb/debmetaindex.cc
  818. #, c-format
  819. msgid "Target %s (%s) is configured multiple times in %s and %s"
  820. msgstr ""
  821. #: apt-pkg/deb/debmetaindex.cc
  822. #, c-format
  823. msgid "Unable to parse Release file %s"
  824. msgstr "Nedá spracovať súbor Release %s"
  825. #: apt-pkg/deb/debmetaindex.cc
  826. #, c-format
  827. msgid "No sections in Release file %s"
  828. msgstr "Žiadne sekcie v Release súbore %s"
  829. #: apt-pkg/deb/debmetaindex.cc
  830. #, c-format
  831. msgid "No Hash entry in Release file %s"
  832. msgstr "Chýba položka „Hash“ v súbore Release %s"
  833. #: apt-pkg/deb/debmetaindex.cc
  834. #, c-format
  835. msgid ""
  836. "No Hash entry in Release file %s which is considered strong enough for "
  837. "security purposes"
  838. msgstr ""
  839. #: apt-pkg/deb/debmetaindex.cc
  840. #, c-format
  841. msgid "Invalid '%s' entry in Release file %s"
  842. msgstr "Chýba položka „%s“ v súbore Release %s"
  843. #. TRANSLATOR: The first is an option name from sources.list manpage, the other two URI and Suite
  844. #: apt-pkg/deb/debmetaindex.cc
  845. #, c-format
  846. msgid "Conflicting values set for option %s regarding source %s %s"
  847. msgstr ""
  848. #: apt-pkg/deb/debmetaindex.cc
  849. #, c-format
  850. msgid "Invalid value set for option %s regarding source %s %s (%s)"
  851. msgstr ""
  852. #: apt-pkg/deb/debmetaindex.cc
  853. #, c-format
  854. msgid "Conflicting values set for option %s regarding source %s %s: %s != %s"
  855. msgstr ""
  856. #: apt-pkg/deb/debrecords.cc apt-pkg/tagfile.cc
  857. #, c-format
  858. msgid "Unable to parse package file %s (%d)"
  859. msgstr "Súbor %s sa nedá spracovať (%d)"
  860. #: apt-pkg/deb/debsystem.cc
  861. #, c-format
  862. msgid ""
  863. "Unable to lock the administration directory (%s), is another process using "
  864. "it?"
  865. msgstr "Nedá sa zamknúť adresár na správu (%s), používa ho iný proces?"
  866. #: apt-pkg/deb/debsystem.cc
  867. #, c-format
  868. msgid "Unable to lock the administration directory (%s), are you root?"
  869. msgstr "Nedá sa zamknúť adresár na správu (%s), ste root?"
  870. #. TRANSLATORS: the %s contains the recovery command, usually
  871. #. dpkg --configure -a
  872. #: apt-pkg/deb/debsystem.cc
  873. #, c-format
  874. msgid ""
  875. "dpkg was interrupted, you must manually run '%s' to correct the problem. "
  876. msgstr "dpkg bol prerušený, musíte ručne opraviť problém spustením „%s“. "
  877. #: apt-pkg/deb/debsystem.cc
  878. msgid "Not locked"
  879. msgstr "Nie je zamknuté"
  880. #. we don't care for the difference
  881. #: apt-pkg/deb/dpkgpm.cc
  882. #, c-format
  883. msgid "Installing %s"
  884. msgstr "Inštaluje sa %s"
  885. #: apt-pkg/deb/dpkgpm.cc
  886. #, c-format
  887. msgid "Configuring %s"
  888. msgstr "Nastavuje sa %s"
  889. #: apt-pkg/deb/dpkgpm.cc
  890. #, c-format
  891. msgid "Removing %s"
  892. msgstr "Odstraňuje sa %s"
  893. #: apt-pkg/deb/dpkgpm.cc
  894. #, c-format
  895. msgid "Completely removing %s"
  896. msgstr "Úplne sa odstraňuje %s"
  897. #: apt-pkg/deb/dpkgpm.cc
  898. #, c-format
  899. msgid "Noting disappearance of %s"
  900. msgstr "Zaznamenali sme zmiznutie %s"
  901. #: apt-pkg/deb/dpkgpm.cc
  902. #, c-format
  903. msgid "Running post-installation trigger %s"
  904. msgstr "Vykonáva sa spúšťač post-installation %s"
  905. #: apt-pkg/deb/dpkgpm.cc
  906. #, c-format
  907. msgid "Installed %s"
  908. msgstr "Nainštalovaný balík %s"
  909. #. FIXME: use a better string after freeze
  910. #: apt-pkg/deb/dpkgpm.cc
  911. #, c-format
  912. msgid "Directory '%s' missing"
  913. msgstr "Adresár „%s“ chýba"
  914. #: apt-pkg/deb/dpkgpm.cc apt-pkg/edsp.cc
  915. #, c-format
  916. msgid "Could not open file '%s'"
  917. msgstr "Nedá sa otvoriť súbor „%s“"
  918. #: apt-pkg/deb/dpkgpm.cc
  919. #, c-format
  920. msgid "Preparing %s"
  921. msgstr "Pripravuje sa %s"
  922. #: apt-pkg/deb/dpkgpm.cc
  923. #, c-format
  924. msgid "Unpacking %s"
  925. msgstr "Rozbaľuje sa %s"
  926. #: apt-pkg/deb/dpkgpm.cc
  927. #, c-format
  928. msgid "Preparing to configure %s"
  929. msgstr "Pripravuje sa nastavenie %s"
  930. #: apt-pkg/deb/dpkgpm.cc
  931. #, c-format
  932. msgid "Preparing for removal of %s"
  933. msgstr "Pripravuje sa odstránenie %s"
  934. #: apt-pkg/deb/dpkgpm.cc
  935. #, c-format
  936. msgid "Removed %s"
  937. msgstr "Odstránený balík %s"
  938. #: apt-pkg/deb/dpkgpm.cc
  939. #, c-format
  940. msgid "Preparing to completely remove %s"
  941. msgstr "Pripravuje sa úplné odstránenie %s"
  942. #: apt-pkg/deb/dpkgpm.cc
  943. #, c-format
  944. msgid "Completely removed %s"
  945. msgstr "Balík „%s“ je úplne odstránený"
  946. #: apt-pkg/deb/dpkgpm.cc
  947. #, fuzzy, c-format
  948. msgid "Can not write log (%s)"
  949. msgstr "Do %s sa nedá zapisovať"
  950. #: apt-pkg/deb/dpkgpm.cc
  951. msgid "Is /dev/pts mounted?"
  952. msgstr ""
  953. #: apt-pkg/deb/dpkgpm.cc
  954. msgid "Operation was interrupted before it could finish"
  955. msgstr "Operácia bola prerušená predtým, než sa stihla dokončiť"
  956. #: apt-pkg/deb/dpkgpm.cc
  957. msgid "No apport report written because MaxReports is reached already"
  958. msgstr "Nezapíše sa správa apport, pretože už bol dosiahnutý limit MaxReports"
  959. #. check if its not a follow up error
  960. #: apt-pkg/deb/dpkgpm.cc
  961. msgid "dependency problems - leaving unconfigured"
  962. msgstr "problém so závislosťami - ponecháva sa nenakonfigurované"
  963. #: apt-pkg/deb/dpkgpm.cc
  964. msgid ""
  965. "No apport report written because the error message indicates its a followup "
  966. "error from a previous failure."
  967. msgstr ""
  968. "Nezapíše sa správa apport, pretože chybová správa indikuje, že je to chyba v "
  969. "nadväznosti na predošlé zlyhanie."
  970. #: apt-pkg/deb/dpkgpm.cc
  971. msgid ""
  972. "No apport report written because the error message indicates a disk full "
  973. "error"
  974. msgstr ""
  975. "Nezapíše sa správa apport, pretože chybová správa indikuje, že je disk "
  976. "zaplnený"
  977. #: apt-pkg/deb/dpkgpm.cc
  978. msgid ""
  979. "No apport report written because the error message indicates a out of memory "
  980. "error"
  981. msgstr ""
  982. "Nezapíše sa správa apport, pretože chybová správa indikuje chybu nedostatku "
  983. "pamäte"
  984. #: apt-pkg/deb/dpkgpm.cc
  985. #, fuzzy
  986. msgid ""
  987. "No apport report written because the error message indicates an issue on the "
  988. "local system"
  989. msgstr ""
  990. "Nezapíše sa správa apport, pretože chybová správa indikuje, že je disk "
  991. "zaplnený"
  992. #: apt-pkg/deb/dpkgpm.cc
  993. msgid ""
  994. "No apport report written because the error message indicates a dpkg I/O error"
  995. msgstr ""
  996. "Nezapíše sa správa apport, pretože chybová správa indikuje V/V chybu dpkg"
  997. #: apt-pkg/depcache.cc
  998. msgid "Building dependency tree"
  999. msgstr "Vytvára sa strom závislostí"
  1000. #: apt-pkg/depcache.cc
  1001. msgid "Candidate versions"
  1002. msgstr "Kandidátske verzie"
  1003. #: apt-pkg/depcache.cc
  1004. msgid "Dependency generation"
  1005. msgstr "Generovanie závislostí"
  1006. #: apt-pkg/depcache.cc
  1007. msgid "Reading state information"
  1008. msgstr "Načítavajú sa stavové informácie"
  1009. #: apt-pkg/depcache.cc
  1010. #, c-format
  1011. msgid "Failed to open StateFile %s"
  1012. msgstr "Nie je možné otvoriť StateFile %s"
  1013. #: apt-pkg/depcache.cc
  1014. #, c-format
  1015. msgid "Failed to write temporary StateFile %s"
  1016. msgstr "Nie je možné zapísať dočasný StateFile %s"
  1017. #: apt-pkg/edsp.cc
  1018. msgid "Send scenario to solver"
  1019. msgstr "Poslať scénár riešiteľovi"
  1020. #: apt-pkg/edsp.cc
  1021. msgid "Send request to solver"
  1022. msgstr "Poslať požiadavku riešiteľovi"
  1023. #: apt-pkg/edsp.cc
  1024. msgid "Prepare for receiving solution"
  1025. msgstr "Pripraviť sa na prijatie riešenia"
  1026. #: apt-pkg/edsp.cc
  1027. msgid "External solver failed without a proper error message"
  1028. msgstr "Externý riešiteľ zlyhal bez uvedenia chybovej správy"
  1029. #: apt-pkg/edsp.cc
  1030. msgid "Execute external solver"
  1031. msgstr "Spustiť externého riešiteľa"
  1032. #: apt-pkg/edsp.cc
  1033. #, fuzzy
  1034. msgid "Execute external planner"
  1035. msgstr "Spustiť externého riešiteľa"
  1036. #: apt-pkg/edsp.cc
  1037. #, fuzzy
  1038. msgid "Send request to planner"
  1039. msgstr "Poslať požiadavku riešiteľovi"
  1040. #: apt-pkg/edsp.cc
  1041. #, fuzzy
  1042. msgid "Send scenario to planner"
  1043. msgstr "Poslať scénár riešiteľovi"
  1044. #: apt-pkg/edsp.cc
  1045. #, fuzzy
  1046. msgid "External planner failed without a proper error message"
  1047. msgstr "Externý riešiteľ zlyhal bez uvedenia chybovej správy"
  1048. #: apt-pkg/indexcopy.cc
  1049. #, c-format
  1050. msgid "Wrote %i records.\n"
  1051. msgstr "Zapísaných %i záznamov.\n"
  1052. #: apt-pkg/indexcopy.cc
  1053. #, c-format
  1054. msgid "Wrote %i records with %i missing files.\n"
  1055. msgstr "Zapísaných %i záznamov s %i chýbajúcimi súbormi.\n"
  1056. #: apt-pkg/indexcopy.cc
  1057. #, c-format
  1058. msgid "Wrote %i records with %i mismatched files\n"
  1059. msgstr "Zapísaných %i záznamov s %i chybnými súbormi\n"
  1060. #: apt-pkg/indexcopy.cc
  1061. #, c-format
  1062. msgid "Wrote %i records with %i missing files and %i mismatched files\n"
  1063. msgstr "Zapísaných %i záznamov s %i chýbajúcimi a %i chybnými súbormi\n"
  1064. #: apt-pkg/indexcopy.cc
  1065. #, c-format
  1066. msgid "Can't find authentication record for: %s"
  1067. msgstr "Nebolo možné nájsť autentifikačný záznam pre: %s"
  1068. #: apt-pkg/indexcopy.cc
  1069. #, c-format
  1070. msgid "Hash mismatch for: %s"
  1071. msgstr "Nezhoda kontrolných haš súčtov: %s"
  1072. #: apt-pkg/init.cc
  1073. #, c-format
  1074. msgid "Packaging system '%s' is not supported"
  1075. msgstr "Systém balíkov „%s“ nie je podporovaný"
  1076. #: apt-pkg/init.cc
  1077. msgid "Unable to determine a suitable packaging system type"
  1078. msgstr "Nedá sa určiť vhodný typ systému balíkov"
  1079. #: apt-pkg/install-progress.cc
  1080. #, c-format
  1081. msgid "Progress: [%3i%%]"
  1082. msgstr ""
  1083. #. send status information that we are about to fork dpkg
  1084. #: apt-pkg/install-progress.cc
  1085. msgid "Running dpkg"
  1086. msgstr "Spúšťa sa dpkg"
  1087. #: apt-pkg/packagemanager.cc
  1088. #, c-format
  1089. msgid ""
  1090. "Could not perform immediate configuration on '%s'. Please see man 5 apt.conf "
  1091. "under APT::Immediate-Configure for details. (%d)"
  1092. msgstr ""
  1093. "Nebolo možné vykonať okamžitú konfiguráciu „%s“. Pozri prosím podrobnosti v "
  1094. "man 5 apt.conf pod APT::Immediate-Configure (%d)"
  1095. #: apt-pkg/packagemanager.cc
  1096. #, c-format
  1097. msgid "Could not configure '%s'. "
  1098. msgstr "Nedá sa nakonfigurovať „%s“."
  1099. #: apt-pkg/packagemanager.cc
  1100. #, c-format
  1101. msgid ""
  1102. "This installation run will require temporarily removing the essential "
  1103. "package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
  1104. "you really want to do it, activate the APT::Force-LoopBreak option."
  1105. msgstr ""
  1106. "Tento beh inštalácie si vyžiada dočasné odstránenie kľúčového balíka %s "
  1107. "kvôli slučke v Conflicts/Pre-Depends. Často je to nevhodné, ale ak to chcete "
  1108. "naozaj urobiť, aktivujte možnosť APT::Force-LoopBreak."
  1109. #: apt-pkg/pkgcache.cc
  1110. msgid "Empty package cache"
  1111. msgstr "Vyrovnávacia pamäť balíkov je prázdna"
  1112. #: apt-pkg/pkgcache.cc
  1113. msgid "The package cache file is corrupted"
  1114. msgstr "Súbor vyrovnávacej pamäti balíkov je poškodený"
  1115. #: apt-pkg/pkgcache.cc
  1116. msgid "The package cache file is an incompatible version"
  1117. msgstr "Súbor vyrovnávacej pamäti balíkov je nezlučiteľnej verzie"
  1118. #: apt-pkg/pkgcache.cc
  1119. #, c-format
  1120. msgid "This APT does not support the versioning system '%s'"
  1121. msgstr "Tento APT nepodporuje systém na správu verzií „%s“"
  1122. #: apt-pkg/pkgcache.cc
  1123. #, fuzzy, c-format
  1124. msgid "The package cache was built for different architectures: %s vs %s"
  1125. msgstr "Súbor vyrovnávacej pamäti balíkov bol vytvorený pre inú architektúru"
  1126. #: apt-pkg/pkgcache.cc
  1127. #, fuzzy
  1128. msgid "The package cache file is corrupted, it has the wrong hash"
  1129. msgstr "Súbor vyrovnávacej pamäti balíkov je poškodený, je príliš malý"
  1130. #: apt-pkg/pkgcache.cc
  1131. msgid "Depends"
  1132. msgstr "Závisí na"
  1133. #: apt-pkg/pkgcache.cc
  1134. msgid "PreDepends"
  1135. msgstr "Predzávisí na"
  1136. #: apt-pkg/pkgcache.cc
  1137. msgid "Suggests"
  1138. msgstr "Navrhuje"
  1139. #: apt-pkg/pkgcache.cc
  1140. msgid "Conflicts"
  1141. msgstr "Koliduje s"
  1142. #: apt-pkg/pkgcache.cc
  1143. msgid "Recommends"
  1144. msgstr "Odporúča"
  1145. #: apt-pkg/pkgcache.cc
  1146. msgid "Replaces"
  1147. msgstr "Nahrádza"
  1148. #: apt-pkg/pkgcache.cc
  1149. msgid "Breaks"
  1150. msgstr "Kazí"
  1151. #: apt-pkg/pkgcache.cc
  1152. msgid "Enhances"
  1153. msgstr "Rozširuje"
  1154. #: apt-pkg/pkgcache.cc
  1155. msgid "Obsoletes"
  1156. msgstr "Zneplatňuje"
  1157. #: apt-pkg/pkgcache.cc
  1158. msgid "important"
  1159. msgstr "dôležitý"
  1160. #: apt-pkg/pkgcache.cc
  1161. msgid "required"
  1162. msgstr "požadovaný"
  1163. #: apt-pkg/pkgcache.cc
  1164. msgid "standard"
  1165. msgstr "štandardný"
  1166. #: apt-pkg/pkgcache.cc
  1167. msgid "extra"
  1168. msgstr "extra"
  1169. #: apt-pkg/pkgcache.cc
  1170. msgid "optional"
  1171. msgstr "voliteľný"
  1172. #: apt-pkg/pkgcachegen.cc
  1173. msgid "Cache has an incompatible versioning system"
  1174. msgstr "Vyrovnávacia pamäť má nezlučiteľný systém na správu verzií"
  1175. #. TRANSLATOR: The first placeholder is a package name,
  1176. #. the other two should be copied verbatim as they include debug info
  1177. #: apt-pkg/pkgcachegen.cc
  1178. #, c-format
  1179. msgid "Error occurred while processing %s (%s%d)"
  1180. msgstr "Vyskytla sa chyba pri spracovávaní %s (%s%d)"
  1181. #: apt-pkg/pkgcachegen.cc
  1182. msgid "Wow, you exceeded the number of package names this APT is capable of."
  1183. msgstr ""
  1184. "Fíha, prekročili ste počet názvov balíkov, ktoré toto APT zvládne spracovať."
  1185. #: apt-pkg/pkgcachegen.cc
  1186. msgid "Wow, you exceeded the number of versions this APT is capable of."
  1187. msgstr "Fíha, prekročili ste počet verzií, ktoré toto APT zvládne spracovať."
  1188. #: apt-pkg/pkgcachegen.cc
  1189. msgid "Wow, you exceeded the number of descriptions this APT is capable of."
  1190. msgstr "Fíha, prekročili ste počet popisov, ktoré toto APT zvládne spracovať."
  1191. #: apt-pkg/pkgcachegen.cc
  1192. msgid "Wow, you exceeded the number of dependencies this APT is capable of."
  1193. msgstr ""
  1194. "Fíha, prekročili ste počet závislostí, ktoré toto APT zvládne spracovať."
  1195. #: apt-pkg/pkgcachegen.cc
  1196. msgid "Reading package lists"
  1197. msgstr "Načítavajú sa zoznamy balíkov"
  1198. #: apt-pkg/pkgcachegen.cc
  1199. msgid "IO Error saving source cache"
  1200. msgstr "V/V chyba pri ukladaní zdrojovej vyrovnávacej pamäti"
  1201. #: apt-pkg/pkgrecords.cc
  1202. #, c-format
  1203. msgid "Index file type '%s' is not supported"
  1204. msgstr "Indexový súbor typu „%s“ nie je podporovaný"
  1205. #: apt-pkg/policy.cc
  1206. #, c-format
  1207. msgid ""
  1208. "The value '%s' is invalid for APT::Default-Release as such a release is not "
  1209. "available in the sources"
  1210. msgstr ""
  1211. "„%s“ nie je platná hodnota pre APT::Default-Release, pretože také vydanie "
  1212. "nie je dostupné v zdrojoch"
  1213. #: apt-pkg/policy.cc
  1214. #, c-format
  1215. msgid "Invalid record in the preferences file %s, no Package header"
  1216. msgstr "Neplatný záznam v súbore nastavení %s, chýba hlavička Package"
  1217. #: apt-pkg/policy.cc
  1218. #, c-format
  1219. msgid "Did not understand pin type %s"
  1220. msgstr "Nezrozumiteľné pridržanie typu %s"
  1221. #: apt-pkg/policy.cc
  1222. #, c-format
  1223. msgid "%s: Value %s is outside the range of valid pin priorities (%d to %d)"
  1224. msgstr ""
  1225. #: apt-pkg/policy.cc
  1226. msgid "No priority (or zero) specified for pin"
  1227. msgstr "Nebola zadaná žiadna (alebo nulová) priorita na pridržanie"
  1228. #. 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
  1229. #: apt-pkg/sourcelist.cc
  1230. #, fuzzy, c-format
  1231. msgid "Malformed entry %u in %s file %s (%s)"
  1232. msgstr "Skomolený „override“ %s riadok %llu #1"
  1233. #: apt-pkg/sourcelist.cc
  1234. #, c-format
  1235. msgid "Opening %s"
  1236. msgstr "Otvára sa %s"
  1237. #: apt-pkg/sourcelist.cc
  1238. #, c-format
  1239. msgid "Malformed line %u in source list %s (type)"
  1240. msgstr "Skomolený riadok %u v zozname zdrojov %s (typ)"
  1241. #: apt-pkg/sourcelist.cc
  1242. #, c-format
  1243. msgid "Type '%s' is not known on line %u in source list %s"
  1244. msgstr "Typ „%s“ je neznámy na riadku %u v zozname zdrojov %s"
  1245. #: apt-pkg/sourcelist.cc
  1246. #, fuzzy, c-format
  1247. msgid "Malformed stanza %u in source list %s (type)"
  1248. msgstr "Skomolený riadok %u v zozname zdrojov %s (typ)"
  1249. #: apt-pkg/sourcelist.cc
  1250. #, fuzzy, c-format
  1251. msgid "Type '%s' is not known on stanza %u in source list %s"
  1252. msgstr "Typ „%s“ je neznámy na riadku %u v zozname zdrojov %s"
  1253. #: apt-pkg/sourcelist.cc
  1254. #, c-format
  1255. msgid "Unsupported file %s given on commandline"
  1256. msgstr ""
  1257. #: apt-pkg/srcrecords.cc
  1258. msgid "You must put some 'source' URIs in your sources.list"
  1259. msgstr "Do sources.list musíte zadať nejaký „source“ (zdrojový) URI"
  1260. #: apt-pkg/tagfile.cc
  1261. #, c-format
  1262. msgid "Cannot convert %s to integer: out of range"
  1263. msgstr ""
  1264. #: apt-pkg/update.cc apt-private/private-download.cc
  1265. #, c-format
  1266. msgid "Failed to fetch %s %s"
  1267. msgstr "Zlyhalo stiahnutie %s %s"
  1268. #: apt-pkg/update.cc
  1269. msgid ""
  1270. "Some index files failed to download. They have been ignored, or old ones "
  1271. "used instead."
  1272. msgstr ""
  1273. "Niektoré indexové súbory sa nepodarilo stiahnuť. Boli ignorované alebo sa "
  1274. "použili staršie verzie."
  1275. #: apt-pkg/upgrade.cc
  1276. msgid "Calculating upgrade"
  1277. msgstr "Prepočítava sa aktualizácia"
  1278. #. TRANSLATOR: Very short word to be displayed before unchanged files in 'apt-get update'
  1279. #: apt-private/acqprogress.cc
  1280. #, c-format
  1281. msgid "Hit:%lu %s"
  1282. msgstr "Už existuje:%lu %s"
  1283. #. TRANSLATOR: Very short word to be displayed for files processed in 'apt-get update'
  1284. #. Potentially replaced later by "Hit:", "Ign:" or "Err:" if something (bad) happens
  1285. #: apt-private/acqprogress.cc
  1286. #, c-format
  1287. msgid "Get:%lu %s"
  1288. msgstr "Získava sa:%lu %s"
  1289. #. TRANSLATOR: Very short word to be displayed for files in 'apt-get update'
  1290. #. which failed to download, but the error is ignored (compare "Err:")
  1291. #: apt-private/acqprogress.cc
  1292. #, c-format
  1293. msgid "Ign:%lu %s"
  1294. msgstr ""
  1295. #. TRANSLATOR: Very short word to be displayed for files in 'apt-get update'
  1296. #. which failed to download and the error is critical (compare "Ign:")
  1297. #: apt-private/acqprogress.cc
  1298. #, c-format
  1299. msgid "Err:%lu %s"
  1300. msgstr "Chyba:%lu %s"
  1301. #: apt-private/acqprogress.cc
  1302. #, c-format
  1303. msgid "Fetched %sB in %s (%sB/s)\n"
  1304. msgstr "%sB sa stiahlo za %s (%sB/s)\n"
  1305. #: apt-private/acqprogress.cc
  1306. msgid " [Working]"
  1307. msgstr " [Prebieha spracovanie]"
  1308. #: apt-private/acqprogress.cc
  1309. #, fuzzy, c-format
  1310. msgid ""
  1311. "Media change: please insert the disc labeled\n"
  1312. " '%s'\n"
  1313. "in the drive '%s' and press [Enter]\n"
  1314. msgstr ""
  1315. "Výmena nosiča: Vložte disk s názvom\n"
  1316. " „%s“\n"
  1317. "do mechaniky „%s“ a stlačte Enter\n"
  1318. #: apt-private/private-cachefile.cc
  1319. msgid "Correcting dependencies..."
  1320. msgstr "Opravujú sa závislosti..."
  1321. #: apt-private/private-cachefile.cc
  1322. msgid " failed."
  1323. msgstr " zlyhalo."
  1324. #: apt-private/private-cachefile.cc
  1325. msgid "Unable to correct dependencies"
  1326. msgstr "Závislosti sa nedajú opraviť"
  1327. #: apt-private/private-cachefile.cc
  1328. msgid "Unable to minimize the upgrade set"
  1329. msgstr "Sada na aktualizáciu sa nedá minimalizovať"
  1330. #: apt-private/private-cachefile.cc
  1331. msgid " Done"
  1332. msgstr " Hotovo"
  1333. #: apt-private/private-cachefile.cc
  1334. msgid "You might want to run 'apt-get -f install' to correct these."
  1335. msgstr "Možno to budete chcieť napraviť spustením „apt-get -f install“."
  1336. #: apt-private/private-cachefile.cc
  1337. msgid "Unmet dependencies. Try using -f."
  1338. msgstr "Nesplnené závislosti. Skúste použiť -f."
  1339. #: apt-private/private-cacheset.cc apt-private/private-search.cc
  1340. msgid "Sorting"
  1341. msgstr ""
  1342. #: apt-private/private-cacheset.cc
  1343. #, c-format
  1344. msgid "Note, selecting '%s' for task '%s'\n"
  1345. msgstr "Poznámka: vyberá sa „%s“ pre úlohu „%s“\n"
  1346. #: apt-private/private-cacheset.cc
  1347. #, fuzzy, c-format
  1348. msgid "Note, selecting '%s' for glob '%s'\n"
  1349. msgstr "Poznámka: vyberá sa „%s“ pre regulárny výraz „%s“\n"
  1350. #: apt-private/private-cacheset.cc
  1351. #, c-format
  1352. msgid "Note, selecting '%s' for regex '%s'\n"
  1353. msgstr "Poznámka: vyberá sa „%s“ pre regulárny výraz „%s“\n"
  1354. #: apt-private/private-cacheset.cc
  1355. #, c-format
  1356. msgid "Package %s is a virtual package provided by:\n"
  1357. msgstr "Balík %s je virtuálny balík poskytovaný balíkmi:\n"
  1358. #: apt-private/private-cacheset.cc
  1359. #, fuzzy
  1360. msgid " [Installed]"
  1361. msgstr " [Nainštalovaný]"
  1362. #: apt-private/private-cacheset.cc
  1363. msgid " [Not candidate version]"
  1364. msgstr " [Nie je kandidátska verzia]"
  1365. #: apt-private/private-cacheset.cc
  1366. msgid "You should explicitly select one to install."
  1367. msgstr "Mali by ste explicitne vybrať jeden na inštaláciu."
  1368. #: apt-private/private-cacheset.cc
  1369. #, c-format
  1370. msgid ""
  1371. "Package %s is not available, but is referred to by another package.\n"
  1372. "This may mean that the package is missing, has been obsoleted, or\n"
  1373. "is only available from another source\n"
  1374. msgstr ""
  1375. "Balík %s nie je dostupný, ale odkazuje naň iný balík. Možno to znamená,\n"
  1376. "že balík chýba, bol zrušený alebo je dostupný iba z iného zdroja\n"
  1377. #: apt-private/private-cacheset.cc
  1378. msgid "However the following packages replace it:"
  1379. msgstr "Avšak nahrádzajú ho nasledovné balíky:"
  1380. #: apt-private/private-cacheset.cc
  1381. #, c-format
  1382. msgid "Package '%s' has no installation candidate"
  1383. msgstr "Balík „%s“ nemá kandidáta na inštaláciu"
  1384. #: apt-private/private-cacheset.cc
  1385. #, c-format
  1386. msgid "Virtual packages like '%s' can't be removed\n"
  1387. msgstr "Virtuálne balíky ako „%s“ nemožno odstrániť\n"
  1388. #. TRANSLATORS: Note, this is not an interactive question
  1389. #: apt-private/private-cacheset.cc apt-private/private-install.cc
  1390. #, c-format
  1391. msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n"
  1392. msgstr ""
  1393. "Balík „%s“ nie je nainštalovaný, nedá sa teda odstrániť. Mali ste na mysli "
  1394. "„%s“?\n"
  1395. #: apt-private/private-cacheset.cc apt-private/private-install.cc
  1396. #, c-format
  1397. msgid "Package '%s' is not installed, so not removed\n"
  1398. msgstr "Balík „%s“ nie je nainštalovaný, nedá sa teda odstrániť\n"
  1399. #: apt-private/private-cacheset.cc
  1400. #, c-format
  1401. msgid "Note, selecting '%s' instead of '%s'\n"
  1402. msgstr "Poznámka: „%s“ sa vyberá namiesto „%s“\n"
  1403. #: apt-private/private-cmndline.cc
  1404. msgid "Most used commands:"
  1405. msgstr ""
  1406. #: apt-private/private-cmndline.cc
  1407. #, c-format
  1408. msgid "See %s for more information about the available commands."
  1409. msgstr ""
  1410. #: apt-private/private-cmndline.cc
  1411. msgid ""
  1412. "Configuration options and syntax is detailed in apt.conf(5).\n"
  1413. "Information about how to configure sources can be found in sources.list(5).\n"
  1414. "Package and version choices can be expressed via apt_preferences(5).\n"
  1415. "Security details are available in apt-secure(8).\n"
  1416. msgstr ""
  1417. #: apt-private/private-cmndline.cc
  1418. msgid "This APT has Super Cow Powers."
  1419. msgstr "Tento APT má schopnosti posvätnej kravy."
  1420. #: apt-private/private-cmndline.cc
  1421. msgid "This APT helper has Super Meep Powers."
  1422. msgstr ""
  1423. #: apt-private/private-depends.cc apt-private/private-show.cc
  1424. #: cmdline/apt-mark.cc
  1425. msgid "No packages found"
  1426. msgstr "Neboli nájdené žiadne balíky"
  1427. #: apt-private/private-download.cc
  1428. msgid "WARNING: The following packages cannot be authenticated!"
  1429. msgstr "UPOZORNENIE: Pri nasledovných balíkoch sa nedá overiť vierohodnosť!"
  1430. #: apt-private/private-download.cc
  1431. msgid "Authentication warning overridden.\n"
  1432. msgstr "Upozornenie o vierohodnosti bolo potlačené.\n"
  1433. #: apt-private/private-download.cc
  1434. msgid "Some packages could not be authenticated"
  1435. msgstr "Nedala sa zistiť vierohodnosť niektorých balíkov"
  1436. #: apt-private/private-download.cc
  1437. msgid "Install these packages without verification?"
  1438. msgstr "Nainštalovať tieto nekontrolované balíky?"
  1439. #: apt-private/private-download.cc apt-private/private-install.cc
  1440. msgid ""
  1441. "--force-yes is deprecated, use one of the options starting with --allow "
  1442. "instead."
  1443. msgstr ""
  1444. #: apt-private/private-download.cc
  1445. #, fuzzy
  1446. msgid ""
  1447. "There were unauthenticated packages and -y was used without --allow-"
  1448. "unauthenticated"
  1449. msgstr "Nastali problémy a -y bolo použité bez --force-yes"
  1450. #: apt-private/private-download.cc
  1451. #, c-format
  1452. msgid "Couldn't determine free space in %s"
  1453. msgstr "Na %s sa nedá zistiť veľkosť voľného miesta"
  1454. #: apt-private/private-download.cc
  1455. #, c-format
  1456. msgid "You don't have enough free space in %s."
  1457. msgstr "Na %s nemáte dostatok voľného miesta."
  1458. #: apt-private/private-download.cc
  1459. msgid "Unable to lock the download directory"
  1460. msgstr "Adresár pre sťahovanie sa nedá zamknúť"
  1461. #: apt-private/private-install.cc
  1462. msgid ""
  1463. "Some packages could not be installed. This may mean that you have\n"
  1464. "requested an impossible situation or if you are using the unstable\n"
  1465. "distribution that some required packages have not yet been created\n"
  1466. "or been moved out of Incoming."
  1467. msgstr ""
  1468. "Niektoré balíky sa nedajú nainštalovať. To môže znamenať, že požadujete\n"
  1469. "nemožnú situáciu, alebo ak používate nestabilnú distribúciu, že\n"
  1470. "požadované balíky ešte neboli vytvorené alebo presunuté z fronty\n"
  1471. "Novoprichádzajúcich (Incoming) balíkov."
  1472. #.
  1473. #. if (Packages == 1)
  1474. #. {
  1475. #. c1out << std::endl;
  1476. #. c1out <<
  1477. #. _("Since you only requested a single operation it is extremely likely that\n"
  1478. #. "the package is simply not installable and a bug report against\n"
  1479. #. "that package should be filed.") << std::endl;
  1480. #. }
  1481. #.
  1482. #: apt-private/private-install.cc
  1483. msgid "The following information may help to resolve the situation:"
  1484. msgstr "Nasledovné informácie vám možno pomôžu vyriešiť túto situáciu:"
  1485. #: apt-private/private-install.cc
  1486. msgid "Broken packages"
  1487. msgstr "Poškodené balíky"
  1488. #: apt-private/private-install.cc
  1489. msgid "Internal error, InstallPackages was called with broken packages!"
  1490. msgstr "Vnútorná chyba, InstallPackages bolo volané s poškodenými balíkmi!"
  1491. #: apt-private/private-install.cc
  1492. msgid "Packages need to be removed but remove is disabled."
  1493. msgstr "Je potrebné odstránenie balíka, ale funkcia Odstrániť je vypnutá."
  1494. #: apt-private/private-install.cc
  1495. #, fuzzy
  1496. msgid ""
  1497. "Essential packages were removed and -y was used without --allow-remove-"
  1498. "essential."
  1499. msgstr "Nastali problémy a -y bolo použité bez --force-yes"
  1500. #: apt-private/private-install.cc
  1501. #, fuzzy
  1502. msgid "Packages were downgraded and -y was used without --allow-downgrades."
  1503. msgstr "Nastali problémy a -y bolo použité bez --force-yes"
  1504. #: apt-private/private-install.cc
  1505. msgid ""
  1506. "Held packages were changed and -y was used without --allow-change-held-"
  1507. "packages."
  1508. msgstr ""
  1509. #: apt-private/private-install.cc
  1510. msgid "Internal error, Ordering didn't finish"
  1511. msgstr "Vnútorná chyba, Triedenie sa neukončilo"
  1512. #: apt-private/private-install.cc
  1513. msgid "How odd... The sizes didn't match, email apt@packages.debian.org"
  1514. msgstr ""
  1515. "Nezvyčajná udalosť... Veľkosti nesúhlasia, pošlite e-mail na apt@packages."
  1516. "debian.org"
  1517. #. TRANSLATOR: The required space between number and unit is already included
  1518. #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
  1519. #: apt-private/private-install.cc
  1520. #, c-format
  1521. msgid "Need to get %sB/%sB of archives.\n"
  1522. msgstr "Je potrebné stiahnuť %sB/%sB archívov.\n"
  1523. #. TRANSLATOR: The required space between number and unit is already included
  1524. #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
  1525. #: apt-private/private-install.cc
  1526. #, c-format
  1527. msgid "Need to get %sB of archives.\n"
  1528. msgstr "Je potrebné stiahnuť %sB archívov.\n"
  1529. #. TRANSLATOR: The required space between number and unit is already included
  1530. #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
  1531. #: apt-private/private-install.cc
  1532. #, c-format
  1533. msgid "After this operation, %sB of additional disk space will be used.\n"
  1534. msgstr "Po tejto operácii sa na disku použije ďalších %sB.\n"
  1535. #. TRANSLATOR: The required space between number and unit is already included
  1536. #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
  1537. #: apt-private/private-install.cc
  1538. #, c-format
  1539. msgid "After this operation, %sB disk space will be freed.\n"
  1540. msgstr "Po tejto operácii sa na disku uvoľní %sB.\n"
  1541. #: apt-private/private-install.cc
  1542. msgid "Trivial Only specified but this is not a trivial operation."
  1543. msgstr "Zadané „iba triviálne“, ale toto nie je triviálna operácia."
  1544. #. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be
  1545. #. careful with hard to type or special characters (like non-breaking spaces)
  1546. #: apt-private/private-install.cc
  1547. msgid "Yes, do as I say!"
  1548. msgstr "Áno, urob to, čo vravím!"
  1549. #: apt-private/private-install.cc
  1550. #, c-format
  1551. msgid ""
  1552. "You are about to do something potentially harmful.\n"
  1553. "To continue type in the phrase '%s'\n"
  1554. " ?] "
  1555. msgstr ""
  1556. "Možno sa chystáte vykonať niečo škodlivé.\n"
  1557. "Ak chcete pokračovať, opíšte frázu „%s“\n"
  1558. " ?]"
  1559. #: apt-private/private-install.cc
  1560. msgid "Abort."
  1561. msgstr "Prerušené."
  1562. #: apt-private/private-install.cc
  1563. msgid "Do you want to continue?"
  1564. msgstr "Chcete pokračovať?"
  1565. #: apt-private/private-install.cc
  1566. msgid "Some files failed to download"
  1567. msgstr "Niektoré súbory sa nedajú stiahnuť"
  1568. #: apt-private/private-install.cc apt-private/private-source.cc
  1569. msgid "Download complete and in download only mode"
  1570. msgstr "Sťahovanie ukončené v režime „iba stiahnuť“"
  1571. #: apt-private/private-install.cc
  1572. msgid ""
  1573. "Unable to fetch some archives, maybe run apt-get update or try with --fix-"
  1574. "missing?"
  1575. msgstr ""
  1576. "Niektoré archívy sa nedajú stiahnuť. Skúste spustiť apt-get update alebo --"
  1577. "fix-missing"
  1578. #: apt-private/private-install.cc
  1579. msgid "--fix-missing and media swapping is not currently supported"
  1580. msgstr "--fix-missing a výmena nosiča nie sú momentálne podporované"
  1581. #: apt-private/private-install.cc
  1582. msgid "Unable to correct missing packages."
  1583. msgstr "Chýbajúce balíky sa nedajú opraviť."
  1584. #: apt-private/private-install.cc
  1585. msgid "Aborting install."
  1586. msgstr "Inštalácia sa prerušuje."
  1587. #: apt-private/private-install.cc
  1588. msgid ""
  1589. "The following package disappeared from your system as\n"
  1590. "all files have been overwritten by other packages:"
  1591. msgid_plural ""
  1592. "The following packages disappeared from your system as\n"
  1593. "all files have been overwritten by other packages:"
  1594. msgstr[0] ""
  1595. "Nasledovný balík zmizol z vášho systému, pretože\n"
  1596. "všetky súbory boli prepísané inými balíkmi:"
  1597. msgstr[1] ""
  1598. "Nasledovné balíky zmizli z vášho systému, pretože\n"
  1599. "všetky súbory boli prepísané inými balíkmi:"
  1600. msgstr[2] ""
  1601. "Nasledovné balíky zmizli z vášho systému, pretože\n"
  1602. "všetky súbory boli prepísané inými balíkmi:"
  1603. #: apt-private/private-install.cc
  1604. msgid "Note: This is done automatically and on purpose by dpkg."
  1605. msgstr "Pozn.: Toto robí dpkg automaticky a zámerne."
  1606. #: apt-private/private-install.cc
  1607. msgid "We are not supposed to delete stuff, can't start AutoRemover"
  1608. msgstr "Nemajú sa odstraňovať veci, nespustí sa AutoRemover"
  1609. #: apt-private/private-install.cc
  1610. msgid ""
  1611. "Hmm, seems like the AutoRemover destroyed something which really\n"
  1612. "shouldn't happen. Please file a bug report against apt."
  1613. msgstr ""
  1614. "Hmm, zdá sa, že AutoRemover niečo zničil, čo sa naozaj nemalo stať.\n"
  1615. "Prosím, pošlite hlásenie o chybe balíka apt."
  1616. #: apt-private/private-install.cc
  1617. msgid "Internal Error, AutoRemover broke stuff"
  1618. msgstr "Vnútorná chyba, AutoRemover niečo pokazil"
  1619. #: apt-private/private-install.cc
  1620. msgid ""
  1621. "The following package was automatically installed and is no longer required:"
  1622. msgid_plural ""
  1623. "The following packages were automatically installed and are no longer "
  1624. "required:"
  1625. msgstr[0] ""
  1626. "Nasledovný balík bol nainštalovaný automaticky a už viac nie je potrebný:"
  1627. msgstr[1] ""
  1628. "Nasledovné balíky boli nainštalované automaticky a už viac nie sú potrebné:"
  1629. msgstr[2] ""
  1630. "Nasledovné balíky boli nainštalované automaticky a už viac nie sú potrebné:"
  1631. #: apt-private/private-install.cc
  1632. #, c-format
  1633. msgid "%lu package was automatically installed and is no longer required.\n"
  1634. msgid_plural ""
  1635. "%lu packages were automatically installed and are no longer required.\n"
  1636. msgstr[0] ""
  1637. "%lu balík bol nainštalovaný automaticky a už viac nie je potrebný.\n"
  1638. msgstr[1] ""
  1639. "%lu balíkov bolo nainštalovaných automaticky a už viac nie sú potrebné.\n"
  1640. msgstr[2] ""
  1641. "%lu balíkov bolo nainštalovaných automaticky a už viac nie sú potrebné.\n"
  1642. #: apt-private/private-install.cc
  1643. #, c-format
  1644. msgid "Use '%s' to remove it."
  1645. msgid_plural "Use '%s' to remove them."
  1646. msgstr[0] "Na jeho odstránenie použite „%s“."
  1647. msgstr[1] "Na ich odstránenie použite „%s“."
  1648. msgstr[2] "Na ich odstránenie použite „%s“."
  1649. #: apt-private/private-install.cc
  1650. msgid "You might want to run 'apt-get -f install' to correct these:"
  1651. msgstr "Možno to budete chcieť napraviť spustením „apt-get -f install“:"
  1652. #: apt-private/private-install.cc
  1653. msgid ""
  1654. "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
  1655. "solution)."
  1656. msgstr ""
  1657. "Nesplnené závislosti. Skúste spustiť „apt-get -f install“ bez balíkov (alebo "
  1658. "navrhnite riešenie)."
  1659. #: apt-private/private-install.cc
  1660. #, fuzzy
  1661. msgid "The following additional packages will be installed:"
  1662. msgstr "Nainštalujú sa nasledovné extra balíky:"
  1663. #: apt-private/private-install.cc
  1664. msgid "Suggested packages:"
  1665. msgstr "Navrhované balíky:"
  1666. #: apt-private/private-install.cc
  1667. msgid "Recommended packages:"
  1668. msgstr "Odporúčané balíky:"
  1669. #: apt-private/private-install.cc
  1670. #, c-format
  1671. msgid "Skipping %s, it is already installed and upgrade is not set.\n"
  1672. msgstr "Preskakuje sa %s, pretože je už nainštalovaný.\n"
  1673. #: apt-private/private-install.cc
  1674. #, c-format
  1675. msgid "Skipping %s, it is not installed and only upgrades are requested.\n"
  1676. msgstr ""
  1677. "Preskakuje sa %s, nie je nainštalovaný a bola vy6iadan8 iba aktualizácia.\n"
  1678. #: apt-private/private-install.cc
  1679. #, c-format
  1680. msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
  1681. msgstr "Nie je možná reinštalácia %s, pretože sa nedá stiahnuť.\n"
  1682. #. TRANSLATORS: First string is package name, second is version
  1683. #: apt-private/private-install.cc
  1684. #, fuzzy, c-format
  1685. msgid "%s is already the newest version (%s).\n"
  1686. msgstr "%s je už najnovšej verzie.\n"
  1687. #: apt-private/private-install.cc cmdline/apt-get.cc cmdline/apt-mark.cc
  1688. #, c-format
  1689. msgid "%s set to manually installed.\n"
  1690. msgstr "%s je označený ako manuálne nainštalovaný.\n"
  1691. #: apt-private/private-install.cc
  1692. #, c-format
  1693. msgid "Selected version '%s' (%s) for '%s'\n"
  1694. msgstr "Vybraná verzia „%s“ (%s) pre „%s“\n"
  1695. #: apt-private/private-install.cc
  1696. #, c-format
  1697. msgid "Selected version '%s' (%s) for '%s' because of '%s'\n"
  1698. msgstr "Vybraná verzia „%s“ (%s) pre „%s“ kvôli „%s“\n"
  1699. #: apt-private/private-list.cc
  1700. msgid "Listing"
  1701. msgstr ""
  1702. #: apt-private/private-list.cc
  1703. #, c-format
  1704. msgid "There is %i additional version. Please use the '-a' switch to see it"
  1705. msgid_plural ""
  1706. "There are %i additional versions. Please use the '-a' switch to see them."
  1707. msgstr[0] ""
  1708. msgstr[1] ""
  1709. msgstr[2] ""
  1710. #. TRANSLATORS: placeholder is a binary name like apt or apt-get
  1711. #: apt-private/private-main.cc
  1712. #, c-format
  1713. msgid ""
  1714. "NOTE: This is only a simulation!\n"
  1715. " %s needs root privileges for real execution.\n"
  1716. " Keep also in mind that locking is deactivated,\n"
  1717. " so don't depend on the relevance to the real current situation!\n"
  1718. msgstr ""
  1719. "POZN.: Toto je iba simulácia!\n"
  1720. " %s potrebuje na skutočné spustenie práva používateľa root.\n"
  1721. " Tiež pamätajte, že zamykanie je deaktivované, takže\n"
  1722. " sa nespoliehajte na to že to bude platiť v reálnej situácii!\n"
  1723. #: apt-private/private-output.cc apt-private/private-show.cc
  1724. msgid "unknown"
  1725. msgstr ""
  1726. #: apt-private/private-output.cc
  1727. #, fuzzy, c-format
  1728. msgid "[installed,upgradable to: %s]"
  1729. msgstr " [Nainštalovaný]"
  1730. #: apt-private/private-output.cc
  1731. #, fuzzy
  1732. msgid "[installed,local]"
  1733. msgstr " [Nainštalovaný]"
  1734. #: apt-private/private-output.cc
  1735. msgid "[installed,auto-removable]"
  1736. msgstr ""
  1737. #: apt-private/private-output.cc
  1738. #, fuzzy
  1739. msgid "[installed,automatic]"
  1740. msgstr " [Nainštalovaný]"
  1741. #: apt-private/private-output.cc
  1742. #, fuzzy
  1743. msgid "[installed]"
  1744. msgstr " [Nainštalovaný]"
  1745. #: apt-private/private-output.cc
  1746. #, c-format
  1747. msgid "[upgradable from: %s]"
  1748. msgstr ""
  1749. #: apt-private/private-output.cc
  1750. msgid "[residual-config]"
  1751. msgstr ""
  1752. #: apt-private/private-output.cc
  1753. #, c-format
  1754. msgid "but %s is installed"
  1755. msgstr "ale nainštalovaný je %s"
  1756. #: apt-private/private-output.cc
  1757. #, c-format
  1758. msgid "but %s is to be installed"
  1759. msgstr "ale inštalovať sa bude %s"
  1760. #: apt-private/private-output.cc
  1761. msgid "but it is not installable"
  1762. msgstr "ale sa nedá nainštalovať"
  1763. #: apt-private/private-output.cc
  1764. msgid "but it is a virtual package"
  1765. msgstr "ale je to virtuálny balík"
  1766. #: apt-private/private-output.cc
  1767. msgid "but it is not going to be installed"
  1768. msgstr "ale sa nebude inštalovať"
  1769. #: apt-private/private-output.cc
  1770. msgid "but it is not installed"
  1771. msgstr "ale nie je nainštalovaný"
  1772. #: apt-private/private-output.cc
  1773. msgid " or"
  1774. msgstr " alebo"
  1775. #: apt-private/private-output.cc
  1776. msgid "The following packages have unmet dependencies:"
  1777. msgstr "Nasledovné balíky majú nesplnené závislosti:"
  1778. #: apt-private/private-output.cc
  1779. msgid "The following NEW packages will be installed:"
  1780. msgstr "Nainštalujú sa nasledovné NOVÉ balíky:"
  1781. #: apt-private/private-output.cc
  1782. msgid "The following packages will be REMOVED:"
  1783. msgstr "Nasledovné balíky sa ODSTRÁNIA:"
  1784. #: apt-private/private-output.cc
  1785. msgid "The following packages have been kept back:"
  1786. msgstr "Nasledovné balíky sa ponechajú v súčasnej verzii:"
  1787. #: apt-private/private-output.cc
  1788. msgid "The following packages will be upgraded:"
  1789. msgstr "Nasledovné balíky sa aktualizujú:"
  1790. #: apt-private/private-output.cc
  1791. msgid "The following packages will be DOWNGRADED:"
  1792. msgstr "Nasledovné balíky sa DEGRADUJÚ:"
  1793. #: apt-private/private-output.cc
  1794. msgid "The following held packages will be changed:"
  1795. msgstr "Nasledovné pridržané balíky sa zmenia:"
  1796. #: apt-private/private-output.cc
  1797. #, c-format
  1798. msgid "%s (due to %s)"
  1799. msgstr "%s (kvôli %s)"
  1800. #: apt-private/private-output.cc
  1801. msgid ""
  1802. "WARNING: The following essential packages will be removed.\n"
  1803. "This should NOT be done unless you know exactly what you are doing!"
  1804. msgstr ""
  1805. "UPOZORNENIE: Nasledovné dôležité balíky sa odstránia.\n"
  1806. "Ak presne neviete, čo robíte, tak to NEROBTE!"
  1807. #: apt-private/private-output.cc
  1808. #, c-format
  1809. msgid "%lu upgraded, %lu newly installed, "
  1810. msgstr "%lu aktualizovaných, %lu nových nainštalovaných, "
  1811. #: apt-private/private-output.cc
  1812. #, c-format
  1813. msgid "%lu reinstalled, "
  1814. msgstr "%lu reinštalovaných, "
  1815. #: apt-private/private-output.cc
  1816. #, c-format
  1817. msgid "%lu downgraded, "
  1818. msgstr "%lu degradovaných, "
  1819. #: apt-private/private-output.cc
  1820. #, c-format
  1821. msgid "%lu to remove and %lu not upgraded.\n"
  1822. msgstr "%lu na odstránenie a %lu neaktualizovaných.\n"
  1823. #: apt-private/private-output.cc
  1824. #, c-format
  1825. msgid "%lu not fully installed or removed.\n"
  1826. msgstr "%lu iba čiastočne nainštalovaných alebo odstránených.\n"
  1827. #. TRANSLATOR: Yes/No question help-text: defaulting to Y[es]
  1828. #. e.g. "Do you want to continue? [Y/n] "
  1829. #. The user has to answer with an input matching the
  1830. #. YESEXPR/NOEXPR defined in your l10n.
  1831. #: apt-private/private-output.cc
  1832. msgid "[Y/n]"
  1833. msgstr ""
  1834. #. TRANSLATOR: Yes/No question help-text: defaulting to N[o]
  1835. #. e.g. "Should this file be removed? [y/N] "
  1836. #. The user has to answer with an input matching the
  1837. #. YESEXPR/NOEXPR defined in your l10n.
  1838. #: apt-private/private-output.cc
  1839. msgid "[y/N]"
  1840. msgstr ""
  1841. #. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set
  1842. #: apt-private/private-output.cc
  1843. msgid "Y"
  1844. msgstr ""
  1845. #. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set
  1846. #: apt-private/private-output.cc
  1847. msgid "N"
  1848. msgstr ""
  1849. #: apt-private/private-search.cc
  1850. msgid "You must give at least one search pattern"
  1851. msgstr "Musíte zadať aspoň jeden vyhľadávací vzor"
  1852. #: apt-private/private-search.cc
  1853. msgid "Full Text Search"
  1854. msgstr ""
  1855. #: apt-private/private-show.cc cmdline/apt-cache.cc
  1856. #, c-format
  1857. msgid "Package file %s is out of sync."
  1858. msgstr "Súbor balíkov %s je neaktuálny."
  1859. #: apt-private/private-show.cc
  1860. #, c-format
  1861. msgid "There is %i additional record. Please use the '-a' switch to see it"
  1862. msgid_plural ""
  1863. "There are %i additional records. Please use the '-a' switch to see them."
  1864. msgstr[0] ""
  1865. msgstr[1] ""
  1866. msgstr[2] ""
  1867. #: apt-private/private-show.cc
  1868. msgid "not a real package (virtual)"
  1869. msgstr ""
  1870. #: apt-private/private-show.cc
  1871. msgid "Package files:"
  1872. msgstr "Súbory balíka:"
  1873. #: apt-private/private-show.cc
  1874. msgid "Cache is out of sync, can't x-ref a package file"
  1875. msgstr "Vyrovnávacia pamäť je neaktuálna, nedá sa odvolať na súbor balíka"
  1876. #. Show any packages have explicit pins
  1877. #: apt-private/private-show.cc
  1878. msgid "Pinned packages:"
  1879. msgstr "Pripevnené balíky:"
  1880. #. Print the package name and the version we are forcing to
  1881. #: apt-private/private-show.cc
  1882. #, c-format
  1883. msgid "%s -> %s with priority %d\n"
  1884. msgstr ""
  1885. #: apt-private/private-show.cc
  1886. msgid " Installed: "
  1887. msgstr " Nainštalovaná verzia: "
  1888. #: apt-private/private-show.cc
  1889. msgid " Candidate: "
  1890. msgstr " Kandidát: "
  1891. #: apt-private/private-show.cc
  1892. msgid "(none)"
  1893. msgstr "(žiadna)"
  1894. #. Show the priority tables
  1895. #: apt-private/private-show.cc
  1896. msgid " Version table:"
  1897. msgstr " Tabuľka verzií:"
  1898. #: apt-private/private-source.cc
  1899. #, fuzzy, c-format
  1900. msgid "Can not find a package for architecture '%s'"
  1901. msgstr "Nebol nájdený žiaden balík zodpovedajúci regulárnemu výrazu „%s“"
  1902. #: apt-private/private-source.cc
  1903. #, fuzzy, c-format
  1904. msgid "Can not find a package '%s' with version '%s'"
  1905. msgstr "Nebol nájdený žiaden balík zodpovedajúci regulárnemu výrazu „%s“"
  1906. #: apt-private/private-source.cc
  1907. #, fuzzy, c-format
  1908. msgid "Can not find a package '%s' with release '%s'"
  1909. msgstr "Nebol nájdený žiaden balík zodpovedajúci regulárnemu výrazu „%s“"
  1910. #: apt-private/private-source.cc
  1911. #, c-format
  1912. msgid "Picking '%s' as source package instead of '%s'\n"
  1913. msgstr "Vyberá sa „%s“ ako zdrojový balík namiesto „%s“\n"
  1914. #: apt-private/private-source.cc
  1915. #, fuzzy, c-format
  1916. msgid "Can not find version '%s' of package '%s'"
  1917. msgstr "Ignorovať nedostupnú verziu „%s“ balíka „%s“"
  1918. #: apt-private/private-source.cc
  1919. msgid "Must specify at least one package to fetch source for"
  1920. msgstr "Musíte zadať aspoň jeden balík, pre ktorý sa stiahnu zdrojové texty"
  1921. #: apt-private/private-source.cc
  1922. #, c-format
  1923. msgid "Unable to find a source package for %s"
  1924. msgstr "Nedá sa nájsť zdrojový balík pre %s"
  1925. #: apt-private/private-source.cc
  1926. #, c-format
  1927. msgid ""
  1928. "NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n"
  1929. "%s\n"
  1930. msgstr ""
  1931. "POZN.: tvorba balíka „%s“ sa spravuje v sytéme na riadenie revízií „%s“ na "
  1932. "adrese:\n"
  1933. "%s\n"
  1934. #: apt-private/private-source.cc
  1935. #, c-format
  1936. msgid ""
  1937. "Please use:\n"
  1938. "%s\n"
  1939. "to retrieve the latest (possibly unreleased) updates to the package.\n"
  1940. msgstr ""
  1941. "Prosím, použite:\n"
  1942. "%s\n"
  1943. "ak chcete získať najnovšie (a pravdepodobne zatiaľ nevydané) aktualizácie "
  1944. "balíka.\n"
  1945. #: apt-private/private-source.cc
  1946. #, c-format
  1947. msgid "Skipping already downloaded file '%s'\n"
  1948. msgstr "Preskakuje sa už stiahnutý súbor „%s“\n"
  1949. #. TRANSLATOR: The required space between number and unit is already included
  1950. #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
  1951. #: apt-private/private-source.cc
  1952. #, c-format
  1953. msgid "Need to get %sB/%sB of source archives.\n"
  1954. msgstr "Je potrebné stiahnuť %sB/%sB zdrojových archívov.\n"
  1955. #. TRANSLATOR: The required space between number and unit is already included
  1956. #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
  1957. #: apt-private/private-source.cc
  1958. #, c-format
  1959. msgid "Need to get %sB of source archives.\n"
  1960. msgstr "Je potrebné stiahnuť %sB zdrojových archívov.\n"
  1961. #: apt-private/private-source.cc
  1962. #, c-format
  1963. msgid "Fetch source %s\n"
  1964. msgstr "Stiahnuť zdroj %s\n"
  1965. #: apt-private/private-source.cc
  1966. msgid "Failed to fetch some archives."
  1967. msgstr "Zlyhalo stiahnutie niektorých archívov."
  1968. #: apt-private/private-source.cc
  1969. #, c-format
  1970. msgid "Skipping unpack of already unpacked source in %s\n"
  1971. msgstr "Preskakuje sa rozbalenie už rozbaleného zdroja v %s\n"
  1972. #: apt-private/private-source.cc
  1973. #, c-format
  1974. msgid "Unpack command '%s' failed.\n"
  1975. msgstr "Príkaz na rozbalenie „%s“ zlyhal.\n"
  1976. #: apt-private/private-source.cc
  1977. #, c-format
  1978. msgid "Check if the 'dpkg-dev' package is installed.\n"
  1979. msgstr "Skontrolujte, či je nainštalovaný balík „dpkg-dev“.\n"
  1980. #: apt-private/private-source.cc
  1981. #, c-format
  1982. msgid "Build command '%s' failed.\n"
  1983. msgstr "Príkaz na zostavenie „%s“ zlyhal.\n"
  1984. #: apt-private/private-source.cc
  1985. #, c-format
  1986. msgid "Unable to get build-dependency information for %s"
  1987. msgstr "Nedajú sa získať závislosti na zostavenie %s"
  1988. #: apt-private/private-source.cc
  1989. #, c-format
  1990. msgid "%s has no build depends.\n"
  1991. msgstr "%s nemá žiadne závislosti na zostavenie.\n"
  1992. #: apt-private/private-source.cc
  1993. msgid "Must specify at least one package to check builddeps for"
  1994. msgstr ""
  1995. "Musíte zadať aspoň jeden balík, pre ktorý sa budú overovať závislosti na "
  1996. "zostavenie"
  1997. #: apt-private/private-source.cc
  1998. #, c-format
  1999. msgid ""
  2000. "No architecture information available for %s. See apt.conf(5) APT::"
  2001. "Architectures for setup"
  2002. msgstr ""
  2003. "Informácie o architektúre nie sú dostupné pre %s. Informácie o nastavení "
  2004. "nájdete v apt.conf(5) APT::Architectures"
  2005. #: apt-private/private-source.cc
  2006. #, c-format
  2007. msgid "Note, using directory '%s' to get the build dependencies\n"
  2008. msgstr ""
  2009. #: apt-private/private-source.cc
  2010. #, fuzzy, c-format
  2011. msgid "Note, using file '%s' to get the build dependencies\n"
  2012. msgstr "Spracovanie závislostí na zostavenie zlyhalo"
  2013. #: apt-private/private-source.cc
  2014. msgid "Failed to process build dependencies"
  2015. msgstr "Spracovanie závislostí na zostavenie zlyhalo"
  2016. #: apt-private/private-sources.cc
  2017. #, fuzzy, c-format
  2018. msgid "Failed to parse %s. Edit again? "
  2019. msgstr "Premenovanie %s na %s zlyhalo"
  2020. #: apt-private/private-sources.cc
  2021. #, c-format
  2022. msgid "Your '%s' file changed, please run 'apt-get update'."
  2023. msgstr ""
  2024. #: apt-private/private-unmet.cc
  2025. #, c-format
  2026. msgid "Package %s version %s has an unmet dep:\n"
  2027. msgstr "Balík %s verzie %s má nesplnené závislosti:\n"
  2028. #: apt-private/private-update.cc
  2029. msgid "The update command takes no arguments"
  2030. msgstr "Príkaz update neprijíma žiadne argumenty"
  2031. #: apt-private/private-update.cc
  2032. #, c-format
  2033. msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n"
  2034. msgid_plural ""
  2035. "%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n"
  2036. msgstr[0] ""
  2037. msgstr[1] ""
  2038. msgstr[2] ""
  2039. #: apt-private/private-update.cc
  2040. msgid "All packages are up to date."
  2041. msgstr ""
  2042. #: cmdline/apt-cache.cc
  2043. #, fuzzy
  2044. msgid "apt-cache stats does not take any arguments"
  2045. msgstr "Príkaz update neprijíma žiadne argumenty"
  2046. #: cmdline/apt-cache.cc
  2047. msgid "Total package names: "
  2048. msgstr "Celkom názvov balíkov: "
  2049. #: cmdline/apt-cache.cc
  2050. msgid "Total package structures: "
  2051. msgstr "Celkom štruktúr balíkov: "
  2052. #: cmdline/apt-cache.cc
  2053. msgid " Normal packages: "
  2054. msgstr " Normálnych balíkov: "
  2055. #: cmdline/apt-cache.cc
  2056. msgid " Pure virtual packages: "
  2057. msgstr " Čisto virtuálnych balíkov: "
  2058. #: cmdline/apt-cache.cc
  2059. msgid " Single virtual packages: "
  2060. msgstr " Jednoduchých virtuálnych balíkov: "
  2061. #: cmdline/apt-cache.cc
  2062. msgid " Mixed virtual packages: "
  2063. msgstr " Zmiešaných virtuálnych balíkov: "
  2064. #: cmdline/apt-cache.cc
  2065. msgid " Missing: "
  2066. msgstr " Chýbajúcich: "
  2067. #: cmdline/apt-cache.cc
  2068. msgid "Total distinct versions: "
  2069. msgstr "Celkom rôznych verzií: "
  2070. #: cmdline/apt-cache.cc
  2071. msgid "Total distinct descriptions: "
  2072. msgstr "Celkom rôznych popisov: "
  2073. #: cmdline/apt-cache.cc
  2074. msgid "Total dependencies: "
  2075. msgstr "Celkom závislostí: "
  2076. #: cmdline/apt-cache.cc
  2077. msgid "Total ver/file relations: "
  2078. msgstr "Celkom vzťahov ver/súbor: "
  2079. #: cmdline/apt-cache.cc
  2080. msgid "Total Desc/File relations: "
  2081. msgstr "Celkom vzťahov popis/súbor: "
  2082. #: cmdline/apt-cache.cc
  2083. msgid "Total Provides mappings: "
  2084. msgstr "Celkom poskytnutých mapovaní: "
  2085. #: cmdline/apt-cache.cc
  2086. msgid "Total globbed strings: "
  2087. msgstr "Celkom globovaných reťazcov: "
  2088. #: cmdline/apt-cache.cc
  2089. msgid "Total slack space: "
  2090. msgstr "Celkom jalového miesta: "
  2091. #: cmdline/apt-cache.cc
  2092. msgid "Total space accounted for: "
  2093. msgstr "Celkom priradeného miesta: "
  2094. #: cmdline/apt-cache.cc
  2095. msgid "This command is deprecated. Please use 'apt-mark showauto' instead."
  2096. msgstr ""
  2097. "Tento príkaz je zavrhovaný. Prosím, použite namiesto neho „apt-mark "
  2098. "showauto“."
  2099. #: cmdline/apt-cache.cc
  2100. msgid ""
  2101. "Usage: apt-cache [options] command\n"
  2102. " apt-cache [options] show pkg1 [pkg2 ...]\n"
  2103. "\n"
  2104. "apt-cache queries and displays available information about installed\n"
  2105. "and installable packages. It works exclusively on the data acquired\n"
  2106. "into the local cache via the 'update' command of e.g. apt-get. The\n"
  2107. "displayed information may therefore be outdated if the last update was\n"
  2108. "too long ago, but in exchange apt-cache works independently of the\n"
  2109. "availability of the configured sources (e.g. offline).\n"
  2110. msgstr ""
  2111. #: cmdline/apt-cache.cc
  2112. msgid "Show source records"
  2113. msgstr "Zobrazí zdrojové záznamy"
  2114. #: cmdline/apt-cache.cc
  2115. msgid "Search the package list for a regex pattern"
  2116. msgstr "Prehľadá zoznam balíkov podľa regulárneho výrazu"
  2117. #: cmdline/apt-cache.cc
  2118. msgid "Show raw dependency information for a package"
  2119. msgstr "Zobrazí základné údaje o závislostiach balíka"
  2120. #: cmdline/apt-cache.cc
  2121. msgid "Show reverse dependency information for a package"
  2122. msgstr "Zobrazí údaje o spätných závislostiach balíka"
  2123. #: cmdline/apt-cache.cc
  2124. msgid "Show a readable record for the package"
  2125. msgstr "Zobrazí prehľadné informácie o balíku"
  2126. #: cmdline/apt-cache.cc
  2127. msgid "List the names of all packages in the system"
  2128. msgstr "Vypíše zoznam názvov všetkých balíkov v systéme"
  2129. #: cmdline/apt-cache.cc
  2130. msgid "Show policy settings"
  2131. msgstr "Zobrazí nastavenia zásad"
  2132. #: cmdline/apt-cdrom.cc
  2133. msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'"
  2134. msgstr "Prosím, zadajte názov tohto disku, napríklad „Debian 5.0.3 Disk 1“"
  2135. #: cmdline/apt-cdrom.cc
  2136. #, fuzzy
  2137. msgid "Please insert a Disc in the drive and press [Enter]"
  2138. msgstr "Vložte disk do mechaniky a stlačte Enter"
  2139. #: cmdline/apt-cdrom.cc
  2140. #, c-format
  2141. msgid "Failed to mount '%s' to '%s'"
  2142. msgstr "Pripojenie „%s“ na „%s“ zlyhalo"
  2143. #: cmdline/apt-cdrom.cc
  2144. msgid ""
  2145. "No CD-ROM could be auto-detected or found using the default mount point.\n"
  2146. "You may try the --cdrom option to set the CD-ROM mount point.\n"
  2147. "See 'man apt-cdrom' for more information about the CD-ROM auto-detection and "
  2148. "mount point."
  2149. msgstr ""
  2150. #: cmdline/apt-cdrom.cc
  2151. msgid "Repeat this process for the rest of the CDs in your set."
  2152. msgstr "Zopakujte tento postup pre všetky CD v sade diskov."
  2153. #: cmdline/apt-cdrom.cc
  2154. msgid ""
  2155. "Usage: apt-cdrom [options] command\n"
  2156. "\n"
  2157. "apt-cdrom is used to add CDROM's, USB flashdrives and other removable\n"
  2158. "media types as package sources to APT. The mount point and device\n"
  2159. "information is taken from apt.conf(5), udev(7) and fstab(5).\n"
  2160. msgstr ""
  2161. #: cmdline/apt-config.cc
  2162. msgid "Arguments not in pairs"
  2163. msgstr "Argumenty nie sú vo dvojiciach"
  2164. #: cmdline/apt-config.cc
  2165. #, fuzzy
  2166. msgid ""
  2167. "Usage: apt-config [options] command\n"
  2168. "\n"
  2169. "apt-config is an interface to the configuration settings used by\n"
  2170. "all APT tools, mainly intended for debugging and shell scripting.\n"
  2171. msgstr ""
  2172. "Použitie: apt-config [voľby] príkaz\n"
  2173. "\n"
  2174. "apt-config je jednoduchý nástroj na čítanie konfiguračného súboru APT\n"
  2175. #: cmdline/apt-config.cc
  2176. msgid "get configuration values via shell evaluation"
  2177. msgstr ""
  2178. #: cmdline/apt-config.cc
  2179. msgid "show the active configuration setting"
  2180. msgstr ""
  2181. #: cmdline/apt-dump-solver.cc
  2182. msgid ""
  2183. "Usage: apt-dump-solver\n"
  2184. "\n"
  2185. "apt-dump-solver is an interface to store an EDSP scenario in\n"
  2186. "a file and optionally forwards it to another solver.\n"
  2187. msgstr ""
  2188. #: cmdline/apt-extracttemplates.cc
  2189. #, fuzzy
  2190. msgid ""
  2191. "Usage: apt-extracttemplates file1 [file2 ...]\n"
  2192. "\n"
  2193. "apt-extracttemplates is used to extract config and template files\n"
  2194. "from debian packages. It is used mainly by debconf(1) to prompt for\n"
  2195. "configuration questions before installation of packages.\n"
  2196. msgstr ""
  2197. "Použitie: apt-extracttemplates súbor1 [súbor2 ...]\n"
  2198. "\n"
  2199. "apt-extracttemplates je nástroj na vyňatie konfiguračných skriptov\n"
  2200. "a šablón z balíkov Debian\n"
  2201. "\n"
  2202. "Voľby:\n"
  2203. " -h Tento pomocník.\n"
  2204. " -t Nastaví dočasný adresár\n"
  2205. " -c=? Načíta tento konfiguračný súbor\n"
  2206. " -o=? Nastaví ľubovoľnú voľbu, napr. -o dir::cache=/tmp\n"
  2207. #: cmdline/apt-extracttemplates.cc
  2208. msgid "Cannot get debconf version. Is debconf installed?"
  2209. msgstr "Nedá sa určiť verzia programu debconf. Je debconf nainštalovaný?"
  2210. #: cmdline/apt-get.cc
  2211. #, c-format
  2212. msgid "Couldn't find package %s"
  2213. msgstr "Balík %s sa nedá nájsť"
  2214. #: cmdline/apt-get.cc cmdline/apt-mark.cc
  2215. #, c-format
  2216. msgid "%s set to automatically installed.\n"
  2217. msgstr "%s je označený ako automaticky nainštalovaný.\n"
  2218. #: cmdline/apt-get.cc cmdline/apt-mark.cc
  2219. msgid ""
  2220. "This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' "
  2221. "instead."
  2222. msgstr ""
  2223. "Tento príkaz je zavrhovaný. Prosím, použite namiesto neho „apt-mark auto“ a "
  2224. "„apt-mark manual“."
  2225. #: cmdline/apt-get.cc
  2226. msgid "Internal error, problem resolver broke stuff"
  2227. msgstr "Vnútorná chyba, „problem resolver“ niečo pokazil"
  2228. #: cmdline/apt-get.cc
  2229. msgid "Supported modules:"
  2230. msgstr "Podporované moduly:"
  2231. #: cmdline/apt-get.cc
  2232. #, fuzzy
  2233. msgid ""
  2234. "Usage: apt-get [options] command\n"
  2235. " apt-get [options] install|remove pkg1 [pkg2 ...]\n"
  2236. " apt-get [options] source pkg1 [pkg2 ...]\n"
  2237. "\n"
  2238. "apt-get is a command line interface for retrieval of packages\n"
  2239. "and information about them from authenticated sources and\n"
  2240. "for installation, upgrade and removal of packages together\n"
  2241. "with their dependencies.\n"
  2242. msgstr ""
  2243. "Použitie: apt-get [voľby] príkaz\n"
  2244. " apt-get [voľby] install|remove balík1 [balík2 ...]\n"
  2245. " apt-get [voľby] source balík1 [balík2 ...]\n"
  2246. "\n"
  2247. "apt-get je jednoduché rozhranie na príkazovom riadku na sťahovanie\n"
  2248. "a inštaláciu balíkov. Najpoužívanejšími príkazmi sú update a install.\n"
  2249. #: cmdline/apt-get.cc
  2250. msgid "Retrieve new lists of packages"
  2251. msgstr "Získa nové zoznamy balíkov"
  2252. #: cmdline/apt-get.cc
  2253. msgid "Perform an upgrade"
  2254. msgstr "Vykoná aktualizáciu"
  2255. #: cmdline/apt-get.cc
  2256. msgid "Install new packages (pkg is libc6 not libc6.deb)"
  2257. msgstr "Nainštaluje nové balíky (balík je libc6, nie libc6.deb)"
  2258. #: cmdline/apt-get.cc
  2259. msgid "Remove packages"
  2260. msgstr "Odstráni balíky"
  2261. #: cmdline/apt-get.cc
  2262. msgid "Remove packages and config files"
  2263. msgstr "Odstráni a balíky a ich konfiguračné súbory"
  2264. #: cmdline/apt-get.cc cmdline/apt.cc
  2265. msgid "Remove automatically all unused packages"
  2266. msgstr "Automaticky odstráni všetky nepoužité balíky"
  2267. #: cmdline/apt-get.cc
  2268. msgid "Distribution upgrade, see apt-get(8)"
  2269. msgstr "Aktualizácia distribúcie, pozri apt-get(8)"
  2270. #: cmdline/apt-get.cc
  2271. msgid "Follow dselect selections"
  2272. msgstr "Riadi sa podľa výberu v dselect"
  2273. #: cmdline/apt-get.cc
  2274. msgid "Configure build-dependencies for source packages"
  2275. msgstr "Nastaví závislosti kompilácie pre zdrojové balíky"
  2276. #: cmdline/apt-get.cc
  2277. msgid "Erase downloaded archive files"
  2278. msgstr "Zmaže stiahnuté archívy"
  2279. #: cmdline/apt-get.cc
  2280. msgid "Erase old downloaded archive files"
  2281. msgstr "Zmaže staré stiahnuté archívy"
  2282. #: cmdline/apt-get.cc
  2283. msgid "Verify that there are no broken dependencies"
  2284. msgstr "Overí, či neexistujú poškodené závislosti"
  2285. #: cmdline/apt-get.cc
  2286. msgid "Download source archives"
  2287. msgstr "Stiahne zdrojové archívy"
  2288. #: cmdline/apt-get.cc
  2289. msgid "Download the binary package into the current directory"
  2290. msgstr ""
  2291. #: cmdline/apt-get.cc
  2292. msgid "Download and display the changelog for the given package"
  2293. msgstr ""
  2294. #: cmdline/apt-helper.cc
  2295. msgid "Need one URL as argument"
  2296. msgstr ""
  2297. #: cmdline/apt-helper.cc
  2298. #, fuzzy
  2299. msgid "Must specify at least one pair url/filename"
  2300. msgstr "Musíte zadať aspoň jeden balík, pre ktorý sa stiahnu zdrojové texty"
  2301. #: cmdline/apt-helper.cc
  2302. msgid "Download Failed"
  2303. msgstr ""
  2304. #: cmdline/apt-helper.cc
  2305. #, c-format
  2306. msgid "GetSrvRec failed for %s"
  2307. msgstr ""
  2308. #: cmdline/apt-helper.cc
  2309. msgid ""
  2310. "Usage: apt-helper [options] command\n"
  2311. " apt-helper [options] cat-file file ...\n"
  2312. " apt-helper [options] download-file uri target-path\n"
  2313. "\n"
  2314. "apt-helper bundles a variety of commands for shell scripts to use\n"
  2315. "e.g. the same proxy configuration or acquire system as APT would.\n"
  2316. msgstr ""
  2317. #: cmdline/apt-helper.cc
  2318. msgid "download the given uri to the target-path"
  2319. msgstr ""
  2320. #: cmdline/apt-helper.cc
  2321. msgid "lookup a SRV record (e.g. _http._tcp.ftp.debian.org)"
  2322. msgstr ""
  2323. #: cmdline/apt-helper.cc
  2324. msgid "concatenate files, with automatic decompression"
  2325. msgstr ""
  2326. #: cmdline/apt-helper.cc
  2327. msgid "detect proxy using apt.conf"
  2328. msgstr ""
  2329. #: cmdline/apt-internal-planner.cc
  2330. #, fuzzy
  2331. msgid ""
  2332. "Usage: apt-internal-planner\n"
  2333. "\n"
  2334. "apt-internal-planner is an interface to use the current internal\n"
  2335. "installation planner for the APT family like an external one,\n"
  2336. "for debugging or the like.\n"
  2337. msgstr ""
  2338. "Použitie: apt-internal-solver\n"
  2339. "\n"
  2340. "apt-internal-solver je rozhranie na použitie aktuálneho vnútorného\n"
  2341. "riešiteľa ako vonkajší pre rodinu APT na ladenie a pod.\n"
  2342. "\n"
  2343. "Voľby:\n"
  2344. " -h Tento pomocník.\n"
  2345. " -q Výstup vhodný do záznamu - bez indikátora priebehu\n"
  2346. " -c=? Načíta tento konfiguračný súbor\n"
  2347. " -o=? Nastaví ľubovoľnú voľbu, napr. -o dir::cache=/tmp\n"
  2348. #: cmdline/apt-internal-solver.cc
  2349. #, fuzzy
  2350. msgid ""
  2351. "Usage: apt-internal-solver\n"
  2352. "\n"
  2353. "apt-internal-solver is an interface to use the current internal\n"
  2354. "resolver for the APT family like an external one, for debugging or\n"
  2355. "the like.\n"
  2356. msgstr ""
  2357. "Použitie: apt-internal-solver\n"
  2358. "\n"
  2359. "apt-internal-solver je rozhranie na použitie aktuálneho vnútorného\n"
  2360. "riešiteľa ako vonkajší pre rodinu APT na ladenie a pod.\n"
  2361. "\n"
  2362. "Voľby:\n"
  2363. " -h Tento pomocník.\n"
  2364. " -q Výstup vhodný do záznamu - bez indikátora priebehu\n"
  2365. " -c=? Načíta tento konfiguračný súbor\n"
  2366. " -o=? Nastaví ľubovoľnú voľbu, napr. -o dir::cache=/tmp\n"
  2367. #: cmdline/apt-mark.cc
  2368. #, c-format
  2369. msgid "%s can not be marked as it is not installed.\n"
  2370. msgstr "%s nemožno označiť, pretože nie je nainštalovaný.\n"
  2371. #: cmdline/apt-mark.cc
  2372. #, c-format
  2373. msgid "%s was already set to manually installed.\n"
  2374. msgstr "%s už bol označený ako manuálne nainštalovaný.\n"
  2375. #: cmdline/apt-mark.cc
  2376. #, c-format
  2377. msgid "%s was already set to automatically installed.\n"
  2378. msgstr "%s už bol označený ako automaticky nainštalovaný.\n"
  2379. #: cmdline/apt-mark.cc
  2380. #, c-format
  2381. msgid "%s was already set on hold.\n"
  2382. msgstr "%s bol už nastavený na podržanie.\n"
  2383. #: cmdline/apt-mark.cc
  2384. #, c-format
  2385. msgid "%s was already not hold.\n"
  2386. msgstr "%s bol už nastavený na nepodržanie.\n"
  2387. #: cmdline/apt-mark.cc
  2388. msgid "Executing dpkg failed. Are you root?"
  2389. msgstr "Vykonanie dpkg zlyhalo. Ste root?"
  2390. #: cmdline/apt-mark.cc
  2391. #, c-format
  2392. msgid "%s set on hold.\n"
  2393. msgstr "%s je označený na podržanie.\n"
  2394. #: cmdline/apt-mark.cc
  2395. #, c-format
  2396. msgid "Canceled hold on %s.\n"
  2397. msgstr "Zrušené podržanie %s.\n"
  2398. #: cmdline/apt-mark.cc
  2399. #, c-format
  2400. msgid "Selected %s for purge.\n"
  2401. msgstr ""
  2402. #: cmdline/apt-mark.cc
  2403. #, c-format
  2404. msgid "Selected %s for removal.\n"
  2405. msgstr ""
  2406. #: cmdline/apt-mark.cc
  2407. #, c-format
  2408. msgid "Selected %s for installation.\n"
  2409. msgstr ""
  2410. #: cmdline/apt-mark.cc
  2411. #, fuzzy
  2412. msgid ""
  2413. "Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n"
  2414. "\n"
  2415. "apt-mark is a simple command line interface for marking packages\n"
  2416. "as manually or automatically installed. It can also be used to\n"
  2417. "manipulate the dpkg(1) selection states of packages, and to list\n"
  2418. "all packages with or without a certain marking.\n"
  2419. msgstr ""
  2420. "Použitie: apt-mark [voľby] {auto|manual} balík1 [balík2 ...]\n"
  2421. "\n"
  2422. "apt-mark je jednoduché rozhranie príkazového riadka na označovanie\n"
  2423. "balíkov ako manuálne alebo automaticky nainštalované.\n"
  2424. "Tiež dokáže označenia vypisovať.\n"
  2425. #: cmdline/apt-mark.cc
  2426. msgid "Mark the given packages as automatically installed"
  2427. msgstr "Označí uvedené balíky ako automaticky nainštalované"
  2428. #: cmdline/apt-mark.cc
  2429. msgid "Mark the given packages as manually installed"
  2430. msgstr "Označí uvedené balíky ako manuálne nainštalované"
  2431. #: cmdline/apt-mark.cc
  2432. msgid "Mark a package as held back"
  2433. msgstr ""
  2434. #: cmdline/apt-mark.cc
  2435. msgid "Unset a package set as held back"
  2436. msgstr ""
  2437. #: cmdline/apt-mark.cc
  2438. msgid "Print the list of automatically installed packages"
  2439. msgstr ""
  2440. #: cmdline/apt-mark.cc
  2441. msgid "Print the list of manually installed packages"
  2442. msgstr ""
  2443. #: cmdline/apt-mark.cc
  2444. msgid "Print the list of package on hold"
  2445. msgstr ""
  2446. #: cmdline/apt-sortpkgs.cc
  2447. msgid "Unknown package record!"
  2448. msgstr "Neznámy záznam o balíku!"
  2449. #: cmdline/apt-sortpkgs.cc
  2450. msgid ""
  2451. "Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
  2452. "\n"
  2453. "apt-sortpkgs is a simple tool to sort package information files.\n"
  2454. "By default it sorts by binary package information, but the -s option\n"
  2455. "can be used to switch to source package ordering instead.\n"
  2456. msgstr ""
  2457. #: cmdline/apt.cc
  2458. msgid ""
  2459. "Usage: apt [options] command\n"
  2460. "\n"
  2461. "apt is a commandline package manager and provides commands for\n"
  2462. "searching and managing as well as querying information about packages.\n"
  2463. "It provides the same functionality as the specialized APT tools,\n"
  2464. "like apt-get and apt-cache, but enables options more suitable for\n"
  2465. "interactive use by default.\n"
  2466. msgstr ""
  2467. #. query
  2468. #: cmdline/apt.cc
  2469. msgid "list packages based on package names"
  2470. msgstr ""
  2471. #: cmdline/apt.cc
  2472. #, fuzzy
  2473. msgid "search in package descriptions"
  2474. msgstr "Načítavajú sa zoznamy balíkov"
  2475. #: cmdline/apt.cc
  2476. msgid "show package details"
  2477. msgstr ""
  2478. #. package stuff
  2479. #: cmdline/apt.cc
  2480. #, fuzzy
  2481. msgid "install packages"
  2482. msgstr "Pripevnené balíky:"
  2483. #: cmdline/apt.cc
  2484. #, fuzzy
  2485. msgid "remove packages"
  2486. msgstr "Poškodené balíky"
  2487. #. system wide stuff
  2488. #: cmdline/apt.cc
  2489. #, fuzzy
  2490. msgid "update list of available packages"
  2491. msgstr "ale je to virtuálny balík"
  2492. #: cmdline/apt.cc
  2493. msgid "upgrade the system by installing/upgrading packages"
  2494. msgstr ""
  2495. #: cmdline/apt.cc
  2496. msgid "upgrade the system by removing/installing/upgrading packages"
  2497. msgstr ""
  2498. #. misc
  2499. #: cmdline/apt.cc
  2500. #, fuzzy
  2501. msgid "edit the source information file"
  2502. msgstr "Načítavajú sa stavové informácie"
  2503. #: dselect/install
  2504. msgid "Bad default setting!"
  2505. msgstr "Chybné predvolené nastavenie!"
  2506. #: dselect/install dselect/update
  2507. #, fuzzy
  2508. msgid "Press [Enter] to continue."
  2509. msgstr "Stlačte Enter, ak chcete pokračovať."
  2510. #: dselect/install
  2511. msgid "Do you want to erase any previously downloaded .deb files?"
  2512. msgstr "Chcete odstrániť všetky doteraz stiahnuté .deb súbory?"
  2513. #: dselect/install
  2514. msgid "Some errors occurred while unpacking. Packages that were installed"
  2515. msgstr ""
  2516. "Pri rozbaľovaní došlo k nejakým chybám. Balíky, ktoré boli nainštalované"
  2517. #: dselect/install
  2518. msgid "will be configured. This may result in duplicate errors"
  2519. msgstr "budú nakonfigurované. Môže to spôsobiť opakované chybové správy"
  2520. #: dselect/install
  2521. msgid "or errors caused by missing dependencies. This is OK, only the errors"
  2522. msgstr "o nesplnených závislostiach. Je to v poriadku, dôležité sú iba"
  2523. #: dselect/install
  2524. msgid ""
  2525. "above this message are important. Please fix them and run [I]nstall again"
  2526. msgstr ""
  2527. "chyby nad touto správou. Opravte ich a potom znovu spusťte [I]nštalovať"
  2528. #: dselect/update
  2529. msgid "Merging available information"
  2530. msgstr "Zlučujú sa dostupné informácie"
  2531. #: ftparchive/apt-ftparchive.cc
  2532. msgid "Package extension list is too long"
  2533. msgstr "Zoznam rozšírení balíka je príliš dlhý"
  2534. #: ftparchive/apt-ftparchive.cc
  2535. #, c-format
  2536. msgid "Error processing directory %s"
  2537. msgstr "Chyba pri spracovávaní adresára %s"
  2538. #: ftparchive/apt-ftparchive.cc
  2539. msgid "Source extension list is too long"
  2540. msgstr "Zoznam zdrojových rozšírení je príliš dlhý"
  2541. #: ftparchive/apt-ftparchive.cc
  2542. msgid "Error writing header to contents file"
  2543. msgstr "Chyba pri zapisovaní hlavičky do súboru"
  2544. #: ftparchive/apt-ftparchive.cc
  2545. #, c-format
  2546. msgid "Error processing contents %s"
  2547. msgstr "Chyba pri spracovávaní obsahu %s"
  2548. #: ftparchive/apt-ftparchive.cc
  2549. msgid ""
  2550. "Usage: apt-ftparchive [options] command\n"
  2551. "Commands: packages binarypath [overridefile [pathprefix]]\n"
  2552. " sources srcpath [overridefile [pathprefix]]\n"
  2553. " contents path\n"
  2554. " release path\n"
  2555. " generate config [groups]\n"
  2556. " clean config\n"
  2557. "\n"
  2558. "apt-ftparchive generates index files for Debian archives. It supports\n"
  2559. "many styles of generation from fully automated to functional replacements\n"
  2560. "for dpkg-scanpackages and dpkg-scansources\n"
  2561. "\n"
  2562. "apt-ftparchive generates Package files from a tree of .debs. The\n"
  2563. "Package file contains the contents of all the control fields from\n"
  2564. "each package as well as the MD5 hash and filesize. An override file\n"
  2565. "is supported to force the value of Priority and Section.\n"
  2566. "\n"
  2567. "Similarly apt-ftparchive generates Sources files from a tree of .dscs.\n"
  2568. "The --source-override option can be used to specify a src override file\n"
  2569. "\n"
  2570. "The 'packages' and 'sources' command should be run in the root of the\n"
  2571. "tree. BinaryPath should point to the base of the recursive search and \n"
  2572. "override file should contain the override flags. Pathprefix is\n"
  2573. "appended to the filename fields if present. Example usage from the \n"
  2574. "Debian archive:\n"
  2575. " apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
  2576. " dists/potato/main/binary-i386/Packages\n"
  2577. "\n"
  2578. "Options:\n"
  2579. " -h This help text\n"
  2580. " --md5 Control MD5 generation\n"
  2581. " -s=? Source override file\n"
  2582. " -q Quiet\n"
  2583. " -d=? Select the optional caching database\n"
  2584. " --no-delink Enable delinking debug mode\n"
  2585. " --contents Control contents file generation\n"
  2586. " -c=? Read this configuration file\n"
  2587. " -o=? Set an arbitrary configuration option"
  2588. msgstr ""
  2589. "Použitie: apt-ftparchive [voľby] príkaz\n"
  2590. "Príkazy: packages binárna_cesta [súbor_override [prefix_cesty]]\n"
  2591. " sources zdrojová_cesta [súbor_override [prefix_cesty]]\n"
  2592. " contents cesta\n"
  2593. " release cesta\n"
  2594. " generate konfiguračný_súbor [skupiny]\n"
  2595. " clean konfiguračný_súbor\n"
  2596. "\n"
  2597. "apt-ftparchive generuje indexové súbory archívov Debianu. Podporuje\n"
  2598. "niekoľko režimov vytvárania - od plne automatického až po funkčnú\n"
  2599. "náhradu príkazov dpkg-scanpackages a dpkg-scansources.\n"
  2600. "\n"
  2601. "apt-ftparchive zo stromu .deb súborov vygeneruje súbory Packages. Súbor\n"
  2602. "Packages okrem všetkých riadiacich polí každého balíka obsahuje tiež jeho\n"
  2603. "veľkosť a MD5 súčet. Podporovaný je tiež súbor „override“, pomocou ktorého\n"
  2604. "môžete vynútiť hodnoty polí Priority a Section.\n"
  2605. "\n"
  2606. "Podobne vie apt-ftparchive vygenerovať zo stromu súborov .dsc súbory\n"
  2607. "Sources. Voľbou --source-override môžete určiť zdrojový súbor „override“.\n"
  2608. "\n"
  2609. "Príkazy „packages“ a „sources“ by sa mali spúšťať v koreni stromu.\n"
  2610. "Binárna_cesta by mala ukazovať na začiatok rekurzívneho hľadania\n"
  2611. "a súbor „override“ by mal obsahovať príznaky pre nahradenie. Ak je udaný\n"
  2612. "prefix_cesty, pridá sa do polí „filename“.\n"
  2613. "Skutočný príklad z archívu Debianu:\n"
  2614. " apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
  2615. " dists/potato/main/binary-i386/Packages\n"
  2616. "\n"
  2617. "Voľby:\n"
  2618. " -h Tento pomocník\n"
  2619. " --md5 Vygeneruje kontrolný súčet MD5\n"
  2620. " -s=? Zdrojový súbor „override“\n"
  2621. " -q Tichý režim\n"
  2622. " -d=? Zvolí voliteľnú databázu pre vyrovnávaciu pamäť\n"
  2623. " --no-delink Povolí ladiaci režim\n"
  2624. " --contents Vygeneruje súbor Contents\n"
  2625. " -c=? Načíta tento konfiguračný súbor\n"
  2626. " -o=? Nastaví ľubovoľnú voľbu"
  2627. #: ftparchive/apt-ftparchive.cc
  2628. msgid "No selections matched"
  2629. msgstr "Nevyhovel žiaden výber"
  2630. #: ftparchive/apt-ftparchive.cc
  2631. #, c-format
  2632. msgid "Some files are missing in the package file group `%s'"
  2633. msgstr "V súbore balíka skupiny „%s“ chýbajú niektoré súbory"
  2634. #: ftparchive/cachedb.cc
  2635. #, c-format
  2636. msgid "DB was corrupted, file renamed to %s.old"
  2637. msgstr "DB je narušená, súbor je premenovaný na %s.old"
  2638. #: ftparchive/cachedb.cc
  2639. #, c-format
  2640. msgid "DB is old, attempting to upgrade %s"
  2641. msgstr "DB je neaktuálna, prebieha pokus o aktualizáciu %s"
  2642. #: ftparchive/cachedb.cc
  2643. msgid ""
  2644. "DB format is invalid. If you upgraded from an older version of apt, please "
  2645. "remove and re-create the database."
  2646. msgstr ""
  2647. "Formát DB je neplatný. Ak ste aktualizovali staršiu verziu apt, musíte "
  2648. "odstrániť a znovu vytvoriť databázu."
  2649. #: ftparchive/cachedb.cc
  2650. #, c-format
  2651. msgid "Unable to open DB file %s: %s"
  2652. msgstr "Nedá sa otvoriť DB súbor %s: %s"
  2653. #: ftparchive/cachedb.cc
  2654. #, fuzzy
  2655. msgid "Failed to read .dsc"
  2656. msgstr "Nie je možné vykonať readlink %s"
  2657. #: ftparchive/cachedb.cc
  2658. msgid "Archive has no control record"
  2659. msgstr "Archív nemá riadiaci záznam"
  2660. #: ftparchive/cachedb.cc
  2661. msgid "Unable to get a cursor"
  2662. msgstr "Nedá sa získať kurzor"
  2663. #: ftparchive/contents.cc
  2664. msgid "realloc - Failed to allocate memory"
  2665. msgstr "realloc - Zlyhal pokus o pridelenie pamäti"
  2666. #: ftparchive/multicompress.cc
  2667. #, c-format
  2668. msgid "Unknown compression algorithm '%s'"
  2669. msgstr "Neznámy kompresný algoritmus „%s“"
  2670. #: ftparchive/multicompress.cc
  2671. #, c-format
  2672. msgid "Compressed output %s needs a compression set"
  2673. msgstr "Komprimovaný výstup %s potrebuje kompresnú sadu"
  2674. #: ftparchive/multicompress.cc methods/rsh.cc
  2675. msgid "Failed to create IPC pipe to subprocess"
  2676. msgstr "Zlyhalo vytvorenie IPC rúry k podprocesu"
  2677. #: ftparchive/multicompress.cc
  2678. msgid "Failed to fork"
  2679. msgstr "Volanie fork() zlyhalo"
  2680. #: ftparchive/multicompress.cc
  2681. msgid "Compress child"
  2682. msgstr "Komprimovať potomka"
  2683. #: ftparchive/multicompress.cc
  2684. #, c-format
  2685. msgid "Internal error, failed to create %s"
  2686. msgstr "Vnútorná chyba, nepodarilo sa vytvoriť %s"
  2687. #: ftparchive/multicompress.cc
  2688. msgid "IO to subprocess/file failed"
  2689. msgstr "V/V operácia s podprocesom/súborom zlyhala"
  2690. #: ftparchive/multicompress.cc
  2691. msgid "Failed to read while computing MD5"
  2692. msgstr "Chyba čítania pri výpočte MD5"
  2693. #: ftparchive/override.cc
  2694. #, c-format
  2695. msgid "Unable to open %s"
  2696. msgstr "Nedá sa otvoriť %s"
  2697. #. skip spaces
  2698. #. find end of word
  2699. #: ftparchive/override.cc
  2700. #, fuzzy, c-format
  2701. msgid "Malformed override %s line %llu (%s)"
  2702. msgstr "Skomolený „override“ %s riadok %llu #1"
  2703. #: ftparchive/override.cc
  2704. #, c-format
  2705. msgid "Failed to read the override file %s"
  2706. msgstr "Nepodarilo sa prečítať „override“ súbor %s"
  2707. #: ftparchive/override.cc
  2708. #, c-format
  2709. msgid "Malformed override %s line %llu #1"
  2710. msgstr "Skomolený „override“ %s riadok %llu #1"
  2711. #: ftparchive/override.cc
  2712. #, c-format
  2713. msgid "Malformed override %s line %llu #2"
  2714. msgstr "Skomolený „override“ %s riadok %llu #2"
  2715. #: ftparchive/override.cc
  2716. #, c-format
  2717. msgid "Malformed override %s line %llu #3"
  2718. msgstr "Skomolený „override“ %s riadok %llu #3"
  2719. #: ftparchive/writer.cc
  2720. #, c-format
  2721. msgid "W: Unable to read directory %s\n"
  2722. msgstr "W: Adresár %s sa nedá čítať\n"
  2723. #: ftparchive/writer.cc
  2724. #, c-format
  2725. msgid "W: Unable to stat %s\n"
  2726. msgstr "W: %s sa nedá vyhodnotiť\n"
  2727. #: ftparchive/writer.cc
  2728. msgid "E: "
  2729. msgstr "E: "
  2730. #: ftparchive/writer.cc
  2731. msgid "W: "
  2732. msgstr "W: "
  2733. #: ftparchive/writer.cc
  2734. msgid "E: Errors apply to file "
  2735. msgstr "E: Chyby sa týkajú súboru "
  2736. #: ftparchive/writer.cc
  2737. #, c-format
  2738. msgid "Failed to resolve %s"
  2739. msgstr "Chyba pri preklade %s"
  2740. #: ftparchive/writer.cc
  2741. msgid "Tree walking failed"
  2742. msgstr "Prechod stromom zlyhal"
  2743. #: ftparchive/writer.cc
  2744. #, c-format
  2745. msgid "Failed to open %s"
  2746. msgstr "%s sa nedá otvoriť"
  2747. #: ftparchive/writer.cc
  2748. #, c-format
  2749. msgid " DeLink %s [%s]\n"
  2750. msgstr " Odlinkovanie %s [%s]\n"
  2751. #: ftparchive/writer.cc
  2752. #, c-format
  2753. msgid "*** Failed to link %s to %s"
  2754. msgstr "*** Nepodarilo sa zlinkovať %s s %s"
  2755. #: ftparchive/writer.cc
  2756. #, c-format
  2757. msgid " DeLink limit of %sB hit.\n"
  2758. msgstr " Bol dosiahnutý odlinkovací limit %sB.\n"
  2759. #: ftparchive/writer.cc
  2760. msgid "Archive had no package field"
  2761. msgstr "Archív neobsahuje pole „package“"
  2762. #: ftparchive/writer.cc
  2763. #, c-format
  2764. msgid " %s has no override entry\n"
  2765. msgstr " %s nemá žiadnu položku override\n"
  2766. #: ftparchive/writer.cc
  2767. #, c-format
  2768. msgid " %s maintainer is %s not %s\n"
  2769. msgstr " správcom %s je %s, nie %s\n"
  2770. #: ftparchive/writer.cc
  2771. #, c-format
  2772. msgid " %s has no source override entry\n"
  2773. msgstr " %s nemá žiadnu položku „source override“\n"
  2774. #: ftparchive/writer.cc
  2775. #, c-format
  2776. msgid " %s has no binary override entry either\n"
  2777. msgstr " %s nemá žiadnu položku „binary override“\n"
  2778. #: methods/cdrom.cc
  2779. #, c-format
  2780. msgid "Unable to read the cdrom database %s"
  2781. msgstr "Nedá sa čítať databáza na CD-ROM %s"
  2782. #: methods/cdrom.cc
  2783. msgid ""
  2784. "Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update "
  2785. "cannot be used to add new CD-ROMs"
  2786. msgstr ""
  2787. "Pre pridanie CD do APT použije apt-cdrom. apt-get update sa nedá využiť na "
  2788. "pridávanie nových CD."
  2789. #: methods/cdrom.cc
  2790. msgid "Wrong CD-ROM"
  2791. msgstr "Chybné CD"
  2792. #: methods/cdrom.cc
  2793. #, c-format
  2794. msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
  2795. msgstr "Nedá sa odpojiť CD-ROM v %s - možno sa ešte používa."
  2796. #: methods/cdrom.cc
  2797. msgid "Disk not found."
  2798. msgstr "Disk sa nenašiel."
  2799. #: methods/cdrom.cc methods/file.cc methods/rsh.cc
  2800. msgid "File not found"
  2801. msgstr "Súbor sa nenašiel"
  2802. #. TRANSLATOR: %s is e.g. Tor's ".onion" which would likely fail or leak info (RFC7686)
  2803. #: methods/connect.cc
  2804. #, c-format
  2805. msgid "Direct connection to %s domains is blocked by default."
  2806. msgstr ""
  2807. #: methods/connect.cc methods/http.cc
  2808. #, c-format
  2809. msgid "Connecting to %s (%s)"
  2810. msgstr "Pripája sa k %s (%s)"
  2811. #: methods/connect.cc
  2812. #, c-format
  2813. msgid "[IP: %s %s]"
  2814. msgstr "[IP: %s %s]"
  2815. #: methods/connect.cc
  2816. #, c-format
  2817. msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
  2818. msgstr "Nedá sa vytvoriť socket pre %s (f=%u t=%u p=%u)"
  2819. #: methods/connect.cc
  2820. #, c-format
  2821. msgid "Cannot initiate the connection to %s:%s (%s)."
  2822. msgstr "Nedá sa nadviazať spojenie na %s:%s (%s)."
  2823. #: methods/connect.cc
  2824. #, c-format
  2825. msgid "Could not connect to %s:%s (%s), connection timed out"
  2826. msgstr "Nedá sa pripojiť k %s:%s (%s), uplynul čas spojenia"
  2827. #: methods/connect.cc methods/ftp.cc methods/rsh.cc
  2828. msgid "Failed"
  2829. msgstr "Chyba"
  2830. #: methods/connect.cc
  2831. #, c-format
  2832. msgid "Could not connect to %s:%s (%s)."
  2833. msgstr "Nedá sa pripojiť k %s:%s (%s)."
  2834. #. We say this mainly because the pause here is for the
  2835. #. ssh connection that is still going
  2836. #: methods/connect.cc methods/rsh.cc
  2837. #, c-format
  2838. msgid "Connecting to %s"
  2839. msgstr "Pripája sa k %s"
  2840. #: methods/connect.cc
  2841. #, c-format
  2842. msgid "Could not resolve '%s'"
  2843. msgstr "Nie je možné preložiť „%s“"
  2844. #: methods/connect.cc
  2845. #, c-format
  2846. msgid "Temporary failure resolving '%s'"
  2847. msgstr "Dočasné zlyhanie pri preklade „%s“"
  2848. #: methods/connect.cc
  2849. #, fuzzy, c-format
  2850. msgid "System error resolving '%s:%s'"
  2851. msgstr "Niečo veľmi zlé sa prihodilo pri preklade „%s:%s“ (%i - %s)"
  2852. #: methods/connect.cc
  2853. #, c-format
  2854. msgid "Something wicked happened resolving '%s:%s' (%i - %s)"
  2855. msgstr "Niečo veľmi zlé sa prihodilo pri preklade „%s:%s“ (%i - %s)"
  2856. #: methods/connect.cc
  2857. #, c-format
  2858. msgid "Unable to connect to %s:%s:"
  2859. msgstr "Nedá sa pripojiť k %s:%s:"
  2860. #: methods/copy.cc
  2861. msgid "Failed to stat"
  2862. msgstr "Vyhodnotenie zlyhalo"
  2863. #: methods/file.cc
  2864. msgid "Invalid URI, local URIS must not start with //"
  2865. msgstr "Neplatné URI, lokálne URI nesmie začínať s //"
  2866. #. Login must be before getpeername otherwise dante won't work.
  2867. #: methods/ftp.cc
  2868. msgid "Logging in"
  2869. msgstr "Prihlasovanie"
  2870. #: methods/ftp.cc
  2871. msgid "Unable to determine the peer name"
  2872. msgstr "Nedá sa zistiť názov druhej strany"
  2873. #: methods/ftp.cc
  2874. msgid "Unable to determine the local name"
  2875. msgstr "Nedá sa zistiť lokálny názov"
  2876. #: methods/ftp.cc
  2877. #, c-format
  2878. msgid "The server refused the connection and said: %s"
  2879. msgstr "Server zamietol naše spojenie s chybou: %s"
  2880. #: methods/ftp.cc
  2881. #, c-format
  2882. msgid "USER failed, server said: %s"
  2883. msgstr "Zlyhalo zadanie používateľa, server odpovedal: %s"
  2884. #: methods/ftp.cc
  2885. #, c-format
  2886. msgid "PASS failed, server said: %s"
  2887. msgstr "Zlyhalo zadanie hesla, server odpovedal: %s"
  2888. #: methods/ftp.cc
  2889. msgid ""
  2890. "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin "
  2891. "is empty."
  2892. msgstr ""
  2893. "Bol zadaný proxy server, ale nie prihlasovací skript. Acquire::ftp::"
  2894. "ProxyLogin je prázdny."
  2895. #: methods/ftp.cc
  2896. #, c-format
  2897. msgid "Login script command '%s' failed, server said: %s"
  2898. msgstr "Príkaz „%s“ prihlasovacieho skriptu zlyhal, server odpovedal: %s"
  2899. #: methods/ftp.cc
  2900. #, c-format
  2901. msgid "TYPE failed, server said: %s"
  2902. msgstr "Zlyhalo zadanie typu, server odpovedal: %s"
  2903. #: methods/ftp.cc methods/rsh.cc
  2904. msgid "Connection timeout"
  2905. msgstr "Uplynul čas spojenia"
  2906. #: methods/ftp.cc
  2907. msgid "Server closed the connection"
  2908. msgstr "Server ukončil spojenie"
  2909. #: methods/ftp.cc methods/rsh.cc
  2910. msgid "A response overflowed the buffer."
  2911. msgstr "Odpoveď preplnila zásobník."
  2912. #: methods/ftp.cc
  2913. msgid "Protocol corruption"
  2914. msgstr "Narušenie protokolu"
  2915. #: methods/ftp.cc
  2916. msgid "Could not create a socket"
  2917. msgstr "Nedá sa vytvoriť socket"
  2918. #: methods/ftp.cc
  2919. msgid "Could not connect data socket, connection timed out"
  2920. msgstr "Nedá sa pripojiť dátový socket, uplynul čas spojenia"
  2921. #: methods/ftp.cc
  2922. msgid "Could not connect passive socket."
  2923. msgstr "Nedá sa pripojiť pasívny socket."
  2924. #: methods/ftp.cc
  2925. msgid "getaddrinfo was unable to get a listening socket"
  2926. msgstr "getaddrinfo nezískal počúvajúci socket"
  2927. #: methods/ftp.cc
  2928. msgid "Could not bind a socket"
  2929. msgstr "Nedá sa nadviazať socket"
  2930. #: methods/ftp.cc
  2931. msgid "Could not listen on the socket"
  2932. msgstr "Na sockete sa nedá počúvať"
  2933. #: methods/ftp.cc
  2934. msgid "Could not determine the socket's name"
  2935. msgstr "Názov socketu sa nedá zistiť"
  2936. #: methods/ftp.cc
  2937. msgid "Unable to send PORT command"
  2938. msgstr "Príkaz PORT sa nedá odoslať"
  2939. #: methods/ftp.cc
  2940. #, c-format
  2941. msgid "Unknown address family %u (AF_*)"
  2942. msgstr "Neznáma rodina adries %u (AF_*)"
  2943. #: methods/ftp.cc
  2944. #, c-format
  2945. msgid "EPRT failed, server said: %s"
  2946. msgstr "Zlyhalo zadanie EPRT, server odpovedal: %s"
  2947. #: methods/ftp.cc
  2948. msgid "Data socket connect timed out"
  2949. msgstr "Uplynulo spojenie dátového socketu"
  2950. #: methods/ftp.cc
  2951. msgid "Unable to accept connection"
  2952. msgstr "Spojenie sa nedá prijať"
  2953. #: methods/ftp.cc methods/http.cc methods/rsh.cc
  2954. msgid "Problem hashing file"
  2955. msgstr "Problém s hašovaním súboru"
  2956. #: methods/ftp.cc
  2957. #, c-format
  2958. msgid "Unable to fetch file, server said '%s'"
  2959. msgstr "Súbor sa nedá stiahnuť, server odpovedal „%s“"
  2960. #: methods/ftp.cc methods/rsh.cc
  2961. msgid "Data socket timed out"
  2962. msgstr "Uplynula doba dátového socketu"
  2963. #: methods/ftp.cc
  2964. #, c-format
  2965. msgid "Data transfer failed, server said '%s'"
  2966. msgstr "Prenos dát zlyhal, server odpovedal „%s“"
  2967. #. Get the files information
  2968. #: methods/ftp.cc
  2969. msgid "Query"
  2970. msgstr "Dotaz"
  2971. #: methods/ftp.cc
  2972. msgid "Unable to invoke "
  2973. msgstr "Nedá sa vyvolať "
  2974. #. TRANSLATORS: %s is a single techy word like 'NODATA'
  2975. #: methods/gpgv.cc
  2976. #, c-format
  2977. msgid ""
  2978. "Signed file isn't valid, got '%s' (does the network require authentication?)"
  2979. msgstr ""
  2980. #: methods/gpgv.cc
  2981. msgid "At least one invalid signature was encountered."
  2982. msgstr "Bola zistená aspoň jedna nesprávna signatúra."
  2983. #: methods/gpgv.cc
  2984. msgid ""
  2985. "Internal error: Good signature, but could not determine key fingerprint?!"
  2986. msgstr "Vnútorná chyba: Správna signatúra, ale sa nedá zistiť odtlačok kľúča?!"
  2987. #: methods/gpgv.cc
  2988. msgid "Could not execute 'apt-key' to verify signature (is gnupg installed?)"
  2989. msgstr ""
  2990. "Nedá sa spustiť „apt-key“ kvôli overeniu podpisu (je nainštalované gnupg?)"
  2991. #: methods/gpgv.cc
  2992. msgid "Unknown error executing apt-key"
  2993. msgstr "Neznáma chyba pri spustení apt-key"
  2994. #. TRANSLATORS: The second %s is the reason and is untranslated for repository owners.
  2995. #: methods/gpgv.cc
  2996. #, c-format
  2997. msgid "Signature by key %s uses weak digest algorithm (%s)"
  2998. msgstr ""
  2999. #: methods/gpgv.cc
  3000. msgid "The following signatures were invalid:\n"
  3001. msgstr "Nasledovné signatúry sú neplatné:\n"
  3002. #: methods/gpgv.cc
  3003. msgid ""
  3004. "The following signatures couldn't be verified because the public key is not "
  3005. "available:\n"
  3006. msgstr ""
  3007. "Nasledovné signatúry sa nedajú overiť, pretože nie je dostupný verejný "
  3008. "kľúč:\n"
  3009. #: methods/http.cc
  3010. msgid "Error writing to the file"
  3011. msgstr "Chyba zápisu do tohto súboru"
  3012. #: methods/http.cc
  3013. msgid "Error reading from server. Remote end closed connection"
  3014. msgstr "Chyba pri čítaní zo servera. Druhá strana ukončila spojenie"
  3015. #: methods/http.cc
  3016. msgid "Error reading from server"
  3017. msgstr "Chyba pri čítaní zo servera"
  3018. #: methods/http.cc
  3019. msgid "Error writing to file"
  3020. msgstr "Chyba zápisu do súboru"
  3021. #: methods/http.cc
  3022. msgid "Select failed"
  3023. msgstr "Výber zlyhal"
  3024. #: methods/http.cc
  3025. msgid "Connection timed out"
  3026. msgstr "Uplynul čas spojenia"
  3027. #: methods/http.cc
  3028. msgid "Error writing to output file"
  3029. msgstr "Chyba zápisu do výstupného súboru"
  3030. #. FIXME: fallback to a default mirror here instead
  3031. #. and provide a config option to define that default
  3032. #: methods/mirror.cc
  3033. #, c-format
  3034. msgid "No mirror file '%s' found "
  3035. msgstr "Na zrkadle nebol nájdený súbor „%s“"
  3036. #. FIXME: fallback to a default mirror here instead
  3037. #. and provide a config option to define that default
  3038. #: methods/mirror.cc
  3039. #, c-format
  3040. msgid "Can not read mirror file '%s'"
  3041. msgstr "Nepodarilo sa prečítať súbor „%s“ na zrkadle"
  3042. #: methods/mirror.cc
  3043. #, fuzzy, c-format
  3044. msgid "No entry found in mirror file '%s'"
  3045. msgstr "Nepodarilo sa prečítať súbor „%s“ na zrkadle"
  3046. #: methods/mirror.cc
  3047. #, c-format
  3048. msgid "[Mirror: %s]"
  3049. msgstr "[Zrkadlo: %s]"
  3050. #: methods/rred.cc
  3051. msgid "Failed to set modification time"
  3052. msgstr "Zlyhalo nastavenie času zmeny"
  3053. #: methods/rsh.cc
  3054. msgid "Connection closed prematurely"
  3055. msgstr "Spojenie bolo predčasne ukončené"
  3056. #: methods/server.cc
  3057. msgid "Waiting for headers"
  3058. msgstr "Čaká sa na hlavičky"
  3059. #: methods/server.cc
  3060. msgid "The HTTP server sent an invalid reply header"
  3061. msgstr "HTTP server poslal neplatnú hlavičku odpovede"
  3062. #: methods/server.cc
  3063. msgid "Bad header line"
  3064. msgstr "Chybná hlavička"
  3065. #: methods/server.cc
  3066. msgid "The HTTP server sent an invalid Content-Length header"
  3067. msgstr "HTTP server poslal neplatnú hlavičku Content-Length"
  3068. #: methods/server.cc
  3069. msgid "The HTTP server sent an invalid Content-Range header"
  3070. msgstr "HTTP server poslal neplatnú hlavičku Content-Range"
  3071. #: methods/server.cc
  3072. msgid "This HTTP server has broken range support"
  3073. msgstr "Tento HTTP server má poškodenú podporu rozsahov"
  3074. #: methods/server.cc
  3075. msgid "Unknown date format"
  3076. msgstr "Neznámy formát dátumu"
  3077. #: methods/server.cc
  3078. msgid "Bad header data"
  3079. msgstr "Zlé dátové záhlavie"
  3080. #: methods/server.cc
  3081. msgid "Connection failed"
  3082. msgstr "Spojenie zlyhalo"
  3083. #: methods/server.cc
  3084. #, c-format
  3085. msgid ""
  3086. "Automatically disabled %s due to incorrect response from server/proxy. (man "
  3087. "5 apt.conf)"
  3088. msgstr ""
  3089. #: methods/server.cc
  3090. msgid "Internal error"
  3091. msgstr "Vnútorná chyba"
  3092. #: methods/store.cc
  3093. msgid "Empty files can't be valid archives"
  3094. msgstr "Prázdne súbory nemôžu byť platné archívy"
  3095. #~ msgid "(not found)"
  3096. #~ msgstr "(nenájdené)"
  3097. #~ msgid " Package pin: "
  3098. #~ msgstr " Pripevnený balík:"
  3099. #~ msgid "There is no public key available for the following key IDs:\n"
  3100. #~ msgstr "Nie sú dostupné žiadne verejné kľúče ku kľúčom s nasledovnými ID:\n"
  3101. #, fuzzy
  3102. #~ msgid "The repository is insufficiently signed by key %s (%s)"
  3103. #~ msgstr "Adresár %s je divertovaný"
  3104. #~ msgid ""
  3105. #~ "%s dependency for %s can't be satisfied because %s is not allowed on '%s' "
  3106. #~ "packages"
  3107. #~ msgstr ""
  3108. #~ "%s závislosť pre %s nemožno splniť, pretože %s nie je povolené na "
  3109. #~ "balíkoch „%s“"
  3110. #~ msgid ""
  3111. #~ "%s dependency for %s cannot be satisfied because the package %s cannot be "
  3112. #~ "found"
  3113. #~ msgstr "%s závislosť pre %s nemožno splniť, pretože sa nedá nájsť balík %s"
  3114. #~ msgid ""
  3115. #~ "Failed to satisfy %s dependency for %s: Installed package %s is too new"
  3116. #~ msgstr ""
  3117. #~ "Zlyhalo splnenie %s závislosti pre %s: Inštalovaný balík %s je príliš nový"
  3118. #~ msgid ""
  3119. #~ "%s dependency for %s cannot be satisfied because candidate version of "
  3120. #~ "package %s can't satisfy version requirements"
  3121. #~ msgstr ""
  3122. #~ "%s závislosť pre %s nemožno splniť, pretože kandidátska verzia balíka %s, "
  3123. #~ "nedokáže splniť požiadavky na verziu"
  3124. #~ msgid ""
  3125. #~ "%s dependency for %s cannot be satisfied because package %s has no "
  3126. #~ "candidate version"
  3127. #~ msgstr ""
  3128. #~ "%s závislosť pre %s nemožno splniť, pretože balík %s nemá kandidátsku "
  3129. #~ "verziu"
  3130. #~ msgid "Failed to satisfy %s dependency for %s: %s"
  3131. #~ msgstr "Zlyhalo splnenie %s závislosti pre %s: %s"
  3132. #~ msgid "Build-dependencies for %s could not be satisfied."
  3133. #~ msgstr "Závislosti na zostavenie %s nemožno splniť."
  3134. #~ msgid "Problem unlinking %s"
  3135. #~ msgstr "Problém s odlinkovaním %s"
  3136. #~ msgid "Failed to unlink %s"
  3137. #~ msgstr "Nie je možné vykonať unlink %s"
  3138. #~ msgid ""
  3139. #~ "Usage: apt-cache [options] command\n"
  3140. #~ " apt-cache [options] show pkg1 [pkg2 ...]\n"
  3141. #~ "\n"
  3142. #~ "apt-cache is a low-level tool used to query information\n"
  3143. #~ "from APT's binary cache files\n"
  3144. #~ msgstr ""
  3145. #~ "Použitie: apt-cache [voľby] príkaz\n"
  3146. #~ " apt-cache [voľby] show balík1 [balík2 ...]\n"
  3147. #~ "\n"
  3148. #~ "apt-cache je nízkoúrovňový nástroj na zisťovanie informácií\n"
  3149. #~ "z binárnych súborov vyrovnávacej pamäti APT\n"
  3150. #~ msgid ""
  3151. #~ "Options:\n"
  3152. #~ " -h This help text.\n"
  3153. #~ " -p=? The package cache.\n"
  3154. #~ " -s=? The source cache.\n"
  3155. #~ " -q Disable progress indicator.\n"
  3156. #~ " -i Show only important deps for the unmet command.\n"
  3157. #~ " -c=? Read this configuration file\n"
  3158. #~ " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  3159. #~ "See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
  3160. #~ msgstr ""
  3161. #~ "Voľby:\n"
  3162. #~ " -h Tento pomocník.\n"
  3163. #~ " -p=? Vyrovnávacia pamäť balíkov.\n"
  3164. #~ " -s=? Vyrovnávacia pamäť zdrojov.\n"
  3165. #~ " -q Nezobrazí indikátor priebehu.\n"
  3166. #~ " -i Pri príkaze unmet zobrazí iba dôležité závislosti.\n"
  3167. #~ " -c=? Načíta tento konfiguračný súbor\n"
  3168. #~ " -o=? Nastaví ľubovoľnú voľbu, napr. -o dir::cache=/tmp\n"
  3169. #~ "Ďalšie informácie nájdete v manuálových stránkach apt-cache(8)\n"
  3170. #~ "a apt.conf(5).\n"
  3171. #, fuzzy
  3172. #~ msgid ""
  3173. #~ "Options:\n"
  3174. #~ " -h This help text\n"
  3175. #~ " -d CD-ROM mount point\n"
  3176. #~ " -r Rename a recognized CD-ROM\n"
  3177. #~ " -m No mounting\n"
  3178. #~ " -f Fast mode, don't check package files\n"
  3179. #~ " -a Thorough scan mode\n"
  3180. #~ " --no-auto-detect Do not try to auto detect drive and mount point\n"
  3181. #~ " -c=? Read this configuration file\n"
  3182. #~ " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  3183. #~ "See fstab(5)\n"
  3184. #~ msgstr ""
  3185. #~ "Voľby:\n"
  3186. #~ " -h Tento text pomocníka.\n"
  3187. #~ " -q Výstup vhodný do záznamu - bez indikátora priebehu\n"
  3188. #~ " -qq Nevypisovať nič, len chyby\n"
  3189. #~ " -s Nevykonávať zmeny. Iba vypísať, čo by sa urobilo.\n"
  3190. #~ " -f čítanie/zápis označenia auto/manálne v uvedenom súbore\n"
  3191. #~ " -c=? Načítať tento konfiguračný súbor\n"
  3192. #~ " -o=? Nastaviť ľubovoľný konfiguračnú voľbu, napr. -o dir::cache=/tmp\n"
  3193. #~ "Ďalšie informácie nájdete na manuálových stránkach apt-mark(8) a apt."
  3194. #~ "conf(5)."
  3195. #~ msgid ""
  3196. #~ "Options:\n"
  3197. #~ " -h This help text.\n"
  3198. #~ " -c=? Read this configuration file\n"
  3199. #~ " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  3200. #~ msgstr ""
  3201. #~ "Voľby:\n"
  3202. #~ " -h Tento pomocník.\n"
  3203. #~ " -c=? Načíta tento konfiguračný súbor\n"
  3204. #~ " -o=? Nastaví ľubovoľnú voľbu, napr. -o dir::cache=/tmp\n"
  3205. #~ msgid ""
  3206. #~ "Options:\n"
  3207. #~ " -h This help text.\n"
  3208. #~ " -q Loggable output - no progress indicator\n"
  3209. #~ " -qq No output except for errors\n"
  3210. #~ " -s No-act. Just prints what would be done.\n"
  3211. #~ " -f read/write auto/manual marking in the given file\n"
  3212. #~ " -c=? Read this configuration file\n"
  3213. #~ " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  3214. #~ "See the apt-mark(8) and apt.conf(5) manual pages for more information."
  3215. #~ msgstr ""
  3216. #~ "Voľby:\n"
  3217. #~ " -h Tento text pomocníka.\n"
  3218. #~ " -q Výstup vhodný do záznamu - bez indikátora priebehu\n"
  3219. #~ " -qq Nevypisovať nič, len chyby\n"
  3220. #~ " -s Nevykonávať zmeny. Iba vypísať, čo by sa urobilo.\n"
  3221. #~ " -f čítanie/zápis označenia auto/manálne v uvedenom súbore\n"
  3222. #~ " -c=? Načítať tento konfiguračný súbor\n"
  3223. #~ " -o=? Nastaviť ľubovoľný konfiguračnú voľbu, napr. -o dir::cache=/tmp\n"
  3224. #~ "Ďalšie informácie nájdete na manuálových stránkach apt-mark(8) a apt."
  3225. #~ "conf(5)."
  3226. #~ msgid ""
  3227. #~ "Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
  3228. #~ "\n"
  3229. #~ "apt-sortpkgs is a simple tool to sort package files. The -s option is "
  3230. #~ "used\n"
  3231. #~ "to indicate what kind of file it is.\n"
  3232. #~ "\n"
  3233. #~ "Options:\n"
  3234. #~ " -h This help text\n"
  3235. #~ " -s Use source file sorting\n"
  3236. #~ " -c=? Read this configuration file\n"
  3237. #~ " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  3238. #~ msgstr ""
  3239. #~ "Použitie: apt-sortpkgs [voľby] súbor1 [súbor2 ...]\n"
  3240. #~ "\n"
  3241. #~ "apt-sortpkgs je jednoduchý nástroj na zotriedenie súborov Packages.\n"
  3242. #~ "Voľbou -s si zvolíte typ súboru.\n"
  3243. #~ "\n"
  3244. #~ "Voľby:\n"
  3245. #~ " -h Tento pomocník\n"
  3246. #~ " -s Zotriedi zdrojový súbor\n"
  3247. #~ " -c=? Načíta tento konfiguračný súbor\n"
  3248. #~ " -o=? Nastaví ľubovoľnú voľbu, napr. -o dir::cache=/tmp\n"
  3249. #~ msgid "Child process failed"
  3250. #~ msgstr "Proces potomka zlyhal"
  3251. #, fuzzy
  3252. #~ msgid "Must specifc at least one srv record"
  3253. #~ msgstr "Musíte zadať aspoň jeden balík, pre ktorý sa stiahnu zdrojové texty"
  3254. #~ msgid "Failed to create pipes"
  3255. #~ msgstr "Vytvorenie rúry zlyhalo"
  3256. #~ msgid "Failed to exec gzip "
  3257. #~ msgstr "Spustenie gzip zlyhalo "
  3258. #~ msgid "%s %s for %s compiled on %s %s\n"
  3259. #~ msgstr "%s %s pre %s skompilovaný %s %s\n"
  3260. #~ msgid "Failed to create FILE*"
  3261. #~ msgstr "Zlyhalo vytvorenie FILE*"
  3262. #, fuzzy
  3263. #~ msgid "Malformed stanza %u in source list %s (URI parse)"
  3264. #~ msgstr "Skomolený riadok %lu v zozname zdrojov %s (spracovanie URI)"
  3265. #~ msgid "Malformed line %lu in source list %s ([option] unparseable)"
  3266. #~ msgstr ""
  3267. #~ "Skomolený riadok %lu v zozname zdrojov %s (nie je možné spracovať "
  3268. #~ "[option])"
  3269. #~ msgid "Malformed line %lu in source list %s ([option] too short)"
  3270. #~ msgstr ""
  3271. #~ "Skomolený riadok %lu v zozname zdrojov %s ([option] je príliš krátke)"
  3272. #~ msgid "Malformed line %lu in source list %s ([%s] is not an assignment)"
  3273. #~ msgstr "Skomolený riadok %lu v zozname zdrojov %s ([%s] nie je priradenie)"
  3274. #~ msgid "Malformed line %lu in source list %s ([%s] has no key)"
  3275. #~ msgstr "Skomolený riadok %lu v zozname zdrojov %s ([%s] nemá kľúč)"
  3276. #~ msgid "Malformed line %lu in source list %s ([%s] key %s has no value)"
  3277. #~ msgstr ""
  3278. #~ "Skomolený riadok %lu v zozname zdrojov %s ([%s] kľúč %s nemá hodnotu)"
  3279. #~ msgid "Malformed line %lu in source list %s (URI)"
  3280. #~ msgstr "Skomolený riadok %lu v zozname zdrojov %s (URI)"
  3281. #~ msgid "Malformed line %lu in source list %s (dist)"
  3282. #~ msgstr "Skomolený riadok %lu v zozname zdrojov %s (dist)"
  3283. #~ msgid "Malformed line %lu in source list %s (URI parse)"
  3284. #~ msgstr "Skomolený riadok %lu v zozname zdrojov %s (spracovanie URI)"
  3285. #~ msgid "Malformed line %lu in source list %s (absolute dist)"
  3286. #~ msgstr "Skomolený riadok %lu v zozname zdrojov %s (absolútny dist)"
  3287. #~ msgid "Malformed line %lu in source list %s (dist parse)"
  3288. #~ msgstr "Skomolený riadok %lu v zozname zdrojov %s (spracovanie dist)"
  3289. #~ msgid "Package %s %s was not found while processing file dependencies"
  3290. #~ msgstr "Pri spracovaní závislostí nebol nájdený balík %s %s"
  3291. #~ msgid "Couldn't stat source package list %s"
  3292. #~ msgstr "Nedá sa vyhodnotiť zoznam zdrojových balíkov %s"
  3293. #~ msgid "Collecting File Provides"
  3294. #~ msgstr "Collecting File poskytuje"
  3295. #, fuzzy
  3296. #~ msgid "Does not start with a cleartext signature"
  3297. #~ msgstr "Súbor %s nezačína podpísanou správou v čistom texte (clearsigned)"
  3298. #~ msgid "Unable to find hash sum for '%s' in Release file"
  3299. #~ msgstr "Nepodarilo sa nájsť haš „%s“ v súbore Release"
  3300. #~ msgid "Vendor block %s contains no fingerprint"
  3301. #~ msgstr "Blok výrobcu %s neobsahuje otlačok (fingerprint)"
  3302. #~ msgid "Total dependency version space: "
  3303. #~ msgstr "Celkom miesta závislých verzií: "
  3304. #~ msgid "You don't have enough free space in %s"
  3305. #~ msgstr "Na %s nemáte dostatok voľného miesta"
  3306. #~ msgid "Done"
  3307. #~ msgstr "Hotovo"
  3308. #~ msgid "No keyring installed in %s."
  3309. #~ msgstr "V %s nie je nainštalovaný žiaden zväzok kľúčov."
  3310. #, fuzzy
  3311. #~ msgid "Internal error, Upgrade broke stuff"
  3312. #~ msgstr "Vnútorná chyba, AllUpgrade pokazil veci"
  3313. #~ msgid "%s not a valid DEB package."
  3314. #~ msgstr "%s nie je platný balík DEB."
  3315. #~ msgid ""
  3316. #~ "Using CD-ROM mount point %s\n"
  3317. #~ "Mounting CD-ROM\n"
  3318. #~ msgstr ""
  3319. #~ "Použije sa CD-ROM prípojný bod %s\n"
  3320. #~ "Pripája sa CD-ROM\n"
  3321. #~ msgid ""
  3322. #~ "Could not patch %s with mmap and with file operation usage - the patch "
  3323. #~ "seems to be corrupt."
  3324. #~ msgstr ""
  3325. #~ "Nepodarilo sa záplatovať %s pomocou mmap a pomocou operácie so súborom - "
  3326. #~ "zdá sa, že záplata je poškodená."
  3327. #~ msgid ""
  3328. #~ "Could not patch %s with mmap (but no mmap specific fail) - the patch "
  3329. #~ "seems to be corrupt."
  3330. #~ msgstr ""
  3331. #~ "Nepodarilo sa záplatovať %s pomocou mmap (ale nevyskytla sa chyba "
  3332. #~ "týkajúca sa mmap) - zdá sa, že záplata je poškodená."
  3333. #~ msgid "Ignore unavailable target release '%s' of package '%s'"
  3334. #~ msgstr "Ignorovať nedostupné cieľové vydanie „%s“ balíka „%s“"
  3335. #~ msgid "Downloading %s %s"
  3336. #~ msgstr "Sťahuje sa %s %s"
  3337. #~ msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
  3338. #~ msgstr "Toto nie je platný DEB archív, chýba časť „%s“, „%s“ alebo „%s“"
  3339. #~ msgid "MD5Sum mismatch"
  3340. #~ msgstr "Nezhoda kontrolných MD5 súčtov"
  3341. #~ msgid ""
  3342. #~ "I wasn't able to locate a file for the %s package. This might mean you "
  3343. #~ "need to manually fix this package."
  3344. #~ msgstr ""
  3345. #~ "Nedá sa nájsť súbor s balíkom %s. Asi budete musieť opraviť tento balík "
  3346. #~ "manuálne."
  3347. #~ msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
  3348. #~ msgstr ""
  3349. #~ "Nedá sa zapísať záznam, volanie openpty() zlyhalo (/dev/pts nie je "
  3350. #~ "pripojený?)\n"
  3351. #~ msgid "Skipping nonexistent file %s"
  3352. #~ msgstr "Preskakuje sa neexistujúci súbor %s"
  3353. #~ msgid "Failed to remove %s"
  3354. #~ msgstr "Odstránenie %s zlyhalo"
  3355. #~ msgid "Unable to create %s"
  3356. #~ msgstr "Nedá sa vytvoriť %s"
  3357. #~ msgid "Failed to stat %sinfo"
  3358. #~ msgstr "Vyhodnotenie %sinfo zlyhalo"
  3359. #~ msgid "The info and temp directories need to be on the same filesystem"
  3360. #~ msgstr "Adresáre info a temp musia byť na tom istom súborovom systéme"
  3361. #~ msgid "Failed to change to the admin dir %sinfo"
  3362. #~ msgstr "Nedá sa zmeniť na admin adresár %sinfo"
  3363. #~ msgid "Internal error getting a package name"
  3364. #~ msgstr "Vnútorná chyba pri získavaní názvu balíka"
  3365. #~ msgid "Reading file listing"
  3366. #~ msgstr "Načítava sa zoznam súborov"
  3367. #~ msgid ""
  3368. #~ "Failed to open the list file '%sinfo/%s'. If you cannot restore this file "
  3369. #~ "then make it empty and immediately re-install the same version of the "
  3370. #~ "package!"
  3371. #~ msgstr ""
  3372. #~ "Otvorenie súboru zoznamov „%sinfo/%s“ zlyhalo. Ak nemôžete obnoviť tento "
  3373. #~ "súbor, vytvorte nový prázdny a ihneď znovu nainštalujte tú istú verziu "
  3374. #~ "balíka!"
  3375. #~ msgid "Failed reading the list file %sinfo/%s"
  3376. #~ msgstr "Chyba pri čítaní súboru so zoznamami %sinfo/%s"
  3377. #~ msgid "Internal error getting a node"
  3378. #~ msgstr "Vnútorná chyba pri získavaní uzla"
  3379. #~ msgid "Failed to open the diversions file %sdiversions"
  3380. #~ msgstr "Zlyhalo otvorenie súboru s diverziami %sdiversions"
  3381. #~ msgid "The diversion file is corrupted"
  3382. #~ msgstr "Diverzný súbor je porušený"
  3383. #~ msgid "Invalid line in the diversion file: %s"
  3384. #~ msgstr "Neplatný riadok v diverznom súbore: %s"
  3385. #~ msgid "Internal error adding a diversion"
  3386. #~ msgstr "Vnútorná chyba pri pridávaní diverzie"
  3387. #~ msgid "The pkg cache must be initialized first"
  3388. #~ msgstr "Vyrovnávacia pamäť balíkov sa musí najprv inicializovať"
  3389. #~ msgid "Failed to find a Package: header, offset %lu"
  3390. #~ msgstr "Chyba pri hľadaní Balíka: hlavička, pozícia %lu"
  3391. #~ msgid "Bad ConfFile section in the status file. Offset %lu"
  3392. #~ msgstr "Zlá sekcia ConfFile v stavovom súbore na pozícii %lu"
  3393. #~ msgid "Error parsing MD5. Offset %lu"
  3394. #~ msgstr "Chyba pri spracovaní MD5. Pozícia %lu"
  3395. #~ msgid "Couldn't change to %s"
  3396. #~ msgstr "Nedá sa prejsť do %s"
  3397. #~ msgid "Failed to locate a valid control file"
  3398. #~ msgstr "Nedá sa nájsť platný riadiaci súbor"
  3399. #~ msgid "Couldn't open pipe for %s"
  3400. #~ msgstr "Nedá sa otvoriť rúra pre %s"
  3401. #~ msgid "Read error from %s process"
  3402. #~ msgstr "Chyba pri čítaní z procesu %s"
  3403. #~ msgid "Got a single header line over %u chars"
  3404. #~ msgstr "Získal sa jeden riadok hlavičky cez %u znakov"
  3405. #~ msgid "Note: This is done automatic and on purpose by dpkg."
  3406. #~ msgstr "Pozn.: Toto robí dpkg automaticky a zámerne."
  3407. #~ msgid "Malformed override %s line %lu #1"
  3408. #~ msgstr "Skomolený „override“ %s riadok %lu #1"
  3409. #~ msgid "Malformed override %s line %lu #2"
  3410. #~ msgstr "Skomolený „override“ %s riadok %lu #2"
  3411. #~ msgid "Malformed override %s line %lu #3"
  3412. #~ msgstr "Skomolený „override“ %s riadok %lu #3"
  3413. #~ msgid "decompressor"
  3414. #~ msgstr "dekompresor"
  3415. #~ msgid "read, still have %lu to read but none left"
  3416. #~ msgstr "čítanie, stále treba prečítať %lu, ale už nič neostáva"
  3417. #~ msgid "write, still have %lu to write but couldn't"
  3418. #~ msgstr "zápis, stále treba zapísať %lu, no nedá sa to"
  3419. #~ msgid ""
  3420. #~ "Could not perform immediate configuration on already unpacked '%s'. "
  3421. #~ "Please see man 5 apt.conf under APT::Immediate-Configure for details."
  3422. #~ msgstr ""
  3423. #~ "Nebolo možné vykonať okamžitú konfiguráciu už rozbaleného „%s“. Pozri "
  3424. #~ "prosím podrobnosti v man 5 apt.conf pod APT::Immediate-Configure"
  3425. #~ msgid "Error occurred while processing %s (NewPackage)"
  3426. #~ msgstr "Chyba pri spracovávaní %s (NewPackage)"
  3427. #~ msgid "Error occurred while processing %s (UsePackage1)"
  3428. #~ msgstr "Chyba pri spracovávaní %s (UsePackage1)"
  3429. #~ msgid "Error occurred while processing %s (NewFileDesc1)"
  3430. #~ msgstr "Chyba pri spracovávaní %s (NewFileDesc1)"
  3431. #~ msgid "Error occurred while processing %s (UsePackage2)"
  3432. #~ msgstr "Chyba pri spracovávaní %s (UsePackage2)"
  3433. #~ msgid "Error occurred while processing %s (NewFileVer1)"
  3434. #~ msgstr "Chyba pri spracovávaní %s (NewFileVer1)"
  3435. #~ msgid "Error occurred while processing %s (NewVersion%d)"
  3436. #~ msgstr "Vyskytla sa chyba pri spracovávaní %s (NewVersion%d)"
  3437. #~ msgid "Error occurred while processing %s (UsePackage3)"
  3438. #~ msgstr "Chyba pri spracovávaní %s (UsePackage3)"
  3439. #~ msgid "Error occurred while processing %s (NewFileDesc2)"
  3440. #~ msgstr "Vyskytla sa chyba pri spracovávaní %s (NewFileDesc2)"
  3441. #~ msgid "Error occurred while processing %s (FindPkg)"
  3442. #~ msgstr "Chyba pri spracovávaní %s (FindPkg)"
  3443. #~ msgid "Error occurred while processing %s (CollectFileProvides)"
  3444. #~ msgstr "Chyba pri spracovávaní %s (CollectFileProvides)"
  3445. #~ msgid "Internal error, could not locate member"
  3446. #~ msgstr "Vnútorná chyba, nedá sa nájsť člen"
  3447. #~ msgid "Internal error, group '%s' has no installable pseudo package"
  3448. #~ msgstr "Vnútorná chyba, skupina „%s“ nemá žiaden inštalovateľný pseudobalík"
  3449. #~ msgid "Release file expired, ignoring %s (invalid since %s)"
  3450. #~ msgstr "Platnosť súboru Release vypršala, ignoruje sa %s (neplatný od %s)"