cs.po 122 KB

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