sk.po 122 KB

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