cs.po 76 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571
  1. # Czech translation of APT
  2. # This file is put in the public domain.
  3. # Miroslav Kure <kurem@debian.cz>, 2004.
  4. #
  5. msgid ""
  6. msgstr ""
  7. "Project-Id-Version: apt\n"
  8. "Report-Msgid-Bugs-To: \n"
  9. "POT-Creation-Date: 2005-03-29 07:17+0200\n"
  10. "PO-Revision-Date: 2005-02-11 16:14+0100\n"
  11. "Last-Translator: Miroslav Kure <kurem@debian.cz>\n"
  12. "Language-Team: Czech <provoz@debian.cz>\n"
  13. "MIME-Version: 1.0\n"
  14. "Content-Type: text/plain; charset=UTF-8\n"
  15. "Content-Transfer-Encoding: 8bit\n"
  16. #: cmdline/apt-cache.cc:135
  17. #, c-format
  18. msgid "Package %s version %s has an unmet dep:\n"
  19. msgstr "Balík %s verze %s má nesplněné závislosti:\n"
  20. #: cmdline/apt-cache.cc:175 cmdline/apt-cache.cc:527 cmdline/apt-cache.cc:615
  21. #: cmdline/apt-cache.cc:771 cmdline/apt-cache.cc:989 cmdline/apt-cache.cc:1357
  22. #: cmdline/apt-cache.cc:1508
  23. #, c-format
  24. msgid "Unable to locate package %s"
  25. msgstr "Nemohu najít balík %s"
  26. #: cmdline/apt-cache.cc:232
  27. msgid "Total package names : "
  28. msgstr "Celkem názvů balíků: "
  29. #: cmdline/apt-cache.cc:272
  30. msgid " Normal packages: "
  31. msgstr " Normálních balíků: "
  32. #: cmdline/apt-cache.cc:273
  33. msgid " Pure virtual packages: "
  34. msgstr " Čistě virtuálních balíků: "
  35. #: cmdline/apt-cache.cc:274
  36. msgid " Single virtual packages: "
  37. msgstr " Jednoduchých virtuálních balíků: "
  38. #: cmdline/apt-cache.cc:275
  39. msgid " Mixed virtual packages: "
  40. msgstr " Smíšených virtuálních balíků: "
  41. #: cmdline/apt-cache.cc:276
  42. msgid " Missing: "
  43. msgstr " Chybějících: "
  44. #: cmdline/apt-cache.cc:278
  45. msgid "Total distinct versions: "
  46. msgstr "Celkem různých verzí: "
  47. #: cmdline/apt-cache.cc:280
  48. msgid "Total dependencies: "
  49. msgstr "Celkem závislostí: "
  50. #: cmdline/apt-cache.cc:283
  51. msgid "Total ver/file relations: "
  52. msgstr "Celkem vztahů ver/soubor: "
  53. #: cmdline/apt-cache.cc:285
  54. msgid "Total Provides mappings: "
  55. msgstr "Celkem poskytnutých mapování: "
  56. #: cmdline/apt-cache.cc:297
  57. msgid "Total globbed strings: "
  58. msgstr "Celkem globovaných řetězců: "
  59. #: cmdline/apt-cache.cc:311
  60. msgid "Total dependency version space: "
  61. msgstr "Celkem místa závislých verzí: "
  62. #: cmdline/apt-cache.cc:316
  63. msgid "Total slack space: "
  64. msgstr "Celkem jalového místa: "
  65. #: cmdline/apt-cache.cc:324
  66. msgid "Total space accounted for: "
  67. msgstr "Celkem přiřazeného místa: "
  68. #: cmdline/apt-cache.cc:446 cmdline/apt-cache.cc:1189
  69. #, c-format
  70. msgid "Package file %s is out of sync."
  71. msgstr "Soubor balíku %s je špatně synchronizovaný."
  72. #: cmdline/apt-cache.cc:1231
  73. msgid "You must give exactly one pattern"
  74. msgstr "Musíte zadat právě jeden vzor"
  75. #: cmdline/apt-cache.cc:1385
  76. msgid "No packages found"
  77. msgstr "Nebyly nalezeny žádné balíky"
  78. #: cmdline/apt-cache.cc:1462
  79. msgid "Package files:"
  80. msgstr "Soubory balíku:"
  81. #: cmdline/apt-cache.cc:1469 cmdline/apt-cache.cc:1555
  82. msgid "Cache is out of sync, can't x-ref a package file"
  83. msgstr "Cache není synchronizovaná, nemohu se odkázat na soubor balíku"
  84. #: cmdline/apt-cache.cc:1470
  85. #, c-format
  86. msgid "%4i %s\n"
  87. msgstr "%4i %s\n"
  88. #. Show any packages have explicit pins
  89. #: cmdline/apt-cache.cc:1482
  90. msgid "Pinned packages:"
  91. msgstr "Vypíchnuté balíky:"
  92. #: cmdline/apt-cache.cc:1494 cmdline/apt-cache.cc:1535
  93. msgid "(not found)"
  94. msgstr "(nenalezeno)"
  95. #. Installed version
  96. #: cmdline/apt-cache.cc:1515
  97. msgid " Installed: "
  98. msgstr " Instalovaná verze: "
  99. #: cmdline/apt-cache.cc:1517 cmdline/apt-cache.cc:1525
  100. msgid "(none)"
  101. msgstr "(žádná)"
  102. #. Candidate Version
  103. #: cmdline/apt-cache.cc:1522
  104. msgid " Candidate: "
  105. msgstr " Kandidát: "
  106. #: cmdline/apt-cache.cc:1532
  107. msgid " Package pin: "
  108. msgstr " Vypíchnutý balík:"
  109. #. Show the priority tables
  110. #: cmdline/apt-cache.cc:1541
  111. msgid " Version table:"
  112. msgstr " Tabulka verzí:"
  113. #: cmdline/apt-cache.cc:1556
  114. #, c-format
  115. msgid " %4i %s\n"
  116. msgstr " %4i %s\n"
  117. #: cmdline/apt-cache.cc:1651 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70
  118. #: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:545
  119. #: cmdline/apt-get.cc:2313 cmdline/apt-sortpkgs.cc:144
  120. #, c-format
  121. msgid "%s %s for %s %s compiled on %s %s\n"
  122. msgstr "%s %s pro %s %s zkompilován na %s %s\n"
  123. #: cmdline/apt-cache.cc:1658
  124. msgid ""
  125. "Usage: apt-cache [options] command\n"
  126. " apt-cache [options] add file1 [file2 ...]\n"
  127. " apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
  128. " apt-cache [options] showsrc pkg1 [pkg2 ...]\n"
  129. "\n"
  130. "apt-cache is a low-level tool used to manipulate APT's binary\n"
  131. "cache files, and query information from them\n"
  132. "\n"
  133. "Commands:\n"
  134. " add - Add a package file to the source cache\n"
  135. " gencaches - Build both the package and source cache\n"
  136. " showpkg - Show some general information for a single package\n"
  137. " showsrc - Show source records\n"
  138. " stats - Show some basic statistics\n"
  139. " dump - Show the entire file in a terse form\n"
  140. " dumpavail - Print an available file to stdout\n"
  141. " unmet - Show unmet dependencies\n"
  142. " search - Search the package list for a regex pattern\n"
  143. " show - Show a readable record for the package\n"
  144. " depends - Show raw dependency information for a package\n"
  145. " rdepends - Show reverse dependency information for a package\n"
  146. " pkgnames - List the names of all packages\n"
  147. " dotty - Generate package graphs for GraphVis\n"
  148. " xvcg - Generate package graphs for xvcg\n"
  149. " policy - Show policy settings\n"
  150. "\n"
  151. "Options:\n"
  152. " -h This help text.\n"
  153. " -p=? The package cache.\n"
  154. " -s=? The source cache.\n"
  155. " -q Disable progress indicator.\n"
  156. " -i Show only important deps for the unmet command.\n"
  157. " -c=? Read this configuration file\n"
  158. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  159. "See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
  160. msgstr ""
  161. "Použití: apt-cache [volby] příkaz\n"
  162. " apt-cache [volby] add soubor1 [soubor2 ...]\n"
  163. " apt-cache [volby] showpkg balík1 [balík2 ...]\n"
  164. " apt-cache [volby] showsrc balík1 [balík2 ...]\n"
  165. "\n"
  166. "apt-cache je nízkoúrovňový nástroj pro manipulaci se soubory ve\n"
  167. "vyrovnávací paměti APTu a pro získávání informací o balících.\n"
  168. "\n"
  169. "Příkazy:\n"
  170. " add - Přidá soubor Packages do zdrojové vyrovnávací paměti\n"
  171. " gencaches - Vybuduje vyrovnávací paměť balíků i zdrojů\n"
  172. " showpkg - Zobrazí obecné informace o balíku\n"
  173. " showsrc - Zobrazí zdrojové záznamy\n"
  174. " stats - Zobrazí základní statistiky\n"
  175. " dump - Zobrazí celý soubor ve zhuštěné podobě\n"
  176. " dumpavail - Vytiskne na výstup dostupné balíky\n"
  177. " unmet - Zobrazí nesplněné závislosti\n"
  178. " search - V seznamu balíků hledá regulární výraz\n"
  179. " show - Zobrazí informace o balíku\n"
  180. " depends - Zobrazí závislosti balíku\n"
  181. " rdepends - Zobrazí reverzní závislosti balíku\n"
  182. " pkgnames - Vypíše jména všech balíků\n"
  183. " dotty - Vygeneruje grafy ve formátu pro GraphVis\n"
  184. " xvcg - Vygeneruje grafy ve formátu pro xvcg\n"
  185. " policy - Zobrazí nastavenou politiku\n"
  186. "\n"
  187. "Volby:\n"
  188. " -h Tato nápověda.\n"
  189. " -p=? Vyrovnávací paměť balíků.\n"
  190. " -s=? Vyrovnávací paměť zdrojů.\n"
  191. " -q Nezobrazí indikátor postupu.\n"
  192. " -i U příkazu unmet zobrazí pouze důležité závislosti.\n"
  193. " -c=? Načte tento konfigurační soubor\n"
  194. " -o=? Nastaví libovolnou volbu, např. -o dir::cache=/tmp\n"
  195. "Více informací viz manuálové stránky apt-cache(8) a apt.conf(5).\n"
  196. #: cmdline/apt-config.cc:41
  197. msgid "Arguments not in pairs"
  198. msgstr "Argumenty nejsou v párech"
  199. #: cmdline/apt-config.cc:76
  200. msgid ""
  201. "Usage: apt-config [options] command\n"
  202. "\n"
  203. "apt-config is a simple tool to read the APT config file\n"
  204. "\n"
  205. "Commands:\n"
  206. " shell - Shell mode\n"
  207. " dump - Show the configuration\n"
  208. "\n"
  209. "Options:\n"
  210. " -h This help text.\n"
  211. " -c=? Read this configuration file\n"
  212. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  213. msgstr ""
  214. "Použití: apt-config [volby] příkaz\n"
  215. "\n"
  216. "apt-config je jednoduchý nástroj pro čtení konfiguračního souboru APT\n"
  217. "\n"
  218. "Příkazy:\n"
  219. " shell - Shellový režim\n"
  220. " dump - Zobrazí nastavení\n"
  221. "\n"
  222. "Volby:\n"
  223. " -h Tato nápověda.\n"
  224. " -c=? Načte tento konfigurační soubor\n"
  225. " -o=? Nastaví libovolnou volbu, např. -o dir::cache=/tmp\n"
  226. #: cmdline/apt-extracttemplates.cc:98
  227. #, c-format
  228. msgid "%s not a valid DEB package."
  229. msgstr "%s není platný DEB balík."
  230. #: cmdline/apt-extracttemplates.cc:232
  231. msgid ""
  232. "Usage: apt-extracttemplates file1 [file2 ...]\n"
  233. "\n"
  234. "apt-extracttemplates is a tool to extract config and template info\n"
  235. "from debian packages\n"
  236. "\n"
  237. "Options:\n"
  238. " -h This help text\n"
  239. " -t Set the temp dir\n"
  240. " -c=? Read this configuration file\n"
  241. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  242. msgstr ""
  243. "Použití: apt-extracttemplates soubor1 [soubor2 ...]\n"
  244. "\n"
  245. "apt-extracttemplates umí z balíků vytáhnout konfigurační skripty a šablony\n"
  246. "\n"
  247. "Volby:\n"
  248. " -h Tato nápověda.\n"
  249. " -t Nastaví dočasný adresář\n"
  250. " -c=? Načte tento konfigurační soubor\n"
  251. " -o=? Nastaví libovolnou volbu, např. -o dir::cache=/tmp\n"
  252. #: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:710
  253. #, c-format
  254. msgid "Unable to write to %s"
  255. msgstr "Nemohu zapsat do %s"
  256. #: cmdline/apt-extracttemplates.cc:310
  257. msgid "Cannot get debconf version. Is debconf installed?"
  258. msgstr "Nemohu určit verzi programu debconf. Je debconf nainstalován?"
  259. #: ftparchive/apt-ftparchive.cc:163 ftparchive/apt-ftparchive.cc:337
  260. msgid "Package extension list is too long"
  261. msgstr "Seznam rozšíření balíku je příliš dlouhý"
  262. #: ftparchive/apt-ftparchive.cc:165 ftparchive/apt-ftparchive.cc:179
  263. #: ftparchive/apt-ftparchive.cc:202 ftparchive/apt-ftparchive.cc:252
  264. #: ftparchive/apt-ftparchive.cc:266 ftparchive/apt-ftparchive.cc:288
  265. #, c-format
  266. msgid "Error processing directory %s"
  267. msgstr "Chyba zpracování adresáře %s"
  268. #: ftparchive/apt-ftparchive.cc:250
  269. msgid "Source extension list is too long"
  270. msgstr "Seznam zdrojových rozšíření je příliš dlouhý"
  271. #: ftparchive/apt-ftparchive.cc:367
  272. msgid "Error writing header to contents file"
  273. msgstr "Chyba při zapisování hlavičky do souboru"
  274. #: ftparchive/apt-ftparchive.cc:397
  275. #, c-format
  276. msgid "Error processing contents %s"
  277. msgstr "Chyba při zpracovávání obsahu %s"
  278. #: ftparchive/apt-ftparchive.cc:551
  279. #, fuzzy
  280. msgid ""
  281. "Usage: apt-ftparchive [options] command\n"
  282. "Commands: packages binarypath [overridefile [pathprefix]]\n"
  283. " sources srcpath [overridefile [pathprefix]]\n"
  284. " contents path\n"
  285. " release path\n"
  286. " generate config [groups]\n"
  287. " clean config\n"
  288. "\n"
  289. "apt-ftparchive generates index files for Debian archives. It supports\n"
  290. "many styles of generation from fully automated to functional replacements\n"
  291. "for dpkg-scanpackages and dpkg-scansources\n"
  292. "\n"
  293. "apt-ftparchive generates Package files from a tree of .debs. The\n"
  294. "Package file contains the contents of all the control fields from\n"
  295. "each package as well as the MD5 hash and filesize. An override file\n"
  296. "is supported to force the value of Priority and Section.\n"
  297. "\n"
  298. "Similarly apt-ftparchive generates Sources files from a tree of .dscs.\n"
  299. "The --source-override option can be used to specify a src override file\n"
  300. "\n"
  301. "The 'packages' and 'sources' command should be run in the root of the\n"
  302. "tree. BinaryPath should point to the base of the recursive search and \n"
  303. "override file should contain the override flags. Pathprefix is\n"
  304. "appended to the filename fields if present. Example usage from the \n"
  305. "Debian archive:\n"
  306. " apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
  307. " dists/potato/main/binary-i386/Packages\n"
  308. "\n"
  309. "Options:\n"
  310. " -h This help text\n"
  311. " --md5 Control MD5 generation\n"
  312. " -s=? Source override file\n"
  313. " -q Quiet\n"
  314. " -d=? Select the optional caching database\n"
  315. " --no-delink Enable delinking debug mode\n"
  316. " --contents Control contents file generation\n"
  317. " -c=? Read this configuration file\n"
  318. " -o=? Set an arbitrary configuration option"
  319. msgstr ""
  320. "Použití: apt-ftparchive [volby] příkaz\n"
  321. "Příkazy: packages binárnícesta [souboroverride [prefixcesty]]\n"
  322. " sources zdrojovácesta [souboroverride [prefixcesty]]\n"
  323. " contents cesta\n"
  324. " release cesta\n"
  325. " generate konfiguračnísoubor [skupiny]\n"
  326. " clean konfiguračnísoubor\n"
  327. "\n"
  328. "apt-ftparchive generuje indexové soubory debianích archívů. Podporuje\n"
  329. "několik režimů vytváření - od plně automatického až po funkční ekvivalent\n"
  330. "příkazů dpkg-scanpackages a dpkg-scansources.\n"
  331. "\n"
  332. "apt-ftparchive ze stromu .deb souborů vygeneruje soubory Packages. Soubor\n"
  333. "Packages obsahuje kromě všech kontrolních polí každého balíku také jeho\n"
  334. "velikost a MD5 součet. Podporován je také soubor override, kterým můžete \n"
  335. "vynutit hodnoty polí Priority a Section.\n"
  336. "\n"
  337. "Podobně umí apt-ftparchive vygenerovat ze stromu souborů .dsc soubory\n"
  338. "Sources. Volbou --source-override můžete zadat zdrojový soubor override.\n"
  339. "\n"
  340. "Příkazy 'packages' a 'sources' by se měly spouštět z kořene stromu.\n"
  341. "BinárníCesta by měla ukazovat na začátek rekurzivního hledání a soubor \n"
  342. "override by měl obsahovat příznaky pro přepis. PrefixCesty, pokud je\n"
  343. "přítomen, je přidán do polí Filename.\n"
  344. "Reálný příklad na archivu Debianu:\n"
  345. " apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
  346. " dists/potato/main/binary-i386/Packages\n"
  347. "\n"
  348. "Volby:\n"
  349. " -h Tato nápověda\n"
  350. " --md5 Vygeneruje kontrolní MD5\n"
  351. " -s=? Zdrojový soubor override\n"
  352. " -q Tichý režim\n"
  353. " -d=? Vybere volitelnou databázi pro vyrovnávací paměť\n"
  354. " --no-delink Povolí ladicí režim\n"
  355. " --contents Vygeneruje soubor Contents\n"
  356. " -c=? Načte tento konfigurační soubor\n"
  357. " -o=? Nastaví libovolnou volbu"
  358. #: ftparchive/apt-ftparchive.cc:757
  359. msgid "No selections matched"
  360. msgstr "Žádný výběr nevyhověl"
  361. #: ftparchive/apt-ftparchive.cc:830
  362. #, c-format
  363. msgid "Some files are missing in the package file group `%s'"
  364. msgstr "Některé soubory chybí v balíkovém souboru skupiny %s"
  365. #: ftparchive/cachedb.cc:45
  366. #, c-format
  367. msgid "DB was corrupted, file renamed to %s.old"
  368. msgstr "DB je porušená, soubor přejmenován na %s.old"
  369. #: ftparchive/cachedb.cc:63
  370. #, c-format
  371. msgid "DB is old, attempting to upgrade %s"
  372. msgstr "DB je stará, zkouším aktualizovat %s"
  373. #: ftparchive/cachedb.cc:73
  374. #, c-format
  375. msgid "Unable to open DB file %s: %s"
  376. msgstr "Nemohu otevřít DB soubor %s: %s"
  377. #: ftparchive/cachedb.cc:114
  378. #, c-format
  379. msgid "File date has changed %s"
  380. msgstr "Datum souboru se změnil %s"
  381. #: ftparchive/cachedb.cc:155
  382. msgid "Archive has no control record"
  383. msgstr "Archív nemá kontrolní záznam"
  384. #: ftparchive/cachedb.cc:267
  385. msgid "Unable to get a cursor"
  386. msgstr "Nemohu získat kurzor"
  387. #: ftparchive/writer.cc:79
  388. #, c-format
  389. msgid "W: Unable to read directory %s\n"
  390. msgstr "W: Nemohu číst adresář %s\n"
  391. #: ftparchive/writer.cc:84
  392. #, c-format
  393. msgid "W: Unable to stat %s\n"
  394. msgstr "W: Nemohu vyhodnotit %s\n"
  395. #: ftparchive/writer.cc:126
  396. msgid "E: "
  397. msgstr "E: "
  398. #: ftparchive/writer.cc:128
  399. msgid "W: "
  400. msgstr "W: "
  401. #: ftparchive/writer.cc:135
  402. msgid "E: Errors apply to file "
  403. msgstr "E: Chyby se týkají souboru "
  404. #: ftparchive/writer.cc:152 ftparchive/writer.cc:182
  405. #, c-format
  406. msgid "Failed to resolve %s"
  407. msgstr "Chyba při zjišťování %s"
  408. #: ftparchive/writer.cc:164
  409. msgid "Tree walking failed"
  410. msgstr "Průchod stromem selhal"
  411. #: ftparchive/writer.cc:189
  412. #, c-format
  413. msgid "Failed to open %s"
  414. msgstr "Nelze otevřít %s"
  415. #: ftparchive/writer.cc:246
  416. #, c-format
  417. msgid " DeLink %s [%s]\n"
  418. msgstr "Odlinkování %s [%s]\n"
  419. #: ftparchive/writer.cc:254
  420. #, c-format
  421. msgid "Failed to readlink %s"
  422. msgstr "Nemohu přečíst link %s"
  423. #: ftparchive/writer.cc:258
  424. #, c-format
  425. msgid "Failed to unlink %s"
  426. msgstr "Nemohu odlinkovat %s"
  427. #: ftparchive/writer.cc:265
  428. #, c-format
  429. msgid "*** Failed to link %s to %s"
  430. msgstr "*** Nezdařilo se slinkovat %s s %s"
  431. #: ftparchive/writer.cc:275
  432. #, c-format
  433. msgid " DeLink limit of %sB hit.\n"
  434. msgstr " Odlinkovací limit %sB dosažen.\n"
  435. #: ftparchive/writer.cc:358 apt-inst/extract.cc:181 apt-inst/extract.cc:193
  436. #: apt-inst/extract.cc:210 apt-inst/deb/dpkgdb.cc:121
  437. #, c-format
  438. msgid "Failed to stat %s"
  439. msgstr "Nemohu vyhodnotit %s"
  440. #: ftparchive/writer.cc:378
  441. msgid "Archive had no package field"
  442. msgstr "Archív nemá pole Package"
  443. #: ftparchive/writer.cc:386 ftparchive/writer.cc:595
  444. #, c-format
  445. msgid " %s has no override entry\n"
  446. msgstr " %s nemá žádnou položku pro override\n"
  447. #: ftparchive/writer.cc:429 ftparchive/writer.cc:677
  448. #, c-format
  449. msgid " %s maintainer is %s not %s\n"
  450. msgstr " správce %s je %s, ne %s\n"
  451. #: ftparchive/contents.cc:317
  452. #, c-format
  453. msgid "Internal error, could not locate member %s"
  454. msgstr "Vnitřní chyba, nemohu najít část %s"
  455. #: ftparchive/contents.cc:353 ftparchive/contents.cc:384
  456. msgid "realloc - Failed to allocate memory"
  457. msgstr "realloc - Selhal pokus o přidělení paměti"
  458. #: ftparchive/override.cc:38 ftparchive/override.cc:146
  459. #, c-format
  460. msgid "Unable to open %s"
  461. msgstr "Nemohu otevřít %s"
  462. #: ftparchive/override.cc:64 ftparchive/override.cc:170
  463. #, c-format
  464. msgid "Malformed override %s line %lu #1"
  465. msgstr "Zkomolený soubor %s, řádek %lu #1"
  466. #: ftparchive/override.cc:78 ftparchive/override.cc:182
  467. #, c-format
  468. msgid "Malformed override %s line %lu #2"
  469. msgstr "Zkomolený soubor %s, řádek %lu #2"
  470. #: ftparchive/override.cc:92 ftparchive/override.cc:195
  471. #, c-format
  472. msgid "Malformed override %s line %lu #3"
  473. msgstr "Zkomolený soubor %s, řádek %lu #3"
  474. #: ftparchive/override.cc:131 ftparchive/override.cc:205
  475. #, c-format
  476. msgid "Failed to read the override file %s"
  477. msgstr "Nezdařilo se přečíst override soubor %s"
  478. #: ftparchive/multicompress.cc:75
  479. #, c-format
  480. msgid "Unknown compression algorithm '%s'"
  481. msgstr "Neznámý kompresní algoritmus '%s'"
  482. #: ftparchive/multicompress.cc:105
  483. #, c-format
  484. msgid "Compressed output %s needs a compression set"
  485. msgstr "Komprimovaný výstup %s potřebuje kompresní sadu"
  486. #: ftparchive/multicompress.cc:172 methods/rsh.cc:91
  487. msgid "Failed to create IPC pipe to subprocess"
  488. msgstr "Selhalo vytvoření meziprocesové roury k podprocesu"
  489. #: ftparchive/multicompress.cc:198
  490. msgid "Failed to create FILE*"
  491. msgstr "Selhalo vytvoření FILE*"
  492. #: ftparchive/multicompress.cc:201
  493. msgid "Failed to fork"
  494. msgstr "Volání fork() se nezdařilo"
  495. #: ftparchive/multicompress.cc:215
  496. msgid "Compress child"
  497. msgstr "Komprimovat potomka"
  498. #: ftparchive/multicompress.cc:238
  499. #, c-format
  500. msgid "Internal error, failed to create %s"
  501. msgstr "Interní chyba, nezdařilo se vytvořit %s"
  502. #: ftparchive/multicompress.cc:289
  503. msgid "Failed to create subprocess IPC"
  504. msgstr "Nemohu vytvořit podproces IPC"
  505. #: ftparchive/multicompress.cc:324
  506. msgid "Failed to exec compressor "
  507. msgstr "Nezdařilo se spustit kompresor "
  508. #: ftparchive/multicompress.cc:363
  509. msgid "decompressor"
  510. msgstr "dekompresor"
  511. #: ftparchive/multicompress.cc:406
  512. msgid "IO to subprocess/file failed"
  513. msgstr "V/V operace s podprocesem/souborem selhala"
  514. #: ftparchive/multicompress.cc:458
  515. msgid "Failed to read while computing MD5"
  516. msgstr "Chyba čtení při výpočtu MD5"
  517. #: ftparchive/multicompress.cc:475
  518. #, c-format
  519. msgid "Problem unlinking %s"
  520. msgstr "Problém s odlinkováním %s"
  521. #: ftparchive/multicompress.cc:490 apt-inst/extract.cc:188
  522. #, c-format
  523. msgid "Failed to rename %s to %s"
  524. msgstr "Selhalo přejmenování %s na %s"
  525. #: cmdline/apt-get.cc:118
  526. msgid "Y"
  527. msgstr "Y"
  528. #: cmdline/apt-get.cc:140 cmdline/apt-get.cc:1475
  529. #, c-format
  530. msgid "Regex compilation error - %s"
  531. msgstr "Chyba při kompilaci regulárního výrazu - %s"
  532. #: cmdline/apt-get.cc:235
  533. msgid "The following packages have unmet dependencies:"
  534. msgstr "Následující balíky mají nesplněné závislosti:"
  535. #: cmdline/apt-get.cc:325
  536. #, c-format
  537. msgid "but %s is installed"
  538. msgstr "ale %s je nainstalován"
  539. #: cmdline/apt-get.cc:327
  540. #, c-format
  541. msgid "but %s is to be installed"
  542. msgstr "ale %s se bude instalovat"
  543. #: cmdline/apt-get.cc:334
  544. msgid "but it is not installable"
  545. msgstr "ale nedá se nainstalovat"
  546. #: cmdline/apt-get.cc:336
  547. msgid "but it is a virtual package"
  548. msgstr "ale je to virtuální balík"
  549. #: cmdline/apt-get.cc:339
  550. msgid "but it is not installed"
  551. msgstr "ale není nainstalovaný"
  552. #: cmdline/apt-get.cc:339
  553. msgid "but it is not going to be installed"
  554. msgstr "ale nebude se instalovat"
  555. #: cmdline/apt-get.cc:344
  556. msgid " or"
  557. msgstr " nebo"
  558. #: cmdline/apt-get.cc:373
  559. msgid "The following NEW packages will be installed:"
  560. msgstr "Následující NOVÉ balíky budou nainstalovány:"
  561. #: cmdline/apt-get.cc:399
  562. msgid "The following packages will be REMOVED:"
  563. msgstr "Následující balíky budou ODSTRANĚNY:"
  564. #: cmdline/apt-get.cc:421
  565. msgid "The following packages have been kept back:"
  566. msgstr "Následující balíky jsou podrženy v aktuální verzi:"
  567. #: cmdline/apt-get.cc:442
  568. msgid "The following packages will be upgraded:"
  569. msgstr "Následující balíky budou aktualizovány:"
  570. #: cmdline/apt-get.cc:463
  571. msgid "The following packages will be DOWNGRADED:"
  572. msgstr "Následující balíky budou DEGRADOVÁNY:"
  573. #: cmdline/apt-get.cc:483
  574. msgid "The following held packages will be changed:"
  575. msgstr "Následující podržené balíky budou změněny:"
  576. #: cmdline/apt-get.cc:536
  577. #, c-format
  578. msgid "%s (due to %s) "
  579. msgstr "%s (kvůli %s) "
  580. #: cmdline/apt-get.cc:544
  581. msgid ""
  582. "WARNING: The following essential packages will be removed\n"
  583. "This should NOT be done unless you know exactly what you are doing!"
  584. msgstr ""
  585. "VAROVÁNÍ: Následující nezbytné balíky budou odstraněny.\n"
  586. "Pokud přesně nevíte, co děláte, NEDĚLEJTE to!"
  587. #: cmdline/apt-get.cc:575
  588. #, c-format
  589. msgid "%lu upgraded, %lu newly installed, "
  590. msgstr "%lu aktualizováno, %lu nově instalováno, "
  591. #: cmdline/apt-get.cc:579
  592. #, c-format
  593. msgid "%lu reinstalled, "
  594. msgstr "%lu reinstalováno, "
  595. #: cmdline/apt-get.cc:581
  596. #, c-format
  597. msgid "%lu downgraded, "
  598. msgstr "%lu degradováno, "
  599. #: cmdline/apt-get.cc:583
  600. #, c-format
  601. msgid "%lu to remove and %lu not upgraded.\n"
  602. msgstr "%lu k odstranění a %lu neaktualizováno.\n"
  603. #: cmdline/apt-get.cc:587
  604. #, c-format
  605. msgid "%lu not fully installed or removed.\n"
  606. msgstr "%lu instalováno nebo odstraněno pouze částečně.\n"
  607. #: cmdline/apt-get.cc:647
  608. msgid "Correcting dependencies..."
  609. msgstr "Opravuji závislosti..."
  610. #: cmdline/apt-get.cc:650
  611. msgid " failed."
  612. msgstr " selhalo."
  613. #: cmdline/apt-get.cc:653
  614. msgid "Unable to correct dependencies"
  615. msgstr "Nemohu opravit závislosti"
  616. #: cmdline/apt-get.cc:656
  617. msgid "Unable to minimize the upgrade set"
  618. msgstr "Nemohu minimalizovat sadu pro aktualizaci"
  619. #: cmdline/apt-get.cc:658
  620. msgid " Done"
  621. msgstr " Hotovo"
  622. #: cmdline/apt-get.cc:662
  623. msgid "You might want to run `apt-get -f install' to correct these."
  624. msgstr "Pro opravení můžete spustit `apt-get -f install'."
  625. #: cmdline/apt-get.cc:665
  626. msgid "Unmet dependencies. Try using -f."
  627. msgstr "Nesplněné závislosti. Zkuste použít -f."
  628. #: cmdline/apt-get.cc:687
  629. msgid "WARNING: The following packages cannot be authenticated!"
  630. msgstr "VAROVÁNÍ: Následující balíky nemohou být autentizovány!"
  631. #: cmdline/apt-get.cc:698
  632. msgid "Install these packages without verification [y/N]? "
  633. msgstr "Instalovat tyto balíky bez ověření [y/N]? "
  634. #: cmdline/apt-get.cc:700
  635. msgid "Some packages could not be authenticated"
  636. msgstr "Některé balíky nemohly být autentizovány"
  637. #: cmdline/apt-get.cc:709 cmdline/apt-get.cc:855
  638. msgid "There are problems and -y was used without --force-yes"
  639. msgstr "Vyskytly se problémy a -y bylo použito bez --force-yes"
  640. #: cmdline/apt-get.cc:762
  641. msgid "Packages need to be removed but remove is disabled."
  642. msgstr "Balík je potřeba odstranit ale funkce Odstranit je vypnuta."
  643. #: cmdline/apt-get.cc:788 cmdline/apt-get.cc:1769 cmdline/apt-get.cc:1802
  644. msgid "Unable to lock the download directory"
  645. msgstr "Nemohu zamknout adresář pro stahování"
  646. #: cmdline/apt-get.cc:798 cmdline/apt-get.cc:1850 cmdline/apt-get.cc:2061
  647. #: apt-pkg/cachefile.cc:67
  648. msgid "The list of sources could not be read."
  649. msgstr "Nelze přečíst seznam zdrojů."
  650. #: cmdline/apt-get.cc:818
  651. #, c-format
  652. msgid "Need to get %sB/%sB of archives.\n"
  653. msgstr "Potřebuji stáhnout %sB/%sB archívů.\n"
  654. #: cmdline/apt-get.cc:821
  655. #, c-format
  656. msgid "Need to get %sB of archives.\n"
  657. msgstr "Potřebuji stáhnout %sB archívů.\n"
  658. #: cmdline/apt-get.cc:826
  659. #, c-format
  660. msgid "After unpacking %sB of additional disk space will be used.\n"
  661. msgstr "Po rozbalení bude na disku použito dalších %sB.\n"
  662. #: cmdline/apt-get.cc:829
  663. #, c-format
  664. msgid "After unpacking %sB disk space will be freed.\n"
  665. msgstr "Po rozbalení bude na disku uvolněno %sB.\n"
  666. #: cmdline/apt-get.cc:846
  667. #, c-format
  668. msgid "You don't have enough free space in %s."
  669. msgstr "Na %s nemáte dostatek volného místa."
  670. #: cmdline/apt-get.cc:861 cmdline/apt-get.cc:881
  671. msgid "Trivial Only specified but this is not a trivial operation."
  672. msgstr "Udáno 'pouze triviální', ovšem toto není triviální operace."
  673. #: cmdline/apt-get.cc:863
  674. msgid "Yes, do as I say!"
  675. msgstr "Ano, udělej to tak, jak říkám!"
  676. #: cmdline/apt-get.cc:865
  677. #, c-format
  678. msgid ""
  679. "You are about to do something potentially harmful\n"
  680. "To continue type in the phrase '%s'\n"
  681. " ?] "
  682. msgstr ""
  683. "Chystáte se vykonat něco potenciálně škodlivého\n"
  684. "Pro pokračování opište frázi '%s'\n"
  685. " ?]"
  686. #: cmdline/apt-get.cc:871 cmdline/apt-get.cc:890
  687. msgid "Abort."
  688. msgstr "Přerušeno."
  689. #: cmdline/apt-get.cc:886
  690. msgid "Do you want to continue [Y/n]? "
  691. msgstr "Chcete pokračovat [Y/n]? "
  692. #: cmdline/apt-get.cc:958 cmdline/apt-get.cc:1334 cmdline/apt-get.cc:1959
  693. #, c-format
  694. msgid "Failed to fetch %s %s\n"
  695. msgstr "Selhalo stažení %s %s\n"
  696. #: cmdline/apt-get.cc:976
  697. msgid "Some files failed to download"
  698. msgstr "Některé soubory nemohly být staženy"
  699. #: cmdline/apt-get.cc:977 cmdline/apt-get.cc:1968
  700. msgid "Download complete and in download only mode"
  701. msgstr "Stahování dokončeno v režimu pouze stáhnout"
  702. #: cmdline/apt-get.cc:983
  703. msgid ""
  704. "Unable to fetch some archives, maybe run apt-get update or try with --fix-"
  705. "missing?"
  706. msgstr ""
  707. "Nemohu stáhnout některé archívy. Možná spusťte apt-get update nebo zkuste --"
  708. "fix-missing?"
  709. #: cmdline/apt-get.cc:987
  710. msgid "--fix-missing and media swapping is not currently supported"
  711. msgstr "--fix-missing a výměna média nejsou momentálně podporovány"
  712. #: cmdline/apt-get.cc:992
  713. msgid "Unable to correct missing packages."
  714. msgstr "Nemohu opravit chybějící balíky."
  715. #: cmdline/apt-get.cc:993
  716. msgid "Aborting install."
  717. msgstr "Přerušuji instalaci."
  718. #: cmdline/apt-get.cc:1026
  719. #, c-format
  720. msgid "Note, selecting %s instead of %s\n"
  721. msgstr "Pozn: Vybírám %s místo %s\n"
  722. #: cmdline/apt-get.cc:1036
  723. #, c-format
  724. msgid "Skipping %s, it is already installed and upgrade is not set.\n"
  725. msgstr "Přeskakuji %s, protože je již nainstalován.\n"
  726. #: cmdline/apt-get.cc:1054
  727. #, c-format
  728. msgid "Package %s is not installed, so not removed\n"
  729. msgstr "Balík %s není nainstalován, nelze tedy odstranit\n"
  730. #: cmdline/apt-get.cc:1065
  731. #, c-format
  732. msgid "Package %s is a virtual package provided by:\n"
  733. msgstr "Balík %s je virtuální balík poskytovaný:\n"
  734. #: cmdline/apt-get.cc:1077
  735. msgid " [Installed]"
  736. msgstr "[Instalovaný]"
  737. #: cmdline/apt-get.cc:1082
  738. msgid "You should explicitly select one to install."
  739. msgstr "Měli byste explicitně vybrat jeden k instalaci."
  740. #: cmdline/apt-get.cc:1087
  741. #, c-format
  742. msgid ""
  743. "Package %s is not available, but is referred to by another package.\n"
  744. "This may mean that the package is missing, has been obsoleted, or\n"
  745. "is only available from another source\n"
  746. msgstr ""
  747. "Balík %s není dostupný, ale jiný balík se na něj odkazuje.\n"
  748. "To může znamenat že balík chybí, byl zastarán, nebo je dostupný\n"
  749. "pouze z jiného zdroje\n"
  750. #: cmdline/apt-get.cc:1106
  751. msgid "However the following packages replace it:"
  752. msgstr "Nicméně následující balíky jej nahrazují:"
  753. #: cmdline/apt-get.cc:1109
  754. #, c-format
  755. msgid "Package %s has no installation candidate"
  756. msgstr "Balík %s nemá kandidáta pro instalaci"
  757. #: cmdline/apt-get.cc:1129
  758. #, c-format
  759. msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
  760. msgstr "Reinstalace %s není možná, protože nelze stáhnout.\n"
  761. #: cmdline/apt-get.cc:1137
  762. #, c-format
  763. msgid "%s is already the newest version.\n"
  764. msgstr "%s je již nejnovější verze.\n"
  765. #: cmdline/apt-get.cc:1164
  766. #, c-format
  767. msgid "Release '%s' for '%s' was not found"
  768. msgstr "Vydání '%s' pro '%s' nebylo nalezeno"
  769. #: cmdline/apt-get.cc:1166
  770. #, c-format
  771. msgid "Version '%s' for '%s' was not found"
  772. msgstr "Verze '%s' pro '%s' nebyla nalezena"
  773. #: cmdline/apt-get.cc:1172
  774. #, c-format
  775. msgid "Selected version %s (%s) for %s\n"
  776. msgstr "Vybraná verze %s (%s) pro %s\n"
  777. #: cmdline/apt-get.cc:1282
  778. msgid "The update command takes no arguments"
  779. msgstr "Příkaz update neakceptuje žádné argumenty"
  780. #: cmdline/apt-get.cc:1295
  781. msgid "Unable to lock the list directory"
  782. msgstr "Nemohu uzamknout list adresář"
  783. #: cmdline/apt-get.cc:1353
  784. msgid ""
  785. "Some index files failed to download, they have been ignored, or old ones "
  786. "used instead."
  787. msgstr ""
  788. "Některé indexové soubory se nepodařilo stáhnout, jsou ignorovány, nebo jsou "
  789. "použity starší verze."
  790. #: cmdline/apt-get.cc:1372
  791. msgid "Internal error, AllUpgrade broke stuff"
  792. msgstr "Vnitřní chyba, AllUpgrade pokazil věci"
  793. #: cmdline/apt-get.cc:1462 cmdline/apt-get.cc:1498
  794. #, c-format
  795. msgid "Couldn't find package %s"
  796. msgstr "Nemohu najít balík %s"
  797. #: cmdline/apt-get.cc:1485
  798. #, c-format
  799. msgid "Note, selecting %s for regex '%s'\n"
  800. msgstr "Pozn: vybírám %s pro regulární výraz '%s'\n"
  801. #: cmdline/apt-get.cc:1515
  802. msgid "You might want to run `apt-get -f install' to correct these:"
  803. msgstr "Pro opravení následujících můžete spustit `apt-get -f install':"
  804. #: cmdline/apt-get.cc:1518
  805. msgid ""
  806. "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
  807. "solution)."
  808. msgstr ""
  809. "Nesplněné závislosti. Zkuste zpustit 'apt-get -f install' bez balíků (nebo "
  810. "navrhněte řešení)."
  811. #: cmdline/apt-get.cc:1530
  812. msgid ""
  813. "Some packages could not be installed. This may mean that you have\n"
  814. "requested an impossible situation or if you are using the unstable\n"
  815. "distribution that some required packages have not yet been created\n"
  816. "or been moved out of Incoming."
  817. msgstr ""
  818. "Některé balíky nemohly být instalovány. To může znamenat, že požadujete\n"
  819. "nemožnou situaci, nebo, pokud používáte nestabilní distribuci, že\n"
  820. "vyžadované balíky ještě nebyly vytvořeny nebo přesunuty z Příchozí fronty."
  821. #: cmdline/apt-get.cc:1538
  822. msgid ""
  823. "Since you only requested a single operation it is extremely likely that\n"
  824. "the package is simply not installable and a bug report against\n"
  825. "that package should be filed."
  826. msgstr ""
  827. "Protože jste požádali pouze o jednoduchou operaci, je téměř jisté, že\n"
  828. "balík není instalovatelný a měl byste o tom zaslat hlášení o chybě\n"
  829. "(bug report)."
  830. #: cmdline/apt-get.cc:1543
  831. msgid "The following information may help to resolve the situation:"
  832. msgstr "Následující informace vám mohou pomoci vyřešit tuto situaci:"
  833. #: cmdline/apt-get.cc:1546
  834. msgid "Broken packages"
  835. msgstr "Poškozené balíky"
  836. #: cmdline/apt-get.cc:1572
  837. msgid "The following extra packages will be installed:"
  838. msgstr "Následujcící extra balíky budou instalovány:"
  839. #: cmdline/apt-get.cc:1643
  840. msgid "Suggested packages:"
  841. msgstr "Navrhované balíky:"
  842. #: cmdline/apt-get.cc:1644
  843. msgid "Recommended packages:"
  844. msgstr "Doporučované balíky:"
  845. #: cmdline/apt-get.cc:1664
  846. msgid "Calculating upgrade... "
  847. msgstr "Propočítávám aktualizaci..."
  848. #: cmdline/apt-get.cc:1667 methods/ftp.cc:702 methods/connect.cc:99
  849. msgid "Failed"
  850. msgstr "Selhalo"
  851. #: cmdline/apt-get.cc:1672
  852. msgid "Done"
  853. msgstr "Hotovo"
  854. #: cmdline/apt-get.cc:1845
  855. msgid "Must specify at least one package to fetch source for"
  856. msgstr "Musíte zadat aspoň jeden balík, pro který se stáhnou zdrojové texty"
  857. #: cmdline/apt-get.cc:1872 cmdline/apt-get.cc:2079
  858. #, c-format
  859. msgid "Unable to find a source package for %s"
  860. msgstr "Nemohu najít zdrojový balík pro %s"
  861. #: cmdline/apt-get.cc:1919
  862. #, c-format
  863. msgid "You don't have enough free space in %s"
  864. msgstr "Na %s nemáte dostatek volného místa"
  865. #: cmdline/apt-get.cc:1924
  866. #, c-format
  867. msgid "Need to get %sB/%sB of source archives.\n"
  868. msgstr "Potřebuji stáhnout %sB/%sB zdrojových archívů.\n"
  869. #: cmdline/apt-get.cc:1927
  870. #, c-format
  871. msgid "Need to get %sB of source archives.\n"
  872. msgstr "Potřebuji stáhnout %sB zdrojových archívů.\n"
  873. #: cmdline/apt-get.cc:1933
  874. #, c-format
  875. msgid "Fetch source %s\n"
  876. msgstr "Stáhnout zdroj %s\n"
  877. #: cmdline/apt-get.cc:1964
  878. msgid "Failed to fetch some archives."
  879. msgstr "Stažení některých archívů selhalo."
  880. #: cmdline/apt-get.cc:1992
  881. #, c-format
  882. msgid "Skipping unpack of already unpacked source in %s\n"
  883. msgstr "Přeskakuji rozbalení již rozbaleného zdroje v %s\n"
  884. #: cmdline/apt-get.cc:2004
  885. #, c-format
  886. msgid "Unpack command '%s' failed.\n"
  887. msgstr "Příkaz pro rozbalení '%s' selhal.\n"
  888. #: cmdline/apt-get.cc:2021
  889. #, c-format
  890. msgid "Build command '%s' failed.\n"
  891. msgstr "Příkaz pro sestavení '%s' selhal.\n"
  892. #: cmdline/apt-get.cc:2040
  893. msgid "Child process failed"
  894. msgstr "Synovský proces selhal"
  895. #: cmdline/apt-get.cc:2056
  896. msgid "Must specify at least one package to check builddeps for"
  897. msgstr ""
  898. "Musíte zadat alespoň jeden balík, pro který budou kontrolovány závislosti "
  899. "pro sestavení"
  900. #: cmdline/apt-get.cc:2084
  901. #, c-format
  902. msgid "Unable to get build-dependency information for %s"
  903. msgstr "Nemohu získat závislosti pro sestavení %s"
  904. #: cmdline/apt-get.cc:2104
  905. #, c-format
  906. msgid "%s has no build depends.\n"
  907. msgstr "%s nemá žádné závislosti pro sestavení.\n"
  908. #: cmdline/apt-get.cc:2156
  909. #, c-format
  910. msgid ""
  911. "%s dependency for %s cannot be satisfied because the package %s cannot be "
  912. "found"
  913. msgstr "%s závislost pro %s nemůže být splněna, protože balík %s nebyl nalezen"
  914. #: cmdline/apt-get.cc:2208
  915. #, c-format
  916. msgid ""
  917. "%s dependency for %s cannot be satisfied because no available versions of "
  918. "package %s can satisfy version requirements"
  919. msgstr ""
  920. "%s závislost pro %s nemůže být splněna protože není k dispozici verze balíku "
  921. "%s, která odpovídá požadavku na verzi"
  922. #: cmdline/apt-get.cc:2243
  923. #, c-format
  924. msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
  925. msgstr ""
  926. "Selhalo splnění %s závislosti pro %s: Instalovaný balík %s je příliš nový"
  927. #: cmdline/apt-get.cc:2268
  928. #, c-format
  929. msgid "Failed to satisfy %s dependency for %s: %s"
  930. msgstr "Selhalo splnění %s závislosti pro %s: %s"
  931. #: cmdline/apt-get.cc:2282
  932. #, c-format
  933. msgid "Build-dependencies for %s could not be satisfied."
  934. msgstr "Závislosti pro sestavení %s nemohly být splněny."
  935. #: cmdline/apt-get.cc:2286
  936. msgid "Failed to process build dependencies"
  937. msgstr "Chyba při zpracování závislostí pro sestavení"
  938. #: cmdline/apt-get.cc:2318
  939. msgid "Supported modules:"
  940. msgstr "Podporované moduly:"
  941. #: cmdline/apt-get.cc:2359
  942. msgid ""
  943. "Usage: apt-get [options] command\n"
  944. " apt-get [options] install|remove pkg1 [pkg2 ...]\n"
  945. " apt-get [options] source pkg1 [pkg2 ...]\n"
  946. "\n"
  947. "apt-get is a simple command line interface for downloading and\n"
  948. "installing packages. The most frequently used commands are update\n"
  949. "and install.\n"
  950. "\n"
  951. "Commands:\n"
  952. " update - Retrieve new lists of packages\n"
  953. " upgrade - Perform an upgrade\n"
  954. " install - Install new packages (pkg is libc6 not libc6.deb)\n"
  955. " remove - Remove packages\n"
  956. " source - Download source archives\n"
  957. " build-dep - Configure build-dependencies for source packages\n"
  958. " dist-upgrade - Distribution upgrade, see apt-get(8)\n"
  959. " dselect-upgrade - Follow dselect selections\n"
  960. " clean - Erase downloaded archive files\n"
  961. " autoclean - Erase old downloaded archive files\n"
  962. " check - Verify that there are no broken dependencies\n"
  963. "\n"
  964. "Options:\n"
  965. " -h This help text.\n"
  966. " -q Loggable output - no progress indicator\n"
  967. " -qq No output except for errors\n"
  968. " -d Download only - do NOT install or unpack archives\n"
  969. " -s No-act. Perform ordering simulation\n"
  970. " -y Assume Yes to all queries and do not prompt\n"
  971. " -f Attempt to continue if the integrity check fails\n"
  972. " -m Attempt to continue if archives are unlocatable\n"
  973. " -u Show a list of upgraded packages as well\n"
  974. " -b Build the source package after fetching it\n"
  975. " -V Show verbose version numbers\n"
  976. " -c=? Read this configuration file\n"
  977. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  978. "See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
  979. "pages for more information and options.\n"
  980. " This APT has Super Cow Powers.\n"
  981. msgstr ""
  982. "Použití: apt-get [volby] příkaz\n"
  983. " apt-get [volby] install|remove balík1 [balík2 ...]\n"
  984. " apt-get [volby] source balík1 [balík2 ...]\n"
  985. "\n"
  986. "apt-get je jednoduché řádkové rozhraní pro stahování a instalování\n"
  987. "balíků. Nejpoužívanější příkazy jsou update a install.\n"
  988. "\n"
  989. "Příkazy:\n"
  990. " update - Získá seznam nových balíků\n"
  991. " upgrade - Provede aktualizaci\n"
  992. " install - Instaluje nové balíky (balík je libc6, ne libc6.deb)\n"
  993. " remove - Odstraní balíky\n"
  994. " source - Stáhne zdrojové archívy\n"
  995. " build-dep - Configure build-dependencies for source packages\n"
  996. " dist-upgrade - Aktualizace distribuce, viz apt-get(8)\n"
  997. " dselect-upgrade - Řídí se podle výběru v dselectu\n"
  998. " clean - Smaže stažené archívy\n"
  999. " autoclean - Smaže staré stažené archívy\n"
  1000. " check - Ověří, zda se nevyskytují poškozené závislosti\n"
  1001. "\n"
  1002. "Volby:\n"
  1003. " -h Tato nápověda\n"
  1004. " -q Nezobrazí indikátor postupu - pro záznam\n"
  1005. " -qq Nezobrazí nic než chyby\n"
  1006. " -d Pouze stáhne - neinstaluje ani nerozbaluje archívy\n"
  1007. " -s Pouze simuluje prováděné akce\n"
  1008. " -y Na všechny otázky odpovídá Ano\n"
  1009. " -f Zkusí pokračovat, i když selže kontrola integrity\n"
  1010. " -m Zkusí pokračovat, i když se nepodaří najít archívy\n"
  1011. " -u Zobrazí také seznam aktualizovaných balíků\n"
  1012. " -b Po stažení zdrojového balíku jej i zkompiluje\n"
  1013. " -V Zobrazí čísla verzí\n"
  1014. " -c=? Načte tento konfigurační soubor\n"
  1015. " -o=? Nastaví libovolnou volbu, např. -o dir::cache=/tmp\n"
  1016. "Více voleb naleznete v manuálových stránkách apt-get(8), sources.list(5)\n"
  1017. "a apt.conf(5).\n"
  1018. " Tato APT má schopnosti svaté krávy.\n"
  1019. #: cmdline/acqprogress.cc:55
  1020. msgid "Hit "
  1021. msgstr "Cíl "
  1022. #: cmdline/acqprogress.cc:79
  1023. msgid "Get:"
  1024. msgstr "Mám:"
  1025. #: cmdline/acqprogress.cc:110
  1026. msgid "Ign "
  1027. msgstr "Ign"
  1028. #: cmdline/acqprogress.cc:114
  1029. msgid "Err "
  1030. msgstr "Err"
  1031. #: cmdline/acqprogress.cc:135
  1032. #, c-format
  1033. msgid "Fetched %sB in %s (%sB/s)\n"
  1034. msgstr "Staženo %sB za %s (%sB/s)\n"
  1035. #: cmdline/acqprogress.cc:225
  1036. #, c-format
  1037. msgid " [Working]"
  1038. msgstr "[Pracuji]"
  1039. #: cmdline/acqprogress.cc:271
  1040. #, c-format
  1041. msgid ""
  1042. "Media change: please insert the disc labeled\n"
  1043. " '%s'\n"
  1044. "in the drive '%s' and press enter\n"
  1045. msgstr ""
  1046. "Výměna média: Vložte disk nazvaný\n"
  1047. " '%s'\n"
  1048. "do mechaniky '%s' a stiskněte enter\n"
  1049. #: cmdline/apt-sortpkgs.cc:86
  1050. msgid "Unknown package record!"
  1051. msgstr "Neznámý záznam o balíku!"
  1052. #: cmdline/apt-sortpkgs.cc:150
  1053. msgid ""
  1054. "Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
  1055. "\n"
  1056. "apt-sortpkgs is a simple tool to sort package files. The -s option is used\n"
  1057. "to indicate what kind of file it is.\n"
  1058. "\n"
  1059. "Options:\n"
  1060. " -h This help text\n"
  1061. " -s Use source file sorting\n"
  1062. " -c=? Read this configuration file\n"
  1063. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  1064. msgstr ""
  1065. "Použití: apt-sortpkgs [volby] soubor1 [soubor2 ...]\n"
  1066. "\n"
  1067. "apt-sortpkgs je jednoduchý nástroj pro setřídění souborů Packages.\n"
  1068. "Volbou -s volíte typ souboru.\n"
  1069. "\n"
  1070. "Volby:\n"
  1071. " -h Tato nápověda\n"
  1072. " -s Setřídí zdrojový soubor\n"
  1073. " -c=? Načte tento konfigurační soubor\n"
  1074. " -o=? Nastaví libovolnou volbu, např. -o dir::cache=/tmp\n"
  1075. #: dselect/install:32
  1076. msgid "Bad default setting!"
  1077. msgstr "Chybné standardní nastavení!"
  1078. #: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:93
  1079. #: dselect/install:104 dselect/update:45
  1080. msgid "Press enter to continue."
  1081. msgstr "Pro pokračování stiskněte enter."
  1082. #: dselect/install:100
  1083. msgid "Some errors occurred while unpacking. I'm going to configure the"
  1084. msgstr "Během rozbalování se vyskytly chyby. Zkusím teď nakonfigurovat"
  1085. #: dselect/install:101
  1086. msgid "packages that were installed. This may result in duplicate errors"
  1087. msgstr "balíky, které se nainstalovaly. To může způsobit chybové hlášky"
  1088. #: dselect/install:102
  1089. msgid "or errors caused by missing dependencies. This is OK, only the errors"
  1090. msgstr "o nesplněných závislostech. To je v pořádku, důležité jsou pouze"
  1091. #: dselect/install:103
  1092. msgid ""
  1093. "above this message are important. Please fix them and run [I]nstall again"
  1094. msgstr "chyby nad touto hláškou. Opravte je a poté znovu spusťte [I]nstalovat"
  1095. #: dselect/update:30
  1096. msgid "Merging available information"
  1097. msgstr "Slučuji dostupné informace"
  1098. #: apt-inst/contrib/extracttar.cc:117
  1099. msgid "Failed to create pipes"
  1100. msgstr "Selhalo vytvoření roury"
  1101. #: apt-inst/contrib/extracttar.cc:143
  1102. msgid "Failed to exec gzip "
  1103. msgstr "Selhalo spuštění gzipu "
  1104. #: apt-inst/contrib/extracttar.cc:180 apt-inst/contrib/extracttar.cc:206
  1105. msgid "Corrupted archive"
  1106. msgstr "Porušený archív"
  1107. #: apt-inst/contrib/extracttar.cc:195
  1108. msgid "Tar checksum failed, archive corrupted"
  1109. msgstr "Kontrolní součet taru selhal, archív je poškozený"
  1110. #: apt-inst/contrib/extracttar.cc:298
  1111. #, c-format
  1112. msgid "Unknown TAR header type %u, member %s"
  1113. msgstr "Neznámá hlavička TARu typ %u, člen %s"
  1114. #: apt-inst/contrib/arfile.cc:73
  1115. msgid "Invalid archive signature"
  1116. msgstr "Neplatný podpis archívu"
  1117. #: apt-inst/contrib/arfile.cc:81
  1118. msgid "Error reading archive member header"
  1119. msgstr "Chyba při čtení záhlaví prvku archívu"
  1120. #: apt-inst/contrib/arfile.cc:93 apt-inst/contrib/arfile.cc:105
  1121. msgid "Invalid archive member header"
  1122. msgstr "Neplatné záhlaví prvku archívu"
  1123. #: apt-inst/contrib/arfile.cc:131
  1124. msgid "Archive is too short"
  1125. msgstr "Archív je příliš krátký"
  1126. #: apt-inst/contrib/arfile.cc:135
  1127. msgid "Failed to read the archive headers"
  1128. msgstr "Chyba při čtení hlaviček archívu"
  1129. #: apt-inst/filelist.cc:384
  1130. msgid "DropNode called on still linked node"
  1131. msgstr "Pokus o uvolnění uzlu (DropNode) na stále propojeném uzlu"
  1132. #: apt-inst/filelist.cc:416
  1133. msgid "Failed to locate the hash element!"
  1134. msgstr "Nemohu lokalizovat hashovací prvek!"
  1135. #: apt-inst/filelist.cc:463
  1136. msgid "Failed to allocate diversion"
  1137. msgstr "Nemohu alokovat diverzi"
  1138. #: apt-inst/filelist.cc:468
  1139. msgid "Internal error in AddDiversion"
  1140. msgstr "Vnitřní chyba při AddDiversion"
  1141. #: apt-inst/filelist.cc:481
  1142. #, c-format
  1143. msgid "Trying to overwrite a diversion, %s -> %s and %s/%s"
  1144. msgstr "Pokus o přepsání diverze, %s -> %s a %s/%s"
  1145. #: apt-inst/filelist.cc:510
  1146. #, c-format
  1147. msgid "Double add of diversion %s -> %s"
  1148. msgstr "Dvojí přidání diverze %s -> %s"
  1149. #: apt-inst/filelist.cc:553
  1150. #, c-format
  1151. msgid "Duplicate conf file %s/%s"
  1152. msgstr "Duplicitní konfigurační soubor %s/%s"
  1153. #: apt-inst/dirstream.cc:45 apt-inst/dirstream.cc:50 apt-inst/dirstream.cc:53
  1154. #, c-format
  1155. msgid "Failed write file %s"
  1156. msgstr "Selhal zápis do souboru %s"
  1157. #: apt-inst/dirstream.cc:80 apt-inst/dirstream.cc:88
  1158. #, c-format
  1159. msgid "Failed to close file %s"
  1160. msgstr "Selhalo zavření souboru %s"
  1161. #: apt-inst/extract.cc:96 apt-inst/extract.cc:167
  1162. #, c-format
  1163. msgid "The path %s is too long"
  1164. msgstr "Cesta %s je příliš dlouhá"
  1165. #: apt-inst/extract.cc:127
  1166. #, c-format
  1167. msgid "Unpacking %s more than once"
  1168. msgstr "Rozbaluji %s vícekrát"
  1169. #: apt-inst/extract.cc:137
  1170. #, c-format
  1171. msgid "The directory %s is diverted"
  1172. msgstr "Adresář %s je divertován"
  1173. #: apt-inst/extract.cc:147
  1174. #, c-format
  1175. msgid "The package is trying to write to the diversion target %s/%s"
  1176. msgstr "Balík se pokouší zapisovat do diverzního cíle %s/%s"
  1177. #: apt-inst/extract.cc:157 apt-inst/extract.cc:300
  1178. msgid "The diversion path is too long"
  1179. msgstr "Diverzní cesta je příliš dlouhá"
  1180. #: apt-inst/extract.cc:243
  1181. #, c-format
  1182. msgid "The directory %s is being replaced by a non-directory"
  1183. msgstr "Adresář %s bude nahrazen neadresářem"
  1184. #: apt-inst/extract.cc:283
  1185. msgid "Failed to locate node in its hash bucket"
  1186. msgstr "Nemohu nalézt uzel v jeho hashovacím kbelíku"
  1187. #: apt-inst/extract.cc:287
  1188. msgid "The path is too long"
  1189. msgstr "Cesta je příliš dlouhá"
  1190. #: apt-inst/extract.cc:417
  1191. #, c-format
  1192. msgid "Overwrite package match with no version for %s"
  1193. msgstr "Přepsat vyhovující balík bez udání verze pro %s"
  1194. #: apt-inst/extract.cc:434
  1195. #, c-format
  1196. msgid "File %s/%s overwrites the one in the package %s"
  1197. msgstr "Soubor %s/%s přepisuje ten z balíku %s"
  1198. #: apt-inst/extract.cc:467 apt-pkg/contrib/configuration.cc:709
  1199. #: apt-pkg/contrib/cdromutl.cc:153 apt-pkg/acquire.cc:416 apt-pkg/clean.cc:38
  1200. #, c-format
  1201. msgid "Unable to read %s"
  1202. msgstr "Nemohu číst %s"
  1203. #: apt-inst/extract.cc:494
  1204. #, c-format
  1205. msgid "Unable to stat %s"
  1206. msgstr "Nemohu vyhodnotit %s"
  1207. #: apt-inst/deb/dpkgdb.cc:55 apt-inst/deb/dpkgdb.cc:61
  1208. #, c-format
  1209. msgid "Failed to remove %s"
  1210. msgstr "Selhalo odstranění %s"
  1211. #: apt-inst/deb/dpkgdb.cc:110 apt-inst/deb/dpkgdb.cc:112
  1212. #, c-format
  1213. msgid "Unable to create %s"
  1214. msgstr "Nemohu vytvořit %s"
  1215. #: apt-inst/deb/dpkgdb.cc:118
  1216. #, c-format
  1217. msgid "Failed to stat %sinfo"
  1218. msgstr "Selhalo vyhodnocení %sinfo"
  1219. #: apt-inst/deb/dpkgdb.cc:123
  1220. msgid "The info and temp directories need to be on the same filesystem"
  1221. msgstr "Adresáře info a temp musí být na stejném souborovém systému"
  1222. #. Build the status cache
  1223. #: apt-inst/deb/dpkgdb.cc:139 apt-pkg/pkgcachegen.cc:643
  1224. #: apt-pkg/pkgcachegen.cc:712 apt-pkg/pkgcachegen.cc:717
  1225. #: apt-pkg/pkgcachegen.cc:840
  1226. msgid "Reading package lists"
  1227. msgstr "Čtu seznamy balíků"
  1228. #: apt-inst/deb/dpkgdb.cc:180
  1229. #, c-format
  1230. msgid "Failed to change to the admin dir %sinfo"
  1231. msgstr "Nepodařilo se změnit na admin adresář %sinfo"
  1232. #: apt-inst/deb/dpkgdb.cc:201 apt-inst/deb/dpkgdb.cc:355
  1233. #: apt-inst/deb/dpkgdb.cc:448
  1234. msgid "Internal error getting a package name"
  1235. msgstr "Vnitřní chyba při získávání jména balíku"
  1236. #: apt-inst/deb/dpkgdb.cc:205
  1237. msgid "Reading file listing"
  1238. msgstr "Čtu výpis souborů"
  1239. #: apt-inst/deb/dpkgdb.cc:216
  1240. #, c-format
  1241. msgid ""
  1242. "Failed to open the list file '%sinfo/%s'. If you cannot restore this file "
  1243. "then make it empty and immediately re-install the same version of the "
  1244. "package!"
  1245. msgstr ""
  1246. "Selhalo otevření souboru seznamů '%sinfo/%s'. Pokud nemůžete tento soubor "
  1247. "obnovit, vytvořte jej nový prázdný a ihned znovu nainstalujte tu samou verzi "
  1248. "balíku!"
  1249. #: apt-inst/deb/dpkgdb.cc:229 apt-inst/deb/dpkgdb.cc:242
  1250. #, c-format
  1251. msgid "Failed reading the list file %sinfo/%s"
  1252. msgstr "Chyba při čtení souboru se seznamy %sinfo/%s"
  1253. #: apt-inst/deb/dpkgdb.cc:266
  1254. msgid "Internal error getting a node"
  1255. msgstr "Vnitřní chyba při získávání uzlu"
  1256. #: apt-inst/deb/dpkgdb.cc:309
  1257. #, c-format
  1258. msgid "Failed to open the diversions file %sdiversions"
  1259. msgstr "Selhalo otevření souboru s diverzemi %sdiversions"
  1260. #: apt-inst/deb/dpkgdb.cc:324
  1261. msgid "The diversion file is corrupted"
  1262. msgstr "Diverzní soubor je porušen"
  1263. #: apt-inst/deb/dpkgdb.cc:331 apt-inst/deb/dpkgdb.cc:336
  1264. #: apt-inst/deb/dpkgdb.cc:341
  1265. #, c-format
  1266. msgid "Invalid line in the diversion file: %s"
  1267. msgstr "Neplatná řádka v diverzním souboru: %s"
  1268. #: apt-inst/deb/dpkgdb.cc:362
  1269. msgid "Internal error adding a diversion"
  1270. msgstr "Vnitřní chyba při přidávání diverze"
  1271. #: apt-inst/deb/dpkgdb.cc:383
  1272. msgid "The pkg cache must be initialized first"
  1273. msgstr "Cache balíků se musí nejprve inicializovat"
  1274. #: apt-inst/deb/dpkgdb.cc:386
  1275. msgid "Reading file list"
  1276. msgstr "Čtu seznam souborů"
  1277. #: apt-inst/deb/dpkgdb.cc:443
  1278. #, c-format
  1279. msgid "Failed to find a Package: header, offset %lu"
  1280. msgstr "Chyba při hledání Balíku: Hlavička, offset %lu"
  1281. #: apt-inst/deb/dpkgdb.cc:465
  1282. #, c-format
  1283. msgid "Bad ConfFile section in the status file. Offset %lu"
  1284. msgstr "Špatná sekce ConfFile ve stavovém souboru na pozici %lu"
  1285. #: apt-inst/deb/dpkgdb.cc:470
  1286. #, c-format
  1287. msgid "Error parsing MD5. Offset %lu"
  1288. msgstr "Chyba při zpracování MD5. Offset %lu"
  1289. #: apt-inst/deb/debfile.cc:42 apt-inst/deb/debfile.cc:47
  1290. #, c-format
  1291. msgid "This is not a valid DEB archive, missing '%s' member"
  1292. msgstr "Toto není platný DEB archív, chybí část '%s'"
  1293. #: apt-inst/deb/debfile.cc:52
  1294. #, c-format
  1295. msgid "This is not a valid DEB archive, it has no '%s' or '%s' member"
  1296. msgstr "Toto není platný DEB archív, neobsahuje část '%s' ani '%s'"
  1297. #: apt-inst/deb/debfile.cc:112
  1298. #, c-format
  1299. msgid "Couldn't change to %s"
  1300. msgstr "Nemohu přejít do %s"
  1301. #: apt-inst/deb/debfile.cc:138
  1302. msgid "Internal error, could not locate member"
  1303. msgstr "Vnitřní chyba, nemohu nalézt člen"
  1304. #: apt-inst/deb/debfile.cc:171
  1305. msgid "Failed to locate a valid control file"
  1306. msgstr "Nelze najít platný kontrolní soubor"
  1307. #: apt-inst/deb/debfile.cc:256
  1308. msgid "Unparsable control file"
  1309. msgstr "Nezpracovatelný kontrolní soubor"
  1310. #: methods/cdrom.cc:113
  1311. #, c-format
  1312. msgid "Unable to read the cdrom database %s"
  1313. msgstr "Nemohu číst databázi na cdrom %s"
  1314. #: methods/cdrom.cc:122
  1315. msgid ""
  1316. "Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update "
  1317. "cannot be used to add new CD-ROMs"
  1318. msgstr ""
  1319. "Pro přidání CD do APTu použijte apt-cdrom. apt-get update nelze využít pro "
  1320. "přidávání nových CD."
  1321. #: methods/cdrom.cc:130 methods/cdrom.cc:168
  1322. msgid "Wrong CD-ROM"
  1323. msgstr "Chybné CD"
  1324. #: methods/cdrom.cc:163
  1325. #, c-format
  1326. msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
  1327. msgstr "Nemohu odpojit CD-ROM v %s - možná se stále používá."
  1328. #: methods/cdrom.cc:177 methods/file.cc:77 methods/rsh.cc:264
  1329. msgid "File not found"
  1330. msgstr "Soubor nebyl nalezen"
  1331. #: methods/copy.cc:42 methods/gzip.cc:133 methods/gzip.cc:142
  1332. msgid "Failed to stat"
  1333. msgstr "Selhalo vyhodnocení"
  1334. #: methods/copy.cc:79 methods/gzip.cc:139
  1335. msgid "Failed to set modification time"
  1336. msgstr "Nelze nastavit čas modifikace"
  1337. #: methods/file.cc:42
  1338. msgid "Invalid URI, local URIS must not start with //"
  1339. msgstr "Neplatné URI, lokální URI nesmí začínat na //"
  1340. #. Login must be before getpeername otherwise dante won't work.
  1341. #: methods/ftp.cc:162
  1342. msgid "Logging in"
  1343. msgstr "Přihlašuji se"
  1344. #: methods/ftp.cc:168
  1345. msgid "Unable to determine the peer name"
  1346. msgstr "Nemohu určit jméno druhé strany"
  1347. #: methods/ftp.cc:173
  1348. msgid "Unable to determine the local name"
  1349. msgstr "Nemohu určit lokální jméno"
  1350. #: methods/ftp.cc:204 methods/ftp.cc:232
  1351. #, c-format
  1352. msgid "The server refused the connection and said: %s"
  1353. msgstr "Server zamítl naše spojení a řekl: %s"
  1354. #: methods/ftp.cc:210
  1355. #, c-format
  1356. msgid "USER failed, server said: %s"
  1357. msgstr "USER selhal, server řekl: %s"
  1358. #: methods/ftp.cc:217
  1359. #, c-format
  1360. msgid "PASS failed, server said: %s"
  1361. msgstr "PASS selhal, server řekl: %s"
  1362. #: methods/ftp.cc:237
  1363. msgid ""
  1364. "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin "
  1365. "is empty."
  1366. msgstr ""
  1367. "Byl zadán proxy server, ale ne přihlašovací skript. Acquire::ftp::ProxyLogin "
  1368. "je prázdný."
  1369. #: methods/ftp.cc:265
  1370. #, c-format
  1371. msgid "Login script command '%s' failed, server said: %s"
  1372. msgstr "Příkaz '%s' přihlašovacího skriptu selhal, server řekl: %s"
  1373. #: methods/ftp.cc:291
  1374. #, c-format
  1375. msgid "TYPE failed, server said: %s"
  1376. msgstr "TYPE selhal, server řekl: %s"
  1377. #: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226
  1378. msgid "Connection timeout"
  1379. msgstr "Čas spojení vypršel"
  1380. #: methods/ftp.cc:335
  1381. msgid "Server closed the connection"
  1382. msgstr "Server uzavřel spojení"
  1383. #: methods/ftp.cc:338 methods/rsh.cc:190 apt-pkg/contrib/fileutl.cc:453
  1384. msgid "Read error"
  1385. msgstr "Chyba čtení"
  1386. #: methods/ftp.cc:345 methods/rsh.cc:197
  1387. msgid "A response overflowed the buffer."
  1388. msgstr "Odpověď přeplnila buffer."
  1389. #: methods/ftp.cc:362 methods/ftp.cc:374
  1390. msgid "Protocol corruption"
  1391. msgstr "Porušení protokolu"
  1392. #: methods/ftp.cc:446 methods/rsh.cc:232 apt-pkg/contrib/fileutl.cc:492
  1393. msgid "Write error"
  1394. msgstr "Chyba zápisu"
  1395. #: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729
  1396. msgid "Could not create a socket"
  1397. msgstr "Nemohu vytvořit socket"
  1398. #: methods/ftp.cc:698
  1399. msgid "Could not connect data socket, connection timed out"
  1400. msgstr "Nemohu připojit datový socket, čas spojení vypršel"
  1401. #: methods/ftp.cc:704
  1402. msgid "Could not connect passive socket."
  1403. msgstr "Nemohu připojit pasivní socket."
  1404. #: methods/ftp.cc:722
  1405. msgid "getaddrinfo was unable to get a listening socket"
  1406. msgstr "getaddrinfo nezískal naslouchající socket"
  1407. #: methods/ftp.cc:736
  1408. msgid "Could not bind a socket"
  1409. msgstr "Nemohu navázat socket"
  1410. #: methods/ftp.cc:740
  1411. msgid "Could not listen on the socket"
  1412. msgstr "Nemohu naslouchat na socketu"
  1413. #: methods/ftp.cc:747
  1414. msgid "Could not determine the socket's name"
  1415. msgstr "Nemohu určit jmého socketu"
  1416. #: methods/ftp.cc:779
  1417. msgid "Unable to send PORT command"
  1418. msgstr "Nemohu odeslat příkaz PORT"
  1419. #: methods/ftp.cc:789
  1420. #, c-format
  1421. msgid "Unknown address family %u (AF_*)"
  1422. msgstr "Neznámá rodina adres %u (AF_*)"
  1423. #: methods/ftp.cc:798
  1424. #, c-format
  1425. msgid "EPRT failed, server said: %s"
  1426. msgstr "EPRT selhal, server řekl: %s"
  1427. #: methods/ftp.cc:818
  1428. msgid "Data socket connect timed out"
  1429. msgstr "Spojení datového socketu vypršelo"
  1430. #: methods/ftp.cc:825
  1431. msgid "Unable to accept connection"
  1432. msgstr "Nemohu přijmout spojení"
  1433. #: methods/ftp.cc:864 methods/http.cc:916 methods/rsh.cc:303
  1434. msgid "Problem hashing file"
  1435. msgstr "Problém s hashováním souboru"
  1436. #: methods/ftp.cc:877
  1437. #, c-format
  1438. msgid "Unable to fetch file, server said '%s'"
  1439. msgstr "Nemohu stáhnout soubor, server řekl '%s'"
  1440. #: methods/ftp.cc:892 methods/rsh.cc:322
  1441. msgid "Data socket timed out"
  1442. msgstr "Datový socket vypršel"
  1443. #: methods/ftp.cc:922
  1444. #, c-format
  1445. msgid "Data transfer failed, server said '%s'"
  1446. msgstr "Přenos dat selhal, server řekl '%s'"
  1447. #. Get the files information
  1448. #: methods/ftp.cc:997
  1449. msgid "Query"
  1450. msgstr "Dotaz"
  1451. #: methods/ftp.cc:1106
  1452. msgid "Unable to invoke "
  1453. msgstr "Nemohu vyvolat "
  1454. #: methods/connect.cc:64
  1455. #, c-format
  1456. msgid "Connecting to %s (%s)"
  1457. msgstr "Připojuji se k %s (%s)"
  1458. #: methods/connect.cc:71
  1459. #, c-format
  1460. msgid "[IP: %s %s]"
  1461. msgstr "[IP: %s %s]"
  1462. #: methods/connect.cc:80
  1463. #, c-format
  1464. msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
  1465. msgstr "Nemohu vytvořit socket pro %s (f=%u t=%u p=%u)"
  1466. #: methods/connect.cc:86
  1467. #, c-format
  1468. msgid "Cannot initiate the connection to %s:%s (%s)."
  1469. msgstr "Nemohu navázat spojení na %s:%s (%s)."
  1470. #: methods/connect.cc:92
  1471. #, c-format
  1472. msgid "Could not connect to %s:%s (%s), connection timed out"
  1473. msgstr "Nemohu se připojit k %s:%s (%s), čas spojení vypršel"
  1474. #: methods/connect.cc:104
  1475. #, c-format
  1476. msgid "Could not connect to %s:%s (%s)."
  1477. msgstr "Nemohu se připojit k %s:%s (%s)."
  1478. #. We say this mainly because the pause here is for the
  1479. #. ssh connection that is still going
  1480. #: methods/connect.cc:132 methods/rsh.cc:425
  1481. #, c-format
  1482. msgid "Connecting to %s"
  1483. msgstr "Připojuji se k %s"
  1484. #: methods/connect.cc:163
  1485. #, c-format
  1486. msgid "Could not resolve '%s'"
  1487. msgstr "Nemohu zjistit '%s'"
  1488. #: methods/connect.cc:167
  1489. #, c-format
  1490. msgid "Temporary failure resolving '%s'"
  1491. msgstr "Dočasné selhání při zjišťování '%s'"
  1492. #: methods/connect.cc:169
  1493. #, c-format
  1494. msgid "Something wicked happened resolving '%s:%s' (%i)"
  1495. msgstr "Něco hodně ošklivého se přihodilo při zjišťování '%s:%s' (%i)"
  1496. #: methods/connect.cc:216
  1497. #, c-format
  1498. msgid "Unable to connect to %s %s:"
  1499. msgstr "Nemohu se připojit k %s %s:"
  1500. #: methods/gzip.cc:57
  1501. #, c-format
  1502. msgid "Couldn't open pipe for %s"
  1503. msgstr "Nemohu otevřít rouru pro %s"
  1504. #: methods/gzip.cc:102
  1505. #, c-format
  1506. msgid "Read error from %s process"
  1507. msgstr "Chyba čtení z procesu %s"
  1508. #: methods/http.cc:344
  1509. msgid "Waiting for headers"
  1510. msgstr "Čekám na hlavičky"
  1511. #: methods/http.cc:490
  1512. #, c-format
  1513. msgid "Got a single header line over %u chars"
  1514. msgstr "Získal jsem jednu řádku hlavičky přes %u znaků"
  1515. #: methods/http.cc:498
  1516. msgid "Bad header line"
  1517. msgstr "Chybná hlavička"
  1518. #: methods/http.cc:517 methods/http.cc:524
  1519. msgid "The HTTP server sent an invalid reply header"
  1520. msgstr "Http server poslal neplatnou hlavičku odpovědi"
  1521. #: methods/http.cc:553
  1522. msgid "The HTTP server sent an invalid Content-Length header"
  1523. msgstr "Http server poslal neplatnou hlavičku Content-Length"
  1524. #: methods/http.cc:568
  1525. msgid "The HTTP server sent an invalid Content-Range header"
  1526. msgstr "Http server poslal neplatnou hlavičku Content-Range"
  1527. #: methods/http.cc:570
  1528. msgid "This HTTP server has broken range support"
  1529. msgstr "Tento HTTP server má porouchanou podporu rozsahů"
  1530. #: methods/http.cc:594
  1531. msgid "Unknown date format"
  1532. msgstr "Neznámý formát data"
  1533. #: methods/http.cc:737
  1534. msgid "Select failed"
  1535. msgstr "Výběr selhal"
  1536. #: methods/http.cc:742
  1537. msgid "Connection timed out"
  1538. msgstr "Čas spojení vypršel"
  1539. #: methods/http.cc:765
  1540. msgid "Error writing to output file"
  1541. msgstr "Chyba zápisu do výstupního souboru"
  1542. #: methods/http.cc:793
  1543. msgid "Error writing to file"
  1544. msgstr "Chyba zápisu do souboru"
  1545. #: methods/http.cc:818
  1546. msgid "Error writing to the file"
  1547. msgstr "Chyba zápisu do souboru"
  1548. #: methods/http.cc:832
  1549. msgid "Error reading from server. Remote end closed connection"
  1550. msgstr "Chyba čtení ze serveru. Druhá strana zavřela spojení"
  1551. #: methods/http.cc:834
  1552. msgid "Error reading from server"
  1553. msgstr "Chyba čtení ze serveru"
  1554. #: methods/http.cc:1065
  1555. msgid "Bad header data"
  1556. msgstr "Špatné datové záhlaví"
  1557. #: methods/http.cc:1082
  1558. msgid "Connection failed"
  1559. msgstr "Spojení selhalo"
  1560. #: methods/http.cc:1173
  1561. msgid "Internal error"
  1562. msgstr "Vnitřní chyba"
  1563. #: methods/rsh.cc:330
  1564. msgid "Connection closed prematurely"
  1565. msgstr "Spojení bylo předčasně ukončeno"
  1566. #: apt-pkg/contrib/mmap.cc:82
  1567. msgid "Can't mmap an empty file"
  1568. msgstr "Nemohu provést mmap prázdného souboru"
  1569. #: apt-pkg/contrib/mmap.cc:87
  1570. #, c-format
  1571. msgid "Couldn't make mmap of %lu bytes"
  1572. msgstr "Nešlo mmapovat %lu bajtů"
  1573. #: apt-pkg/contrib/strutl.cc:941
  1574. #, c-format
  1575. msgid "Selection %s not found"
  1576. msgstr "Výběr %s nenalezen"
  1577. #: apt-pkg/contrib/configuration.cc:395
  1578. #, c-format
  1579. msgid "Unrecognized type abbreviation: '%c'"
  1580. msgstr "Nerozpoznaná zkratka typu: '%c'"
  1581. #: apt-pkg/contrib/configuration.cc:453
  1582. #, c-format
  1583. msgid "Opening configuration file %s"
  1584. msgstr "Otevírám konfigurační soubor %s"
  1585. #: apt-pkg/contrib/configuration.cc:471
  1586. #, c-format
  1587. msgid "Line %d too long (max %d)"
  1588. msgstr "Řádek %d je příliš dlouhý (max %d)"
  1589. #: apt-pkg/contrib/configuration.cc:567
  1590. #, c-format
  1591. msgid "Syntax error %s:%u: Block starts with no name."
  1592. msgstr "Syntaktická chyba %s:%u: Blok nezačíná jménem."
  1593. #: apt-pkg/contrib/configuration.cc:586
  1594. #, c-format
  1595. msgid "Syntax error %s:%u: Malformed tag"
  1596. msgstr "Syntaktická chyba %s:%u: Zkomolená značka"
  1597. #: apt-pkg/contrib/configuration.cc:603
  1598. #, c-format
  1599. msgid "Syntax error %s:%u: Extra junk after value"
  1600. msgstr "Syntaktická chyba %s:%u: Za hodnotou následuje zbytečné smetí"
  1601. #: apt-pkg/contrib/configuration.cc:643
  1602. #, c-format
  1603. msgid "Syntax error %s:%u: Directives can only be done at the top level"
  1604. msgstr ""
  1605. "Syntaktická chyba %s:%u: Direktivy je možné provádět pouze na nejvyšší úrovni"
  1606. #: apt-pkg/contrib/configuration.cc:650
  1607. #, c-format
  1608. msgid "Syntax error %s:%u: Too many nested includes"
  1609. msgstr "Syntaktická chyba %s:%u: Příliš mnoho vnořených propojení (include)"
  1610. #: apt-pkg/contrib/configuration.cc:654 apt-pkg/contrib/configuration.cc:659
  1611. #, c-format
  1612. msgid "Syntax error %s:%u: Included from here"
  1613. msgstr "Syntaktická chyba %s:%u: Zahrnuto odtud"
  1614. #: apt-pkg/contrib/configuration.cc:663
  1615. #, c-format
  1616. msgid "Syntax error %s:%u: Unsupported directive '%s'"
  1617. msgstr "Syntaktická chyba %s:%u: Nepodporovaná direktiva '%s'"
  1618. #: apt-pkg/contrib/configuration.cc:697
  1619. #, c-format
  1620. msgid "Syntax error %s:%u: Extra junk at end of file"
  1621. msgstr "Syntaktická chyba %s:%u: Na konci souboru je zbytečné smetí"
  1622. #: apt-pkg/contrib/progress.cc:154
  1623. #, c-format
  1624. msgid "%c%s... Error!"
  1625. msgstr "%c%s... Chyba!"
  1626. #: apt-pkg/contrib/progress.cc:156
  1627. #, c-format
  1628. msgid "%c%s... Done"
  1629. msgstr "%c%s... Hotovo"
  1630. #: apt-pkg/contrib/cmndline.cc:80
  1631. #, c-format
  1632. msgid "Command line option '%c' [from %s] is not known."
  1633. msgstr "Parametr příkazové řádky '%c' [z %s] je neznámý"
  1634. #: apt-pkg/contrib/cmndline.cc:106 apt-pkg/contrib/cmndline.cc:114
  1635. #: apt-pkg/contrib/cmndline.cc:122
  1636. #, c-format
  1637. msgid "Command line option %s is not understood"
  1638. msgstr "Nerozumím parametru %s příkazové řádky"
  1639. #: apt-pkg/contrib/cmndline.cc:127
  1640. #, c-format
  1641. msgid "Command line option %s is not boolean"
  1642. msgstr "Parametr příkazové řádky %s není pravdivostní hodnota"
  1643. #: apt-pkg/contrib/cmndline.cc:166 apt-pkg/contrib/cmndline.cc:187
  1644. #, c-format
  1645. msgid "Option %s requires an argument."
  1646. msgstr "Volba %s vyžaduje argument."
  1647. #: apt-pkg/contrib/cmndline.cc:201 apt-pkg/contrib/cmndline.cc:207
  1648. #, c-format
  1649. msgid "Option %s: Configuration item specification must have an =<val>."
  1650. msgstr "Parametr %s: Zadání konfigurační položky musí obsahovat =<hodn>."
  1651. #: apt-pkg/contrib/cmndline.cc:237
  1652. #, c-format
  1653. msgid "Option %s requires an integer argument, not '%s'"
  1654. msgstr "Volba %s vyžaduje jako argument celé číslo (integer), ne '%s'"
  1655. #: apt-pkg/contrib/cmndline.cc:268
  1656. #, c-format
  1657. msgid "Option '%s' is too long"
  1658. msgstr "Volba '%s' je příliš dlouhá"
  1659. #: apt-pkg/contrib/cmndline.cc:301
  1660. #, c-format
  1661. msgid "Sense %s is not understood, try true or false."
  1662. msgstr "Nechápu význam %s, zkuste true nebo false. "
  1663. #: apt-pkg/contrib/cmndline.cc:351
  1664. #, c-format
  1665. msgid "Invalid operation %s"
  1666. msgstr "Neplatná operace %s"
  1667. #: apt-pkg/contrib/cdromutl.cc:55
  1668. #, c-format
  1669. msgid "Unable to stat the mount point %s"
  1670. msgstr "Nelze vyhodnotit přípojný bod %s"
  1671. #: apt-pkg/contrib/cdromutl.cc:149 apt-pkg/acquire.cc:422 apt-pkg/clean.cc:44
  1672. #, c-format
  1673. msgid "Unable to change to %s"
  1674. msgstr "Nemohu přejít do %s"
  1675. #: apt-pkg/contrib/cdromutl.cc:190
  1676. msgid "Failed to stat the cdrom"
  1677. msgstr "Nezdařilo se vyhodnotit cdrom"
  1678. #: apt-pkg/contrib/fileutl.cc:80
  1679. #, c-format
  1680. msgid "Not using locking for read only lock file %s"
  1681. msgstr "Nepoužívám zamykání pro zámkový soubor %s, který je pouze pro čtení"
  1682. #: apt-pkg/contrib/fileutl.cc:85
  1683. #, c-format
  1684. msgid "Could not open lock file %s"
  1685. msgstr "Nešlo otevřít zámkový soubor %s"
  1686. #: apt-pkg/contrib/fileutl.cc:103
  1687. #, c-format
  1688. msgid "Not using locking for nfs mounted lock file %s"
  1689. msgstr "Nepoužívám zamykání pro zámkový soubor %s připojený přes nfs"
  1690. #: apt-pkg/contrib/fileutl.cc:107
  1691. #, c-format
  1692. msgid "Could not get lock %s"
  1693. msgstr "Nemohu získat zámek %s"
  1694. #: apt-pkg/contrib/fileutl.cc:359
  1695. #, c-format
  1696. msgid "Waited for %s but it wasn't there"
  1697. msgstr "Čekal jsem na %s, ale nebyl tam"
  1698. #: apt-pkg/contrib/fileutl.cc:369
  1699. #, c-format
  1700. msgid "Sub-process %s received a segmentation fault."
  1701. msgstr "Podproces %s obdržel chybu segmentace."
  1702. #: apt-pkg/contrib/fileutl.cc:372
  1703. #, c-format
  1704. msgid "Sub-process %s returned an error code (%u)"
  1705. msgstr "Podproces %s vrátil chybový kód (%u)"
  1706. #: apt-pkg/contrib/fileutl.cc:374
  1707. #, c-format
  1708. msgid "Sub-process %s exited unexpectedly"
  1709. msgstr "Podproces %s neočekávaně skončil"
  1710. #: apt-pkg/contrib/fileutl.cc:418
  1711. #, c-format
  1712. msgid "Could not open file %s"
  1713. msgstr "Nemohu otevřít soubor %s"
  1714. #: apt-pkg/contrib/fileutl.cc:474
  1715. #, c-format
  1716. msgid "read, still have %lu to read but none left"
  1717. msgstr "čtení, stále mám k přečtení %lu, ale už nic nezbývá"
  1718. #: apt-pkg/contrib/fileutl.cc:504
  1719. #, c-format
  1720. msgid "write, still have %lu to write but couldn't"
  1721. msgstr "zápis, stále mám %lu k zápisu, ale nejde to"
  1722. #: apt-pkg/contrib/fileutl.cc:579
  1723. msgid "Problem closing the file"
  1724. msgstr "Problém při zavírání souboru"
  1725. #: apt-pkg/contrib/fileutl.cc:585
  1726. msgid "Problem unlinking the file"
  1727. msgstr "Problém při odstraňování souboru"
  1728. #: apt-pkg/contrib/fileutl.cc:596
  1729. msgid "Problem syncing the file"
  1730. msgstr "Problém při synchronizování souboru"
  1731. #: apt-pkg/pkgcache.cc:126
  1732. msgid "Empty package cache"
  1733. msgstr "Cache balíků je prázdná"
  1734. #: apt-pkg/pkgcache.cc:132
  1735. msgid "The package cache file is corrupted"
  1736. msgstr "Cache soubor balíků je poškozen"
  1737. #: apt-pkg/pkgcache.cc:137
  1738. msgid "The package cache file is an incompatible version"
  1739. msgstr "Cache soubor balíků je v nekompatibilní verzi"
  1740. #: apt-pkg/pkgcache.cc:142
  1741. #, c-format
  1742. msgid "This APT does not support the versioning system '%s'"
  1743. msgstr "Tento APT nepodporuje systém pro správu verzí '%s'"
  1744. #: apt-pkg/pkgcache.cc:147
  1745. msgid "The package cache was built for a different architecture"
  1746. msgstr "Cache balíků byla vytvořena pro jinou architekturu"
  1747. #: apt-pkg/pkgcache.cc:218
  1748. msgid "Depends"
  1749. msgstr "Závisí na"
  1750. #: apt-pkg/pkgcache.cc:218
  1751. msgid "PreDepends"
  1752. msgstr "Předzávisí na"
  1753. #: apt-pkg/pkgcache.cc:218
  1754. msgid "Suggests"
  1755. msgstr "Navrhuje"
  1756. #: apt-pkg/pkgcache.cc:219
  1757. msgid "Recommends"
  1758. msgstr "Doporučuje"
  1759. #: apt-pkg/pkgcache.cc:219
  1760. msgid "Conflicts"
  1761. msgstr "Koliduje s"
  1762. #: apt-pkg/pkgcache.cc:219
  1763. msgid "Replaces"
  1764. msgstr "Nahrazuje"
  1765. #: apt-pkg/pkgcache.cc:220
  1766. msgid "Obsoletes"
  1767. msgstr "Zastarává"
  1768. #: apt-pkg/pkgcache.cc:231
  1769. msgid "important"
  1770. msgstr "důležitý"
  1771. #: apt-pkg/pkgcache.cc:231
  1772. msgid "required"
  1773. msgstr "vyžadovaný"
  1774. #: apt-pkg/pkgcache.cc:231
  1775. msgid "standard"
  1776. msgstr "standardní"
  1777. #: apt-pkg/pkgcache.cc:232
  1778. msgid "optional"
  1779. msgstr "volitelný"
  1780. #: apt-pkg/pkgcache.cc:232
  1781. msgid "extra"
  1782. msgstr "extra"
  1783. #: apt-pkg/depcache.cc:60 apt-pkg/depcache.cc:89
  1784. msgid "Building dependency tree"
  1785. msgstr "Vytvářím strom závislostí"
  1786. #: apt-pkg/depcache.cc:61
  1787. msgid "Candidate versions"
  1788. msgstr "Kandidátské verze"
  1789. #: apt-pkg/depcache.cc:90
  1790. msgid "Dependency generation"
  1791. msgstr "Generování závislostí"
  1792. #: apt-pkg/tagfile.cc:73
  1793. #, c-format
  1794. msgid "Unable to parse package file %s (1)"
  1795. msgstr "Nelze zpracovat soubor %s (1)"
  1796. #: apt-pkg/tagfile.cc:160
  1797. #, c-format
  1798. msgid "Unable to parse package file %s (2)"
  1799. msgstr "Nelze zpracovat soubor %s (2)"
  1800. #: apt-pkg/sourcelist.cc:87
  1801. #, c-format
  1802. msgid "Malformed line %lu in source list %s (URI)"
  1803. msgstr "Zkomolený řádek %lu v seznamu zdrojů %s (URI)"
  1804. #: apt-pkg/sourcelist.cc:89
  1805. #, c-format
  1806. msgid "Malformed line %lu in source list %s (dist)"
  1807. msgstr "Zkomolený řádek %lu v seznamu zdrojů %s (dist)"
  1808. #: apt-pkg/sourcelist.cc:92
  1809. #, c-format
  1810. msgid "Malformed line %lu in source list %s (URI parse)"
  1811. msgstr "Zkomolený řádek %lu v seznamu zdrojů %s (zpracování URI)"
  1812. #: apt-pkg/sourcelist.cc:98
  1813. #, c-format
  1814. msgid "Malformed line %lu in source list %s (absolute dist)"
  1815. msgstr "Zkomolený řádek %lu v seznamu zdrojů %s (Absolutní dist)"
  1816. #: apt-pkg/sourcelist.cc:105
  1817. #, c-format
  1818. msgid "Malformed line %lu in source list %s (dist parse)"
  1819. msgstr "Zkomolený řádek %lu v seznamu zdrojů %s (zpracování dist)"
  1820. #: apt-pkg/sourcelist.cc:156
  1821. #, c-format
  1822. msgid "Opening %s"
  1823. msgstr "Otevírám %s"
  1824. #: apt-pkg/sourcelist.cc:170
  1825. #, c-format
  1826. msgid "Line %u too long in source list %s."
  1827. msgstr "Řádek %u v seznamu zdrojů %s je příliš dlouhý."
  1828. #: apt-pkg/sourcelist.cc:187
  1829. #, c-format
  1830. msgid "Malformed line %u in source list %s (type)"
  1831. msgstr "Zkomolený řádek %u v seznamu zdrojů %s (typ)"
  1832. #: apt-pkg/sourcelist.cc:191
  1833. #, c-format
  1834. msgid "Type '%s' is not known on line %u in source list %s"
  1835. msgstr "Typ '%s' na řádce %u v seznamu zdrojů %s není známý"
  1836. #: apt-pkg/sourcelist.cc:199 apt-pkg/sourcelist.cc:202
  1837. #, c-format
  1838. msgid "Malformed line %u in source list %s (vendor id)"
  1839. msgstr "Zkomolený řádek %u v seznamu zdrojů %s (id výrobce)"
  1840. #: apt-pkg/packagemanager.cc:402
  1841. #, c-format
  1842. msgid ""
  1843. "This installation run will require temporarily removing the essential "
  1844. "package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
  1845. "you really want to do it, activate the APT::Force-LoopBreak option."
  1846. msgstr ""
  1847. "Tento běh instalace si vyžádá dočasné odstranění klíčového balíku %s kvůli "
  1848. "smyčce v Conflicts/Pre-Depends. To je často špatné, ale pokud to skutečně "
  1849. "chcete udělat, aktivujte možnost APT::Force-LoopBreak."
  1850. #: apt-pkg/pkgrecords.cc:37
  1851. #, c-format
  1852. msgid "Index file type '%s' is not supported"
  1853. msgstr "Indexový typ souboru '%s' není podporován"
  1854. #: apt-pkg/algorithms.cc:241
  1855. #, c-format
  1856. msgid ""
  1857. "The package %s needs to be reinstalled, but I can't find an archive for it."
  1858. msgstr "Balík %s je potřeba přeinstalovat, ale nemohu pro něj nalézt archív."
  1859. #: apt-pkg/algorithms.cc:1059
  1860. msgid ""
  1861. "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
  1862. "held packages."
  1863. msgstr ""
  1864. "Chyba, pkgProblemResolver::Resolve vytváří poruchy, to může být způsobeno "
  1865. "podrženými balíky."
  1866. #: apt-pkg/algorithms.cc:1061
  1867. msgid "Unable to correct problems, you have held broken packages."
  1868. msgstr "Nemohu opravit problémy, některé balíky držíte v porouchaném stavu."
  1869. #: apt-pkg/acquire.cc:61
  1870. #, c-format
  1871. msgid "Lists directory %spartial is missing."
  1872. msgstr "Adresář seznamů %spartial chybí."
  1873. #: apt-pkg/acquire.cc:65
  1874. #, c-format
  1875. msgid "Archive directory %spartial is missing."
  1876. msgstr "Archivní adresář %spartial chybí."
  1877. #: apt-pkg/acquire-worker.cc:112
  1878. #, c-format
  1879. msgid "The method driver %s could not be found."
  1880. msgstr "Ovladač metody %s nemohl být nalezen."
  1881. #: apt-pkg/acquire-worker.cc:161
  1882. #, c-format
  1883. msgid "Method %s did not start correctly"
  1884. msgstr "Metoda %s nebyla spuštěna správně"
  1885. #: apt-pkg/init.cc:119
  1886. #, c-format
  1887. msgid "Packaging system '%s' is not supported"
  1888. msgstr "Balíčkovací systém '%s' není podporován"
  1889. #: apt-pkg/init.cc:135
  1890. msgid "Unable to determine a suitable packaging system type"
  1891. msgstr "Nebylo možno určit vhodný typ balíčkovacího systému"
  1892. #: apt-pkg/clean.cc:61
  1893. #, c-format
  1894. msgid "Unable to stat %s."
  1895. msgstr "Nebylo možno vyhodnotit %s."
  1896. #: apt-pkg/srcrecords.cc:48
  1897. msgid "You must put some 'source' URIs in your sources.list"
  1898. msgstr "Do sources.list musíte zadat 'zdrojové' URI"
  1899. #: apt-pkg/cachefile.cc:73
  1900. msgid "The package lists or status file could not be parsed or opened."
  1901. msgstr ""
  1902. "Seznamy balíků nebo stavový soubor nemohly být zpracovány nebo otevřeny."
  1903. #: apt-pkg/cachefile.cc:77
  1904. msgid "You may want to run apt-get update to correct these problems"
  1905. msgstr "Pro nápravu těchto problémů můžete zkusit spustit apt-get update"
  1906. #: apt-pkg/policy.cc:269
  1907. msgid "Invalid record in the preferences file, no Package header"
  1908. msgstr "Neplatný záznam v souboru preferencí, žádné záhlaví balíku"
  1909. #: apt-pkg/policy.cc:291
  1910. #, c-format
  1911. msgid "Did not understand pin type %s"
  1912. msgstr "Nerozumím vypíchnutí typu %s"
  1913. #: apt-pkg/policy.cc:299
  1914. msgid "No priority (or zero) specified for pin"
  1915. msgstr "Pro vypíchnutí nebyla zadána žádná (nebo nulová) priorita"
  1916. #: apt-pkg/pkgcachegen.cc:74
  1917. msgid "Cache has an incompatible versioning system"
  1918. msgstr "Cache má nekompatibilní systém správy verzí"
  1919. #: apt-pkg/pkgcachegen.cc:117
  1920. #, c-format
  1921. msgid "Error occurred while processing %s (NewPackage)"
  1922. msgstr "Při zpracování %s se objevila chyba (NewPackage)"
  1923. #: apt-pkg/pkgcachegen.cc:129
  1924. #, c-format
  1925. msgid "Error occurred while processing %s (UsePackage1)"
  1926. msgstr "Při zpracování %s se objevila chyba (UsePackage1)"
  1927. #: apt-pkg/pkgcachegen.cc:150
  1928. #, c-format
  1929. msgid "Error occurred while processing %s (UsePackage2)"
  1930. msgstr "Při zpracování %s se objevila chyba (UsePackage2)"
  1931. #: apt-pkg/pkgcachegen.cc:154
  1932. #, c-format
  1933. msgid "Error occurred while processing %s (NewFileVer1)"
  1934. msgstr "Při zpracování %s se objevila chyba (NewFileVer1)"
  1935. #: apt-pkg/pkgcachegen.cc:184
  1936. #, c-format
  1937. msgid "Error occurred while processing %s (NewVersion1)"
  1938. msgstr "Při zpracování %s se objevila chyba (NewVersion1)"
  1939. #: apt-pkg/pkgcachegen.cc:188
  1940. #, c-format
  1941. msgid "Error occurred while processing %s (UsePackage3)"
  1942. msgstr "Při zpracování %s se objevila chyba (UsePackage3)"
  1943. #: apt-pkg/pkgcachegen.cc:192
  1944. #, c-format
  1945. msgid "Error occurred while processing %s (NewVersion2)"
  1946. msgstr "Při zpracování %s se objevila chyba (NewVersion2)"
  1947. #: apt-pkg/pkgcachegen.cc:207
  1948. msgid "Wow, you exceeded the number of package names this APT is capable of."
  1949. msgstr ""
  1950. "Wow, překročili jste počet jmen balíků, které tato APT zvládá zpracovat."
  1951. #: apt-pkg/pkgcachegen.cc:210
  1952. msgid "Wow, you exceeded the number of versions this APT is capable of."
  1953. msgstr "Wow, překročili jste počet verzí, které tato APT zvládá zpracovat."
  1954. #: apt-pkg/pkgcachegen.cc:213
  1955. msgid "Wow, you exceeded the number of dependencies this APT is capable of."
  1956. msgstr ""
  1957. "Wow, překročili jste počet závislostí, které tato APT zvládá zpracovat."
  1958. #: apt-pkg/pkgcachegen.cc:241
  1959. #, c-format
  1960. msgid "Error occurred while processing %s (FindPkg)"
  1961. msgstr "Chyba při zpracování %s (FindPkg)"
  1962. #: apt-pkg/pkgcachegen.cc:254
  1963. #, c-format
  1964. msgid "Error occurred while processing %s (CollectFileProvides)"
  1965. msgstr "Při zpracování %s se objevila chyba (CollectFileProvides)"
  1966. #: apt-pkg/pkgcachegen.cc:260
  1967. #, c-format
  1968. msgid "Package %s %s was not found while processing file dependencies"
  1969. msgstr "Při zpracování závislostí nebyl nalezen balík %s %s"
  1970. #: apt-pkg/pkgcachegen.cc:574
  1971. #, c-format
  1972. msgid "Couldn't stat source package list %s"
  1973. msgstr "Nešlo vyhodnotit seznam zdrojových balíků %s"
  1974. #: apt-pkg/pkgcachegen.cc:658
  1975. msgid "Collecting File Provides"
  1976. msgstr "Collecting File poskytuje"
  1977. #: apt-pkg/pkgcachegen.cc:785 apt-pkg/pkgcachegen.cc:792
  1978. msgid "IO Error saving source cache"
  1979. msgstr "Chyba IO při ukládání zdrojové cache"
  1980. #: apt-pkg/acquire-item.cc:126
  1981. #, c-format
  1982. msgid "rename failed, %s (%s -> %s)."
  1983. msgstr "přejmenování selhalo, %s (%s -> %s)."
  1984. #: apt-pkg/acquire-item.cc:235 apt-pkg/acquire-item.cc:894
  1985. msgid "MD5Sum mismatch"
  1986. msgstr "Neshoda MD5 součtů"
  1987. #: apt-pkg/acquire-item.cc:708
  1988. #, c-format
  1989. msgid ""
  1990. "I wasn't able to locate a file for the %s package. This might mean you need "
  1991. "to manually fix this package. (due to missing arch)"
  1992. msgstr ""
  1993. "Nebyl jsem schopen nalézt soubor s balíkem %s. To by mohlo znamenat, že "
  1994. "tento balík je třeba opravit ručně (kvůli chybějící architektuře)"
  1995. #: apt-pkg/acquire-item.cc:761
  1996. #, c-format
  1997. msgid ""
  1998. "I wasn't able to locate file for the %s package. This might mean you need to "
  1999. "manually fix this package."
  2000. msgstr ""
  2001. "Nebyl jsem schopen nalézt soubor s balíkem %s. Asi budete muset tento balík "
  2002. "opravit ručně."
  2003. #: apt-pkg/acquire-item.cc:797
  2004. #, c-format
  2005. msgid ""
  2006. "The package index files are corrupted. No Filename: field for package %s."
  2007. msgstr ""
  2008. "Indexové soubory balíku jsou narušeny. Chybí pole Filename: u balíku %s."
  2009. #: apt-pkg/acquire-item.cc:884
  2010. msgid "Size mismatch"
  2011. msgstr "Velikosti nesouhlasí"
  2012. #: apt-pkg/vendorlist.cc:66
  2013. #, c-format
  2014. msgid "Vendor block %s contains no fingerprint"
  2015. msgstr "Blok výrobce %s neobsahuje otisk klíče"
  2016. #: apt-pkg/cdrom.cc:504
  2017. #, c-format
  2018. msgid ""
  2019. "Using CD-ROM mount point %s\n"
  2020. "Mounting CD-ROM\n"
  2021. msgstr ""
  2022. "Používám přípojný bod %s\n"
  2023. "Připojuji CD-ROM\n"
  2024. #: apt-pkg/cdrom.cc:513 apt-pkg/cdrom.cc:595
  2025. msgid "Identifying.. "
  2026. msgstr "Rozpoznávám... "
  2027. #: apt-pkg/cdrom.cc:538
  2028. #, c-format
  2029. msgid "Stored label: %s \n"
  2030. msgstr "Uložený název: %s \n"
  2031. #: apt-pkg/cdrom.cc:558
  2032. #, c-format
  2033. msgid "Using CD-ROM mount point %s\n"
  2034. msgstr "Používám přípojný bod %s\n"
  2035. #: apt-pkg/cdrom.cc:576
  2036. msgid "Unmounting CD-ROM\n"
  2037. msgstr "Odpojuji CD-ROM\n"
  2038. #: apt-pkg/cdrom.cc:580
  2039. msgid "Waiting for disc...\n"
  2040. msgstr "Čekám na disk...\n"
  2041. #. Mount the new CDROM
  2042. #: apt-pkg/cdrom.cc:588
  2043. msgid "Mounting CD-ROM...\n"
  2044. msgstr "Připojuji CD-ROM...\n"
  2045. #: apt-pkg/cdrom.cc:606
  2046. msgid "Scanning disc for index files..\n"
  2047. msgstr "Hledám na disku indexové soubory...\n"
  2048. #: apt-pkg/cdrom.cc:644
  2049. #, c-format
  2050. msgid "Found %i package indexes, %i source indexes and %i signatures\n"
  2051. msgstr "Nalezl jsem indexy balíků (%i), indexy zdrojů (%i) a podpisy (%i)\n"
  2052. #: apt-pkg/cdrom.cc:701
  2053. msgid "That is not a valid name, try again.\n"
  2054. msgstr "Nejedná se o platné jméno, zkuste to znovu.\n"
  2055. #: apt-pkg/cdrom.cc:717
  2056. #, c-format
  2057. msgid ""
  2058. "This disc is called: \n"
  2059. "'%s'\n"
  2060. msgstr ""
  2061. "Tento disk se nazývá: \n"
  2062. "'%s'\n"
  2063. #: apt-pkg/cdrom.cc:721
  2064. msgid "Copying package lists..."
  2065. msgstr "Kopíruji seznamy balíků..."
  2066. #: apt-pkg/cdrom.cc:745
  2067. msgid "Writing new source list\n"
  2068. msgstr "Zapisuji nový seznam balíků\n"
  2069. #: apt-pkg/cdrom.cc:754
  2070. msgid "Source list entries for this disc are:\n"
  2071. msgstr "Seznamy zdrojů na tomto disku jsou:\n"
  2072. #: apt-pkg/cdrom.cc:788
  2073. msgid "Unmounting CD-ROM..."
  2074. msgstr "Odpojuji CD-ROM..."
  2075. #: apt-pkg/indexcopy.cc:261
  2076. #, c-format
  2077. msgid "Wrote %i records.\n"
  2078. msgstr "Zapsal jsem %i záznamů.\n"
  2079. #: apt-pkg/indexcopy.cc:263
  2080. #, c-format
  2081. msgid "Wrote %i records with %i missing files.\n"
  2082. msgstr "Zapsal jsem %i záznamů s chybějícími soubory (%i).\n"
  2083. #: apt-pkg/indexcopy.cc:266
  2084. #, c-format
  2085. msgid "Wrote %i records with %i mismatched files\n"
  2086. msgstr "Zapsal jsem %i záznamů s nesouhlasícími soubory (%i).\n"
  2087. #: apt-pkg/indexcopy.cc:269
  2088. #, c-format
  2089. msgid "Wrote %i records with %i missing files and %i mismatched files\n"
  2090. msgstr ""
  2091. "Zapsal jsem %i záznamů s chybějícími (%i) a nesouhlasícími (%i) soubory.\n"