cs.po 108 KB

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