cs.po 86 KB

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