cs.po 82 KB

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