cs.po 111 KB

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