cs.po 91 KB

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