cs.po 72 KB

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