cs.po 130 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104
  1. # Czech translation of APT
  2. # This file is put in the public domain.
  3. # Miroslav Kure <kurem@debian.cz>, 2004-2014.
  4. #
  5. #
  6. msgid ""
  7. msgstr ""
  8. "Project-Id-Version: apt 1.0.5\n"
  9. "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
  10. "POT-Creation-Date: 2015-08-21 06:13-0400\n"
  11. "PO-Revision-Date: 2014-10-05 06:09+0200\n"
  12. "Last-Translator: Miroslav Kure <kurem@debian.cz>\n"
  13. "Language-Team: Czech <debian-l10n-czech@lists.debian.org>\n"
  14. "Language: cs\n"
  15. "MIME-Version: 1.0\n"
  16. "Content-Type: text/plain; charset=UTF-8\n"
  17. "Content-Transfer-Encoding: 8bit\n"
  18. "Plural-Forms: nplurals=3; plural=n==1 ? 0 : n>=2 && n<=4 ? 1 : 2;\n"
  19. #: cmdline/apt-cache.cc:149
  20. #, c-format
  21. msgid "Package %s version %s has an unmet dep:\n"
  22. msgstr "Balík %s verze %s má nesplněné závislosti:\n"
  23. #: cmdline/apt-cache.cc:319
  24. #, fuzzy
  25. msgid "apt-cache stats does not take any arguments"
  26. msgstr "Příkaz update neakceptuje žádné argumenty"
  27. #: cmdline/apt-cache.cc:325
  28. msgid "Total package names: "
  29. msgstr "Celkem názvů balíků: "
  30. #: cmdline/apt-cache.cc:327
  31. msgid "Total package structures: "
  32. msgstr "Celkem struktur balíků: "
  33. #: cmdline/apt-cache.cc:367
  34. msgid " Normal packages: "
  35. msgstr " Normálních balíků: "
  36. #: cmdline/apt-cache.cc:368
  37. msgid " Pure virtual packages: "
  38. msgstr " Čistě virtuálních balíků: "
  39. #: cmdline/apt-cache.cc:369
  40. msgid " Single virtual packages: "
  41. msgstr " Jednoduchých virtuálních balíků: "
  42. #: cmdline/apt-cache.cc:370
  43. msgid " Mixed virtual packages: "
  44. msgstr " Smíšených virtuálních balíků: "
  45. #: cmdline/apt-cache.cc:371
  46. msgid " Missing: "
  47. msgstr " Chybějících: "
  48. #: cmdline/apt-cache.cc:373
  49. msgid "Total distinct versions: "
  50. msgstr "Celkem různých verzí: "
  51. #: cmdline/apt-cache.cc:375
  52. msgid "Total distinct descriptions: "
  53. msgstr "Celkem různých popisů: "
  54. #: cmdline/apt-cache.cc:377
  55. msgid "Total dependencies: "
  56. msgstr "Celkem závislostí: "
  57. #: cmdline/apt-cache.cc:380
  58. msgid "Total ver/file relations: "
  59. msgstr "Celkem vztahů ver/soubor: "
  60. #: cmdline/apt-cache.cc:382
  61. msgid "Total Desc/File relations: "
  62. msgstr "Celkem vztahů popis/soubor: "
  63. #: cmdline/apt-cache.cc:384
  64. msgid "Total Provides mappings: "
  65. msgstr "Celkem poskytnutých mapování: "
  66. #: cmdline/apt-cache.cc:440
  67. msgid "Total globbed strings: "
  68. msgstr "Celkem globovaných řetězců: "
  69. #: cmdline/apt-cache.cc:446
  70. msgid "Total slack space: "
  71. msgstr "Celkem jalového místa: "
  72. #: cmdline/apt-cache.cc:463
  73. msgid "Total space accounted for: "
  74. msgstr "Celkem přiřazeného místa: "
  75. #: cmdline/apt-cache.cc:605 cmdline/apt-cache.cc:1256
  76. #: apt-private/private-show.cc:58
  77. #, c-format
  78. msgid "Package file %s is out of sync."
  79. msgstr "Soubor balíku %s je špatně synchronizovaný."
  80. #: cmdline/apt-cache.cc:680 cmdline/apt-cache.cc:1541 cmdline/apt-cache.cc:1543
  81. #: cmdline/apt-cache.cc:1624 cmdline/apt-mark.cc:56 cmdline/apt-mark.cc:103
  82. #: cmdline/apt-mark.cc:229 apt-private/private-show.cc:173
  83. #: apt-private/private-show.cc:175
  84. msgid "No packages found"
  85. msgstr "Nebyly nalezeny žádné balíky"
  86. #: cmdline/apt-cache.cc:1356 apt-private/private-search.cc:41
  87. msgid "You must give at least one search pattern"
  88. msgstr "Musíte zadat alespoň jeden vyhledávací vzor"
  89. #: cmdline/apt-cache.cc:1520
  90. msgid "This command is deprecated. Please use 'apt-mark showauto' instead."
  91. msgstr "Tento příkaz je zastaralý, použijte místo něj „apt-mark showauto“."
  92. #: cmdline/apt-cache.cc:1619 apt-pkg/cacheset.cc:762
  93. #, c-format
  94. msgid "Unable to locate package %s"
  95. msgstr "Nelze najít balík %s"
  96. #: cmdline/apt-cache.cc:1649
  97. msgid "Package files:"
  98. msgstr "Soubory balíku:"
  99. #: cmdline/apt-cache.cc:1658 cmdline/apt-cache.cc:1766
  100. msgid "Cache is out of sync, can't x-ref a package file"
  101. msgstr "Cache není synchronizovaná, nelze se odkázat na soubor balíku"
  102. #. Show any packages have explicit pins
  103. #: cmdline/apt-cache.cc:1672
  104. msgid "Pinned packages:"
  105. msgstr "Vypíchnuté balíky:"
  106. #: cmdline/apt-cache.cc:1686 cmdline/apt-cache.cc:1743
  107. msgid "(not found)"
  108. msgstr "(nenalezeno)"
  109. #. Print the package name and the version we are forcing to
  110. #: cmdline/apt-cache.cc:1700
  111. #, c-format
  112. msgid "%s -> %s with priority %d\n"
  113. msgstr ""
  114. #: cmdline/apt-cache.cc:1706
  115. msgid " Installed: "
  116. msgstr " Instalovaná verze: "
  117. #: cmdline/apt-cache.cc:1707
  118. msgid " Candidate: "
  119. msgstr " Kandidát: "
  120. #: cmdline/apt-cache.cc:1725 cmdline/apt-cache.cc:1733
  121. msgid "(none)"
  122. msgstr "(žádná)"
  123. #: cmdline/apt-cache.cc:1740
  124. msgid " Package pin: "
  125. msgstr " Vypíchnutý balík: "
  126. #. Show the priority tables
  127. #: cmdline/apt-cache.cc:1749
  128. msgid " Version table:"
  129. msgstr " Tabulka verzí:"
  130. #: cmdline/apt-cache.cc:1871
  131. msgid ""
  132. "Usage: apt-cache [options] command\n"
  133. " apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
  134. " apt-cache [options] showsrc pkg1 [pkg2 ...]\n"
  135. "\n"
  136. "apt-cache is a low-level tool used to query information\n"
  137. "from APT's binary cache files\n"
  138. "\n"
  139. "Commands:\n"
  140. " gencaches - Build both the package and source cache\n"
  141. " showpkg - Show some general information for a single package\n"
  142. " showsrc - Show source records\n"
  143. " stats - Show some basic statistics\n"
  144. " dump - Show the entire file in a terse form\n"
  145. " dumpavail - Print an available file to stdout\n"
  146. " unmet - Show unmet dependencies\n"
  147. " search - Search the package list for a regex pattern\n"
  148. " show - Show a readable record for the package\n"
  149. " depends - Show raw dependency information for a package\n"
  150. " rdepends - Show reverse dependency information for a package\n"
  151. " pkgnames - List the names of all packages in the system\n"
  152. " dotty - Generate package graphs for GraphViz\n"
  153. " xvcg - Generate package graphs for xvcg\n"
  154. " policy - Show policy settings\n"
  155. "\n"
  156. "Options:\n"
  157. " -h This help text.\n"
  158. " -p=? The package cache.\n"
  159. " -s=? The source cache.\n"
  160. " -q Disable progress indicator.\n"
  161. " -i Show only important deps for the unmet command.\n"
  162. " -c=? Read this configuration file\n"
  163. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  164. "See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
  165. msgstr ""
  166. "Použití: apt-cache [volby] příkaz\n"
  167. " apt-cache [volby] showpkg balík1 [balík2 …]\n"
  168. " apt-cache [volby] showsrc balík1 [balík2 …]\n"
  169. "\n"
  170. "apt-cache je nízkoúrovňový nástroj pro získávání informací o balících.\n"
  171. "\n"
  172. "Příkazy:\n"
  173. " gencaches - Vytvoří vyrovnávací paměť balíků i zdrojů\n"
  174. " showpkg - Zobrazí obecné informace o balíku\n"
  175. " showsrc - Zobrazí zdrojové záznamy\n"
  176. " stats - Zobrazí základní statistiky\n"
  177. " dump - Zobrazí celý soubor ve zhuštěné podobě\n"
  178. " dumpavail - Vytiskne na výstup dostupné balíky\n"
  179. " unmet - Zobrazí nesplněné závislosti\n"
  180. " search - V seznamu balíků hledá regulární výraz\n"
  181. " show - Zobrazí informace o balíku\n"
  182. " depends - Zobrazí závislosti balíku\n"
  183. " rdepends - Zobrazí reverzní závislosti balíku\n"
  184. " pkgnames - Vypíše jména všech balíků v systému\n"
  185. " dotty - Vygeneruje grafy ve formátu pro GraphViz\n"
  186. " xvcg - Vygeneruje grafy ve formátu pro xvcg\n"
  187. " policy - Zobrazí nastavenou politiku\n"
  188. "\n"
  189. "Volby:\n"
  190. " -h Tato nápověda.\n"
  191. " -p=? Vyrovnávací paměť balíků.\n"
  192. " -s=? Vyrovnávací paměť zdrojů.\n"
  193. " -q Nezobrazí indikátor postupu.\n"
  194. " -i U příkazu unmet zobrazí pouze důležité závislosti.\n"
  195. " -c=? Načte daný konfigurační soubor\n"
  196. " -o=? Nastaví libovolnou volbu, např. -o dir::cache=/tmp\n"
  197. "Více informací viz manuálové stránky apt-cache(8) a apt.conf(5).\n"
  198. #: cmdline/apt-cdrom.cc:77
  199. msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'"
  200. msgstr "Zadejte prosím název tohoto média, např. „Debian 5.0.3 Disk 1“"
  201. #: cmdline/apt-cdrom.cc:92
  202. #, fuzzy
  203. msgid "Please insert a Disc in the drive and press [Enter]"
  204. msgstr "Vložte prosím médium do mechaniky a stiskněte enter"
  205. #: cmdline/apt-cdrom.cc:140
  206. #, c-format
  207. msgid "Failed to mount '%s' to '%s'"
  208. msgstr "Selhalo připojení „%s“ na „%s“"
  209. #: cmdline/apt-cdrom.cc:179
  210. msgid ""
  211. "No CD-ROM could be auto-detected or found using the default mount point.\n"
  212. "You may try the --cdrom option to set the CD-ROM mount point.\n"
  213. "See 'man apt-cdrom' for more information about the CD-ROM auto-detection and "
  214. "mount point."
  215. msgstr ""
  216. "Na výchozím přípojném bodu nebylo rozpoznáno/nalezeno žádné CD-ROM.\n"
  217. "Můžete zkusit zadat přípojný bod CD-ROM volbou --cdrom.\n"
  218. "Více o rozpoznávání CD-ROM a přípojných bodech naleznete v „man apt-cdrom“."
  219. #: cmdline/apt-cdrom.cc:183
  220. msgid "Repeat this process for the rest of the CDs in your set."
  221. msgstr "Tento proces opakujte pro všechna zbývající média."
  222. #: cmdline/apt-config.cc:48
  223. msgid "Arguments not in pairs"
  224. msgstr "Argumenty nejsou v párech"
  225. #: cmdline/apt-config.cc:88
  226. msgid ""
  227. "Usage: apt-config [options] command\n"
  228. "\n"
  229. "apt-config is a simple tool to read the APT config file\n"
  230. "\n"
  231. "Commands:\n"
  232. " shell - Shell mode\n"
  233. " dump - Show the configuration\n"
  234. "\n"
  235. "Options:\n"
  236. " -h This help text.\n"
  237. " -c=? Read this configuration file\n"
  238. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  239. msgstr ""
  240. "Použití: apt-config [volby] příkaz\n"
  241. "\n"
  242. "apt-config je jednoduchý nástroj pro čtení konfiguračního souboru APT\n"
  243. "\n"
  244. "Příkazy:\n"
  245. " shell - Shellový režim\n"
  246. " dump - Zobrazí nastavení\n"
  247. "\n"
  248. "Volby:\n"
  249. " -h Tato nápověda.\n"
  250. " -c=? Načte tento konfigurační soubor\n"
  251. " -o=? Nastaví libovolnou volbu, např. -o dir::cache=/tmp\n"
  252. #: cmdline/apt-get.cc:211
  253. #, c-format
  254. msgid "Can not find a package for architecture '%s'"
  255. msgstr "Nelze najít balík pro architekturu „%s“"
  256. #: cmdline/apt-get.cc:287
  257. #, c-format
  258. msgid "Can not find a package '%s' with version '%s'"
  259. msgstr "Nelze najít balík „%s“ s verzí „%s“"
  260. #: cmdline/apt-get.cc:290
  261. #, c-format
  262. msgid "Can not find a package '%s' with release '%s'"
  263. msgstr "Nelze najít balík „%s“ z vydání „%s“"
  264. #: cmdline/apt-get.cc:327
  265. #, c-format
  266. msgid "Picking '%s' as source package instead of '%s'\n"
  267. msgstr "Vybírám „%s“ jako zdrojový balík místo „%s“\n"
  268. #: cmdline/apt-get.cc:386
  269. #, c-format
  270. msgid "Can not find version '%s' of package '%s'"
  271. msgstr "Nelze najít verzi „%s“ balíku „%s“"
  272. #: cmdline/apt-get.cc:417
  273. #, c-format
  274. msgid "Couldn't find package %s"
  275. msgstr "Nelze najít balík %s"
  276. #: cmdline/apt-get.cc:422 cmdline/apt-mark.cc:78
  277. #: apt-private/private-install.cc:839
  278. #, c-format
  279. msgid "%s set to manually installed.\n"
  280. msgstr "%s nastaven jako instalovaný ručně.\n"
  281. #: cmdline/apt-get.cc:424 cmdline/apt-mark.cc:80
  282. #, c-format
  283. msgid "%s set to automatically installed.\n"
  284. msgstr "%s nastaven jako instalovaný automaticky.\n"
  285. #: cmdline/apt-get.cc:432 cmdline/apt-mark.cc:124
  286. msgid ""
  287. "This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' "
  288. "instead."
  289. msgstr ""
  290. "Tento příkaz je zastaralý, použijte místo něj „apt-mark auto“ a „apt-mark "
  291. "manual“."
  292. #: cmdline/apt-get.cc:501 cmdline/apt-get.cc:509
  293. msgid "Internal error, problem resolver broke stuff"
  294. msgstr "Vnitřní chyba, řešitel problémů pokazil věci"
  295. #: cmdline/apt-get.cc:570
  296. msgid "Unable to lock the download directory"
  297. msgstr "Nelze zamknout adresář pro stahování"
  298. #: cmdline/apt-get.cc:688
  299. msgid "Must specify at least one package to fetch source for"
  300. msgstr "Musíte zadat aspoň jeden balík, pro který se stáhnou zdrojové texty"
  301. #: cmdline/apt-get.cc:725 cmdline/apt-get.cc:1035
  302. #, c-format
  303. msgid "Unable to find a source package for %s"
  304. msgstr "Nelze najít zdrojový balík pro %s"
  305. #: cmdline/apt-get.cc:745
  306. #, c-format
  307. msgid ""
  308. "NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n"
  309. "%s\n"
  310. msgstr ""
  311. "INFO: Balík „%s“ je spravován v systému pro správu verzí „%s“ na:\n"
  312. "%s\n"
  313. #: cmdline/apt-get.cc:750
  314. #, c-format
  315. msgid ""
  316. "Please use:\n"
  317. "bzr branch %s\n"
  318. "to retrieve the latest (possibly unreleased) updates to the package.\n"
  319. msgstr ""
  320. "Pro stažení nejnovějších (možná dosud nevydaných) aktualizací balíku prosím "
  321. "použijte:\n"
  322. "bzr branch %s\n"
  323. #: cmdline/apt-get.cc:798
  324. #, c-format
  325. msgid "Skipping already downloaded file '%s'\n"
  326. msgstr "Přeskakuje se dříve stažený soubor „%s“\n"
  327. #. TRANSLATOR: The required space between number and unit is already included
  328. #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
  329. #: cmdline/apt-get.cc:828
  330. #, c-format
  331. msgid "Need to get %sB/%sB of source archives.\n"
  332. msgstr "Nutno stáhnout %sB/%sB zdrojových archivů.\n"
  333. #. TRANSLATOR: The required space between number and unit is already included
  334. #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
  335. #: cmdline/apt-get.cc:833
  336. #, c-format
  337. msgid "Need to get %sB of source archives.\n"
  338. msgstr "Nutno stáhnout %sB zdrojových archivů.\n"
  339. #: cmdline/apt-get.cc:839
  340. #, c-format
  341. msgid "Fetch source %s\n"
  342. msgstr "Stažení zdroje %s\n"
  343. #: cmdline/apt-get.cc:864
  344. msgid "Failed to fetch some archives."
  345. msgstr "Stažení některých archivů selhalo."
  346. #: cmdline/apt-get.cc:869 apt-private/private-install.cc:300
  347. msgid "Download complete and in download only mode"
  348. msgstr "Stahování dokončeno v režimu pouze stáhnout"
  349. #: cmdline/apt-get.cc:894
  350. #, c-format
  351. msgid "Skipping unpack of already unpacked source in %s\n"
  352. msgstr "Přeskakuje se rozbalení již rozbaleného zdroje v %s\n"
  353. #: cmdline/apt-get.cc:907
  354. #, c-format
  355. msgid "Unpack command '%s' failed.\n"
  356. msgstr "Příkaz pro rozbalení „%s“ selhal.\n"
  357. #: cmdline/apt-get.cc:908
  358. #, c-format
  359. msgid "Check if the 'dpkg-dev' package is installed.\n"
  360. msgstr "Zkontrolujte, zda je nainstalován balík „dpkg-dev“.\n"
  361. #: cmdline/apt-get.cc:936
  362. #, c-format
  363. msgid "Build command '%s' failed.\n"
  364. msgstr "Příkaz pro sestavení „%s“ selhal.\n"
  365. #: cmdline/apt-get.cc:955
  366. msgid "Child process failed"
  367. msgstr "Synovský proces selhal"
  368. #: cmdline/apt-get.cc:976
  369. msgid "Must specify at least one package to check builddeps for"
  370. msgstr ""
  371. "Musíte zadat alespoň jeden balík, pro který budou kontrolovány závislosti "
  372. "pro sestavení"
  373. #: cmdline/apt-get.cc:994
  374. #, c-format
  375. msgid ""
  376. "No architecture information available for %s. See apt.conf(5) APT::"
  377. "Architectures for setup"
  378. msgstr ""
  379. "O architektuře %s nejsou známy žádné informace. Pro nastavení si přečtěte "
  380. "část APT::Architectures v manuálové stránce apt.conf(5)"
  381. #: cmdline/apt-get.cc:1012
  382. #, c-format
  383. msgid "Note, using directory '%s' to get the build dependencies\n"
  384. msgstr ""
  385. #: cmdline/apt-get.cc:1022
  386. #, fuzzy, c-format
  387. msgid "Note, using file '%s' to get the build dependencies\n"
  388. msgstr "Chyba při zpracování závislostí pro sestavení"
  389. #: cmdline/apt-get.cc:1047 cmdline/apt-get.cc:1050
  390. #, c-format
  391. msgid "Unable to get build-dependency information for %s"
  392. msgstr "Nelze získat závislosti pro sestavení %s"
  393. #: cmdline/apt-get.cc:1070
  394. #, c-format
  395. msgid "%s has no build depends.\n"
  396. msgstr "%s nemá žádné závislosti pro sestavení.\n"
  397. #: cmdline/apt-get.cc:1240
  398. #, c-format
  399. msgid ""
  400. "%s dependency for %s can't be satisfied because %s is not allowed on '%s' "
  401. "packages"
  402. msgstr ""
  403. "závislost %s pro %s nemůže být splněna, protože %s není na balících „%s“ "
  404. "dovolena"
  405. #: cmdline/apt-get.cc:1258
  406. #, c-format
  407. msgid ""
  408. "%s dependency for %s cannot be satisfied because the package %s cannot be "
  409. "found"
  410. msgstr "závislost %s pro %s nemůže být splněna, protože balík %s nebyl nalezen"
  411. #: cmdline/apt-get.cc:1281
  412. #, c-format
  413. msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
  414. msgstr ""
  415. "Selhalo splnění závislosti %s pro %s: Instalovaný balík %s je příliš nový"
  416. #: cmdline/apt-get.cc:1320
  417. #, c-format
  418. msgid ""
  419. "%s dependency for %s cannot be satisfied because candidate version of "
  420. "package %s can't satisfy version requirements"
  421. msgstr ""
  422. "závislost %s pro %s nemůže být splněna, protože kandidátská verze balíku %s "
  423. "nesplňuje požadavek na verzi"
  424. #: cmdline/apt-get.cc:1326
  425. #, c-format
  426. msgid ""
  427. "%s dependency for %s cannot be satisfied because package %s has no candidate "
  428. "version"
  429. msgstr ""
  430. "závislost %s pro %s nemůže být splněna, protože balík %s nemá kandidátskou "
  431. "verzi"
  432. #: cmdline/apt-get.cc:1349
  433. #, c-format
  434. msgid "Failed to satisfy %s dependency for %s: %s"
  435. msgstr "Selhalo splnění závislosti %s pro %s: %s"
  436. #: cmdline/apt-get.cc:1364
  437. #, c-format
  438. msgid "Build-dependencies for %s could not be satisfied."
  439. msgstr "Závislosti pro sestavení %s nemohly být splněny."
  440. #: cmdline/apt-get.cc:1369
  441. msgid "Failed to process build dependencies"
  442. msgstr "Chyba při zpracování závislostí pro sestavení"
  443. #: cmdline/apt-get.cc:1554
  444. msgid "Supported modules:"
  445. msgstr "Podporované moduly:"
  446. #: cmdline/apt-get.cc:1595
  447. msgid ""
  448. "Usage: apt-get [options] command\n"
  449. " apt-get [options] install|remove pkg1 [pkg2 ...]\n"
  450. " apt-get [options] source pkg1 [pkg2 ...]\n"
  451. "\n"
  452. "apt-get is a simple command line interface for downloading and\n"
  453. "installing packages. The most frequently used commands are update\n"
  454. "and install.\n"
  455. "\n"
  456. "Commands:\n"
  457. " update - Retrieve new lists of packages\n"
  458. " upgrade - Perform an upgrade\n"
  459. " install - Install new packages (pkg is libc6 not libc6.deb)\n"
  460. " remove - Remove packages\n"
  461. " autoremove - Remove automatically all unused packages\n"
  462. " purge - Remove packages and config files\n"
  463. " source - Download source archives\n"
  464. " build-dep - Configure build-dependencies for source packages\n"
  465. " dist-upgrade - Distribution upgrade, see apt-get(8)\n"
  466. " dselect-upgrade - Follow dselect selections\n"
  467. " clean - Erase downloaded archive files\n"
  468. " autoclean - Erase old downloaded archive files\n"
  469. " check - Verify that there are no broken dependencies\n"
  470. " changelog - Download and display the changelog for the given package\n"
  471. " download - Download the binary package into the current directory\n"
  472. "\n"
  473. "Options:\n"
  474. " -h This help text.\n"
  475. " -q Loggable output - no progress indicator\n"
  476. " -qq No output except for errors\n"
  477. " -d Download only - do NOT install or unpack archives\n"
  478. " -s No-act. Perform ordering simulation\n"
  479. " -y Assume Yes to all queries and do not prompt\n"
  480. " -f Attempt to correct a system with broken dependencies in place\n"
  481. " -m Attempt to continue if archives are unlocatable\n"
  482. " -u Show a list of upgraded packages as well\n"
  483. " -b Build the source package after fetching it\n"
  484. " -V Show verbose version numbers\n"
  485. " -c=? Read this configuration file\n"
  486. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  487. "See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
  488. "pages for more information and options.\n"
  489. " This APT has Super Cow Powers.\n"
  490. msgstr ""
  491. "Použití: apt-get [volby] příkaz\n"
  492. " apt-get [volby] install|remove balík1 [balík2 …]\n"
  493. " apt-get [volby] source balík1 [balík2 …]\n"
  494. "\n"
  495. "apt-get je jednoduché řádkové rozhraní pro stahování a instalování\n"
  496. "balíků. Nejpoužívanější příkazy jsou update a install.\n"
  497. "\n"
  498. "Příkazy:\n"
  499. " update - Získá seznam nových balíků\n"
  500. " upgrade - Provede aktualizaci\n"
  501. " install - Instaluje nové balíky (balík je libc6, ne libc6.deb)\n"
  502. " remove - Odstraní balíky\n"
  503. " autoremove - Automaticky odstraní nepoužívané balíky\n"
  504. " purge - Odstraní balíky včetně konfiguračních souborů\n"
  505. " source - Stáhne zdrojové archivy\n"
  506. " build-dep - Pro zdrojové balíky nastaví build-dependencies\n"
  507. " dist-upgrade - Aktualizace distribuce, viz apt-get(8)\n"
  508. " dselect-upgrade - Řídí se podle výběru v dselectu\n"
  509. " clean - Smaže stažené archivy\n"
  510. " autoclean - Smaže staré stažené archivy\n"
  511. " check - Ověří, zda se nevyskytují porušené závislosti\n"
  512. " changelog - Stáhne a zobrazí seznam změn daného balíku\n"
  513. " download - Stáhne binární balík to aktuálního adresáře\n"
  514. "\n"
  515. "Volby:\n"
  516. " -h Tato nápověda\n"
  517. " -q Nezobrazí indikátor postupu - vhodné pro záznam\n"
  518. " -qq Nezobrazí nic než chyby\n"
  519. " -d Pouze stáhne - neinstaluje ani nerozbaluje archivy\n"
  520. " -s Pouze simuluje prováděné akce\n"
  521. " -y Na všechny otázky odpovídá automaticky Ano\n"
  522. " -f Zkusí opravit systém s porušenými závislostmi\n"
  523. " -m Zkusí pokračovat, i když se nepodaří najít archivy\n"
  524. " -u Zobrazí také seznam aktualizovaných balíků\n"
  525. " -b Po stažení zdrojového balíku jej i zkompiluje\n"
  526. " -V Zobrazí podrobná čísla verzí\n"
  527. " -c=? Načte daný konfigurační soubor\n"
  528. " -o=? Nastaví libovolnou volbu, např. -o dir::cache=/tmp\n"
  529. "Více voleb naleznete v manuálových stránkách apt-get(8), sources.list(5)\n"
  530. "a apt.conf(5).\n"
  531. " Tato APT má schopnosti svaté krávy.\n"
  532. #: cmdline/apt-helper.cc:37
  533. msgid "Need one URL as argument"
  534. msgstr "Jako argument vyžaduje jedno URL"
  535. #: cmdline/apt-helper.cc:50
  536. msgid "Must specify at least one pair url/filename"
  537. msgstr "Musíte zadat aspoň jeden pár url/jméno souboru"
  538. #: cmdline/apt-helper.cc:76 cmdline/apt-helper.cc:80
  539. msgid "Download Failed"
  540. msgstr "Stažení selhalo"
  541. #: cmdline/apt-helper.cc:88
  542. #, fuzzy
  543. msgid "Must specifc at least one srv record"
  544. msgstr "Musíte zadat aspoň jeden pár url/jméno souboru"
  545. #: cmdline/apt-helper.cc:95
  546. #, c-format
  547. msgid "GetSrvRec failed for %s"
  548. msgstr ""
  549. #: cmdline/apt-helper.cc:118
  550. #, fuzzy
  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. " srv-lookup - lookup a SRV record (e.g. _http._tcp.ftp.debian.org)\n"
  560. " auto-detect-proxy - detect proxy using apt.conf\n"
  561. "\n"
  562. " This APT helper has Super Meep Powers.\n"
  563. msgstr ""
  564. "Použití: apt-helper [volby] příkaz\n"
  565. " apt-helper [volby] download-file uri cílová_cesta\n"
  566. "\n"
  567. "apt-helper je interní pomocník pro apt\n"
  568. "\n"
  569. "Příkazy:\n"
  570. " download-file - stáhne zadané uri do cílové cesty\n"
  571. " auto-detect-proxy - detekuje proxy pomocí apt.conf\n"
  572. "\n"
  573. " Tento APT pomocník má schopnosti svatého čehokoliv.\n"
  574. #: cmdline/apt-mark.cc:65
  575. #, c-format
  576. msgid "%s can not be marked as it is not installed.\n"
  577. msgstr "%s nemůže být označen, protože není nainstalovaný.\n"
  578. #: cmdline/apt-mark.cc:71
  579. #, c-format
  580. msgid "%s was already set to manually installed.\n"
  581. msgstr "%s již byl nastaven jako instalovaný ručně.\n"
  582. #: cmdline/apt-mark.cc:73
  583. #, c-format
  584. msgid "%s was already set to automatically installed.\n"
  585. msgstr "%s již byl nastaven jako instalovaný automaticky.\n"
  586. #: cmdline/apt-mark.cc:238
  587. #, c-format
  588. msgid "%s was already set on hold.\n"
  589. msgstr "%s již byl podržen v aktuální verzi.\n"
  590. #: cmdline/apt-mark.cc:240
  591. #, c-format
  592. msgid "%s was already not hold.\n"
  593. msgstr "%s již nebyl držen v aktuální verzi.\n"
  594. #: cmdline/apt-mark.cc:255 cmdline/apt-mark.cc:333 cmdline/apt-mark.cc:397
  595. #: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:207
  596. #: apt-pkg/deb/dpkgpm.cc:1302
  597. #, c-format
  598. msgid "Waited for %s but it wasn't there"
  599. msgstr "Čekali jsme na %s, ale nebyl tam"
  600. #: cmdline/apt-mark.cc:270 cmdline/apt-mark.cc:380
  601. #, c-format
  602. msgid "%s set on hold.\n"
  603. msgstr "%s bude podržen v aktuální verzi.\n"
  604. #: cmdline/apt-mark.cc:272 cmdline/apt-mark.cc:385
  605. #, c-format
  606. msgid "Canceled hold on %s.\n"
  607. msgstr "Podržení balíku %s v aktuální verzi bylo zrušeno.\n"
  608. #: cmdline/apt-mark.cc:337 cmdline/apt-mark.cc:403
  609. msgid "Executing dpkg failed. Are you root?"
  610. msgstr "Spuštění dpkg selhalo. Jste root?"
  611. #: cmdline/apt-mark.cc:449
  612. msgid ""
  613. "Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n"
  614. "\n"
  615. "apt-mark is a simple command line interface for marking packages\n"
  616. "as manually or automatically installed. It can also list marks.\n"
  617. "\n"
  618. "Commands:\n"
  619. " auto - Mark the given packages as automatically installed\n"
  620. " manual - Mark the given packages as manually installed\n"
  621. " hold - Mark a package as held back\n"
  622. " unhold - Unset a package set as held back\n"
  623. " showauto - Print the list of automatically installed packages\n"
  624. " showmanual - Print the list of manually installed packages\n"
  625. " showhold - Print the list of package on hold\n"
  626. "\n"
  627. "Options:\n"
  628. " -h This help text.\n"
  629. " -q Loggable output - no progress indicator\n"
  630. " -qq No output except for errors\n"
  631. " -s No-act. Just prints what would be done.\n"
  632. " -f read/write auto/manual marking in the given file\n"
  633. " -c=? Read this configuration file\n"
  634. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  635. "See the apt-mark(8) and apt.conf(5) manual pages for more information."
  636. msgstr ""
  637. "Použití: apt-mark [volby] {auto|manual} balík1 [balík2 …]\n"
  638. "\n"
  639. "apt-mark je jednoduché řádkové rozhraní pro označování balíků jako\n"
  640. "instalovaných ručně nebo automaticky. Také umí tyto značky vypsat.\n"
  641. "\n"
  642. "Příkazy:\n"
  643. " auto - Označí dané balíky jako instalované automaticky\n"
  644. " manual - Označí dané balíky jako instalované ručně\n"
  645. " hold - Označí balík jako podržený v aktuální verzi\n"
  646. " unhold - Zruší podržení balíku v aktuální verzi\n"
  647. " showauto - Vypíše seznam balíků instalovaných automaticky\n"
  648. " showmanual - Vypíše seznam balíků instalovaných ručně\n"
  649. " showhold - Vypíše seznam podržených balíků\n"
  650. "\n"
  651. "Volby:\n"
  652. " -h Tato nápověda.\n"
  653. " -q Nezobrazí indikátor postupu - vhodné pro záznam\n"
  654. " -qq Nezobrazí nic než chyby\n"
  655. " -s Pouze simuluje prováděné akce\n"
  656. " -f Přečte/zapíše ruční/automatické značky z/do daného souboru\n"
  657. " -c=? Načte daný konfigurační soubor\n"
  658. " -o=? Nastaví libovolnou volbu, např. -o dir::cache=/tmp\n"
  659. "Více informací viz manuálové stránky apt-mark(8) a apt.conf(5)."
  660. #: cmdline/apt.cc:46
  661. #, fuzzy
  662. msgid ""
  663. "Usage: apt [options] command\n"
  664. "\n"
  665. "CLI for apt.\n"
  666. "Basic commands: \n"
  667. " list - list packages based on package names\n"
  668. " search - search in package descriptions\n"
  669. " show - show package details\n"
  670. "\n"
  671. " update - update list of available packages\n"
  672. "\n"
  673. " install - install packages\n"
  674. " remove - remove packages\n"
  675. " autoremove - Remove automatically all unused packages\n"
  676. "\n"
  677. " upgrade - upgrade the system by installing/upgrading packages\n"
  678. " full-upgrade - upgrade the system by removing/installing/upgrading "
  679. "packages\n"
  680. "\n"
  681. " edit-sources - edit the source information file\n"
  682. msgstr ""
  683. "Použití: apt [volby] příkaz\n"
  684. "\n"
  685. "Řádkové rozhraní pro apt.\n"
  686. "Základní příkazy:\n"
  687. " list - vypíše balíky podle jmen\n"
  688. " search - hledá v popisech balíků\n"
  689. " show - zobrazí podrobnosti balíku\n"
  690. "\n"
  691. " update - aktualizuje seznam dostupných balíků\n"
  692. "\n"
  693. " install - nainstaluje balíky\n"
  694. " remove - odstraní balíky\n"
  695. "\n"
  696. " upgrade - aktualizuje systém instalací/aktualizací balíků\n"
  697. " full-upgrade - aktualizuje systém instalací/aktualizací/odstraněním balíků\n"
  698. "\n"
  699. " edit-sources - upraví soubor se zdroji balíků\n"
  700. #: methods/cdrom.cc:203
  701. #, c-format
  702. msgid "Unable to read the cdrom database %s"
  703. msgstr "Nelze číst databázi na cdrom %s"
  704. #: methods/cdrom.cc:212
  705. msgid ""
  706. "Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update "
  707. "cannot be used to add new CD-ROMs"
  708. msgstr ""
  709. "Pro přidání CD do APTu použijte apt-cdrom. apt-get update nelze využít pro "
  710. "přidávání nových CD."
  711. #: methods/cdrom.cc:222
  712. msgid "Wrong CD-ROM"
  713. msgstr "Chybné CD"
  714. #: methods/cdrom.cc:249
  715. #, c-format
  716. msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
  717. msgstr "Nelze odpojit CD-ROM v %s - možná se stále používá."
  718. #: methods/cdrom.cc:254
  719. msgid "Disk not found."
  720. msgstr "Disk nebyl nalezen."
  721. #: methods/cdrom.cc:262 methods/file.cc:121 methods/rsh.cc:299
  722. msgid "File not found"
  723. msgstr "Soubor nebyl nalezen"
  724. #: methods/copy.cc:57 methods/gzip.cc:127 methods/rred.cc:654
  725. #: methods/rred.cc:664
  726. msgid "Failed to stat"
  727. msgstr "Selhalo vyhodnocení"
  728. #: methods/copy.cc:101 methods/gzip.cc:134 methods/rred.cc:661
  729. msgid "Failed to set modification time"
  730. msgstr "Nelze nastavit čas modifikace"
  731. #: methods/file.cc:49
  732. msgid "Invalid URI, local URIS must not start with //"
  733. msgstr "Neplatné URI, lokální URI nesmí začínat na //"
  734. #. Login must be before getpeername otherwise dante won't work.
  735. #: methods/ftp.cc:177
  736. msgid "Logging in"
  737. msgstr "Přihlašování"
  738. #: methods/ftp.cc:183
  739. msgid "Unable to determine the peer name"
  740. msgstr "Nelze určit jméno druhé strany"
  741. #: methods/ftp.cc:188
  742. msgid "Unable to determine the local name"
  743. msgstr "Nelze určit lokální jméno"
  744. #: methods/ftp.cc:219 methods/ftp.cc:247
  745. #, c-format
  746. msgid "The server refused the connection and said: %s"
  747. msgstr "Server zamítl naše spojení a řekl: %s"
  748. #: methods/ftp.cc:225
  749. #, c-format
  750. msgid "USER failed, server said: %s"
  751. msgstr "USER selhal, server řekl: %s"
  752. #: methods/ftp.cc:232
  753. #, c-format
  754. msgid "PASS failed, server said: %s"
  755. msgstr "PASS selhal, server řekl: %s"
  756. #: methods/ftp.cc:252
  757. msgid ""
  758. "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin "
  759. "is empty."
  760. msgstr ""
  761. "Byl zadán proxy server, ale ne přihlašovací skript. Acquire::ftp::ProxyLogin "
  762. "je prázdný."
  763. #: methods/ftp.cc:282
  764. #, c-format
  765. msgid "Login script command '%s' failed, server said: %s"
  766. msgstr "Příkaz „%s“ přihlašovacího skriptu selhal, server řekl: %s"
  767. #: methods/ftp.cc:308
  768. #, c-format
  769. msgid "TYPE failed, server said: %s"
  770. msgstr "TYPE selhal, server řekl: %s"
  771. #: methods/ftp.cc:346 methods/ftp.cc:458 methods/rsh.cc:213 methods/rsh.cc:261
  772. msgid "Connection timeout"
  773. msgstr "Čas spojení vypršel"
  774. #: methods/ftp.cc:352
  775. msgid "Server closed the connection"
  776. msgstr "Server uzavřel spojení"
  777. #: methods/ftp.cc:355 methods/rsh.cc:220 apt-pkg/contrib/fileutl.cc:1569
  778. #: apt-pkg/contrib/fileutl.cc:1578 apt-pkg/contrib/fileutl.cc:1583
  779. #: apt-pkg/contrib/fileutl.cc:1585
  780. msgid "Read error"
  781. msgstr "Chyba čtení"
  782. #: methods/ftp.cc:362 methods/rsh.cc:227
  783. msgid "A response overflowed the buffer."
  784. msgstr "Odpověď přeplnila buffer."
  785. #: methods/ftp.cc:379 methods/ftp.cc:391
  786. msgid "Protocol corruption"
  787. msgstr "Porušení protokolu"
  788. #: methods/ftp.cc:464 methods/rsh.cc:267 apt-pkg/contrib/fileutl.cc:946
  789. #: apt-pkg/contrib/fileutl.cc:1691 apt-pkg/contrib/fileutl.cc:1700
  790. #: apt-pkg/contrib/fileutl.cc:1705 apt-pkg/contrib/fileutl.cc:1707
  791. #: apt-pkg/contrib/fileutl.cc:1732
  792. msgid "Write error"
  793. msgstr "Chyba zápisu"
  794. #: methods/ftp.cc:703 methods/ftp.cc:709 methods/ftp.cc:744
  795. msgid "Could not create a socket"
  796. msgstr "Nelze vytvořit socket"
  797. #: methods/ftp.cc:714
  798. msgid "Could not connect data socket, connection timed out"
  799. msgstr "Nelze připojit datový socket, čas spojení vypršel"
  800. #: methods/ftp.cc:718 methods/connect.cc:120 methods/rsh.cc:102
  801. msgid "Failed"
  802. msgstr "Selhalo"
  803. #: methods/ftp.cc:720
  804. msgid "Could not connect passive socket."
  805. msgstr "Nelze připojit pasivní socket."
  806. #: methods/ftp.cc:737
  807. msgid "getaddrinfo was unable to get a listening socket"
  808. msgstr "getaddrinfo nezískal naslouchající socket"
  809. #: methods/ftp.cc:751
  810. msgid "Could not bind a socket"
  811. msgstr "Nelze navázat socket"
  812. #: methods/ftp.cc:755
  813. msgid "Could not listen on the socket"
  814. msgstr "Nelze naslouchat na socketu"
  815. #: methods/ftp.cc:762
  816. msgid "Could not determine the socket's name"
  817. msgstr "Nelze určit jméno socketu"
  818. #: methods/ftp.cc:794
  819. msgid "Unable to send PORT command"
  820. msgstr "Nelze odeslat příkaz PORT"
  821. #: methods/ftp.cc:804
  822. #, c-format
  823. msgid "Unknown address family %u (AF_*)"
  824. msgstr "Neznámá rodina adres %u (AF_*)"
  825. #: methods/ftp.cc:813
  826. #, c-format
  827. msgid "EPRT failed, server said: %s"
  828. msgstr "EPRT selhal, server řekl: %s"
  829. #: methods/ftp.cc:833
  830. msgid "Data socket connect timed out"
  831. msgstr "Spojení datového socketu vypršelo"
  832. #: methods/ftp.cc:840
  833. msgid "Unable to accept connection"
  834. msgstr "Nelze přijmout spojení"
  835. #: methods/ftp.cc:880 methods/server.cc:391 methods/rsh.cc:337
  836. msgid "Problem hashing file"
  837. msgstr "Problém s kontrolním součtem souboru"
  838. #: methods/ftp.cc:893
  839. #, c-format
  840. msgid "Unable to fetch file, server said '%s'"
  841. msgstr "Nelze stáhnout soubor, server řekl „%s“"
  842. #: methods/ftp.cc:908 methods/rsh.cc:356
  843. msgid "Data socket timed out"
  844. msgstr "Datový socket vypršel"
  845. #: methods/ftp.cc:945
  846. #, c-format
  847. msgid "Data transfer failed, server said '%s'"
  848. msgstr "Přenos dat selhal, server řekl „%s“"
  849. #. Get the files information
  850. #: methods/ftp.cc:1028
  851. msgid "Query"
  852. msgstr "Dotaz"
  853. #: methods/ftp.cc:1142
  854. msgid "Unable to invoke "
  855. msgstr "Nelze vyvolat "
  856. #: methods/connect.cc:80
  857. #, c-format
  858. msgid "Connecting to %s (%s)"
  859. msgstr "Připojování k %s (%s)"
  860. #: methods/connect.cc:91
  861. #, c-format
  862. msgid "[IP: %s %s]"
  863. msgstr "[IP: %s %s]"
  864. #: methods/connect.cc:98
  865. #, c-format
  866. msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
  867. msgstr "Nelze vytvořit socket pro %s (f=%u t=%u p=%u)"
  868. #: methods/connect.cc:104
  869. #, c-format
  870. msgid "Cannot initiate the connection to %s:%s (%s)."
  871. msgstr "Nelze navázat spojení na %s:%s (%s)."
  872. #: methods/connect.cc:112
  873. #, c-format
  874. msgid "Could not connect to %s:%s (%s), connection timed out"
  875. msgstr "Nelze se připojit k %s:%s (%s), čas spojení vypršel"
  876. #: methods/connect.cc:130
  877. #, c-format
  878. msgid "Could not connect to %s:%s (%s)."
  879. msgstr "Nelze se připojit k %s:%s (%s)."
  880. #. We say this mainly because the pause here is for the
  881. #. ssh connection that is still going
  882. #: methods/connect.cc:155 methods/rsh.cc:460
  883. #, c-format
  884. msgid "Connecting to %s"
  885. msgstr "Připojování k %s"
  886. #: methods/connect.cc:181 methods/connect.cc:200
  887. #, c-format
  888. msgid "Could not resolve '%s'"
  889. msgstr "Nelze přeložit „%s“"
  890. #: methods/connect.cc:206
  891. #, c-format
  892. msgid "Temporary failure resolving '%s'"
  893. msgstr "Dočasné selhání při zjišťování „%s“"
  894. #: methods/connect.cc:210
  895. #, c-format
  896. msgid "System error resolving '%s:%s'"
  897. msgstr "Systémová chyba při překladu „%s:%s“"
  898. #: methods/connect.cc:212
  899. #, c-format
  900. msgid "Something wicked happened resolving '%s:%s' (%i - %s)"
  901. msgstr "Něco hodně ošklivého se přihodilo při překladu „%s:%s“ (%i - %s)"
  902. #: methods/connect.cc:259
  903. #, c-format
  904. msgid "Unable to connect to %s:%s:"
  905. msgstr "Nelze se připojit k %s:%s:"
  906. #: methods/gpgv.cc:205 methods/gpgv.cc:215
  907. msgid "At least one invalid signature was encountered."
  908. msgstr "Byl zaznamenán nejméně jeden neplatný podpis. "
  909. #: methods/gpgv.cc:210
  910. msgid ""
  911. "Internal error: Good signature, but could not determine key fingerprint?!"
  912. msgstr "Vnitřní chyba: Dobrý podpis, ale nelze zjistit otisk klíče?!"
  913. #: methods/gpgv.cc:217
  914. msgid "Could not execute 'apt-key' to verify signature (is gnupg installed?)"
  915. msgstr "Nelze spustit „apt-key“ pro ověření podpisu (je gnupg nainstalováno?)"
  916. #. TRANSLATORS: %s is a single techy word like 'NODATA'
  917. #: methods/gpgv.cc:223 apt-pkg/acquire-item.cc:604
  918. #, c-format
  919. msgid ""
  920. "Clearsigned file isn't valid, got '%s' (does the network require "
  921. "authentication?)"
  922. msgstr ""
  923. "Podepsaný soubor není platný, obdrženo „%s“ (vyžaduje přístup na síť "
  924. "ověření?)"
  925. #: methods/gpgv.cc:227
  926. msgid "Unknown error executing apt-key"
  927. msgstr "Neznámá chyba při spouštění apt-key"
  928. #: methods/gpgv.cc:260 methods/gpgv.cc:267
  929. msgid "The following signatures were invalid:\n"
  930. msgstr "Následující podpisy jsou neplatné:\n"
  931. #: methods/gpgv.cc:274
  932. msgid ""
  933. "The following signatures couldn't be verified because the public key is not "
  934. "available:\n"
  935. msgstr ""
  936. "Následující podpisy nemohly být ověřeny, protože není dostupný veřejný "
  937. "klíč:\n"
  938. #: methods/gzip.cc:79
  939. msgid "Empty files can't be valid archives"
  940. msgstr "Prázdné soubory nejsou platnými archivy"
  941. #: methods/http.cc:515
  942. msgid "Error writing to the file"
  943. msgstr "Chyba zápisu do souboru"
  944. #: methods/http.cc:529
  945. msgid "Error reading from server. Remote end closed connection"
  946. msgstr "Chyba čtení ze serveru. Druhá strana zavřela spojení"
  947. #: methods/http.cc:531
  948. msgid "Error reading from server"
  949. msgstr "Chyba čtení ze serveru"
  950. #: methods/http.cc:567
  951. msgid "Error writing to file"
  952. msgstr "Chyba zápisu do souboru"
  953. #: methods/http.cc:627
  954. msgid "Select failed"
  955. msgstr "Výběr selhal"
  956. #: methods/http.cc:632
  957. msgid "Connection timed out"
  958. msgstr "Čas spojení vypršel"
  959. #: methods/http.cc:655
  960. msgid "Error writing to output file"
  961. msgstr "Chyba zápisu do výstupního souboru"
  962. #: methods/server.cc:52
  963. msgid "Waiting for headers"
  964. msgstr "Čeká se na hlavičky"
  965. #: methods/server.cc:111
  966. msgid "Bad header line"
  967. msgstr "Chybná hlavička"
  968. #: methods/server.cc:136 methods/server.cc:143
  969. msgid "The HTTP server sent an invalid reply header"
  970. msgstr "Http server poslal neplatnou hlavičku odpovědi"
  971. #: methods/server.cc:173
  972. msgid "The HTTP server sent an invalid Content-Length header"
  973. msgstr "Http server poslal neplatnou hlavičku Content-Length"
  974. #: methods/server.cc:200
  975. msgid "The HTTP server sent an invalid Content-Range header"
  976. msgstr "Http server poslal neplatnou hlavičku Content-Range"
  977. #: methods/server.cc:202
  978. msgid "This HTTP server has broken range support"
  979. msgstr "Tento HTTP server má porouchanou podporu rozsahů"
  980. #: methods/server.cc:229
  981. msgid "Unknown date format"
  982. msgstr "Neznámý formát data"
  983. #: methods/server.cc:535
  984. msgid "Bad header data"
  985. msgstr "Špatné datové záhlaví"
  986. #: methods/server.cc:552 methods/server.cc:646
  987. msgid "Connection failed"
  988. msgstr "Spojení selhalo"
  989. #: methods/server.cc:618
  990. #, c-format
  991. msgid ""
  992. "Automatically disabled %s due to incorrect response from server/proxy. (man "
  993. "5 apt.conf)"
  994. msgstr ""
  995. #: methods/server.cc:741
  996. msgid "Internal error"
  997. msgstr "Vnitřní chyba"
  998. #: apt-private/private-cacheset.cc:38 apt-private/private-search.cc:65
  999. msgid "Sorting"
  1000. msgstr "Řadí se"
  1001. #: apt-private/private-cacheset.cc:127
  1002. #, c-format
  1003. msgid "Note, selecting '%s' for task '%s'\n"
  1004. msgstr "Pozn: vybírám „%s“ pro úlohu „%s“\n"
  1005. #: apt-private/private-cacheset.cc:133
  1006. #, fuzzy, c-format
  1007. msgid "Note, selecting '%s' for glob '%s'\n"
  1008. msgstr "Pozn: vybírám „%s“ pro regulární výraz „%s“\n"
  1009. #: apt-private/private-cacheset.cc:139
  1010. #, c-format
  1011. msgid "Note, selecting '%s' for regex '%s'\n"
  1012. msgstr "Pozn: vybírám „%s“ pro regulární výraz „%s“\n"
  1013. #: apt-private/private-cacheset.cc:157
  1014. #, c-format
  1015. msgid "Package %s is a virtual package provided by:\n"
  1016. msgstr "Balík %s je virtuální balík poskytovaný:\n"
  1017. #: apt-private/private-cacheset.cc:168
  1018. #, fuzzy
  1019. msgid " [Installed]"
  1020. msgstr "[instalovaný]"
  1021. #: apt-private/private-cacheset.cc:177
  1022. msgid " [Not candidate version]"
  1023. msgstr " [Není kandidátská verze]"
  1024. #: apt-private/private-cacheset.cc:179
  1025. msgid "You should explicitly select one to install."
  1026. msgstr "Měli byste explicitně vybrat jeden k instalaci."
  1027. #: apt-private/private-cacheset.cc:182
  1028. #, c-format
  1029. msgid ""
  1030. "Package %s is not available, but is referred to by another package.\n"
  1031. "This may mean that the package is missing, has been obsoleted, or\n"
  1032. "is only available from another source\n"
  1033. msgstr ""
  1034. "Balík %s není dostupný, ale jiný balík se na něj odkazuje.\n"
  1035. "To může znamenat že balík chybí, byl zastarán, nebo je dostupný\n"
  1036. "pouze z jiného zdroje\n"
  1037. #: apt-private/private-cacheset.cc:200
  1038. msgid "However the following packages replace it:"
  1039. msgstr "Nicméně následující balíky jej nahrazují:"
  1040. #: apt-private/private-cacheset.cc:213
  1041. #, c-format
  1042. msgid "Package '%s' has no installation candidate"
  1043. msgstr "Balík „%s“ nemá kandidáta pro instalaci"
  1044. #: apt-private/private-cacheset.cc:226
  1045. #, c-format
  1046. msgid "Virtual packages like '%s' can't be removed\n"
  1047. msgstr "Virtuální balíky jako „%s“ nemohou být odstraněny\n"
  1048. #. TRANSLATORS: Note, this is not an interactive question
  1049. #: apt-private/private-cacheset.cc:238 apt-private/private-install.cc:915
  1050. #, c-format
  1051. msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n"
  1052. msgstr ""
  1053. "Balík „%s“ není nainstalován, nelze tedy odstranit. Mysleli jste „%s“?\n"
  1054. #: apt-private/private-cacheset.cc:244 apt-private/private-install.cc:921
  1055. #, c-format
  1056. msgid "Package '%s' is not installed, so not removed\n"
  1057. msgstr "Balík „%s“ není nainstalován, nelze tedy odstranit\n"
  1058. #: apt-private/private-cacheset.cc:289
  1059. #, c-format
  1060. msgid "Note, selecting '%s' instead of '%s'\n"
  1061. msgstr "Pozn: Vybírám „%s“ místo „%s“\n"
  1062. #: apt-private/private-install.cc:87
  1063. msgid "Internal error, InstallPackages was called with broken packages!"
  1064. msgstr "Vnitřní chyba, InstallPackages byl zavolán s porušenými balíky!"
  1065. #: apt-private/private-install.cc:96
  1066. msgid "Packages need to be removed but remove is disabled."
  1067. msgstr "Balík je potřeba odstranit ale funkce Odstranit je vypnuta."
  1068. #: apt-private/private-install.cc:103 apt-private/private-download.cc:118
  1069. msgid ""
  1070. "--force-yes is deprecated, use one of the options starting with --allow "
  1071. "instead."
  1072. msgstr ""
  1073. #: apt-private/private-install.cc:108
  1074. #, fuzzy
  1075. msgid ""
  1076. "Essential packages were removed and -y was used without --allow-remove-"
  1077. "essential."
  1078. msgstr "Vyskytly se problémy a -y bylo použito bez --force-yes"
  1079. #: apt-private/private-install.cc:110
  1080. #, fuzzy
  1081. msgid "Packages were downgraded and -y was used without --allow-downgrades."
  1082. msgstr "Vyskytly se problémy a -y bylo použito bez --force-yes"
  1083. #: apt-private/private-install.cc:112
  1084. msgid ""
  1085. "Held packages were changed and -y was used without --allow-change-held-"
  1086. "packages."
  1087. msgstr ""
  1088. #: apt-private/private-install.cc:128
  1089. msgid "Internal error, Ordering didn't finish"
  1090. msgstr "Vnitřní chyba, třídění nedoběhlo do konce"
  1091. #: apt-private/private-install.cc:166
  1092. msgid "How odd... The sizes didn't match, email apt@packages.debian.org"
  1093. msgstr ""
  1094. "Jak podivné… velikosti nesouhlasí, ohlaste to na apt@packages.debian.org"
  1095. #. TRANSLATOR: The required space between number and unit is already included
  1096. #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
  1097. #: apt-private/private-install.cc:173
  1098. #, c-format
  1099. msgid "Need to get %sB/%sB of archives.\n"
  1100. msgstr "Nutno stáhnout %sB/%sB archivů.\n"
  1101. #. TRANSLATOR: The required space between number and unit is already included
  1102. #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
  1103. #: apt-private/private-install.cc:178
  1104. #, c-format
  1105. msgid "Need to get %sB of archives.\n"
  1106. msgstr "Nutno stáhnout %sB archivů.\n"
  1107. #. TRANSLATOR: The required space between number and unit is already included
  1108. #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
  1109. #: apt-private/private-install.cc:185
  1110. #, c-format
  1111. msgid "After this operation, %sB of additional disk space will be used.\n"
  1112. msgstr "Po této operaci bude na disku použito dalších %sB.\n"
  1113. #. TRANSLATOR: The required space between number and unit is already included
  1114. #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
  1115. #: apt-private/private-install.cc:190
  1116. #, c-format
  1117. msgid "After this operation, %sB disk space will be freed.\n"
  1118. msgstr "Po této operaci bude na disku uvolněno %sB.\n"
  1119. #: apt-private/private-install.cc:202 apt-private/private-install.cc:224
  1120. msgid "Trivial Only specified but this is not a trivial operation."
  1121. msgstr "Udáno „pouze triviální“, ovšem toto není triviální operace."
  1122. #. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be
  1123. #. careful with hard to type or special characters (like non-breaking spaces)
  1124. #: apt-private/private-install.cc:206
  1125. msgid "Yes, do as I say!"
  1126. msgstr "Ano, udělej to tak, jak říkám!"
  1127. #: apt-private/private-install.cc:208
  1128. #, c-format
  1129. msgid ""
  1130. "You are about to do something potentially harmful.\n"
  1131. "To continue type in the phrase '%s'\n"
  1132. " ?] "
  1133. msgstr ""
  1134. "Chystáte se vykonat něco potenciálně škodlivého.\n"
  1135. "Pro pokračování opište frázi „%s“\n"
  1136. " ?] "
  1137. #: apt-private/private-install.cc:214 apt-private/private-install.cc:232
  1138. msgid "Abort."
  1139. msgstr "Přerušeno."
  1140. #: apt-private/private-install.cc:229
  1141. msgid "Do you want to continue?"
  1142. msgstr "Chcete pokračovat?"
  1143. #: apt-private/private-install.cc:299
  1144. msgid "Some files failed to download"
  1145. msgstr "Některé soubory nemohly být staženy"
  1146. #: apt-private/private-install.cc:306
  1147. msgid ""
  1148. "Unable to fetch some archives, maybe run apt-get update or try with --fix-"
  1149. "missing?"
  1150. msgstr ""
  1151. "Nelze stáhnout některé archivy. Možná spusťte apt-get update nebo zkuste --"
  1152. "fix-missing?"
  1153. #: apt-private/private-install.cc:310
  1154. msgid "--fix-missing and media swapping is not currently supported"
  1155. msgstr "--fix-missing a výměna média nejsou momentálně podporovány"
  1156. #: apt-private/private-install.cc:315
  1157. msgid "Unable to correct missing packages."
  1158. msgstr "Nelze opravit chybějící balíky."
  1159. #: apt-private/private-install.cc:316
  1160. msgid "Aborting install."
  1161. msgstr "Instalace se přerušuje."
  1162. #: apt-private/private-install.cc:341
  1163. msgid ""
  1164. "The following package disappeared from your system as\n"
  1165. "all files have been overwritten by other packages:"
  1166. msgid_plural ""
  1167. "The following packages disappeared from your system as\n"
  1168. "all files have been overwritten by other packages:"
  1169. msgstr[0] ""
  1170. "Následující balík z tohoto systému zmizel, protože\n"
  1171. "všechny jeho soubory byly přepsány jinými balíky:"
  1172. msgstr[1] ""
  1173. "Následující balíky z tohoto systému zmizely, protože\n"
  1174. "všechny jejich soubory byly přepsány jinými balíky:"
  1175. msgstr[2] ""
  1176. "Následující balíky z tohoto systému zmizely, protože\n"
  1177. "všechny jejich soubory byly přepsány jinými balíky:"
  1178. #: apt-private/private-install.cc:348
  1179. msgid "Note: This is done automatically and on purpose by dpkg."
  1180. msgstr "Poznámka: Toto má svůj důvod a děje se automaticky v dpkg."
  1181. #: apt-private/private-install.cc:370
  1182. msgid "We are not supposed to delete stuff, can't start AutoRemover"
  1183. msgstr "Neměli bychom mazat věci, nelze spustit AutoRemover"
  1184. #: apt-private/private-install.cc:463
  1185. msgid ""
  1186. "Hmm, seems like the AutoRemover destroyed something which really\n"
  1187. "shouldn't happen. Please file a bug report against apt."
  1188. msgstr ""
  1189. "Hmm, zdá se, že AutoRemover zničil něco, co neměl.\n"
  1190. "Nahlaste prosím chybu v apt."
  1191. #.
  1192. #. if (Packages == 1)
  1193. #. {
  1194. #. c1out << std::endl;
  1195. #. c1out <<
  1196. #. _("Since you only requested a single operation it is extremely likely that\n"
  1197. #. "the package is simply not installable and a bug report against\n"
  1198. #. "that package should be filed.") << std::endl;
  1199. #. }
  1200. #.
  1201. #: apt-private/private-install.cc:466 apt-private/private-install.cc:622
  1202. msgid "The following information may help to resolve the situation:"
  1203. msgstr "Následující informace vám mohou pomoci vyřešit tuto situaci:"
  1204. #: apt-private/private-install.cc:470
  1205. msgid "Internal Error, AutoRemover broke stuff"
  1206. msgstr "Vnitřní chyba, AutoRemover pokazil věci"
  1207. #: apt-private/private-install.cc:479
  1208. msgid ""
  1209. "The following package was automatically installed and is no longer required:"
  1210. msgid_plural ""
  1211. "The following packages were automatically installed and are no longer "
  1212. "required:"
  1213. msgstr[0] "Následující balík byl nainstalován automaticky a již není potřeba:"
  1214. msgstr[1] ""
  1215. "Následující balíky byly nainstalovány automaticky a již nejsou potřeba:"
  1216. msgstr[2] ""
  1217. "Následující balíky byly nainstalovány automaticky a již nejsou potřeba:"
  1218. #: apt-private/private-install.cc:486
  1219. #, c-format
  1220. msgid "%lu package was automatically installed and is no longer required.\n"
  1221. msgid_plural ""
  1222. "%lu packages were automatically installed and are no longer required.\n"
  1223. msgstr[0] "%lu balík byl nainstalován automaticky a již není potřeba.\n"
  1224. msgstr[1] "%lu balíky byly nainstalovány automaticky a již nejsou potřeba.\n"
  1225. msgstr[2] "%lu balíků bylo nainstalováno automaticky a již nejsou potřeba.\n"
  1226. #: apt-private/private-install.cc:488
  1227. msgid "Use 'apt-get autoremove' to remove it."
  1228. msgid_plural "Use 'apt-get autoremove' to remove them."
  1229. msgstr[0] "Pro jeho odstranění použijte „apt-get autoremove“."
  1230. msgstr[1] "Pro jejich odstranění použijte „apt-get autoremove“."
  1231. msgstr[2] "Pro jejich odstranění použijte „apt-get autoremove“."
  1232. #: apt-private/private-install.cc:582
  1233. msgid "You might want to run 'apt-get -f install' to correct these:"
  1234. msgstr "Pro opravení následujících můžete spustit „apt-get -f install“:"
  1235. #: apt-private/private-install.cc:584
  1236. msgid ""
  1237. "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
  1238. "solution)."
  1239. msgstr ""
  1240. "Nesplněné závislosti. Zkuste spustit „apt-get -f install“ bez balíků (nebo "
  1241. "navrhněte řešení)."
  1242. #: apt-private/private-install.cc:607
  1243. msgid ""
  1244. "Some packages could not be installed. This may mean that you have\n"
  1245. "requested an impossible situation or if you are using the unstable\n"
  1246. "distribution that some required packages have not yet been created\n"
  1247. "or been moved out of Incoming."
  1248. msgstr ""
  1249. "Některé balíky nemohly být instalovány. To může znamenat, že požadujete\n"
  1250. "nemožnou situaci, nebo, pokud používáte nestabilní distribuci, že\n"
  1251. "vyžadované balíky ještě nebyly vytvořeny nebo přesunuty z Příchozí fronty."
  1252. #: apt-private/private-install.cc:628
  1253. msgid "Broken packages"
  1254. msgstr "Poškozené balíky"
  1255. #: apt-private/private-install.cc:685
  1256. #, fuzzy
  1257. msgid "The following additional packages will be installed:"
  1258. msgstr "Následující extra balíky budou instalovány:"
  1259. #: apt-private/private-install.cc:774
  1260. msgid "Suggested packages:"
  1261. msgstr "Navrhované balíky:"
  1262. #: apt-private/private-install.cc:776
  1263. msgid "Recommended packages:"
  1264. msgstr "Doporučované balíky:"
  1265. #: apt-private/private-install.cc:798
  1266. #, c-format
  1267. msgid "Skipping %s, it is already installed and upgrade is not set.\n"
  1268. msgstr "%s bude přeskočen, protože je již nainstalován.\n"
  1269. #: apt-private/private-install.cc:802
  1270. #, c-format
  1271. msgid "Skipping %s, it is not installed and only upgrades are requested.\n"
  1272. msgstr ""
  1273. "%s bude přeskočen, protože není nainstalován a vyžadovány jsou pouze "
  1274. "aktualizace.\n"
  1275. #: apt-private/private-install.cc:814
  1276. #, c-format
  1277. msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
  1278. msgstr "Přeinstalace %s není možná, protože nelze stáhnout.\n"
  1279. #. TRANSLATORS: First string is package name, second is version
  1280. #: apt-private/private-install.cc:820
  1281. #, fuzzy, c-format
  1282. msgid "%s is already the newest version (%s).\n"
  1283. msgstr "%s je již nejnovější verze.\n"
  1284. #: apt-private/private-install.cc:868
  1285. #, c-format
  1286. msgid "Selected version '%s' (%s) for '%s'\n"
  1287. msgstr "Vybraná verze „%s“ (%s) pro „%s“\n"
  1288. #: apt-private/private-install.cc:873
  1289. #, c-format
  1290. msgid "Selected version '%s' (%s) for '%s' because of '%s'\n"
  1291. msgstr "Vybraná verze „%s“ (%s) pro „%s“ kvůli „%s“\n"
  1292. #: apt-private/private-list.cc:121
  1293. msgid "Listing"
  1294. msgstr "Vypisuje se"
  1295. #: apt-private/private-list.cc:151
  1296. #, c-format
  1297. msgid "There is %i additional version. Please use the '-a' switch to see it"
  1298. msgid_plural ""
  1299. "There are %i additional versions. Please use the '-a' switch to see them."
  1300. msgstr[0] "Existuje %i další verze. Zobrazíte ji přepínačem „-a“."
  1301. msgstr[1] "Existují %i další verze. Zobrazíte je přepínačem „-a“."
  1302. msgstr[2] "Existuje %i dalších verzí. Zobrazíte je přepínačem „-a“."
  1303. #: apt-private/private-cachefile.cc:96
  1304. msgid "Correcting dependencies..."
  1305. msgstr "Opravují se závislosti…"
  1306. #: apt-private/private-cachefile.cc:99
  1307. msgid " failed."
  1308. msgstr " selhalo."
  1309. #: apt-private/private-cachefile.cc:102
  1310. msgid "Unable to correct dependencies"
  1311. msgstr "Nelze opravit závislosti"
  1312. #: apt-private/private-cachefile.cc:105
  1313. msgid "Unable to minimize the upgrade set"
  1314. msgstr "Nelze minimalizovat sadu pro aktualizaci"
  1315. #: apt-private/private-cachefile.cc:107
  1316. msgid " Done"
  1317. msgstr " Hotovo"
  1318. #: apt-private/private-cachefile.cc:111
  1319. msgid "You might want to run 'apt-get -f install' to correct these."
  1320. msgstr "Pro opravení můžete spustit „apt-get -f install“."
  1321. #: apt-private/private-cachefile.cc:114
  1322. msgid "Unmet dependencies. Try using -f."
  1323. msgstr "Nesplněné závislosti. Zkuste použít -f."
  1324. #: apt-private/private-output.cc:105 apt-private/private-show.cc:84
  1325. #: apt-private/private-show.cc:89
  1326. msgid "unknown"
  1327. msgstr "neznámá"
  1328. #: apt-private/private-output.cc:272
  1329. #, c-format
  1330. msgid "[installed,upgradable to: %s]"
  1331. msgstr "[instalovaný,aktualizovatelný na: %s]"
  1332. #: apt-private/private-output.cc:275
  1333. msgid "[installed,local]"
  1334. msgstr "[instalovaný,lokální]"
  1335. #: apt-private/private-output.cc:277
  1336. msgid "[installed,auto-removable]"
  1337. msgstr "[instalovaný,automaticky-odstranitelný]"
  1338. #: apt-private/private-output.cc:279
  1339. msgid "[installed,automatic]"
  1340. msgstr "[instalovaný,automaticky]"
  1341. #: apt-private/private-output.cc:281
  1342. msgid "[installed]"
  1343. msgstr "[instalovaný]"
  1344. #: apt-private/private-output.cc:284
  1345. #, c-format
  1346. msgid "[upgradable from: %s]"
  1347. msgstr "[aktualizovatelný z: %s]"
  1348. #: apt-private/private-output.cc:288
  1349. msgid "[residual-config]"
  1350. msgstr "[zbytkové-konfigurační-coubory]"
  1351. #: apt-private/private-output.cc:402
  1352. #, c-format
  1353. msgid "but %s is installed"
  1354. msgstr "ale %s je nainstalován"
  1355. #: apt-private/private-output.cc:404
  1356. #, c-format
  1357. msgid "but %s is to be installed"
  1358. msgstr "ale %s se bude instalovat"
  1359. #: apt-private/private-output.cc:411
  1360. msgid "but it is not installable"
  1361. msgstr "ale nedá se nainstalovat"
  1362. #: apt-private/private-output.cc:413
  1363. msgid "but it is a virtual package"
  1364. msgstr "ale je to virtuální balík"
  1365. #: apt-private/private-output.cc:416
  1366. msgid "but it is not installed"
  1367. msgstr "ale není nainstalovaný"
  1368. #: apt-private/private-output.cc:416
  1369. msgid "but it is not going to be installed"
  1370. msgstr "ale nebude se instalovat"
  1371. #: apt-private/private-output.cc:421
  1372. msgid " or"
  1373. msgstr " nebo"
  1374. #: apt-private/private-output.cc:435 apt-private/private-output.cc:445
  1375. msgid "The following packages have unmet dependencies:"
  1376. msgstr "Následující balíky mají nesplněné závislosti:"
  1377. #: apt-private/private-output.cc:455
  1378. msgid "The following NEW packages will be installed:"
  1379. msgstr "Následující NOVÉ balíky budou nainstalovány:"
  1380. #: apt-private/private-output.cc:465
  1381. msgid "The following packages will be REMOVED:"
  1382. msgstr "Následující balíky budou ODSTRANĚNY:"
  1383. #: apt-private/private-output.cc:481
  1384. msgid "The following packages have been kept back:"
  1385. msgstr "Následující balíky jsou podrženy v aktuální verzi:"
  1386. #: apt-private/private-output.cc:497
  1387. msgid "The following packages will be upgraded:"
  1388. msgstr "Následující balíky budou aktualizovány:"
  1389. #: apt-private/private-output.cc:512
  1390. msgid "The following packages will be DOWNGRADED:"
  1391. msgstr "Následující balíky budou DEGRADOVÁNY:"
  1392. #: apt-private/private-output.cc:525
  1393. msgid "The following held packages will be changed:"
  1394. msgstr "Následující podržené balíky budou změněny:"
  1395. #: apt-private/private-output.cc:552
  1396. #, c-format
  1397. msgid "%s (due to %s)"
  1398. msgstr "%s (kvůli %s)"
  1399. #: apt-private/private-output.cc:602
  1400. msgid ""
  1401. "WARNING: The following essential packages will be removed.\n"
  1402. "This should NOT be done unless you know exactly what you are doing!"
  1403. msgstr ""
  1404. "VAROVÁNÍ: Následující nezbytné balíky budou odstraněny.\n"
  1405. "Pokud přesně nevíte, co děláte, NEDĚLEJTE to!"
  1406. #: apt-private/private-output.cc:633
  1407. #, c-format
  1408. msgid "%lu upgraded, %lu newly installed, "
  1409. msgstr "%lu aktualizováno, %lu nově instalováno, "
  1410. #: apt-private/private-output.cc:637
  1411. #, c-format
  1412. msgid "%lu reinstalled, "
  1413. msgstr "%lu přeinstalováno, "
  1414. #: apt-private/private-output.cc:639
  1415. #, c-format
  1416. msgid "%lu downgraded, "
  1417. msgstr "%lu degradováno, "
  1418. #: apt-private/private-output.cc:641
  1419. #, c-format
  1420. msgid "%lu to remove and %lu not upgraded.\n"
  1421. msgstr "%lu k odstranění a %lu neaktualizováno.\n"
  1422. #: apt-private/private-output.cc:645
  1423. #, c-format
  1424. msgid "%lu not fully installed or removed.\n"
  1425. msgstr "%lu instalováno nebo odstraněno pouze částečně.\n"
  1426. #. TRANSLATOR: Yes/No question help-text: defaulting to Y[es]
  1427. #. e.g. "Do you want to continue? [Y/n] "
  1428. #. The user has to answer with an input matching the
  1429. #. YESEXPR/NOEXPR defined in your l10n.
  1430. #: apt-private/private-output.cc:667
  1431. msgid "[Y/n]"
  1432. msgstr "[Y/n]"
  1433. #. TRANSLATOR: Yes/No question help-text: defaulting to N[o]
  1434. #. e.g. "Should this file be removed? [y/N] "
  1435. #. The user has to answer with an input matching the
  1436. #. YESEXPR/NOEXPR defined in your l10n.
  1437. #: apt-private/private-output.cc:673
  1438. msgid "[y/N]"
  1439. msgstr "[y/N]"
  1440. #. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set
  1441. #: apt-private/private-output.cc:684
  1442. msgid "Y"
  1443. msgstr "Y"
  1444. #. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set
  1445. #: apt-private/private-output.cc:690
  1446. msgid "N"
  1447. msgstr "N"
  1448. #: apt-private/private-output.cc:712 apt-pkg/cachefilter.cc:40
  1449. #, c-format
  1450. msgid "Regex compilation error - %s"
  1451. msgstr "Chyba při kompilaci regulárního výrazu - %s"
  1452. #: apt-private/private-update.cc:31
  1453. msgid "The update command takes no arguments"
  1454. msgstr "Příkaz update neakceptuje žádné argumenty"
  1455. #: apt-private/private-update.cc:96
  1456. #, c-format
  1457. msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n"
  1458. msgid_plural ""
  1459. "%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n"
  1460. msgstr[0] ""
  1461. "%i balík může být aktualizován. Zobrazíte jej „apt list --upgradable“.\n"
  1462. msgstr[1] ""
  1463. "%i balíky mohou být aktualizovány. Zobrazíte je „apt list --upgradable“.\n"
  1464. msgstr[2] ""
  1465. "%i balíků může být aktualizováno. Zobrazíte je „apt list --upgradable“.\n"
  1466. #: apt-private/private-update.cc:100
  1467. msgid "All packages are up to date."
  1468. msgstr "Všechny balíky jsou aktuální."
  1469. #: apt-private/private-show.cc:158
  1470. #, c-format
  1471. msgid "There is %i additional record. Please use the '-a' switch to see it"
  1472. msgid_plural ""
  1473. "There are %i additional records. Please use the '-a' switch to see them."
  1474. msgstr[0] "Existuje %i další záznam. Zobrazíte jej přepínačem „-a“."
  1475. msgstr[1] "Existují %i další záznamy. Zobrazíte je přepínačem „-a“."
  1476. msgstr[2] "Existuje %i dalších záznamů. Zobrazíte je přepínačem „-a“."
  1477. #: apt-private/private-show.cc:165
  1478. msgid "not a real package (virtual)"
  1479. msgstr "není skutečný balík (virtuální)"
  1480. #: apt-private/private-main.cc:34
  1481. msgid ""
  1482. "NOTE: This is only a simulation!\n"
  1483. " apt-get needs root privileges for real execution.\n"
  1484. " Keep also in mind that locking is deactivated,\n"
  1485. " so don't depend on the relevance to the real current situation!"
  1486. msgstr ""
  1487. "INFO: Toto je pouze simulace!\n"
  1488. " apt-get vyžaduje pro skutečný běh rootovská oprávnění.\n"
  1489. " Mějte také na paměti, že je vypnuto zamykání, tudíž\n"
  1490. " tyto výsledky nemusí mít s realitou nic společného!"
  1491. #: apt-private/private-download.cc:62
  1492. #, c-format
  1493. msgid ""
  1494. "Can't drop privileges for downloading as file '%s' couldn't be accessed by "
  1495. "user '%s'."
  1496. msgstr ""
  1497. #: apt-private/private-download.cc:94
  1498. msgid "WARNING: The following packages cannot be authenticated!"
  1499. msgstr "VAROVÁNÍ: Následující balíky nemohou být autentizovány!"
  1500. #: apt-private/private-download.cc:101
  1501. msgid "Authentication warning overridden.\n"
  1502. msgstr "Autentizační varování potlačeno.\n"
  1503. #: apt-private/private-download.cc:106 apt-private/private-download.cc:113
  1504. msgid "Some packages could not be authenticated"
  1505. msgstr "Některé balíky nemohly být autentizovány"
  1506. #: apt-private/private-download.cc:111
  1507. msgid "Install these packages without verification?"
  1508. msgstr "Instalovat tyto balíky bez ověření?"
  1509. #: apt-private/private-download.cc:122
  1510. #, fuzzy
  1511. msgid ""
  1512. "There were unauthenticated packages and -y was used without --allow-"
  1513. "unauthenticated"
  1514. msgstr "Vyskytly se problémy a -y bylo použito bez --force-yes"
  1515. #: apt-private/private-download.cc:154
  1516. #, c-format
  1517. msgid "Failed to fetch %s %s\n"
  1518. msgstr "Selhalo stažení %s %s\n"
  1519. #: apt-private/private-download.cc:176 apt-private/private-download.cc:179
  1520. #, c-format
  1521. msgid "Couldn't determine free space in %s"
  1522. msgstr "Nelze určit volné místo v %s"
  1523. #: apt-private/private-download.cc:193
  1524. #, c-format
  1525. msgid "You don't have enough free space in %s."
  1526. msgstr "V %s nemáte dostatek volného místa."
  1527. #: apt-private/private-sources.cc:58
  1528. #, c-format
  1529. msgid "Failed to parse %s. Edit again? "
  1530. msgstr "Nepodařilo se zpracovat %s. Zkusit znovu upravit?"
  1531. #: apt-private/private-sources.cc:70
  1532. #, c-format
  1533. msgid "Your '%s' file changed, please run 'apt-get update'."
  1534. msgstr "Soubor „%s“ se změnil, spusťte prosím „apt-get update“."
  1535. #: apt-private/private-search.cc:69
  1536. msgid "Full Text Search"
  1537. msgstr "Fulltextové hledání"
  1538. #. TRANSLATOR: Very short word to be displayed before unchanged files in 'apt-get update'
  1539. #: apt-private/acqprogress.cc:74
  1540. #, c-format
  1541. msgid "Hit:%lu %s"
  1542. msgstr "Cíl:%lu %s"
  1543. #. TRANSLATOR: Very short word to be displayed for files processed in 'apt-get update'
  1544. #. Potentially replaced later by "Hit:", "Ign:" or "Err:" if something (bad) happens
  1545. #: apt-private/acqprogress.cc:96
  1546. #, c-format
  1547. msgid "Get:%lu %s"
  1548. msgstr "Mám:%lu %s"
  1549. #. TRANSLATOR: Very short word to be displayed for files in 'apt-get update'
  1550. #. which failed to download, but the error is ignored (compare "Err:")
  1551. #: apt-private/acqprogress.cc:126
  1552. #, c-format
  1553. msgid "Ign:%lu %s"
  1554. msgstr ""
  1555. #. TRANSLATOR: Very short word to be displayed for files in 'apt-get update'
  1556. #. which failed to download and the error is critical (compare "Ign:")
  1557. #: apt-private/acqprogress.cc:136
  1558. #, c-format
  1559. msgid "Err:%lu %s"
  1560. msgstr ""
  1561. #: apt-private/acqprogress.cc:159
  1562. #, c-format
  1563. msgid "Fetched %sB in %s (%sB/s)\n"
  1564. msgstr "Staženo %sB za %s (%sB/s)\n"
  1565. #: apt-private/acqprogress.cc:229
  1566. msgid " [Working]"
  1567. msgstr " [Pracuji]"
  1568. #: apt-private/acqprogress.cc:297
  1569. #, fuzzy, c-format
  1570. msgid ""
  1571. "Media change: please insert the disc labeled\n"
  1572. " '%s'\n"
  1573. "in the drive '%s' and press [Enter]\n"
  1574. msgstr ""
  1575. "Výměna média: Vložte disk nazvaný\n"
  1576. " „%s“\n"
  1577. "do mechaniky „%s“ a stiskněte enter\n"
  1578. #. Only warn if there are no sources.list.d.
  1579. #. Only warn if there is no sources.list file.
  1580. #: methods/mirror.cc:95 apt-pkg/init.cc:133 apt-pkg/init.cc:141
  1581. #: apt-pkg/clean.cc:43 apt-pkg/acquire.cc:557 apt-pkg/policy.cc:412
  1582. #: apt-pkg/sourcelist.cc:306 apt-pkg/sourcelist.cc:312
  1583. #: apt-pkg/contrib/fileutl.cc:375 apt-pkg/contrib/fileutl.cc:488
  1584. #: apt-pkg/contrib/cdromutl.cc:205 apt-inst/extract.cc:471
  1585. #, c-format
  1586. msgid "Unable to read %s"
  1587. msgstr "Nelze číst %s"
  1588. #: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/clean.cc:49
  1589. #: apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 apt-pkg/acquire.cc:563
  1590. #: apt-pkg/acquire.cc:588 apt-pkg/contrib/cdromutl.cc:201
  1591. #: apt-pkg/contrib/cdromutl.cc:235
  1592. #, c-format
  1593. msgid "Unable to change to %s"
  1594. msgstr "Nelze přejít do %s"
  1595. #. FIXME: fallback to a default mirror here instead
  1596. #. and provide a config option to define that default
  1597. #: methods/mirror.cc:280
  1598. #, c-format
  1599. msgid "No mirror file '%s' found "
  1600. msgstr "Soubor se zrcadly „%s“ nebyl nalezen "
  1601. #. FIXME: fallback to a default mirror here instead
  1602. #. and provide a config option to define that default
  1603. #: methods/mirror.cc:287
  1604. #, c-format
  1605. msgid "Can not read mirror file '%s'"
  1606. msgstr "Nelze číst soubor se zrcadly „%s“"
  1607. #: methods/mirror.cc:315
  1608. #, c-format
  1609. msgid "No entry found in mirror file '%s'"
  1610. msgstr "V souboru se zrcadly „%s“ nebyl nalezen žádný záznam"
  1611. #: methods/mirror.cc:445
  1612. #, c-format
  1613. msgid "[Mirror: %s]"
  1614. msgstr "[Zrcadlo: %s]"
  1615. #: methods/rsh.cc:109 ftparchive/multicompress.cc:170
  1616. msgid "Failed to create IPC pipe to subprocess"
  1617. msgstr "Selhalo vytvoření meziprocesové roury k podprocesu"
  1618. #: methods/rsh.cc:364
  1619. msgid "Connection closed prematurely"
  1620. msgstr "Spojení bylo předčasně ukončeno"
  1621. #: dselect/install:33
  1622. msgid "Bad default setting!"
  1623. msgstr "Chybné standardní nastavení!"
  1624. #: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95
  1625. #: dselect/install:106 dselect/update:45
  1626. #, fuzzy
  1627. msgid "Press [Enter] to continue."
  1628. msgstr "Pro pokračování stiskněte enter."
  1629. #: dselect/install:92
  1630. msgid "Do you want to erase any previously downloaded .deb files?"
  1631. msgstr "Chcete smazat všechny dříve stažené .deb soubory?"
  1632. #: dselect/install:102
  1633. msgid "Some errors occurred while unpacking. Packages that were installed"
  1634. msgstr "Během rozbalování se vyskytly chyby. Balíky, které se nainstalovaly"
  1635. #: dselect/install:103
  1636. msgid "will be configured. This may result in duplicate errors"
  1637. msgstr "budou zkonfigurovány. To může způsobit duplicitní chybové hlášky"
  1638. #: dselect/install:104
  1639. msgid "or errors caused by missing dependencies. This is OK, only the errors"
  1640. msgstr "o nesplněných závislostech. To je v pořádku, důležité jsou pouze"
  1641. #: dselect/install:105
  1642. msgid ""
  1643. "above this message are important. Please fix them and run [I]nstall again"
  1644. msgstr "chyby nad touto hláškou. Opravte je a poté znovu spusťte [I]nstalovat"
  1645. #: dselect/update:30
  1646. msgid "Merging available information"
  1647. msgstr "Slučují se dostupné informace"
  1648. #: apt-pkg/install-progress.cc:58
  1649. #, c-format
  1650. msgid "Progress: [%3i%%]"
  1651. msgstr "Postup: [%3i%%]"
  1652. #: apt-pkg/install-progress.cc:93 apt-pkg/install-progress.cc:177
  1653. msgid "Running dpkg"
  1654. msgstr "Spouští se dpkg"
  1655. #: apt-pkg/init.cc:176
  1656. #, c-format
  1657. msgid "Packaging system '%s' is not supported"
  1658. msgstr "Balíčkovací systém „%s“ není podporován"
  1659. #: apt-pkg/init.cc:192
  1660. msgid "Unable to determine a suitable packaging system type"
  1661. msgstr "Nebylo možno určit vhodný typ balíčkovacího systému"
  1662. #: apt-pkg/indexcopy.cc:228 apt-pkg/indexcopy.cc:753
  1663. #, c-format
  1664. msgid "Wrote %i records.\n"
  1665. msgstr "Zapsáno %i záznamů.\n"
  1666. #: apt-pkg/indexcopy.cc:230 apt-pkg/indexcopy.cc:755
  1667. #, c-format
  1668. msgid "Wrote %i records with %i missing files.\n"
  1669. msgstr "Zapsáno %i záznamů s chybějícími soubory (%i).\n"
  1670. #: apt-pkg/indexcopy.cc:233 apt-pkg/indexcopy.cc:758
  1671. #, c-format
  1672. msgid "Wrote %i records with %i mismatched files\n"
  1673. msgstr "Zapsáno %i záznamů s nesouhlasícími soubory (%i).\n"
  1674. #: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:761
  1675. #, c-format
  1676. msgid "Wrote %i records with %i missing files and %i mismatched files\n"
  1677. msgstr "Zapsáno %i záznamů s chybějícími (%i) a nesouhlasícími (%i) soubory.\n"
  1678. #: apt-pkg/indexcopy.cc:498
  1679. #, c-format
  1680. msgid "Can't find authentication record for: %s"
  1681. msgstr "Nelze najít autentizační záznam pro: %s"
  1682. #: apt-pkg/indexcopy.cc:504
  1683. #, c-format
  1684. msgid "Hash mismatch for: %s"
  1685. msgstr "Neshoda kontrolních součtů pro: %s"
  1686. #: apt-pkg/cachefile.cc:101
  1687. msgid "The package lists or status file could not be parsed or opened."
  1688. msgstr ""
  1689. "Seznamy balíků nebo stavový soubor nemohly být zpracovány nebo otevřeny."
  1690. #: apt-pkg/cachefile.cc:105
  1691. msgid "You may want to run apt-get update to correct these problems"
  1692. msgstr "Pro nápravu těchto problémů můžete zkusit spustit apt-get update"
  1693. #: apt-pkg/cachefile.cc:123
  1694. msgid "The list of sources could not be read."
  1695. msgstr "Nelze přečíst seznam zdrojů."
  1696. #: apt-pkg/pkgcache.cc:163
  1697. msgid "Empty package cache"
  1698. msgstr "Cache balíků je prázdná"
  1699. #: apt-pkg/pkgcache.cc:169 apt-pkg/pkgcache.cc:180
  1700. msgid "The package cache file is corrupted"
  1701. msgstr "Cache soubor balíků je poškozen"
  1702. #: apt-pkg/pkgcache.cc:174
  1703. msgid "The package cache file is an incompatible version"
  1704. msgstr "Cache soubor balíků má nekompatibilní verzi"
  1705. #: apt-pkg/pkgcache.cc:177
  1706. msgid "The package cache file is corrupted, it is too small"
  1707. msgstr "Cache soubor balíků je poškozen, je příliš malý"
  1708. #: apt-pkg/pkgcache.cc:184
  1709. #, c-format
  1710. msgid "This APT does not support the versioning system '%s'"
  1711. msgstr "Tato APT nepodporuje systém pro správu verzí „%s“"
  1712. #: apt-pkg/pkgcache.cc:194
  1713. #, fuzzy, c-format
  1714. msgid "The package cache was built for different architectures: %s vs %s"
  1715. msgstr "Cache balíků byla vytvořena pro jinou architekturu"
  1716. #: apt-pkg/pkgcache.cc:319
  1717. msgid "Depends"
  1718. msgstr "Závisí na"
  1719. #: apt-pkg/pkgcache.cc:319
  1720. msgid "PreDepends"
  1721. msgstr "Předzávisí na"
  1722. #: apt-pkg/pkgcache.cc:319
  1723. msgid "Suggests"
  1724. msgstr "Navrhuje"
  1725. #: apt-pkg/pkgcache.cc:320
  1726. msgid "Recommends"
  1727. msgstr "Doporučuje"
  1728. #: apt-pkg/pkgcache.cc:320
  1729. msgid "Conflicts"
  1730. msgstr "Koliduje s"
  1731. #: apt-pkg/pkgcache.cc:320
  1732. msgid "Replaces"
  1733. msgstr "Nahrazuje"
  1734. #: apt-pkg/pkgcache.cc:321
  1735. msgid "Obsoletes"
  1736. msgstr "Zastarává"
  1737. #: apt-pkg/pkgcache.cc:321
  1738. msgid "Breaks"
  1739. msgstr "Porušuje"
  1740. #: apt-pkg/pkgcache.cc:321
  1741. msgid "Enhances"
  1742. msgstr "Rozšiřuje"
  1743. #: apt-pkg/pkgcache.cc:332
  1744. msgid "important"
  1745. msgstr "důležitý"
  1746. #: apt-pkg/pkgcache.cc:332
  1747. msgid "required"
  1748. msgstr "vyžadovaný"
  1749. #: apt-pkg/pkgcache.cc:332
  1750. msgid "standard"
  1751. msgstr "standardní"
  1752. #: apt-pkg/pkgcache.cc:333
  1753. msgid "optional"
  1754. msgstr "volitelný"
  1755. #: apt-pkg/pkgcache.cc:333
  1756. msgid "extra"
  1757. msgstr "extra"
  1758. #: apt-pkg/acquire-worker.cc:111
  1759. #, c-format
  1760. msgid "The method driver %s could not be found."
  1761. msgstr "Ovladač metody %s nemohl být nalezen."
  1762. #: apt-pkg/acquire-worker.cc:113
  1763. #, c-format
  1764. msgid "Is the package %s installed?"
  1765. msgstr "Je balík %s nainstalován?"
  1766. #: apt-pkg/acquire-worker.cc:164
  1767. #, c-format
  1768. msgid "Method %s did not start correctly"
  1769. msgstr "Metoda %s nebyla spuštěna správně"
  1770. #: apt-pkg/acquire-worker.cc:536
  1771. #, fuzzy, c-format
  1772. msgid ""
  1773. "Please insert the disc labeled: '%s' in the drive '%s' and press [Enter]."
  1774. msgstr "Vložte prosím disk nazvaný „%s“ do mechaniky „%s“ a stiskněte enter."
  1775. #: apt-pkg/pkgrecords.cc:38
  1776. #, c-format
  1777. msgid "Index file type '%s' is not supported"
  1778. msgstr "Indexový typ souboru „%s“ není podporován"
  1779. #: apt-pkg/depcache.cc:139 apt-pkg/depcache.cc:167
  1780. msgid "Building dependency tree"
  1781. msgstr "Vytváří se strom závislostí"
  1782. #: apt-pkg/depcache.cc:140
  1783. msgid "Candidate versions"
  1784. msgstr "Kandidátské verze"
  1785. #: apt-pkg/depcache.cc:168
  1786. msgid "Dependency generation"
  1787. msgstr "Generování závislostí"
  1788. #: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225
  1789. msgid "Reading state information"
  1790. msgstr "Načítají se stavové informace"
  1791. #: apt-pkg/depcache.cc:252
  1792. #, c-format
  1793. msgid "Failed to open StateFile %s"
  1794. msgstr "Nelze otevřít stavový soubor %s"
  1795. #: apt-pkg/depcache.cc:257
  1796. #, c-format
  1797. msgid "Failed to write temporary StateFile %s"
  1798. msgstr "Nelze zapsat dočasný stavový soubor %s"
  1799. #: apt-pkg/acquire-item.cc:116
  1800. msgid "Use --allow-insecure-repositories to force the update"
  1801. msgstr ""
  1802. #: apt-pkg/acquire-item.cc:561 apt-pkg/contrib/fileutl.cc:2161
  1803. #, c-format
  1804. msgid "rename failed, %s (%s -> %s)."
  1805. msgstr "přejmenování selhalo, %s (%s -> %s)."
  1806. #: apt-pkg/acquire-item.cc:585
  1807. msgid "Hash Sum mismatch"
  1808. msgstr "Neshoda kontrolních součtů"
  1809. #: apt-pkg/acquire-item.cc:590
  1810. msgid "Size mismatch"
  1811. msgstr "Velikosti nesouhlasí"
  1812. #: apt-pkg/acquire-item.cc:595
  1813. msgid "Invalid file format"
  1814. msgstr "Neplatná formát souboru"
  1815. #: apt-pkg/acquire-item.cc:600
  1816. #, fuzzy
  1817. msgid "Signature error"
  1818. msgstr "Chyba zápisu"
  1819. #: apt-pkg/acquire-item.cc:789
  1820. #, fuzzy, c-format
  1821. msgid ""
  1822. "An error occurred during the signature verification. The repository is not "
  1823. "updated and the previous index files will be used. GPG error: %s: %s"
  1824. msgstr ""
  1825. "Při ověřování podpisů se objevila chyba. Repositář není aktualizovaný, tudíž "
  1826. "se použijí předchozí indexové soubory. Chyba GPG: %s: %s\n"
  1827. #. Invalid signature file, reject (LP: #346386) (Closes: #627642)
  1828. #: apt-pkg/acquire-item.cc:799 apt-pkg/acquire-item.cc:805
  1829. #, c-format
  1830. msgid "GPG error: %s: %s"
  1831. msgstr "Chyba GPG: %s: %s"
  1832. #: apt-pkg/acquire-item.cc:970
  1833. #, c-format
  1834. msgid ""
  1835. "Unable to find expected entry '%s' in Release file (Wrong sources.list entry "
  1836. "or malformed file)"
  1837. msgstr ""
  1838. "V souboru Release nelze najít očekávanou položku „%s“ (chybný sources.list "
  1839. "nebo porušený soubor)"
  1840. #: apt-pkg/acquire-item.cc:1026
  1841. msgid "There is no public key available for the following key IDs:\n"
  1842. msgstr "K následujícím ID klíčů není dostupný veřejný klíč:\n"
  1843. #. TRANSLATOR: The first %s is the URL of the bad Release file, the second is
  1844. #. the time since then the file is invalid - formatted in the same way as in
  1845. #. the download progress display (e.g. 7d 3h 42min 1s)
  1846. #: apt-pkg/acquire-item.cc:1066
  1847. #, c-format
  1848. msgid ""
  1849. "Release file for %s is expired (invalid since %s). Updates for this "
  1850. "repository will not be applied."
  1851. msgstr ""
  1852. "Soubor Release pro %s již expiroval (neplatný od %s). Aktualizace z tohoto "
  1853. "repositáře se nepoužijí."
  1854. #: apt-pkg/acquire-item.cc:1107
  1855. #, c-format
  1856. msgid "Conflicting distribution: %s (expected %s but got %s)"
  1857. msgstr "Konfliktní distribuce: %s (očekáváno %s, obdrženo %s)"
  1858. #: apt-pkg/acquire-item.cc:1224 apt-pkg/acquire-item.cc:1480
  1859. #, c-format
  1860. msgid ""
  1861. "The data from '%s' is not signed. Packages from that repository can not be "
  1862. "authenticated."
  1863. msgstr ""
  1864. #: apt-pkg/acquire-item.cc:1326
  1865. #, c-format
  1866. msgid ""
  1867. "The repository '%s' does not have a Release file. This is deprecated, please "
  1868. "contact the owner of the repository."
  1869. msgstr ""
  1870. #: apt-pkg/acquire-item.cc:1459
  1871. #, fuzzy, c-format
  1872. msgid "The repository '%s' is no longer signed."
  1873. msgstr "Adresář %s je odkloněn"
  1874. #: apt-pkg/acquire-item.cc:1466
  1875. msgid ""
  1876. "This is normally not allowed, but the option Acquire::"
  1877. "AllowDowngradeToInsecureRepositories was given to override it."
  1878. msgstr ""
  1879. #: apt-pkg/acquire-item.cc:2611
  1880. #, c-format
  1881. msgid ""
  1882. "I wasn't able to locate a file for the %s package. This might mean you need "
  1883. "to manually fix this package. (due to missing arch)"
  1884. msgstr ""
  1885. "Nebylo možné nalézt soubor s balíkem %s. To by mohlo znamenat, že tento "
  1886. "balík je třeba opravit ručně (kvůli chybějící architektuře)"
  1887. #: apt-pkg/acquire-item.cc:2677
  1888. #, c-format
  1889. msgid "Can't find a source to download version '%s' of '%s'"
  1890. msgstr "Nelze najít zdroj pro stažení verze „%s“ balíku „%s“"
  1891. #: apt-pkg/acquire-item.cc:2715
  1892. #, c-format
  1893. msgid ""
  1894. "The package index files are corrupted. No Filename: field for package %s."
  1895. msgstr ""
  1896. "Indexové soubory balíku jsou narušeny. Chybí pole Filename: u balíku %s."
  1897. #. TRANSLATOR: %s=%s is sourcename=sourceversion, e.g. apt=1.1
  1898. #: apt-pkg/acquire-item.cc:2916 apt-pkg/acquire-item.cc:3054
  1899. #, fuzzy, c-format
  1900. msgid "Changelog unavailable for %s=%s"
  1901. msgstr "Seznam změn %s (%s)"
  1902. #: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:553
  1903. #, c-format
  1904. msgid "Clean of %s is not supported"
  1905. msgstr "Vyčištění %s není podporováno"
  1906. #: apt-pkg/clean.cc:64
  1907. #, c-format
  1908. msgid "Unable to stat %s."
  1909. msgstr "Nebylo možno vyhodnotit %s."
  1910. #: apt-pkg/pkgcachegen.cc:112
  1911. msgid "Cache has an incompatible versioning system"
  1912. msgstr "Cache má nekompatibilní systém správy verzí"
  1913. #. TRANSLATOR: The first placeholder is a package name,
  1914. #. the other two should be copied verbatim as they include debug info
  1915. #: apt-pkg/pkgcachegen.cc:237 apt-pkg/pkgcachegen.cc:299
  1916. #: apt-pkg/pkgcachegen.cc:365 apt-pkg/pkgcachegen.cc:369
  1917. #: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:394
  1918. #: apt-pkg/pkgcachegen.cc:398 apt-pkg/pkgcachegen.cc:402
  1919. #: apt-pkg/pkgcachegen.cc:423 apt-pkg/pkgcachegen.cc:428
  1920. #: apt-pkg/pkgcachegen.cc:474 apt-pkg/pkgcachegen.cc:488
  1921. #, c-format
  1922. msgid "Error occurred while processing %s (%s%d)"
  1923. msgstr "Chyba při zpracování %s (%s%d)"
  1924. #: apt-pkg/pkgcachegen.cc:257
  1925. msgid "Wow, you exceeded the number of package names this APT is capable of."
  1926. msgstr "Wow, překročili jste počet jmen balíků, které tato APT umí zpracovat."
  1927. #: apt-pkg/pkgcachegen.cc:260
  1928. msgid "Wow, you exceeded the number of versions this APT is capable of."
  1929. msgstr "Wow, překročili jste počet verzí, které tato APT umí zpracovat."
  1930. #: apt-pkg/pkgcachegen.cc:263
  1931. msgid "Wow, you exceeded the number of descriptions this APT is capable of."
  1932. msgstr "Wow, překročili jste počet popisů, které tato APT umí zpracovat."
  1933. #: apt-pkg/pkgcachegen.cc:266
  1934. msgid "Wow, you exceeded the number of dependencies this APT is capable of."
  1935. msgstr "Wow, překročili jste počet závislostí, které tato APT umí zpracovat."
  1936. #: apt-pkg/pkgcachegen.cc:1400 apt-pkg/pkgcachegen.cc:1526
  1937. #: apt-pkg/pkgcachegen.cc:1552 apt-pkg/pkgcachegen.cc:1671
  1938. msgid "Reading package lists"
  1939. msgstr "Načítají se seznamy balíků"
  1940. #: apt-pkg/pkgcachegen.cc:1471 apt-pkg/pkgcachegen.cc:1478
  1941. msgid "IO Error saving source cache"
  1942. msgstr "Chyba IO při ukládání zdrojové cache"
  1943. #: apt-pkg/pkgcachegen.cc:1570 apt-pkg/pkgcachegen.cc:1572
  1944. #: apt-pkg/contrib/fileutl.cc:2151 cmdline/apt-extracttemplates.cc:263
  1945. #, c-format
  1946. msgid "Unable to write to %s"
  1947. msgstr "Nelze zapsat do %s"
  1948. #: apt-pkg/acquire.cc:126 apt-pkg/acquire.cc:146 apt-pkg/cdrom.cc:833
  1949. #, c-format
  1950. msgid "List directory %spartial is missing."
  1951. msgstr "Adresář seznamů %spartial chybí."
  1952. #: apt-pkg/acquire.cc:129 apt-pkg/acquire.cc:151
  1953. #, c-format
  1954. msgid "Archives directory %spartial is missing."
  1955. msgstr "Archivní adresář %spartial chybí."
  1956. #: apt-pkg/acquire.cc:162
  1957. #, c-format
  1958. msgid "Unable to lock directory %s"
  1959. msgstr "Nelze uzamknout adresář %s"
  1960. #. only show the ETA if it makes sense
  1961. #. two days
  1962. #: apt-pkg/acquire.cc:1081
  1963. #, c-format
  1964. msgid "Retrieving file %li of %li (%s remaining)"
  1965. msgstr "Stahuje se soubor %li z %li (zbývá %s)"
  1966. #: apt-pkg/acquire.cc:1083
  1967. #, c-format
  1968. msgid "Retrieving file %li of %li"
  1969. msgstr "Stahuje se soubor %li z %li"
  1970. #: apt-pkg/update.cc:76
  1971. #, fuzzy, c-format
  1972. msgid "Failed to fetch %s %s"
  1973. msgstr "Selhalo stažení %s %s\n"
  1974. #: apt-pkg/update.cc:102 apt-pkg/update.cc:104
  1975. msgid ""
  1976. "Some index files failed to download. They have been ignored, or old ones "
  1977. "used instead."
  1978. msgstr ""
  1979. "Některé indexové soubory se nepodařilo stáhnout. Jsou ignorovány, nebo jsou "
  1980. "použity starší verze."
  1981. #: apt-pkg/srcrecords.cc:53
  1982. msgid "You must put some 'source' URIs in your sources.list"
  1983. msgstr "Do sources.list musíte zadat „zdrojové“ URI"
  1984. #: apt-pkg/policy.cc:77
  1985. #, c-format
  1986. msgid ""
  1987. "The value '%s' is invalid for APT::Default-Release as such a release is not "
  1988. "available in the sources"
  1989. msgstr ""
  1990. "Hodnota „%s“ není v APT::Default-Release platná, protože toto vydání není "
  1991. "dostupné v sources.list"
  1992. #: apt-pkg/policy.cc:453
  1993. #, c-format
  1994. msgid "Invalid record in the preferences file %s, no Package header"
  1995. msgstr "Neplatný záznam v souboru preferencí %s, chybí hlavička Package"
  1996. #: apt-pkg/policy.cc:475
  1997. #, c-format
  1998. msgid "Did not understand pin type %s"
  1999. msgstr "Nerozumím vypíchnutí typu %s"
  2000. #: apt-pkg/policy.cc:484
  2001. #, c-format
  2002. msgid "%s: Value %s is outside the range of valid pin priorities (%d to %d)"
  2003. msgstr ""
  2004. #: apt-pkg/policy.cc:491
  2005. msgid "No priority (or zero) specified for pin"
  2006. msgstr "Pro vypíchnutí nebyla zadána žádná (nebo nulová) priorita"
  2007. #: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:983
  2008. #, c-format
  2009. msgid ""
  2010. "Could not perform immediate configuration on '%s'. Please see man 5 apt.conf "
  2011. "under APT::Immediate-Configure for details. (%d)"
  2012. msgstr ""
  2013. "Nelze spustit okamžitou konfiguraci balíku „%s“. Podrobnosti naleznete v man "
  2014. "5 apt.conf v části APT::Immediate-Configure. (%d)"
  2015. #: apt-pkg/packagemanager.cc:562 apt-pkg/packagemanager.cc:592
  2016. #, c-format
  2017. msgid "Could not configure '%s'. "
  2018. msgstr "Nelze nastavit „%s“."
  2019. #: apt-pkg/packagemanager.cc:642
  2020. #, c-format
  2021. msgid ""
  2022. "This installation run will require temporarily removing the essential "
  2023. "package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
  2024. "you really want to do it, activate the APT::Force-LoopBreak option."
  2025. msgstr ""
  2026. "Tento běh instalace si vyžádá dočasné odstranění klíčového balíku %s kvůli "
  2027. "smyčce v Conflicts/Pre-Depends. To je často špatné, ale pokud to skutečně "
  2028. "chcete udělat, aktivujte možnost APT::Force-LoopBreak."
  2029. #: apt-pkg/cdrom.cc:498
  2030. #, c-format
  2031. msgid "Line %u too long in source list %s."
  2032. msgstr "Řádek %u v seznamu zdrojů %s je příliš dlouhý."
  2033. #: apt-pkg/cdrom.cc:572
  2034. msgid "Unmounting CD-ROM...\n"
  2035. msgstr "Odpojuje se CD-ROM…\n"
  2036. #: apt-pkg/cdrom.cc:587
  2037. #, c-format
  2038. msgid "Using CD-ROM mount point %s\n"
  2039. msgstr "Používá se přípojný bod %s\n"
  2040. #: apt-pkg/cdrom.cc:600
  2041. msgid "Waiting for disc...\n"
  2042. msgstr "Čeká se na disk…\n"
  2043. #: apt-pkg/cdrom.cc:610
  2044. msgid "Mounting CD-ROM...\n"
  2045. msgstr "Připojuje se CD-ROM…\n"
  2046. #: apt-pkg/cdrom.cc:621
  2047. msgid "Identifying... "
  2048. msgstr "Rozpoznává se… "
  2049. #: apt-pkg/cdrom.cc:663
  2050. #, c-format
  2051. msgid "Stored label: %s\n"
  2052. msgstr "Uložený název: %s \n"
  2053. #: apt-pkg/cdrom.cc:681
  2054. msgid "Scanning disc for index files...\n"
  2055. msgstr "Na disku se hledají indexové soubory…\n"
  2056. #: apt-pkg/cdrom.cc:735
  2057. #, c-format
  2058. msgid ""
  2059. "Found %zu package indexes, %zu source indexes, %zu translation indexes and "
  2060. "%zu signatures\n"
  2061. msgstr ""
  2062. "Nalezeny indexy balíků (%zu), indexy zdrojů (%zu), indexy popisů (%zu) a "
  2063. "podpisy (%zu)\n"
  2064. #: apt-pkg/cdrom.cc:745
  2065. msgid ""
  2066. "Unable to locate any package files, perhaps this is not a Debian Disc or the "
  2067. "wrong architecture?"
  2068. msgstr ""
  2069. "Nenalezeny žádné balíky. Možná to není disk s Debianem, nebo je pro jinou "
  2070. "architekturu?"
  2071. #: apt-pkg/cdrom.cc:772
  2072. #, c-format
  2073. msgid "Found label '%s'\n"
  2074. msgstr "Nalezený název: „%s“\n"
  2075. #: apt-pkg/cdrom.cc:801
  2076. msgid "That is not a valid name, try again.\n"
  2077. msgstr "Nejedná se o platné jméno, zkuste to znovu.\n"
  2078. #: apt-pkg/cdrom.cc:818
  2079. #, c-format
  2080. msgid ""
  2081. "This disc is called: \n"
  2082. "'%s'\n"
  2083. msgstr ""
  2084. "Tento disk se nazývá: \n"
  2085. "„%s“\n"
  2086. #: apt-pkg/cdrom.cc:820
  2087. msgid "Copying package lists..."
  2088. msgstr "Kopírují se seznamy balíků…"
  2089. #: apt-pkg/cdrom.cc:867
  2090. msgid "Writing new source list\n"
  2091. msgstr "Zapisuje se nový seznam balíků\n"
  2092. #: apt-pkg/cdrom.cc:878
  2093. msgid "Source list entries for this disc are:\n"
  2094. msgstr "Seznamy zdrojů na tomto disku jsou:\n"
  2095. #: apt-pkg/upgrade.cc:34 apt-pkg/upgrade.cc:136 apt-pkg/upgrade.cc:182
  2096. msgid "Calculating upgrade"
  2097. msgstr "Propočítává se aktualizace"
  2098. #: apt-pkg/algorithms.cc:263
  2099. #, c-format
  2100. msgid ""
  2101. "The package %s needs to be reinstalled, but I can't find an archive for it."
  2102. msgstr "Balík %s je potřeba přeinstalovat, ale nemohu pro něj nalézt archiv."
  2103. #: apt-pkg/algorithms.cc:1080
  2104. msgid ""
  2105. "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
  2106. "held packages."
  2107. msgstr ""
  2108. "Chyba, pkgProblemResolver::Resolve vytváří poruchy, to může být způsobeno "
  2109. "podrženými balíky."
  2110. #: apt-pkg/algorithms.cc:1082
  2111. msgid "Unable to correct problems, you have held broken packages."
  2112. msgstr "Nelze opravit problémy, některé balíky držíte v porouchaném stavu."
  2113. #: apt-pkg/edsp.cc:184 apt-pkg/edsp.cc:210
  2114. msgid "Send scenario to solver"
  2115. msgstr "Scénář odeslán řešiteli"
  2116. #: apt-pkg/edsp.cc:232
  2117. msgid "Send request to solver"
  2118. msgstr "Požadavek odeslán řešiteli"
  2119. #: apt-pkg/edsp.cc:311
  2120. msgid "Prepare for receiving solution"
  2121. msgstr "Příprava na obdržení řešení"
  2122. #: apt-pkg/edsp.cc:318
  2123. msgid "External solver failed without a proper error message"
  2124. msgstr "Externí řešitel selhal, aniž by zanechal rozumnou chybovou hlášku"
  2125. #: apt-pkg/edsp.cc:610 apt-pkg/edsp.cc:613 apt-pkg/edsp.cc:618
  2126. msgid "Execute external solver"
  2127. msgstr "Spuštění externího řešitele"
  2128. #: apt-pkg/tagfile.cc:196 apt-pkg/tagfile.cc:296 apt-pkg/deb/debrecords.cc:212
  2129. #, c-format
  2130. msgid "Unable to parse package file %s (%d)"
  2131. msgstr "Nelze zpracovat soubor %s (%d)"
  2132. #: apt-pkg/tagfile.cc:541 apt-pkg/tagfile.cc:544
  2133. #, c-format
  2134. msgid "Cannot convert %s to integer"
  2135. msgstr ""
  2136. #. TRANSLATOR: %u is a line number, the first %s is a filename of a file with the extension "second %s" and the third %s is a unique identifier for bugreports
  2137. #: apt-pkg/sourcelist.cc:133 apt-pkg/sourcelist.cc:140
  2138. #: apt-pkg/sourcelist.cc:143 apt-pkg/sourcelist.cc:151
  2139. #: apt-pkg/sourcelist.cc:158 apt-pkg/sourcelist.cc:197
  2140. #: apt-pkg/sourcelist.cc:200 apt-pkg/sourcelist.cc:211
  2141. #: apt-pkg/sourcelist.cc:217 apt-pkg/sourcelist.cc:220
  2142. #: apt-pkg/sourcelist.cc:233 apt-pkg/sourcelist.cc:235
  2143. #: apt-pkg/sourcelist.cc:238 apt-pkg/sourcelist.cc:244
  2144. #: apt-pkg/sourcelist.cc:251
  2145. #, fuzzy, c-format
  2146. msgid "Malformed entry %u in %s file %s (%s)"
  2147. msgstr "Zkomolený override soubor %s, řádek %llu (%s)"
  2148. #: apt-pkg/sourcelist.cc:355
  2149. #, c-format
  2150. msgid "Opening %s"
  2151. msgstr "Otevírá se %s"
  2152. #: apt-pkg/sourcelist.cc:389
  2153. #, c-format
  2154. msgid "Malformed line %u in source list %s (type)"
  2155. msgstr "Zkomolený řádek %u v seznamu zdrojů %s (typ)"
  2156. #: apt-pkg/sourcelist.cc:393
  2157. #, c-format
  2158. msgid "Type '%s' is not known on line %u in source list %s"
  2159. msgstr "Typ „%s“ na řádce %u v seznamu zdrojů %s není známý"
  2160. #: apt-pkg/sourcelist.cc:413 apt-pkg/sourcelist.cc:419
  2161. #, fuzzy, c-format
  2162. msgid "Malformed stanza %u in source list %s (type)"
  2163. msgstr "Zkomolený řádek %u v seznamu zdrojů %s (typ)"
  2164. #: apt-pkg/sourcelist.cc:429
  2165. #, c-format
  2166. msgid "Type '%s' is not known on stanza %u in source list %s"
  2167. msgstr "Typ „%s“ v části %u v seznamu zdrojů %s není známý"
  2168. #: apt-pkg/cacheset.cc:500
  2169. #, c-format
  2170. msgid "Release '%s' for '%s' was not found"
  2171. msgstr "Vydání „%s“ pro „%s“ nebylo nalezeno"
  2172. #: apt-pkg/cacheset.cc:503
  2173. #, c-format
  2174. msgid "Version '%s' for '%s' was not found"
  2175. msgstr "Verze „%s“ pro „%s“ nebyla nalezena"
  2176. #: apt-pkg/cacheset.cc:738
  2177. #, c-format
  2178. msgid "Couldn't find task '%s'"
  2179. msgstr "Nelze najít úlohu „%s“"
  2180. #: apt-pkg/cacheset.cc:744
  2181. #, c-format
  2182. msgid "Couldn't find any package by regex '%s'"
  2183. msgstr "Nelze najít balík vyhovující regulárnímu výrazu „%s“"
  2184. #: apt-pkg/cacheset.cc:750
  2185. #, c-format
  2186. msgid "Couldn't find any package by glob '%s'"
  2187. msgstr "Nelze najít balík vyhovující masce „%s“"
  2188. #: apt-pkg/cacheset.cc:789
  2189. #, c-format
  2190. msgid "Can't select versions from package '%s' as it is purely virtual"
  2191. msgstr "Nelze vybrat verze balíku „%s“, protože je čistě virtuální"
  2192. #: apt-pkg/cacheset.cc:828
  2193. #, c-format
  2194. msgid "Can't select newest version from package '%s' as it is purely virtual"
  2195. msgstr "Nelze vybrat nejnovější verzi balíku „%s“, protože je čistě virtuální"
  2196. #: apt-pkg/cacheset.cc:836
  2197. #, c-format
  2198. msgid "Can't select candidate version from package %s as it has no candidate"
  2199. msgstr "Nelze vybrat kandidátskou verzi balíku %s, protože žádnou nemá"
  2200. #: apt-pkg/cacheset.cc:844
  2201. #, c-format
  2202. msgid "Can't select installed version from package %s as it is not installed"
  2203. msgstr "Nelze vybrat nainstalované verze balíku %s, protože není nainstalován"
  2204. #: apt-pkg/cacheset.cc:852 apt-pkg/cacheset.cc:860
  2205. #, c-format
  2206. msgid ""
  2207. "Can't select installed nor candidate version from package '%s' as it has "
  2208. "neither of them"
  2209. msgstr ""
  2210. "Nelze vybrat nainstalovanou ani kandidátskou verzi balíku „%s“, protože "
  2211. "žádné takové verze nemá"
  2212. #. TRANSLATOR: d means days, h means hours, min means minutes, s means seconds
  2213. #: apt-pkg/contrib/strutl.cc:420
  2214. #, c-format
  2215. msgid "%lid %lih %limin %lis"
  2216. msgstr "%lid %lih %limin %lis"
  2217. #. TRANSLATOR: h means hours, min means minutes, s means seconds
  2218. #: apt-pkg/contrib/strutl.cc:425
  2219. #, c-format
  2220. msgid "%lih %limin %lis"
  2221. msgstr "%lih %limin %lis"
  2222. #. TRANSLATOR: min means minutes, s means seconds
  2223. #: apt-pkg/contrib/strutl.cc:430
  2224. #, c-format
  2225. msgid "%limin %lis"
  2226. msgstr "%limin %lis"
  2227. #. TRANSLATOR: s means seconds
  2228. #: apt-pkg/contrib/strutl.cc:435
  2229. #, c-format
  2230. msgid "%lis"
  2231. msgstr "%lis"
  2232. #: apt-pkg/contrib/strutl.cc:1279
  2233. #, c-format
  2234. msgid "Selection %s not found"
  2235. msgstr "Výběr %s nenalezen"
  2236. #: apt-pkg/contrib/fileutl.cc:197
  2237. #, c-format
  2238. msgid "Not using locking for read only lock file %s"
  2239. msgstr "Nepoužívá se zamykání pro zámkový soubor %s, který je pouze pro čtení"
  2240. #: apt-pkg/contrib/fileutl.cc:202
  2241. #, c-format
  2242. msgid "Could not open lock file %s"
  2243. msgstr "Nešlo otevřít zámkový soubor %s"
  2244. #: apt-pkg/contrib/fileutl.cc:225
  2245. #, c-format
  2246. msgid "Not using locking for nfs mounted lock file %s"
  2247. msgstr "Nepoužívá se zamykání pro zámkový soubor %s připojený přes nfs"
  2248. #: apt-pkg/contrib/fileutl.cc:230
  2249. #, c-format
  2250. msgid "Could not get lock %s"
  2251. msgstr "Nelze získat zámek %s"
  2252. #: apt-pkg/contrib/fileutl.cc:367 apt-pkg/contrib/fileutl.cc:481
  2253. #, c-format
  2254. msgid "List of files can't be created as '%s' is not a directory"
  2255. msgstr "Seznam souborů nelze vytvořit, jelikož „%s“ není adresář"
  2256. #: apt-pkg/contrib/fileutl.cc:401
  2257. #, c-format
  2258. msgid "Ignoring '%s' in directory '%s' as it is not a regular file"
  2259. msgstr "Ignoruji „%s“ v adresáři „%s“, jelikož to není obyčejný soubor"
  2260. #: apt-pkg/contrib/fileutl.cc:419
  2261. #, c-format
  2262. msgid "Ignoring file '%s' in directory '%s' as it has no filename extension"
  2263. msgstr "Ignoruji soubor „%s“ v adresáři „%s“, jelikož nemá příponu"
  2264. #: apt-pkg/contrib/fileutl.cc:428
  2265. #, c-format
  2266. msgid ""
  2267. "Ignoring file '%s' in directory '%s' as it has an invalid filename extension"
  2268. msgstr "Ignoruji soubor „%s“ v adresáři „%s“, jelikož má neplatnou příponu"
  2269. #: apt-pkg/contrib/fileutl.cc:862
  2270. #, c-format
  2271. msgid "Sub-process %s received a segmentation fault."
  2272. msgstr "Podproces %s obdržel chybu segmentace."
  2273. #: apt-pkg/contrib/fileutl.cc:864
  2274. #, c-format
  2275. msgid "Sub-process %s received signal %u."
  2276. msgstr "Podproces %s obdržel signál %u."
  2277. #: apt-pkg/contrib/fileutl.cc:868 apt-pkg/contrib/gpgv.cc:227
  2278. #, c-format
  2279. msgid "Sub-process %s returned an error code (%u)"
  2280. msgstr "Podproces %s vrátil chybový kód (%u)"
  2281. #: apt-pkg/contrib/fileutl.cc:870 apt-pkg/contrib/gpgv.cc:220
  2282. #, c-format
  2283. msgid "Sub-process %s exited unexpectedly"
  2284. msgstr "Podproces %s neočekávaně skončil"
  2285. #: apt-pkg/contrib/fileutl.cc:987
  2286. #, c-format
  2287. msgid "Problem closing the gzip file %s"
  2288. msgstr "Problém při zavírání gzip souboru %s"
  2289. #: apt-pkg/contrib/fileutl.cc:1194
  2290. #, c-format
  2291. msgid "Could not open file %s"
  2292. msgstr "Nelze otevřít soubor %s"
  2293. #: apt-pkg/contrib/fileutl.cc:1253 apt-pkg/contrib/fileutl.cc:1300
  2294. #, c-format
  2295. msgid "Could not open file descriptor %d"
  2296. msgstr "Nelze otevřít popisovač souboru %d"
  2297. #: apt-pkg/contrib/fileutl.cc:1408 apt-pkg/contrib/fileutl.cc:2176
  2298. msgid "Failed to create subprocess IPC"
  2299. msgstr "Nelze vytvořit podproces IPC"
  2300. #: apt-pkg/contrib/fileutl.cc:1466
  2301. msgid "Failed to exec compressor "
  2302. msgstr "Nezdařilo se spustit kompresor "
  2303. #: apt-pkg/contrib/fileutl.cc:1607
  2304. #, c-format
  2305. msgid "read, still have %llu to read but none left"
  2306. msgstr "čtení, stále se má přečíst %llu, ale už nic nezbývá"
  2307. #: apt-pkg/contrib/fileutl.cc:1720 apt-pkg/contrib/fileutl.cc:1742
  2308. #, c-format
  2309. msgid "write, still have %llu to write but couldn't"
  2310. msgstr "zápis, stále se má zapsat %llu, ale nejde to"
  2311. #: apt-pkg/contrib/fileutl.cc:2008
  2312. #, c-format
  2313. msgid "Problem closing the file %s"
  2314. msgstr "Problém při zavírání souboru %s"
  2315. #: apt-pkg/contrib/fileutl.cc:2019
  2316. #, c-format
  2317. msgid "Problem renaming the file %s to %s"
  2318. msgstr "Problém při přejmenování souboru %s na %s"
  2319. #: apt-pkg/contrib/fileutl.cc:2030
  2320. #, c-format
  2321. msgid "Problem unlinking the file %s"
  2322. msgstr "Problém při odstraňování souboru %s"
  2323. #: apt-pkg/contrib/fileutl.cc:2043
  2324. msgid "Problem syncing the file"
  2325. msgstr "Problém při synchronizování souboru"
  2326. #: apt-pkg/contrib/fileutl.cc:2146 cmdline/apt-extracttemplates.cc:258
  2327. #, c-format
  2328. msgid "Unable to mkstemp %s"
  2329. msgstr "Nelze zavolat mkstemp %s"
  2330. #: apt-pkg/contrib/progress.cc:148
  2331. #, c-format
  2332. msgid "%c%s... Error!"
  2333. msgstr "%c%s… Chyba!"
  2334. #: apt-pkg/contrib/progress.cc:150
  2335. #, c-format
  2336. msgid "%c%s... Done"
  2337. msgstr "%c%s… Hotovo"
  2338. #: apt-pkg/contrib/progress.cc:181
  2339. msgid "..."
  2340. msgstr "…"
  2341. #. Print the spinner
  2342. #: apt-pkg/contrib/progress.cc:197
  2343. #, c-format
  2344. msgid "%c%s... %u%%"
  2345. msgstr "%c%s… %u%%"
  2346. #: apt-pkg/contrib/mmap.cc:79
  2347. msgid "Can't mmap an empty file"
  2348. msgstr "Nelze provést mmap prázdného souboru"
  2349. #: apt-pkg/contrib/mmap.cc:111
  2350. #, c-format
  2351. msgid "Couldn't duplicate file descriptor %i"
  2352. msgstr "Nelze duplikovat popisovač souboru %i"
  2353. #: apt-pkg/contrib/mmap.cc:119
  2354. #, c-format
  2355. msgid "Couldn't make mmap of %llu bytes"
  2356. msgstr "Nešlo mmapovat %llu bajtů"
  2357. #: apt-pkg/contrib/mmap.cc:146
  2358. msgid "Unable to close mmap"
  2359. msgstr "Nelze zavřít mmap"
  2360. #: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202
  2361. msgid "Unable to synchronize mmap"
  2362. msgstr "Nelze synchronizovat mmap"
  2363. #: apt-pkg/contrib/mmap.cc:290
  2364. #, c-format
  2365. msgid "Couldn't make mmap of %lu bytes"
  2366. msgstr "Nešlo mmapovat %lu bajtů"
  2367. #: apt-pkg/contrib/mmap.cc:322
  2368. msgid "Failed to truncate file"
  2369. msgstr "Nelze zmenšit soubor"
  2370. #: apt-pkg/contrib/mmap.cc:341
  2371. #, c-format
  2372. msgid ""
  2373. "Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. "
  2374. "Current value: %lu. (man 5 apt.conf)"
  2375. msgstr ""
  2376. "Dynamickému MMapu došlo místo. Zvyšte prosím hodnotu APT::Cache-Start. "
  2377. "Současná hodnota: %lu. (man 5 apt.conf)"
  2378. #: apt-pkg/contrib/mmap.cc:446
  2379. #, c-format
  2380. msgid ""
  2381. "Unable to increase the size of the MMap as the limit of %lu bytes is already "
  2382. "reached."
  2383. msgstr "Nelze zvýšit velikost MMapu, protože limit %lu bajtů již byl dosažen."
  2384. #: apt-pkg/contrib/mmap.cc:449
  2385. msgid ""
  2386. "Unable to increase size of the MMap as automatic growing is disabled by user."
  2387. msgstr ""
  2388. "Nelze zvýšit velikost MMapu, protože automatické zvětšování bylo uživatelem "
  2389. "zakázáno."
  2390. #: apt-pkg/contrib/cdromutl.cc:65
  2391. #, c-format
  2392. msgid "Unable to stat the mount point %s"
  2393. msgstr "Nelze vyhodnotit přípojný bod %s"
  2394. #: apt-pkg/contrib/cdromutl.cc:247
  2395. msgid "Failed to stat the cdrom"
  2396. msgstr "Nezdařilo se vyhodnotit cdrom"
  2397. #: apt-pkg/contrib/configuration.cc:516
  2398. #, c-format
  2399. msgid "Unrecognized type abbreviation: '%c'"
  2400. msgstr "Nerozpoznaná zkratka typu: „%c“"
  2401. #: apt-pkg/contrib/configuration.cc:630
  2402. #, c-format
  2403. msgid "Opening configuration file %s"
  2404. msgstr "Otevírá se konfigurační soubor %s"
  2405. #: apt-pkg/contrib/configuration.cc:798
  2406. #, c-format
  2407. msgid "Syntax error %s:%u: Block starts with no name."
  2408. msgstr "Syntaktická chyba %s:%u: Blok nezačíná jménem."
  2409. #: apt-pkg/contrib/configuration.cc:817
  2410. #, c-format
  2411. msgid "Syntax error %s:%u: Malformed tag"
  2412. msgstr "Syntaktická chyba %s:%u: Zkomolená značka"
  2413. #: apt-pkg/contrib/configuration.cc:834
  2414. #, c-format
  2415. msgid "Syntax error %s:%u: Extra junk after value"
  2416. msgstr "Syntaktická chyba %s:%u: Za hodnotou následuje zbytečné smetí"
  2417. #: apt-pkg/contrib/configuration.cc:874
  2418. #, c-format
  2419. msgid "Syntax error %s:%u: Directives can only be done at the top level"
  2420. msgstr ""
  2421. "Syntaktická chyba %s:%u: Direktivy je možné provádět pouze na nejvyšší úrovni"
  2422. #: apt-pkg/contrib/configuration.cc:881
  2423. #, c-format
  2424. msgid "Syntax error %s:%u: Too many nested includes"
  2425. msgstr "Syntaktická chyba %s:%u: Příliš mnoho vnořených propojení (include)"
  2426. #: apt-pkg/contrib/configuration.cc:885 apt-pkg/contrib/configuration.cc:890
  2427. #, c-format
  2428. msgid "Syntax error %s:%u: Included from here"
  2429. msgstr "Syntaktická chyba %s:%u: Zahrnuto odtud"
  2430. #: apt-pkg/contrib/configuration.cc:894
  2431. #, c-format
  2432. msgid "Syntax error %s:%u: Unsupported directive '%s'"
  2433. msgstr "Syntaktická chyba %s:%u: Nepodporovaná direktiva „%s“"
  2434. #: apt-pkg/contrib/configuration.cc:897
  2435. #, c-format
  2436. msgid "Syntax error %s:%u: clear directive requires an option tree as argument"
  2437. msgstr ""
  2438. "Syntaktická chyba %s:%u: Direktiva clear vyžaduje jako argument strom "
  2439. "možností"
  2440. #: apt-pkg/contrib/configuration.cc:947
  2441. #, c-format
  2442. msgid "Syntax error %s:%u: Extra junk at end of file"
  2443. msgstr "Syntaktická chyba %s:%u: Na konci souboru je zbytečné smetí"
  2444. #: apt-pkg/contrib/cmndline.cc:127
  2445. #, fuzzy, c-format
  2446. msgid ""
  2447. "Command line option '%c' [from %s] is not understood in combination with the "
  2448. "other options."
  2449. msgstr "Parametr příkazové řádky „%c“ [z %s] je neznámý"
  2450. #: apt-pkg/contrib/cmndline.cc:152 apt-pkg/contrib/cmndline.cc:161
  2451. #: apt-pkg/contrib/cmndline.cc:169
  2452. #, fuzzy, c-format
  2453. msgid ""
  2454. "Command line option %s is not understood in combination with the other "
  2455. "options"
  2456. msgstr "Nerozumím parametru %s příkazové řádky"
  2457. #: apt-pkg/contrib/cmndline.cc:174
  2458. #, c-format
  2459. msgid "Command line option %s is not boolean"
  2460. msgstr "Parametr příkazové řádky %s není pravdivostní hodnota"
  2461. #: apt-pkg/contrib/cmndline.cc:215 apt-pkg/contrib/cmndline.cc:236
  2462. #, c-format
  2463. msgid "Option %s requires an argument."
  2464. msgstr "Volba %s vyžaduje argument."
  2465. #: apt-pkg/contrib/cmndline.cc:249 apt-pkg/contrib/cmndline.cc:255
  2466. #, c-format
  2467. msgid "Option %s: Configuration item specification must have an =<val>."
  2468. msgstr "Parametr %s: Zadání konfigurační položky musí obsahovat =<hodn>."
  2469. #: apt-pkg/contrib/cmndline.cc:284
  2470. #, c-format
  2471. msgid "Option %s requires an integer argument, not '%s'"
  2472. msgstr "Volba %s vyžaduje jako argument celé číslo (integer), ne „%s“"
  2473. #: apt-pkg/contrib/cmndline.cc:315
  2474. #, c-format
  2475. msgid "Option '%s' is too long"
  2476. msgstr "Volba „%s“ je příliš dlouhá"
  2477. #: apt-pkg/contrib/cmndline.cc:347
  2478. #, c-format
  2479. msgid "Sense %s is not understood, try true or false."
  2480. msgstr "Nechápu význam %s, zkuste true nebo false."
  2481. #: apt-pkg/contrib/cmndline.cc:397
  2482. #, c-format
  2483. msgid "Invalid operation %s"
  2484. msgstr "Neplatná operace %s"
  2485. #: apt-pkg/deb/debmetaindex.cc:229
  2486. #, c-format
  2487. msgid "Unable to parse Release file %s"
  2488. msgstr "Nelze zpracovat Release soubor %s"
  2489. #: apt-pkg/deb/debmetaindex.cc:238
  2490. #, c-format
  2491. msgid "No sections in Release file %s"
  2492. msgstr "Release soubor %s neobsahuje žádné sekce"
  2493. #: apt-pkg/deb/debmetaindex.cc:278
  2494. #, c-format
  2495. msgid "No Hash entry in Release file %s"
  2496. msgstr "Release soubor %s neobsahuje Hash záznam"
  2497. #: apt-pkg/deb/debmetaindex.cc:286
  2498. #, c-format
  2499. msgid "Invalid 'Date' entry in Release file %s"
  2500. msgstr "Neplatná položka „Date“ v Release souboru %s"
  2501. #: apt-pkg/deb/debmetaindex.cc:307
  2502. #, c-format
  2503. msgid "Invalid 'Valid-Until' entry in Release file %s"
  2504. msgstr "Neplatná položka „Valid-Until“ v Release souboru %s"
  2505. #. TRANSLATOR: The first is an option name from sources.list manpage, the other two URI and Suite
  2506. #: apt-pkg/deb/debmetaindex.cc:438 apt-pkg/deb/debmetaindex.cc:446
  2507. #: apt-pkg/deb/debmetaindex.cc:454 apt-pkg/deb/debmetaindex.cc:462
  2508. #: apt-pkg/deb/debmetaindex.cc:485
  2509. #, c-format
  2510. msgid "Conflicting values set for option %s concerning source %s %s"
  2511. msgstr ""
  2512. #: apt-pkg/deb/debmetaindex.cc:480
  2513. #, c-format
  2514. msgid "Invalid value set for option %s concerning source %s %s (%s)"
  2515. msgstr ""
  2516. #: apt-pkg/deb/dpkgpm.cc:110
  2517. #, c-format
  2518. msgid "Installing %s"
  2519. msgstr "Instaluje se %s"
  2520. #: apt-pkg/deb/dpkgpm.cc:111 apt-pkg/deb/dpkgpm.cc:1007
  2521. #, c-format
  2522. msgid "Configuring %s"
  2523. msgstr "Nastavuje se %s"
  2524. #: apt-pkg/deb/dpkgpm.cc:112 apt-pkg/deb/dpkgpm.cc:1014
  2525. #, c-format
  2526. msgid "Removing %s"
  2527. msgstr "Odstraňuje se %s"
  2528. #: apt-pkg/deb/dpkgpm.cc:113
  2529. #, c-format
  2530. msgid "Completely removing %s"
  2531. msgstr "Kompletně se odstraňuje %s"
  2532. #: apt-pkg/deb/dpkgpm.cc:114
  2533. #, c-format
  2534. msgid "Noting disappearance of %s"
  2535. msgstr "Značím si zmizení %s"
  2536. #: apt-pkg/deb/dpkgpm.cc:115
  2537. #, c-format
  2538. msgid "Running post-installation trigger %s"
  2539. msgstr "Spouští se poinstalační spouštěč %s"
  2540. #. FIXME: use a better string after freeze
  2541. #: apt-pkg/deb/dpkgpm.cc:838
  2542. #, c-format
  2543. msgid "Directory '%s' missing"
  2544. msgstr "Adresář „%s“ chybí"
  2545. #: apt-pkg/deb/dpkgpm.cc:853 apt-pkg/deb/dpkgpm.cc:875
  2546. #, c-format
  2547. msgid "Could not open file '%s'"
  2548. msgstr "Nelze otevřít soubor „%s“"
  2549. #: apt-pkg/deb/dpkgpm.cc:1000
  2550. #, c-format
  2551. msgid "Preparing %s"
  2552. msgstr "Připravuje se %s"
  2553. #: apt-pkg/deb/dpkgpm.cc:1001
  2554. #, c-format
  2555. msgid "Unpacking %s"
  2556. msgstr "Rozbaluje se %s"
  2557. #: apt-pkg/deb/dpkgpm.cc:1006
  2558. #, c-format
  2559. msgid "Preparing to configure %s"
  2560. msgstr "Připravuje se nastavení %s"
  2561. #: apt-pkg/deb/dpkgpm.cc:1008
  2562. #, c-format
  2563. msgid "Installed %s"
  2564. msgstr "Nainstalován %s"
  2565. #: apt-pkg/deb/dpkgpm.cc:1013
  2566. #, c-format
  2567. msgid "Preparing for removal of %s"
  2568. msgstr "Připravuje se odstranění %s"
  2569. #: apt-pkg/deb/dpkgpm.cc:1015
  2570. #, c-format
  2571. msgid "Removed %s"
  2572. msgstr "Odstraněn %s"
  2573. #: apt-pkg/deb/dpkgpm.cc:1020
  2574. #, c-format
  2575. msgid "Preparing to completely remove %s"
  2576. msgstr "Připravuje se úplné odstranění %s"
  2577. #: apt-pkg/deb/dpkgpm.cc:1021
  2578. #, c-format
  2579. msgid "Completely removed %s"
  2580. msgstr "Kompletně odstraněn %s"
  2581. #: apt-pkg/deb/dpkgpm.cc:1080 apt-pkg/deb/dpkgpm.cc:1168
  2582. #, c-format
  2583. msgid "Can not write log (%s)"
  2584. msgstr "Nelze zapsat log (%s)"
  2585. #: apt-pkg/deb/dpkgpm.cc:1080 apt-pkg/deb/dpkgpm.cc:1168
  2586. msgid "Is /dev/pts mounted?"
  2587. msgstr "Je /dev/pts připojeno?"
  2588. #: apt-pkg/deb/dpkgpm.cc:1656
  2589. msgid "Operation was interrupted before it could finish"
  2590. msgstr "Operace byla přerušena dříve, než mohla skončit"
  2591. #: apt-pkg/deb/dpkgpm.cc:1718
  2592. msgid "No apport report written because MaxReports is reached already"
  2593. msgstr ""
  2594. "Žádné apport hlášení nebylo vytvořeno, protože již byl dosažen MaxReports"
  2595. #. check if its not a follow up error
  2596. #: apt-pkg/deb/dpkgpm.cc:1723
  2597. msgid "dependency problems - leaving unconfigured"
  2598. msgstr "problémy se závislostmi - ponechávám nezkonfigurované"
  2599. #: apt-pkg/deb/dpkgpm.cc:1725
  2600. msgid ""
  2601. "No apport report written because the error message indicates its a followup "
  2602. "error from a previous failure."
  2603. msgstr ""
  2604. "Žádné apport hlášení nebylo vytvořeno, protože chybová hláška naznačuje, že "
  2605. "se jedná o chybu způsobenou předchozí chybou."
  2606. #: apt-pkg/deb/dpkgpm.cc:1731
  2607. msgid ""
  2608. "No apport report written because the error message indicates a disk full "
  2609. "error"
  2610. msgstr ""
  2611. "Žádné apport hlášení nebylo vytvořeno, protože chybová hláška naznačuje, že "
  2612. "je chyba způsobena zcela zaplněným diskem."
  2613. #: apt-pkg/deb/dpkgpm.cc:1738
  2614. msgid ""
  2615. "No apport report written because the error message indicates a out of memory "
  2616. "error"
  2617. msgstr ""
  2618. "Žádné apport hlášení nebylo vytvořeno, protože chybová hláška naznačuje, že "
  2619. "je chyba způsobena zcela zaplněnou pamětí."
  2620. #: apt-pkg/deb/dpkgpm.cc:1745 apt-pkg/deb/dpkgpm.cc:1751
  2621. msgid ""
  2622. "No apport report written because the error message indicates an issue on the "
  2623. "local system"
  2624. msgstr ""
  2625. "Žádné apport hlášení nebylo vytvořeno, protože chybová hláška naznačuje, že "
  2626. "je chyba na lokálním systému."
  2627. #: apt-pkg/deb/dpkgpm.cc:1773
  2628. msgid ""
  2629. "No apport report written because the error message indicates a dpkg I/O error"
  2630. msgstr ""
  2631. "Žádné apport hlášení nebylo vytvořeno, protože chybová hláška naznačuje V/V "
  2632. "chybu dpkg."
  2633. #: apt-pkg/deb/debsystem.cc:88
  2634. #, c-format
  2635. msgid ""
  2636. "Unable to lock the administration directory (%s), is another process using "
  2637. "it?"
  2638. msgstr "Nelze uzamknout administrační adresář (%s). Používá jej jiný proces?"
  2639. #: apt-pkg/deb/debsystem.cc:91
  2640. #, c-format
  2641. msgid "Unable to lock the administration directory (%s), are you root?"
  2642. msgstr "Nelze uzamknout administrační adresář (%s). Jste root?"
  2643. #. TRANSLATORS: the %s contains the recovery command, usually
  2644. #. dpkg --configure -a
  2645. #: apt-pkg/deb/debsystem.cc:107
  2646. #, c-format
  2647. msgid ""
  2648. "dpkg was interrupted, you must manually run '%s' to correct the problem. "
  2649. msgstr "dpkg byl přerušen, pro nápravu problému musíte ručně spustit „%s“."
  2650. #: apt-pkg/deb/debsystem.cc:125
  2651. msgid "Not locked"
  2652. msgstr "Není uzamčen"
  2653. #: cmdline/apt-extracttemplates.cc:228
  2654. msgid ""
  2655. "Usage: apt-extracttemplates file1 [file2 ...]\n"
  2656. "\n"
  2657. "apt-extracttemplates is a tool to extract config and template info\n"
  2658. "from debian packages\n"
  2659. "\n"
  2660. "Options:\n"
  2661. " -h This help text\n"
  2662. " -t Set the temp dir\n"
  2663. " -c=? Read this configuration file\n"
  2664. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  2665. msgstr ""
  2666. "Použití: apt-extracttemplates soubor1 [soubor2 …]\n"
  2667. "\n"
  2668. "apt-extracttemplates umí z balíků vytáhnout konfigurační skripty a šablony\n"
  2669. "\n"
  2670. "Volby:\n"
  2671. " -h Tato nápověda.\n"
  2672. " -t Nastaví dočasný adresář\n"
  2673. " -c=? Načte tento konfigurační soubor\n"
  2674. " -o=? Nastaví libovolnou volbu, např. -o dir::cache=/tmp\n"
  2675. #: cmdline/apt-extracttemplates.cc:304
  2676. msgid "Cannot get debconf version. Is debconf installed?"
  2677. msgstr "Nelze určit verzi programu debconf. Je debconf nainstalován?"
  2678. #: ftparchive/apt-ftparchive.cc:188 ftparchive/apt-ftparchive.cc:368
  2679. msgid "Package extension list is too long"
  2680. msgstr "Seznam rozšíření balíku je příliš dlouhý"
  2681. #: ftparchive/apt-ftparchive.cc:190 ftparchive/apt-ftparchive.cc:202
  2682. #: ftparchive/apt-ftparchive.cc:225 ftparchive/apt-ftparchive.cc:281
  2683. #: ftparchive/apt-ftparchive.cc:291 ftparchive/apt-ftparchive.cc:313
  2684. #, c-format
  2685. msgid "Error processing directory %s"
  2686. msgstr "Chyba zpracování adresáře %s"
  2687. #: ftparchive/apt-ftparchive.cc:279
  2688. msgid "Source extension list is too long"
  2689. msgstr "Seznam zdrojových rozšíření je příliš dlouhý"
  2690. #: ftparchive/apt-ftparchive.cc:394
  2691. msgid "Error writing header to contents file"
  2692. msgstr "Chyba při zapisování hlavičky do souboru"
  2693. #: ftparchive/apt-ftparchive.cc:424
  2694. #, c-format
  2695. msgid "Error processing contents %s"
  2696. msgstr "Chyba při zpracovávání obsahu %s"
  2697. #: ftparchive/apt-ftparchive.cc:616
  2698. msgid ""
  2699. "Usage: apt-ftparchive [options] command\n"
  2700. "Commands: packages binarypath [overridefile [pathprefix]]\n"
  2701. " sources srcpath [overridefile [pathprefix]]\n"
  2702. " contents path\n"
  2703. " release path\n"
  2704. " generate config [groups]\n"
  2705. " clean config\n"
  2706. "\n"
  2707. "apt-ftparchive generates index files for Debian archives. It supports\n"
  2708. "many styles of generation from fully automated to functional replacements\n"
  2709. "for dpkg-scanpackages and dpkg-scansources\n"
  2710. "\n"
  2711. "apt-ftparchive generates Package files from a tree of .debs. The\n"
  2712. "Package file contains the contents of all the control fields from\n"
  2713. "each package as well as the MD5 hash and filesize. An override file\n"
  2714. "is supported to force the value of Priority and Section.\n"
  2715. "\n"
  2716. "Similarly apt-ftparchive generates Sources files from a tree of .dscs.\n"
  2717. "The --source-override option can be used to specify a src override file\n"
  2718. "\n"
  2719. "The 'packages' and 'sources' command should be run in the root of the\n"
  2720. "tree. BinaryPath should point to the base of the recursive search and \n"
  2721. "override file should contain the override flags. Pathprefix is\n"
  2722. "appended to the filename fields if present. Example usage from the \n"
  2723. "Debian archive:\n"
  2724. " apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
  2725. " dists/potato/main/binary-i386/Packages\n"
  2726. "\n"
  2727. "Options:\n"
  2728. " -h This help text\n"
  2729. " --md5 Control MD5 generation\n"
  2730. " -s=? Source override file\n"
  2731. " -q Quiet\n"
  2732. " -d=? Select the optional caching database\n"
  2733. " --no-delink Enable delinking debug mode\n"
  2734. " --contents Control contents file generation\n"
  2735. " -c=? Read this configuration file\n"
  2736. " -o=? Set an arbitrary configuration option"
  2737. msgstr ""
  2738. "Použití: apt-ftparchive [volby] příkaz\n"
  2739. "Příkazy: packages binárnícesta [souboroverride [prefixcesty]]\n"
  2740. " sources zdrojovácesta [souboroverride [prefixcesty]]\n"
  2741. " contents cesta\n"
  2742. " release cesta\n"
  2743. " generate konfiguračnísoubor [skupiny]\n"
  2744. " clean konfiguračnísoubor\n"
  2745. "\n"
  2746. "apt-ftparchive generuje indexové soubory debianích archivů. Podporuje\n"
  2747. "několik režimů vytváření - od plně automatického až po funkční ekvivalent\n"
  2748. "příkazů dpkg-scanpackages a dpkg-scansources.\n"
  2749. "\n"
  2750. "apt-ftparchive vytvoří ze stromu .deb souborů soubory Packages. Soubor\n"
  2751. "Packages obsahuje kromě všech kontrolních polí každého balíku také jeho\n"
  2752. "velikost a MD5 součet. Podporován je také soubor override, kterým můžete \n"
  2753. "vynutit hodnoty polí Priority a Section.\n"
  2754. "\n"
  2755. "Podobně umí apt-ftparchive vygenerovat ze stromu souborů .dsc soubory\n"
  2756. "Sources. Volbou --source-override můžete zadat zdrojový soubor override.\n"
  2757. "\n"
  2758. "Příkazy „packages“ a „sources“ by se měly spouštět z kořene stromu.\n"
  2759. "BinárníCesta by měla ukazovat na začátek rekurzivního hledání a soubor \n"
  2760. "override by měl obsahovat příznaky pro přepis. PrefixCesty, pokud je\n"
  2761. "přítomen, je přidán do polí Filename.\n"
  2762. "Reálný příklad na archivu Debianu:\n"
  2763. " apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
  2764. " dists/potato/main/binary-i386/Packages\n"
  2765. "\n"
  2766. "Volby:\n"
  2767. " -h Tato nápověda\n"
  2768. " --md5 Vygeneruje kontrolní MD5\n"
  2769. " -s=? Zdrojový soubor override\n"
  2770. " -q Tichý režim\n"
  2771. " -d=? Vybere volitelnou databázi pro vyrovnávací paměť\n"
  2772. " --no-delink Povolí ladicí režim\n"
  2773. " --contents Vygeneruje soubor Contents\n"
  2774. " -c=? Načte tento konfigurační soubor\n"
  2775. " -o=? Nastaví libovolnou volbu"
  2776. #: ftparchive/apt-ftparchive.cc:812
  2777. msgid "No selections matched"
  2778. msgstr "Žádný výběr nevyhověl"
  2779. #: ftparchive/apt-ftparchive.cc:892
  2780. #, c-format
  2781. msgid "Some files are missing in the package file group `%s'"
  2782. msgstr "Některé soubory chybí v balíkovém souboru skupiny %s"
  2783. #: ftparchive/cachedb.cc:68
  2784. #, c-format
  2785. msgid "DB was corrupted, file renamed to %s.old"
  2786. msgstr "DB je porušená, soubor přejmenován na %s.old"
  2787. #: ftparchive/cachedb.cc:86
  2788. #, c-format
  2789. msgid "DB is old, attempting to upgrade %s"
  2790. msgstr "DB je stará, zkouším aktualizovat %s"
  2791. #: ftparchive/cachedb.cc:97
  2792. msgid ""
  2793. "DB format is invalid. If you upgraded from an older version of apt, please "
  2794. "remove and re-create the database."
  2795. msgstr ""
  2796. "Formát databáze je neplatný. Pokud jste přešli ze starší verze apt, databázi "
  2797. "prosím odstraňte a poté ji znovu vytvořte."
  2798. #: ftparchive/cachedb.cc:102
  2799. #, c-format
  2800. msgid "Unable to open DB file %s: %s"
  2801. msgstr "Nelze otevřít DB soubor %s: %s"
  2802. #: ftparchive/cachedb.cc:185 apt-inst/extract.cc:186 apt-inst/extract.cc:199
  2803. #: apt-inst/extract.cc:216
  2804. #, c-format
  2805. msgid "Failed to stat %s"
  2806. msgstr "Nelze vyhodnotit %s"
  2807. #: ftparchive/cachedb.cc:327
  2808. msgid "Failed to read .dsc"
  2809. msgstr "Nelze přečíst .dsc"
  2810. #: ftparchive/cachedb.cc:360
  2811. msgid "Archive has no control record"
  2812. msgstr "Archiv nemá kontrolní záznam"
  2813. #: ftparchive/cachedb.cc:527
  2814. msgid "Unable to get a cursor"
  2815. msgstr "Nelze získat kurzor"
  2816. #: ftparchive/writer.cc:104
  2817. #, c-format
  2818. msgid "W: Unable to read directory %s\n"
  2819. msgstr "W: Nelze číst adresář %s\n"
  2820. #: ftparchive/writer.cc:109
  2821. #, c-format
  2822. msgid "W: Unable to stat %s\n"
  2823. msgstr "W: Nelze vyhodnotit %s\n"
  2824. #: ftparchive/writer.cc:165
  2825. msgid "E: "
  2826. msgstr "E: "
  2827. #: ftparchive/writer.cc:167
  2828. msgid "W: "
  2829. msgstr "W: "
  2830. #: ftparchive/writer.cc:174
  2831. msgid "E: Errors apply to file "
  2832. msgstr "E: Chyby se týkají souboru "
  2833. #: ftparchive/writer.cc:192 ftparchive/writer.cc:224
  2834. #, c-format
  2835. msgid "Failed to resolve %s"
  2836. msgstr "Chyba při zjišťování %s"
  2837. #: ftparchive/writer.cc:205
  2838. msgid "Tree walking failed"
  2839. msgstr "Průchod stromem selhal"
  2840. #: ftparchive/writer.cc:232
  2841. #, c-format
  2842. msgid "Failed to open %s"
  2843. msgstr "Nelze otevřít %s"
  2844. #: ftparchive/writer.cc:291
  2845. #, c-format
  2846. msgid " DeLink %s [%s]\n"
  2847. msgstr "Odlinkování %s [%s]\n"
  2848. #: ftparchive/writer.cc:299
  2849. #, c-format
  2850. msgid "Failed to readlink %s"
  2851. msgstr "Nelze přečíst link %s"
  2852. #: ftparchive/writer.cc:303
  2853. #, c-format
  2854. msgid "Failed to unlink %s"
  2855. msgstr "Nelze odlinkovat %s"
  2856. #: ftparchive/writer.cc:311
  2857. #, c-format
  2858. msgid "*** Failed to link %s to %s"
  2859. msgstr "*** Nezdařilo se slinkovat %s s %s"
  2860. #: ftparchive/writer.cc:321
  2861. #, c-format
  2862. msgid " DeLink limit of %sB hit.\n"
  2863. msgstr " Odlinkovací limit %sB dosažen.\n"
  2864. #: ftparchive/writer.cc:426
  2865. msgid "Archive had no package field"
  2866. msgstr "Archiv nemá pole Package"
  2867. #: ftparchive/writer.cc:434 ftparchive/writer.cc:698
  2868. #, c-format
  2869. msgid " %s has no override entry\n"
  2870. msgstr " %s nemá žádnou položku pro override\n"
  2871. #: ftparchive/writer.cc:501 ftparchive/writer.cc:855
  2872. #, c-format
  2873. msgid " %s maintainer is %s not %s\n"
  2874. msgstr " správce %s je %s, ne %s\n"
  2875. #: ftparchive/writer.cc:712
  2876. #, c-format
  2877. msgid " %s has no source override entry\n"
  2878. msgstr " %s nemá žádnou zdrojovou položku pro override\n"
  2879. #: ftparchive/writer.cc:716
  2880. #, c-format
  2881. msgid " %s has no binary override entry either\n"
  2882. msgstr " %s nemá ani žádnou binární položku pro override\n"
  2883. #: ftparchive/contents.cc:353 ftparchive/contents.cc:384
  2884. msgid "realloc - Failed to allocate memory"
  2885. msgstr "realloc - Selhal pokus o přidělení paměti"
  2886. #: ftparchive/override.cc:38 ftparchive/override.cc:142
  2887. #, c-format
  2888. msgid "Unable to open %s"
  2889. msgstr "Nelze otevřít %s"
  2890. #. skip spaces
  2891. #. find end of word
  2892. #: ftparchive/override.cc:68
  2893. #, c-format
  2894. msgid "Malformed override %s line %llu (%s)"
  2895. msgstr "Zkomolený override soubor %s, řádek %llu (%s)"
  2896. #: ftparchive/override.cc:127 ftparchive/override.cc:201
  2897. #, c-format
  2898. msgid "Failed to read the override file %s"
  2899. msgstr "Nezdařilo se přečíst override soubor %s"
  2900. #: ftparchive/override.cc:166
  2901. #, c-format
  2902. msgid "Malformed override %s line %llu #1"
  2903. msgstr "Zkomolený override soubor %s, řádek %llu #1"
  2904. #: ftparchive/override.cc:178
  2905. #, c-format
  2906. msgid "Malformed override %s line %llu #2"
  2907. msgstr "Zkomolený override soubor %s, řádek %llu #2"
  2908. #: ftparchive/override.cc:191
  2909. #, c-format
  2910. msgid "Malformed override %s line %llu #3"
  2911. msgstr "Zkomolený override soubor %s, řádek %llu #3"
  2912. #: ftparchive/multicompress.cc:72
  2913. #, c-format
  2914. msgid "Unknown compression algorithm '%s'"
  2915. msgstr "Neznámý kompresní algoritmus „%s“"
  2916. #: ftparchive/multicompress.cc:102
  2917. #, c-format
  2918. msgid "Compressed output %s needs a compression set"
  2919. msgstr "Komprimovaný výstup %s potřebuje kompresní sadu"
  2920. #: ftparchive/multicompress.cc:193
  2921. msgid "Failed to fork"
  2922. msgstr "Volání fork() se nezdařilo"
  2923. #: ftparchive/multicompress.cc:206
  2924. msgid "Compress child"
  2925. msgstr "Komprimovat potomka"
  2926. #: ftparchive/multicompress.cc:229
  2927. #, c-format
  2928. msgid "Internal error, failed to create %s"
  2929. msgstr "Interní chyba, nezdařilo se vytvořit %s"
  2930. #: ftparchive/multicompress.cc:302
  2931. msgid "IO to subprocess/file failed"
  2932. msgstr "V/V operace s podprocesem/souborem selhala"
  2933. #: ftparchive/multicompress.cc:340
  2934. msgid "Failed to read while computing MD5"
  2935. msgstr "Chyba čtení při výpočtu MD5"
  2936. #: ftparchive/multicompress.cc:356
  2937. #, c-format
  2938. msgid "Problem unlinking %s"
  2939. msgstr "Problém s odlinkováním %s"
  2940. #: ftparchive/multicompress.cc:371 apt-inst/extract.cc:194
  2941. #, c-format
  2942. msgid "Failed to rename %s to %s"
  2943. msgstr "Selhalo přejmenování %s na %s"
  2944. #: cmdline/apt-internal-solver.cc:50
  2945. msgid ""
  2946. "Usage: apt-internal-solver\n"
  2947. "\n"
  2948. "apt-internal-solver is an interface to use the current internal\n"
  2949. "like an external resolver for the APT family for debugging or alike\n"
  2950. "\n"
  2951. "Options:\n"
  2952. " -h This help text.\n"
  2953. " -q Loggable output - no progress indicator\n"
  2954. " -c=? Read this configuration file\n"
  2955. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  2956. msgstr ""
  2957. "Použití: apt-internal-solver\n"
  2958. "\n"
  2959. "apt-internal-solver je rozhraní k aktuálnímu internímu řešiteli\n"
  2960. "závislostí, jako by šlo o externí nástroj - vhodné pro ladění\n"
  2961. "\n"
  2962. "Volby:\n"
  2963. " -h Tato nápověda.\n"
  2964. " -q Nezobrazí indikátor postupu - vhodné pro záznam\n"
  2965. " -c=? Načte daný konfigurační soubor\n"
  2966. " -o=? Nastaví libovolnou volbu, např. -o dir::cache=/tmp\n"
  2967. #: cmdline/apt-sortpkgs.cc:91
  2968. msgid "Unknown package record!"
  2969. msgstr "Neznámý záznam o balíku!"
  2970. #: cmdline/apt-sortpkgs.cc:154
  2971. msgid ""
  2972. "Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
  2973. "\n"
  2974. "apt-sortpkgs is a simple tool to sort package files. The -s option is used\n"
  2975. "to indicate what kind of file it is.\n"
  2976. "\n"
  2977. "Options:\n"
  2978. " -h This help text\n"
  2979. " -s Use source file sorting\n"
  2980. " -c=? Read this configuration file\n"
  2981. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  2982. msgstr ""
  2983. "Použití: apt-sortpkgs [volby] soubor1 [soubor2 …]\n"
  2984. "\n"
  2985. "apt-sortpkgs je jednoduchý nástroj pro setřídění souborů Packages.\n"
  2986. "Volbou -s volíte typ souboru.\n"
  2987. "\n"
  2988. "Volby:\n"
  2989. " -h Tato nápověda\n"
  2990. " -s Setřídí zdrojový soubor\n"
  2991. " -c=? Načte tento konfigurační soubor\n"
  2992. " -o=? Nastaví libovolnou volbu, např. -o dir::cache=/tmp\n"
  2993. #: apt-inst/filelist.cc:380
  2994. msgid "DropNode called on still linked node"
  2995. msgstr "Pokus o uvolnění uzlu (DropNode) na stále propojeném uzlu"
  2996. #: apt-inst/filelist.cc:412
  2997. msgid "Failed to locate the hash element!"
  2998. msgstr "Nelze lokalizovat hashovací prvek!"
  2999. #: apt-inst/filelist.cc:459
  3000. msgid "Failed to allocate diversion"
  3001. msgstr "Nelze alokovat diverzi"
  3002. #: apt-inst/filelist.cc:464
  3003. msgid "Internal error in AddDiversion"
  3004. msgstr "Vnitřní chyba při AddDiversion"
  3005. #: apt-inst/filelist.cc:477
  3006. #, c-format
  3007. msgid "Trying to overwrite a diversion, %s -> %s and %s/%s"
  3008. msgstr "Pokus o přepsání diverze, %s -> %s a %s/%s"
  3009. #: apt-inst/filelist.cc:506
  3010. #, c-format
  3011. msgid "Double add of diversion %s -> %s"
  3012. msgstr "Dvojí přidání diverze %s -> %s"
  3013. #: apt-inst/filelist.cc:549
  3014. #, c-format
  3015. msgid "Duplicate conf file %s/%s"
  3016. msgstr "Duplicitní konfigurační soubor %s/%s"
  3017. #: apt-inst/extract.cc:101 apt-inst/extract.cc:172
  3018. #, c-format
  3019. msgid "The path %s is too long"
  3020. msgstr "Cesta %s je příliš dlouhá"
  3021. #: apt-inst/extract.cc:132
  3022. #, c-format
  3023. msgid "Unpacking %s more than once"
  3024. msgstr "%s se rozbaluje vícekrát"
  3025. #: apt-inst/extract.cc:142
  3026. #, c-format
  3027. msgid "The directory %s is diverted"
  3028. msgstr "Adresář %s je odkloněn"
  3029. #: apt-inst/extract.cc:152
  3030. #, c-format
  3031. msgid "The package is trying to write to the diversion target %s/%s"
  3032. msgstr "Balík se pokouší zapisovat do diverzního cíle %s/%s"
  3033. #: apt-inst/extract.cc:162 apt-inst/extract.cc:306
  3034. msgid "The diversion path is too long"
  3035. msgstr "Diverzní cesta je příliš dlouhá"
  3036. #: apt-inst/extract.cc:249
  3037. #, c-format
  3038. msgid "The directory %s is being replaced by a non-directory"
  3039. msgstr "Adresář %s bude nahrazen neadresářem"
  3040. #: apt-inst/extract.cc:289
  3041. msgid "Failed to locate node in its hash bucket"
  3042. msgstr "Nelze nalézt uzel v jeho hashovacím kbelíku"
  3043. #: apt-inst/extract.cc:293
  3044. msgid "The path is too long"
  3045. msgstr "Cesta je příliš dlouhá"
  3046. #: apt-inst/extract.cc:421
  3047. #, c-format
  3048. msgid "Overwrite package match with no version for %s"
  3049. msgstr "Přepsat vyhovující balík bez udání verze pro %s"
  3050. #: apt-inst/extract.cc:438
  3051. #, c-format
  3052. msgid "File %s/%s overwrites the one in the package %s"
  3053. msgstr "Soubor %s/%s přepisuje ten z balíku %s"
  3054. #: apt-inst/extract.cc:498
  3055. #, c-format
  3056. msgid "Unable to stat %s"
  3057. msgstr "Nelze vyhodnotit %s"
  3058. #: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54
  3059. #, c-format
  3060. msgid "Failed to write file %s"
  3061. msgstr "Selhal zápis souboru %s"
  3062. #: apt-inst/dirstream.cc:104
  3063. #, c-format
  3064. msgid "Failed to close file %s"
  3065. msgstr "Selhalo zavření souboru %s"
  3066. #: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54
  3067. #: apt-inst/deb/debfile.cc:63
  3068. #, c-format
  3069. msgid "This is not a valid DEB archive, missing '%s' member"
  3070. msgstr "Toto není platný DEB archiv, chybí část „%s“"
  3071. #: apt-inst/deb/debfile.cc:132
  3072. #, c-format
  3073. msgid "Internal error, could not locate member %s"
  3074. msgstr "Vnitřní chyba, nelze najít část %s"
  3075. #: apt-inst/deb/debfile.cc:227
  3076. msgid "Unparsable control file"
  3077. msgstr "Nezpracovatelný kontrolní soubor"
  3078. #: apt-inst/contrib/arfile.cc:76
  3079. msgid "Invalid archive signature"
  3080. msgstr "Neplatný podpis archivu"
  3081. #: apt-inst/contrib/arfile.cc:84
  3082. msgid "Error reading archive member header"
  3083. msgstr "Chyba při čtení záhlaví prvku archivu"
  3084. #: apt-inst/contrib/arfile.cc:96
  3085. #, c-format
  3086. msgid "Invalid archive member header %s"
  3087. msgstr "Neplatné záhlaví prvku archivu %s"
  3088. #: apt-inst/contrib/arfile.cc:108
  3089. msgid "Invalid archive member header"
  3090. msgstr "Neplatné záhlaví prvku archivu"
  3091. #: apt-inst/contrib/arfile.cc:137
  3092. msgid "Archive is too short"
  3093. msgstr "Archiv je příliš krátký"
  3094. #: apt-inst/contrib/arfile.cc:141
  3095. msgid "Failed to read the archive headers"
  3096. msgstr "Chyba při čtení hlaviček archivu"
  3097. #: apt-inst/contrib/extracttar.cc:123
  3098. msgid "Failed to create pipes"
  3099. msgstr "Selhalo vytvoření roury"
  3100. #: apt-inst/contrib/extracttar.cc:150
  3101. msgid "Failed to exec gzip "
  3102. msgstr "Selhalo spuštění gzipu "
  3103. #: apt-inst/contrib/extracttar.cc:187 apt-inst/contrib/extracttar.cc:217
  3104. msgid "Corrupted archive"
  3105. msgstr "Porušený archiv"
  3106. #: apt-inst/contrib/extracttar.cc:202
  3107. msgid "Tar checksum failed, archive corrupted"
  3108. msgstr "Kontrolní součet taru selhal, archiv je poškozený"
  3109. #: apt-inst/contrib/extracttar.cc:307
  3110. #, c-format
  3111. msgid "Unknown TAR header type %u, member %s"
  3112. msgstr "Neznámá hlavička TARu typ %u, člen %s"
  3113. #~ msgid "%s %s for %s compiled on %s %s\n"
  3114. #~ msgstr "%s %s pro %s zkompilován na %s %s\n"
  3115. #~ msgid "Failed to create FILE*"
  3116. #~ msgstr "Selhalo vytvoření FILE*"
  3117. #~ msgid "Malformed stanza %u in source list %s (URI parse)"
  3118. #~ msgstr "Zkomolená část %u v seznamu zdrojů %s (zpracování URI)"
  3119. #~ msgid "Malformed line %lu in source list %s ([option] unparseable)"
  3120. #~ msgstr "Zkomolený řádek %lu v seznamu zdrojů %s (nezpracovatelná [volba])"
  3121. #~ msgid "Malformed line %lu in source list %s ([option] too short)"
  3122. #~ msgstr "Zkomolený řádek %lu v seznamu zdrojů %s (příliš krátká [volba])"
  3123. #~ msgid "Malformed line %lu in source list %s ([%s] is not an assignment)"
  3124. #~ msgstr "Zkomolený řádek %lu v seznamu zdrojů %s ([%s] není přiřazení)"
  3125. #~ msgid "Malformed line %lu in source list %s ([%s] has no key)"
  3126. #~ msgstr "Zkomolený řádek %lu v seznamu zdrojů %s ([%s] nemá klíč)"
  3127. #~ msgid "Malformed line %lu in source list %s ([%s] key %s has no value)"
  3128. #~ msgstr "Zkomolený řádek %lu v seznamu zdrojů %s ([%s] klíč %s nemá hodnotu)"
  3129. #~ msgid "Malformed line %lu in source list %s (URI)"
  3130. #~ msgstr "Zkomolený řádek %lu v seznamu zdrojů %s (URI)"
  3131. #~ msgid "Malformed line %lu in source list %s (dist)"
  3132. #~ msgstr "Zkomolený řádek %lu v seznamu zdrojů %s (dist)"
  3133. #~ msgid "Malformed line %lu in source list %s (URI parse)"
  3134. #~ msgstr "Zkomolený řádek %lu v seznamu zdrojů %s (zpracování URI)"
  3135. #~ msgid "Malformed line %lu in source list %s (absolute dist)"
  3136. #~ msgstr "Zkomolený řádek %lu v seznamu zdrojů %s (absolutní dist)"
  3137. #~ msgid "Malformed line %lu in source list %s (dist parse)"
  3138. #~ msgstr "Zkomolený řádek %lu v seznamu zdrojů %s (zpracování dist)"
  3139. #~ msgid "Package %s %s was not found while processing file dependencies"
  3140. #~ msgstr "Při zpracování závislostí nebyl nalezen balík %s %s"
  3141. #~ msgid "Couldn't stat source package list %s"
  3142. #~ msgstr "Nešlo vyhodnotit seznam zdrojových balíků %s"
  3143. #~ msgid "Collecting File Provides"
  3144. #~ msgstr "Collecting File poskytuje"
  3145. #, fuzzy
  3146. #~ msgid "Does not start with a cleartext signature"
  3147. #~ msgstr "Soubor %s nezačíná podpisem"
  3148. #~ msgid "Unable to find hash sum for '%s' in Release file"
  3149. #~ msgstr "V souboru Release nelze najít kontrolní součet „%s“"
  3150. #~ msgid "Vendor block %s contains no fingerprint"
  3151. #~ msgstr "Blok výrobce %s neobsahuje otisk klíče"
  3152. #~ msgid "Total dependency version space: "
  3153. #~ msgstr "Celkem místa závislých verzí: "
  3154. #~ msgid "You don't have enough free space in %s"
  3155. #~ msgstr "Na %s nemáte dostatek volného místa"
  3156. #~ msgid "Done"
  3157. #~ msgstr "Hotovo"
  3158. #~ msgid "No keyring installed in %s."
  3159. #~ msgstr "V %s není nainstalována žádná klíčenka."
  3160. #~ msgid "Is stdout a terminal?"
  3161. #~ msgstr "Je standardní výstup terminál?"
  3162. #~ msgid "ioctl(TIOCGWINSZ) failed"
  3163. #~ msgstr "volání ioctl(TIOCGWINSZ) selhalo"
  3164. #~ msgid "%s not a valid DEB package."
  3165. #~ msgstr "%s není platný DEB balík."
  3166. #~ msgid ""
  3167. #~ "Using CD-ROM mount point %s\n"
  3168. #~ "Mounting CD-ROM\n"
  3169. #~ msgstr ""
  3170. #~ "Používám přípojný bod %s\n"
  3171. #~ "Připojuji CD-ROM\n"
  3172. #~ msgid ""
  3173. #~ "Could not patch %s with mmap and with file operation usage - the patch "
  3174. #~ "seems to be corrupt."
  3175. #~ msgstr ""
  3176. #~ "Nelze záplatovat %s pomocí mmapu a souborových operací - zdá se, že je "
  3177. #~ "záplata porušená."
  3178. #~ msgid ""
  3179. #~ "Could not patch %s with mmap (but no mmap specific fail) - the patch "
  3180. #~ "seems to be corrupt."
  3181. #~ msgstr ""
  3182. #~ "Nelze záplatovat %s pomocí mmapu (ovšem žádná chyba specifická pro mmap "
  3183. #~ "nebyla zaznamenána) - zdá se, že je záplata porušená."
  3184. #~ msgid "Ignore unavailable target release '%s' of package '%s'"
  3185. #~ msgstr "Ignoruje se nedostupné vydání „%s“ balíku „%s“"
  3186. #~ msgid "Downloading %s %s"
  3187. #~ msgstr "Stahuje se %s %s"
  3188. #~ msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
  3189. #~ msgstr "Toto není platný DEB archiv, neobsahuje část „%s“, „%s“ ani „%s“"
  3190. #~ msgid "MD5Sum mismatch"
  3191. #~ msgstr "Neshoda MD5 součtů"
  3192. #~ msgid ""
  3193. #~ "I wasn't able to locate a file for the %s package. This might mean you "
  3194. #~ "need to manually fix this package."
  3195. #~ msgstr ""
  3196. #~ "Nebylo možné nalézt soubor s balíkem %s. Asi budete muset tento balík "
  3197. #~ "opravit ručně."
  3198. #~ msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
  3199. #~ msgstr ""
  3200. #~ "Nelze zapsat log, volání openpty() selhalo (/dev/pts není připojen?)\n"
  3201. #~ msgid "Skipping nonexistent file %s"
  3202. #~ msgstr "Přeskakuji neexistující soubor %s"
  3203. #~ msgid "Failed to remove %s"
  3204. #~ msgstr "Selhalo odstranění %s"
  3205. #~ msgid "Unable to create %s"
  3206. #~ msgstr "Nelze vytvořit %s"
  3207. #~ msgid "Failed to stat %sinfo"
  3208. #~ msgstr "Selhalo vyhodnocení %sinfo"
  3209. #~ msgid "The info and temp directories need to be on the same filesystem"
  3210. #~ msgstr "Adresáře info a temp musí být na stejném souborovém systému"
  3211. #~ msgid "Failed to change to the admin dir %sinfo"
  3212. #~ msgstr "Nepodařilo se změnit na admin adresář %sinfo"
  3213. #~ msgid "Internal error getting a package name"
  3214. #~ msgstr "Vnitřní chyba při získávání jména balíku"
  3215. #~ msgid "Reading file listing"
  3216. #~ msgstr "Čtu výpis souborů"
  3217. #~ msgid ""
  3218. #~ "Failed to open the list file '%sinfo/%s'. If you cannot restore this file "
  3219. #~ "then make it empty and immediately re-install the same version of the "
  3220. #~ "package!"
  3221. #~ msgstr ""
  3222. #~ "Selhalo otevření souboru seznamů „%sinfo/%s“. Pokud nemůžete tento soubor "
  3223. #~ "obnovit, vytvořte jej nový prázdný a ihned znovu nainstalujte tu samou "
  3224. #~ "verzi balíku!"
  3225. #~ msgid "Failed reading the list file %sinfo/%s"
  3226. #~ msgstr "Chyba při čtení souboru se seznamy %sinfo/%s"
  3227. #~ msgid "Internal error getting a node"
  3228. #~ msgstr "Vnitřní chyba při získávání uzlu"
  3229. #~ msgid "Failed to open the diversions file %sdiversions"
  3230. #~ msgstr "Selhalo otevření souboru s diverzemi %sdiversions"
  3231. #~ msgid "The diversion file is corrupted"
  3232. #~ msgstr "Diverzní soubor je porušen"
  3233. #~ msgid "Invalid line in the diversion file: %s"
  3234. #~ msgstr "Neplatná řádka v diverzním souboru: %s"
  3235. #~ msgid "Internal error adding a diversion"
  3236. #~ msgstr "Vnitřní chyba při přidávání diverze"
  3237. #~ msgid "The pkg cache must be initialized first"
  3238. #~ msgstr "Cache balíků se musí nejprve inicializovat"
  3239. #~ msgid "Failed to find a Package: header, offset %lu"
  3240. #~ msgstr "Chyba při hledání Balíku: Hlavička, offset %lu"
  3241. #~ msgid "Bad ConfFile section in the status file. Offset %lu"
  3242. #~ msgstr "Špatná sekce ConfFile ve stavovém souboru na pozici %lu"
  3243. #~ msgid "Error parsing MD5. Offset %lu"
  3244. #~ msgstr "Chyba při zpracování MD5. Offset %lu"
  3245. #~ msgid "Couldn't change to %s"
  3246. #~ msgstr "Nelze přejít do %s"
  3247. #~ msgid "Failed to locate a valid control file"
  3248. #~ msgstr "Nelze najít platný kontrolní soubor"
  3249. #~ msgid "Couldn't open pipe for %s"
  3250. #~ msgstr "Nelze otevřít rouru pro %s"
  3251. #~ msgid "Read error from %s process"
  3252. #~ msgstr "Chyba čtení z procesu %s"
  3253. #~ msgid "Got a single header line over %u chars"
  3254. #~ msgstr "Získal jsem jednu řádku hlavičky přes %u znaků"
  3255. #~ msgid "Note: This is done automatic and on purpose by dpkg."
  3256. #~ msgstr "Poznámka: Toto má svůj důvod a děje se automaticky v dpkg."
  3257. #~ msgid "Malformed override %s line %lu #1"
  3258. #~ msgstr "Zkomolený soubor %s, řádek %lu #1"
  3259. #~ msgid "Malformed override %s line %lu #2"
  3260. #~ msgstr "Zkomolený soubor %s, řádek %lu #2"
  3261. #~ msgid "Malformed override %s line %lu #3"
  3262. #~ msgstr "Zkomolený soubor %s, řádek %lu #3"
  3263. #~ msgid "decompressor"
  3264. #~ msgstr "dekompresor"
  3265. #~ msgid "read, still have %lu to read but none left"
  3266. #~ msgstr "čtení, stále mám k přečtení %lu, ale už nic nezbývá"
  3267. #~ msgid "write, still have %lu to write but couldn't"
  3268. #~ msgstr "zápis, stále mám %lu k zápisu, ale nejde to"
  3269. #~ msgid ""
  3270. #~ "Could not perform immediate configuration on already unpacked '%s'. "
  3271. #~ "Please see man 5 apt.conf under APT::Immediate-Configure for details."
  3272. #~ msgstr ""
  3273. #~ "Nelze spustit okamžitou konfiguraci již rozbaleného balíku „%s“. "
  3274. #~ "Podrobnosti naleznete v man 5 apt.conf v části APT::Immediate-Configure."
  3275. #~ msgid "Error occurred while processing %s (NewPackage)"
  3276. #~ msgstr "Při zpracování %s se objevila chyba (NewPackage)"
  3277. #~ msgid "Error occurred while processing %s (UsePackage1)"
  3278. #~ msgstr "Při zpracování %s se objevila chyba (UsePackage1)"
  3279. #~ msgid "Error occurred while processing %s (NewFileDesc1)"
  3280. #~ msgstr "Při zpracování %s se objevila chyba (NewFileDesc1)"
  3281. #~ msgid "Error occurred while processing %s (UsePackage2)"
  3282. #~ msgstr "Při zpracování %s se objevila chyba (UsePackage2)"
  3283. #~ msgid "Error occurred while processing %s (NewFileVer1)"
  3284. #~ msgstr "Při zpracování %s se objevila chyba (NewFileVer1)"
  3285. #~ msgid "Error occurred while processing %s (NewVersion%d)"
  3286. #~ msgstr "Při zpracování %s se objevila chyba (NewVersion%d)"
  3287. #~ msgid "Error occurred while processing %s (UsePackage3)"
  3288. #~ msgstr "Při zpracování %s se objevila chyba (UsePackage3)"
  3289. #~ msgid "Error occurred while processing %s (NewFileDesc2)"
  3290. #~ msgstr "Při zpracování %s se objevila chyba (NewFileDesc2)"
  3291. #~ msgid "Error occurred while processing %s (FindPkg)"
  3292. #~ msgstr "Chyba při zpracování %s (FindPkg)"
  3293. #~ msgid "Error occurred while processing %s (CollectFileProvides)"
  3294. #~ msgstr "Při zpracování %s se objevila chyba (CollectFileProvides)"
  3295. #~ msgid "Internal error, could not locate member"
  3296. #~ msgstr "Vnitřní chyba, nemohu nalézt člen"
  3297. #~ msgid "Internal error, group '%s' has no installable pseudo package"
  3298. #~ msgstr "Interní chyba, skupina „%s“ nemá instalovatelný pseudobalík"
  3299. #~ msgid "Release file expired, ignoring %s (invalid since %s)"
  3300. #~ msgstr "Souboru Release vypršela platnost, ignoruji %s (neplatný již %s)"
  3301. #~ msgid "E: Argument list from Acquire::gpgv::Options too long. Exiting."
  3302. #~ msgstr ""
  3303. #~ "E: Seznam argumentů Acquire::gpgv::Options je příliš dlouhý. Končím."
  3304. #~ msgid "Error occurred while processing %s (NewVersion2)"
  3305. #~ msgstr "Při zpracování %s se objevila chyba (NewVersion2)"
  3306. #~ msgid "Malformed line %u in source list %s (vendor id)"
  3307. #~ msgstr "Zkomolený řádek %u v seznamu zdrojů %s (id výrobce)"
  3308. #~ msgid "Couldn't access keyring: '%s'"
  3309. #~ msgstr "Nelze přistoupit ke klíčence: „%s“"
  3310. #~ msgid "Could not patch file"
  3311. #~ msgstr "Nelze záplatovat soubor"
  3312. #~ msgid " %4i %s\n"
  3313. #~ msgstr " %4i %s\n"
  3314. #~ msgid "%4i %s\n"
  3315. #~ msgstr "%4i %s\n"
  3316. #~ msgid "Processing triggers for %s"
  3317. #~ msgstr "Zpracovávám spouštěče pro %s"
  3318. #~ msgid "Dynamic MMap ran out of room"
  3319. #~ msgstr "Dynamickému MMapu došlo místo"
  3320. #~ msgid ""
  3321. #~ "Since you only requested a single operation it is extremely likely that\n"
  3322. #~ "the package is simply not installable and a bug report against\n"
  3323. #~ "that package should be filed."
  3324. #~ msgstr ""
  3325. #~ "Protože jste požádali pouze o jednoduchou operaci, je téměř jisté, že\n"
  3326. #~ "balík není instalovatelný a měl byste o tom zaslat hlášení o chybě\n"
  3327. #~ "(bug report)."
  3328. #~ msgid "Line %d too long (max %lu)"
  3329. #~ msgstr "Řádek %d je příliš dlouhý (max %lu)"
  3330. #~ msgid "Line %d too long (max %d)"
  3331. #~ msgstr "Řádek %d je příliš dlouhý (max %d)"
  3332. #~ msgid "Error occured while processing %s (NewFileDesc1)"
  3333. #~ msgstr "Při zpracování %s se objevila chyba (NewFileDesc1)"
  3334. #~ msgid "Error occured while processing %s (NewFileDesc2)"
  3335. #~ msgstr "Při zpracování %s se objevila chyba (NewFileDesc2)"
  3336. #~ msgid "Stored label: %s \n"
  3337. #~ msgstr "Uložený název: %s \n"
  3338. #~ msgid ""
  3339. #~ "Found %i package indexes, %i source indexes, %i translation indexes and "
  3340. #~ "%i signatures\n"
  3341. #~ msgstr ""
  3342. #~ "Nalezl jsem indexy balíků (%i), indexy zdrojů (%i), indexy překladů (%i) "
  3343. #~ "a podpisy (%i)\n"
  3344. #~ msgid "File date has changed %s"
  3345. #~ msgstr "Datum souboru se změnil %s"
  3346. #~ msgid "Reading file list"
  3347. #~ msgstr "Čtu seznam souborů"
  3348. #~ msgid "Could not execute "
  3349. #~ msgstr "Nelze spustit "
  3350. #~ msgid "Preparing for remove with config %s"
  3351. #~ msgstr "Připravuji odstranění %s včetně konfiguračních souborů"
  3352. #~ msgid "Removed with config %s"
  3353. #~ msgstr "Odstraněn %s včetně konfiguračního souboru"