cs.po 120 KB

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