cs.po 79 KB

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