cs.po 83 KB

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