cs.po 89 KB

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