messages.po 52 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983
  1. # Czech translations for .
  2. # Copyright (C) 2020 ORGANIZATION
  3. # This file is distributed under the same license as the project.
  4. #
  5. # Translators:
  6. # Clon <fillip1@seznam.cz>, 2017
  7. # Lukáš Kucharczyk <lukas@kucharczyk.xyz>, 2020
  8. # Venca24 <Vaclav.Zouzalik@seznam.cz>, 2020
  9. # Venca24 <Vaclav.Zouzalik@seznam.cz>, 2018
  10. # Markus Heiser <markus.heiser@darmarit.de>, 2022.
  11. # Masterix <masterix@duck.com>, 2022.
  12. # LagManCZ <lagmen@post.cz>, 2022.
  13. # zenobit <zen@osowoso.xyz>, 2023.
  14. # return42 <markus.heiser@darmarit.de>, 2023, 2024.
  15. # Fjuro <ifjuro@proton.me>, 2023, 2024.
  16. # Fjuro <fjuro@alius.cz>, 2024.
  17. msgid ""
  18. msgstr ""
  19. "Project-Id-Version: searx\n"
  20. "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
  21. "POT-Creation-Date: 2024-10-05 06:24+0000\n"
  22. "PO-Revision-Date: 2024-10-06 14:31+0000\n"
  23. "Last-Translator: Fjuro <fjuro@alius.cz>\n"
  24. "Language-Team: Czech <https://translate.codeberg.org/projects/searxng/"
  25. "searxng/cs/>\n"
  26. "Language: cs\n"
  27. "MIME-Version: 1.0\n"
  28. "Content-Type: text/plain; charset=utf-8\n"
  29. "Content-Transfer-Encoding: 8bit\n"
  30. "Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n "
  31. "<= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n"
  32. "X-Generator: Weblate 5.7.2\n"
  33. "Generated-By: Babel 2.16.0\n"
  34. #. CONSTANT_NAMES['NO_SUBGROUPING']
  35. #: searx/searxng.msg
  36. msgid "without further subgrouping"
  37. msgstr "bez dalších podskupin"
  38. #. CONSTANT_NAMES['DEFAULT_CATEGORY']
  39. #: searx/searxng.msg
  40. msgid "other"
  41. msgstr "ostatní"
  42. #. CATEGORY_NAMES['FILES']
  43. #: searx/searxng.msg
  44. msgid "files"
  45. msgstr "soubory"
  46. #. CATEGORY_NAMES['GENERAL']
  47. #: searx/searxng.msg
  48. msgid "general"
  49. msgstr "obecné"
  50. #. CATEGORY_NAMES['MUSIC']
  51. #: searx/searxng.msg
  52. msgid "music"
  53. msgstr "hudba"
  54. #. CATEGORY_NAMES['SOCIAL_MEDIA']
  55. #: searx/searxng.msg
  56. msgid "social media"
  57. msgstr "sociální sítě"
  58. #. CATEGORY_NAMES['IMAGES']
  59. #: searx/searxng.msg
  60. msgid "images"
  61. msgstr "obrázky"
  62. #. CATEGORY_NAMES['VIDEOS']
  63. #: searx/searxng.msg
  64. msgid "videos"
  65. msgstr "videa"
  66. #. CATEGORY_NAMES['RADIO']
  67. #: searx/engines/radio_browser.py:103 searx/searxng.msg
  68. msgid "radio"
  69. msgstr "rádio"
  70. #. CATEGORY_NAMES['TV']
  71. #: searx/searxng.msg
  72. msgid "tv"
  73. msgstr "tv"
  74. #. CATEGORY_NAMES['IT']
  75. #: searx/searxng.msg
  76. msgid "it"
  77. msgstr "IT"
  78. #. CATEGORY_NAMES['NEWS']
  79. #: searx/searxng.msg
  80. msgid "news"
  81. msgstr "zprávy"
  82. #. CATEGORY_NAMES['MAP']
  83. #: searx/searxng.msg
  84. msgid "map"
  85. msgstr "mapy"
  86. #. CATEGORY_NAMES['ONIONS']
  87. #: searx/searxng.msg
  88. msgid "onions"
  89. msgstr "cibule"
  90. #. CATEGORY_NAMES['SCIENCE']
  91. #: searx/searxng.msg
  92. msgid "science"
  93. msgstr "věda"
  94. #. CATEGORY_GROUPS['APPS']
  95. #: searx/searxng.msg
  96. msgid "apps"
  97. msgstr "aplikace"
  98. #. CATEGORY_GROUPS['DICTIONARIES']
  99. #: searx/searxng.msg
  100. msgid "dictionaries"
  101. msgstr "slovníky"
  102. #. CATEGORY_GROUPS['LYRICS']
  103. #: searx/searxng.msg
  104. msgid "lyrics"
  105. msgstr "texty písní"
  106. #. CATEGORY_GROUPS['PACKAGES']
  107. #: searx/searxng.msg
  108. msgid "packages"
  109. msgstr "balíčky"
  110. #. CATEGORY_GROUPS['Q_A']
  111. #: searx/searxng.msg
  112. msgid "q&a"
  113. msgstr "otázky a odpovědi"
  114. #. CATEGORY_GROUPS['REPOS']
  115. #: searx/searxng.msg
  116. msgid "repos"
  117. msgstr "repozitáře"
  118. #. CATEGORY_GROUPS['SOFTWARE_WIKIS']
  119. #: searx/searxng.msg
  120. msgid "software wikis"
  121. msgstr "softwarové wikipédie"
  122. #. CATEGORY_GROUPS['WEB']
  123. #: searx/searxng.msg
  124. msgid "web"
  125. msgstr "web"
  126. #. CATEGORY_GROUPS['SCIENTIFIC PUBLICATIONS']
  127. #: searx/searxng.msg
  128. msgid "scientific publications"
  129. msgstr "vědecké publikace"
  130. #. STYLE_NAMES['AUTO']
  131. #: searx/searxng.msg
  132. msgid "auto"
  133. msgstr "automaticky"
  134. #. STYLE_NAMES['LIGHT']
  135. #: searx/searxng.msg
  136. msgid "light"
  137. msgstr "světlý"
  138. #. STYLE_NAMES['DARK']
  139. #: searx/searxng.msg
  140. msgid "dark"
  141. msgstr "tmavý"
  142. #. STYLE_NAMES['BLACK']
  143. #: searx/searxng.msg
  144. msgid "black"
  145. msgstr "černý"
  146. #. BRAND_CUSTOM_LINKS['UPTIME']
  147. #: searx/searxng.msg
  148. msgid "Uptime"
  149. msgstr "Spolehlivost"
  150. #. BRAND_CUSTOM_LINKS['ABOUT']
  151. #: searx/searxng.msg searx/templates/simple/base.html:50
  152. msgid "About"
  153. msgstr "O SearXNG"
  154. #. WEATHER_TERMS['AVERAGE TEMP.']
  155. #: searx/engines/wttr.py:32 searx/searxng.msg
  156. msgid "Average temp."
  157. msgstr "Prům. teplota"
  158. #. WEATHER_TERMS['CLOUD COVER']
  159. #: searx/engines/open_meteo.py:91 searx/searxng.msg
  160. msgid "Cloud cover"
  161. msgstr "Pokrytí mraky"
  162. #. WEATHER_TERMS['CONDITION']
  163. #: searx/engines/duckduckgo_weather.py:45 searx/engines/wttr.py:51
  164. #: searx/searxng.msg
  165. msgid "Condition"
  166. msgstr "Stav"
  167. #. WEATHER_TERMS['CURRENT CONDITION']
  168. #: searx/engines/duckduckgo_weather.py:118 searx/engines/wttr.py:104
  169. #: searx/searxng.msg
  170. msgid "Current condition"
  171. msgstr "Aktuální stav"
  172. #. WEATHER_TERMS['EVENING']
  173. #: searx/engines/wttr.py:100 searx/searxng.msg
  174. msgid "Evening"
  175. msgstr "Večer"
  176. #. WEATHER_TERMS['FEELS LIKE']
  177. #: searx/engines/duckduckgo_weather.py:53 searx/engines/open_meteo.py:81
  178. #: searx/engines/wttr.py:59 searx/searxng.msg
  179. msgid "Feels like"
  180. msgstr "Pocitová teplota"
  181. #. WEATHER_TERMS['HUMIDITY']
  182. #: searx/engines/duckduckgo_weather.py:64 searx/engines/open_meteo.py:93
  183. #: searx/engines/wttr.py:68 searx/searxng.msg
  184. msgid "Humidity"
  185. msgstr "Vlhkost"
  186. #. WEATHER_TERMS['MAX TEMP.']
  187. #: searx/engines/duckduckgo_weather.py:77 searx/engines/wttr.py:34
  188. #: searx/searxng.msg
  189. msgid "Max temp."
  190. msgstr "Max. teplota"
  191. #. WEATHER_TERMS['MIN TEMP.']
  192. #: searx/engines/duckduckgo_weather.py:73 searx/engines/wttr.py:33
  193. #: searx/searxng.msg
  194. msgid "Min temp."
  195. msgstr "Min. teplota"
  196. #. WEATHER_TERMS['MORNING']
  197. #: searx/engines/wttr.py:100 searx/searxng.msg
  198. msgid "Morning"
  199. msgstr "Ráno"
  200. #. WEATHER_TERMS['NIGHT']
  201. #: searx/engines/wttr.py:100 searx/searxng.msg
  202. msgid "Night"
  203. msgstr "Noc"
  204. #. WEATHER_TERMS['NOON']
  205. #: searx/engines/wttr.py:100 searx/searxng.msg
  206. msgid "Noon"
  207. msgstr "Poledne"
  208. #. WEATHER_TERMS['PRESSURE']
  209. #: searx/engines/open_meteo.py:95 searx/searxng.msg
  210. msgid "Pressure"
  211. msgstr "Tlak"
  212. #. WEATHER_TERMS['SUNRISE']
  213. #: searx/engines/duckduckgo_weather.py:81 searx/engines/wttr.py:36
  214. #: searx/searxng.msg
  215. msgid "Sunrise"
  216. msgstr "Východ slunce"
  217. #. WEATHER_TERMS['SUNSET']
  218. #: searx/engines/duckduckgo_weather.py:82 searx/engines/wttr.py:37
  219. #: searx/searxng.msg
  220. msgid "Sunset"
  221. msgstr "Západ slunce"
  222. #. WEATHER_TERMS['TEMPERATURE']
  223. #: searx/engines/duckduckgo_weather.py:48 searx/engines/open_meteo.py:76
  224. #: searx/engines/wttr.py:55 searx/searxng.msg
  225. msgid "Temperature"
  226. msgstr "Teplota"
  227. #. WEATHER_TERMS['UV INDEX']
  228. #: searx/engines/duckduckgo_weather.py:80 searx/engines/wttr.py:35
  229. #: searx/searxng.msg
  230. msgid "UV index"
  231. msgstr "UV index"
  232. #. WEATHER_TERMS['VISIBILITY']
  233. #: searx/engines/duckduckgo_weather.py:62 searx/engines/wttr.py:66
  234. #: searx/searxng.msg
  235. msgid "Visibility"
  236. msgstr "Viditelnost"
  237. #. WEATHER_TERMS['WIND']
  238. #: searx/engines/duckduckgo_weather.py:58 searx/engines/open_meteo.py:86
  239. #: searx/engines/wttr.py:62 searx/searxng.msg
  240. msgid "Wind"
  241. msgstr "Vítr"
  242. #. SOCIAL_MEDIA_TERMS['SUBSCRIBERS']
  243. #: searx/engines/lemmy.py:85 searx/searxng.msg
  244. msgid "subscribers"
  245. msgstr "odběratelé"
  246. #. SOCIAL_MEDIA_TERMS['POSTS']
  247. #: searx/engines/lemmy.py:86 searx/searxng.msg
  248. msgid "posts"
  249. msgstr "příspěvky"
  250. #. SOCIAL_MEDIA_TERMS['ACTIVE USERS']
  251. #: searx/engines/lemmy.py:87 searx/searxng.msg
  252. msgid "active users"
  253. msgstr "aktivní uživatelé"
  254. #. SOCIAL_MEDIA_TERMS['COMMENTS']
  255. #: searx/engines/discourse.py:157 searx/engines/hackernews.py:78
  256. #: searx/engines/lemmy.py:130 searx/searxng.msg
  257. msgid "comments"
  258. msgstr "komentáře"
  259. #. SOCIAL_MEDIA_TERMS['USER']
  260. #: searx/engines/lemmy.py:129 searx/engines/lemmy.py:164 searx/searxng.msg
  261. msgid "user"
  262. msgstr "uživatel"
  263. #. SOCIAL_MEDIA_TERMS['COMMUNITY']
  264. #: searx/engines/lemmy.py:131 searx/engines/lemmy.py:165 searx/searxng.msg
  265. msgid "community"
  266. msgstr "komunita"
  267. #. SOCIAL_MEDIA_TERMS['POINTS']
  268. #: searx/engines/hackernews.py:78 searx/searxng.msg
  269. msgid "points"
  270. msgstr "body"
  271. #. SOCIAL_MEDIA_TERMS['TITLE']
  272. #: searx/searxng.msg
  273. msgid "title"
  274. msgstr "název"
  275. #. SOCIAL_MEDIA_TERMS['AUTHOR']
  276. #: searx/engines/hackernews.py:81 searx/searxng.msg
  277. msgid "author"
  278. msgstr "autor"
  279. #. SOCIAL_MEDIA_TERMS['THREAD OPEN']
  280. #: searx/engines/discourse.py:149 searx/searxng.msg
  281. msgid "open"
  282. msgstr "otevřené"
  283. #. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
  284. #: searx/engines/discourse.py:149 searx/searxng.msg
  285. msgid "closed"
  286. msgstr "zavřené"
  287. #. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
  288. #: searx/engines/discourse.py:160 searx/searxng.msg
  289. msgid "answered"
  290. msgstr "zodpovězené"
  291. #: searx/webapp.py:332
  292. msgid "No item found"
  293. msgstr "Nic nenalezeno"
  294. #: searx/engines/qwant.py:288
  295. #: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:334
  296. msgid "Source"
  297. msgstr "zdroj"
  298. #: searx/webapp.py:336
  299. msgid "Error loading the next page"
  300. msgstr "Chyba při načítání další stránky"
  301. #: searx/webapp.py:495 searx/webapp.py:898
  302. msgid "Invalid settings, please edit your preferences"
  303. msgstr "Neplatné nastavení, upravte své předvolby"
  304. #: searx/webapp.py:511
  305. msgid "Invalid settings"
  306. msgstr "Neplatné nastavení"
  307. #: searx/webapp.py:588 searx/webapp.py:670
  308. msgid "search error"
  309. msgstr "chyba vyhledávání"
  310. #: searx/webutils.py:36
  311. msgid "timeout"
  312. msgstr "čas vypršel"
  313. #: searx/webutils.py:37
  314. msgid "parsing error"
  315. msgstr "chyba parsování"
  316. #: searx/webutils.py:38
  317. msgid "HTTP protocol error"
  318. msgstr "chyba HTTP protokolu"
  319. #: searx/webutils.py:39
  320. msgid "network error"
  321. msgstr "síťová chyba"
  322. #: searx/webutils.py:40
  323. msgid "SSL error: certificate validation has failed"
  324. msgstr "chyba SSL: ověření certifikátu selhalo"
  325. #: searx/webutils.py:42
  326. msgid "unexpected crash"
  327. msgstr "nečekaná chyba"
  328. #: searx/webutils.py:49
  329. msgid "HTTP error"
  330. msgstr "chyba HTTP"
  331. #: searx/webutils.py:50
  332. msgid "HTTP connection error"
  333. msgstr "Chyba spojení HTTP"
  334. #: searx/webutils.py:56
  335. msgid "proxy error"
  336. msgstr "chyba proxy"
  337. #: searx/webutils.py:57
  338. msgid "CAPTCHA"
  339. msgstr "CAPTCHA"
  340. #: searx/webutils.py:58
  341. msgid "too many requests"
  342. msgstr "příliš mnoho požadavků"
  343. #: searx/webutils.py:59
  344. msgid "access denied"
  345. msgstr "přístup odepřen"
  346. #: searx/webutils.py:60
  347. msgid "server API error"
  348. msgstr "chyba API serveru"
  349. #: searx/webutils.py:79
  350. msgid "Suspended"
  351. msgstr "Pozastaveno"
  352. #: searx/webutils.py:314
  353. msgid "{minutes} minute(s) ago"
  354. msgstr "před {minutes} minutami"
  355. #: searx/webutils.py:315
  356. msgid "{hours} hour(s), {minutes} minute(s) ago"
  357. msgstr "před {hours} hodinami, {minutes} minutami"
  358. #: searx/answerers/random/answerer.py:76
  359. msgid "Random value generator"
  360. msgstr "Generátor náhodných hodnot"
  361. #: searx/answerers/random/answerer.py:77
  362. msgid "Generate different random values"
  363. msgstr "Generování náhodných hodnot"
  364. #: searx/answerers/statistics/answerer.py:50
  365. msgid "Statistics functions"
  366. msgstr "Statistické funkce"
  367. #: searx/answerers/statistics/answerer.py:51
  368. msgid "Compute {functions} of the arguments"
  369. msgstr "Výpočet funkcí {functions} pro daný argument"
  370. #: searx/engines/mozhi.py:57
  371. msgid "Synonyms"
  372. msgstr "Synonyma"
  373. #: searx/engines/openstreetmap.py:159
  374. msgid "Get directions"
  375. msgstr "Získat pokyny"
  376. #: searx/engines/pdbe.py:96
  377. msgid "{title} (OBSOLETE)"
  378. msgstr "{title} (ZASTARALÉ)"
  379. #: searx/engines/pdbe.py:103
  380. msgid "This entry has been superseded by"
  381. msgstr "Tato položka byla nahrazena položkou"
  382. #: searx/engines/qwant.py:290
  383. msgid "Channel"
  384. msgstr "Kanál"
  385. #: searx/engines/radio_browser.py:105
  386. msgid "bitrate"
  387. msgstr "datový tok"
  388. #: searx/engines/radio_browser.py:106
  389. msgid "votes"
  390. msgstr "hlasy"
  391. #: searx/engines/radio_browser.py:107
  392. msgid "clicks"
  393. msgstr "kliknutí"
  394. #: searx/engines/seekr.py:193 searx/engines/yummly.py:71
  395. #: searx/engines/zlibrary.py:137
  396. msgid "Language"
  397. msgstr "Jazyk"
  398. #: searx/engines/semantic_scholar.py:78
  399. msgid ""
  400. "{numCitations} citations from the year {firstCitationVelocityYear} to "
  401. "{lastCitationVelocityYear}"
  402. msgstr ""
  403. "{numCitations} citace z roku {firstCitationVelocityYear} do "
  404. "{lastCitationVelocityYear}"
  405. #: searx/engines/tineye.py:45
  406. msgid ""
  407. "Could not read that image url. This may be due to an unsupported file "
  408. "format. TinEye only supports images that are JPEG, PNG, GIF, BMP, TIFF or"
  409. " WebP."
  410. msgstr ""
  411. "Nelze načíst url adresu obrázku. Příčinou může být nepodporovaný formát "
  412. "souboru. TinEye podporuje pouze obrázky ve formátu JPEG, PNG, GIF, BMP, "
  413. "TIFF nebo WebP."
  414. #: searx/engines/tineye.py:51
  415. msgid ""
  416. "The image is too simple to find matches. TinEye requires a basic level of"
  417. " visual detail to successfully identify matches."
  418. msgstr ""
  419. "Obrázek je příliš jednoduchý na to, aby bylo možné najít shody. TinEye "
  420. "vyžaduje základní úroveň vizuálních detailů pro úspěšnou identifikaci."
  421. #: searx/engines/tineye.py:57
  422. msgid "The image could not be downloaded."
  423. msgstr "Obrázek se nepodařilo stáhnout."
  424. #: searx/engines/zlibrary.py:138
  425. msgid "Book rating"
  426. msgstr "Hodnocení knih"
  427. #: searx/engines/zlibrary.py:139
  428. msgid "File quality"
  429. msgstr "Množství souborů"
  430. #: searx/plugins/calculator.py:14
  431. msgid "Calculate mathematical expressions via the search bar"
  432. msgstr "Vypočítejte matematické výrazy pomocí vyhledávací lišty"
  433. #: searx/plugins/hash_plugin.py:10
  434. msgid "Converts strings to different hash digests."
  435. msgstr "Převádí řetězce na různé hash hodnoty."
  436. #: searx/plugins/hash_plugin.py:38
  437. msgid "hash digest"
  438. msgstr "hash hodnota"
  439. #: searx/plugins/hostnames.py:103
  440. msgid "Hostnames plugin"
  441. msgstr "Doplněk hostitelských jmen"
  442. #: searx/plugins/hostnames.py:104
  443. msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
  444. msgstr ""
  445. "Přepsat hostitelská jména, odstranit výsledky nebo je prioritizovat na "
  446. "základě hostitelského jména"
  447. #: searx/plugins/oa_doi_rewrite.py:12
  448. msgid "Open Access DOI rewrite"
  449. msgstr "Přesměrování na Open Access DOI"
  450. #: searx/plugins/oa_doi_rewrite.py:13
  451. msgid ""
  452. "Avoid paywalls by redirecting to open-access versions of publications "
  453. "when available"
  454. msgstr ""
  455. "Automaticky přesměrovat na volně přístupné verze publikací místo "
  456. "placených, pokud je to možné"
  457. #: searx/plugins/self_info.py:9
  458. msgid "Self Information"
  459. msgstr "Informace o sobě"
  460. #: searx/plugins/self_info.py:10
  461. msgid ""
  462. "Displays your IP if the query is \"ip\" and your user agent if the query "
  463. "contains \"user agent\"."
  464. msgstr ""
  465. "Umožňuje hledat informace o sobě: \"ip\" zobrazí vaši IP adresu a \"user "
  466. "agent\" zobrazí identifikátor prohlížeče."
  467. #: searx/plugins/self_info.py:28
  468. msgid "Your IP is: "
  469. msgstr "Vaše IP: "
  470. #: searx/plugins/self_info.py:31
  471. msgid "Your user-agent is: "
  472. msgstr "Váš uživatelský agent: "
  473. #: searx/plugins/tor_check.py:24
  474. msgid "Tor check plugin"
  475. msgstr "Plugin kontroly TORu"
  476. #: searx/plugins/tor_check.py:27
  477. msgid ""
  478. "This plugin checks if the address of the request is a Tor exit-node, and "
  479. "informs the user if it is; like check.torproject.org, but from SearXNG."
  480. msgstr ""
  481. "Tento plugin kontroluje, zda je adresa požadavku výstupním uzlem Tor, a "
  482. "informuje uživatele, pokud tomu tak je; jako check.torproject.org, ale od"
  483. " SearXNG."
  484. #: searx/plugins/tor_check.py:61
  485. msgid ""
  486. "Could not download the list of Tor exit-nodes from: "
  487. "https://check.torproject.org/exit-addresses"
  488. msgstr ""
  489. "Nelze stáhnout seznam výstupních uzlů Tor z: https://check.torproject.org"
  490. "/exit-addresses"
  491. #: searx/plugins/tor_check.py:77
  492. msgid ""
  493. "You are using Tor and it looks like you have this external IP address: "
  494. "{ip_address}"
  495. msgstr "Používáte Tor a vypadá to, že máte tuto externí IP adresu: {ip_address}"
  496. #: searx/plugins/tor_check.py:85
  497. msgid "You are not using Tor and you have this external IP address: {ip_address}"
  498. msgstr "Nepoužíváte Tor a máte tuto externí IP adresu: {ip_address}"
  499. #: searx/plugins/tracker_url_remover.py:16
  500. msgid "Tracker URL remover"
  501. msgstr "Odstraňovač sledovacích URL"
  502. #: searx/plugins/tracker_url_remover.py:17
  503. msgid "Remove trackers arguments from the returned URL"
  504. msgstr "Odstranit sledovací parametry z načtených URL"
  505. #: searx/plugins/unit_converter.py:29
  506. msgid "Convert between units"
  507. msgstr "Převod mezi jednotkami"
  508. #: searx/templates/simple/404.html:4
  509. msgid "Page not found"
  510. msgstr "Stránka nenalezena"
  511. #: searx/templates/simple/404.html:6
  512. #, python-format
  513. msgid "Go to %(search_page)s."
  514. msgstr "Přejít na %(search_page)s."
  515. #: searx/templates/simple/404.html:6
  516. msgid "search page"
  517. msgstr "stránka vyhledávání"
  518. #: searx/templates/simple/base.html:54
  519. msgid "Donate"
  520. msgstr "Dar"
  521. #: searx/templates/simple/base.html:58
  522. #: searx/templates/simple/preferences.html:156
  523. msgid "Preferences"
  524. msgstr "Nastavení"
  525. #: searx/templates/simple/base.html:68
  526. msgid "Powered by"
  527. msgstr "Poháněno softwarem"
  528. #: searx/templates/simple/base.html:68
  529. msgid "a privacy-respecting, open metasearch engine"
  530. msgstr "otevřený, metavyhledávající engine, respektující soukromí"
  531. #: searx/templates/simple/base.html:69
  532. #: searx/templates/simple/result_templates/packages.html:59
  533. msgid "Source code"
  534. msgstr "Zdrojový kód"
  535. #: searx/templates/simple/base.html:70
  536. msgid "Issue tracker"
  537. msgstr "Hlášení chyb"
  538. #: searx/templates/simple/base.html:71 searx/templates/simple/stats.html:18
  539. msgid "Engine stats"
  540. msgstr "Statistiky vyhledávače"
  541. #: searx/templates/simple/base.html:73
  542. msgid "Public instances"
  543. msgstr "Veřejné instance"
  544. #: searx/templates/simple/base.html:76
  545. msgid "Privacy policy"
  546. msgstr "Zásady soukromí"
  547. #: searx/templates/simple/base.html:79
  548. msgid "Contact instance maintainer"
  549. msgstr "Kontaktujte správce instance"
  550. #: searx/templates/simple/categories.html:26
  551. msgid "Click on the magnifier to perform search"
  552. msgstr "Vyhledávání provedete kliknutím na lupu"
  553. #: searx/templates/simple/macros.html:40
  554. msgid "Length"
  555. msgstr "Délka"
  556. #: searx/templates/simple/macros.html:41
  557. msgid "Views"
  558. msgstr "Zhlédnutí"
  559. #: searx/templates/simple/macros.html:42
  560. #: searx/templates/simple/result_templates/files.html:34
  561. #: searx/templates/simple/result_templates/images.html:19
  562. #: searx/templates/simple/result_templates/paper.html:6
  563. msgid "Author"
  564. msgstr "Autor"
  565. #: searx/templates/simple/macros.html:50
  566. msgid "cached"
  567. msgstr "archivovaná verze"
  568. #: searx/templates/simple/macros.html:50
  569. msgid "proxied"
  570. msgstr "přes proxy"
  571. #: searx/templates/simple/new_issue.html:64
  572. msgid "Start submiting a new issue on GitHub"
  573. msgstr "Začněte přidávat novou chybu na Githubu"
  574. #: searx/templates/simple/new_issue.html:66
  575. msgid "Please check for existing bugs about this engine on GitHub"
  576. msgstr "Zkontrolujte prosím existující chyby tohoto enginu na GitHubu"
  577. #: searx/templates/simple/new_issue.html:69
  578. msgid "I confirm there is no existing bug about the issue I encounter"
  579. msgstr ""
  580. "Potvrzuji, že neexistuje žádná chyba týkající se problému, se kterým se "
  581. "setkávám"
  582. #: searx/templates/simple/new_issue.html:71
  583. msgid "If this is a public instance, please specify the URL in the bug report"
  584. msgstr "Pokud je tohle veřejná instance, prosím specifikujte URL v náhlášení chyby"
  585. #: searx/templates/simple/new_issue.html:72
  586. msgid "Submit a new issue on Github including the above information"
  587. msgstr "Odeslání nového problému na Github včetně výše uvedených informací"
  588. #: searx/templates/simple/preferences.html:65
  589. msgid "No HTTPS"
  590. msgstr "Žádné HTTPS"
  591. #: searx/templates/simple/elements/engines_msg.html:14
  592. #: searx/templates/simple/preferences.html:69
  593. #: searx/templates/simple/preferences.html:70
  594. msgid "View error logs and submit a bug report"
  595. msgstr "Zobrazit ladící záznamy a poslat hlášení o chybě"
  596. #: searx/templates/simple/preferences.html:74
  597. msgid "!bang for this engine"
  598. msgstr "!bang pro tento vyhledávač"
  599. #: searx/templates/simple/preferences.html:80
  600. msgid "!bang for its categories"
  601. msgstr "!bang pro své kategorie"
  602. #: searx/templates/simple/preferences.html:102
  603. #: searx/templates/simple/stats.html:64
  604. msgid "Median"
  605. msgstr "Medián"
  606. #: searx/templates/simple/preferences.html:103
  607. #: searx/templates/simple/stats.html:70
  608. msgid "P80"
  609. msgstr "P80"
  610. #: searx/templates/simple/preferences.html:104
  611. #: searx/templates/simple/stats.html:76
  612. msgid "P95"
  613. msgstr "P95"
  614. #: searx/templates/simple/preferences.html:136
  615. msgid "Failed checker test(s): "
  616. msgstr "Neúspešné testy zkoušečů: "
  617. #: searx/templates/simple/preferences.html:138
  618. msgid "Errors:"
  619. msgstr "Chyby:"
  620. #: searx/templates/simple/preferences.html:162
  621. msgid "General"
  622. msgstr "Obecné"
  623. #: searx/templates/simple/preferences.html:165
  624. msgid "Default categories"
  625. msgstr "Základní kategorie"
  626. #: searx/templates/simple/preferences.html:190
  627. msgid "User interface"
  628. msgstr "Uživatelské rozhraní"
  629. #: searx/templates/simple/preferences.html:211
  630. msgid "Privacy"
  631. msgstr "Soukromí"
  632. #: searx/templates/simple/preferences.html:224
  633. msgid "Engines"
  634. msgstr "Vyhledávače"
  635. #: searx/templates/simple/preferences.html:226
  636. msgid "Currently used search engines"
  637. msgstr "Aktuálně používané vyhledávače"
  638. #: searx/templates/simple/preferences.html:234
  639. msgid "Special Queries"
  640. msgstr "Zvláštní dotazy"
  641. #: searx/templates/simple/preferences.html:240
  642. msgid "Cookies"
  643. msgstr "Cookies"
  644. #: searx/templates/simple/results.html:23
  645. msgid "Answers"
  646. msgstr "Odpovědi"
  647. #: searx/templates/simple/results.html:42
  648. msgid "Number of results"
  649. msgstr "Počet výsledků"
  650. #: searx/templates/simple/results.html:48
  651. msgid "Info"
  652. msgstr "Informace"
  653. #: searx/templates/simple/results.html:75
  654. msgid "Try searching for:"
  655. msgstr "Zkuste vyhledat:"
  656. #: searx/templates/simple/results.html:107
  657. msgid "Back to top"
  658. msgstr "Nahoru"
  659. #: searx/templates/simple/results.html:125
  660. msgid "Previous page"
  661. msgstr "Předchozí stránka"
  662. #: searx/templates/simple/results.html:143
  663. msgid "Next page"
  664. msgstr "Další stránka"
  665. #: searx/templates/simple/search.html:3
  666. msgid "Display the front page"
  667. msgstr "Zobrazit úvodní stránku"
  668. #: searx/templates/simple/search.html:9
  669. #: searx/templates/simple/simple_search.html:5
  670. msgid "Search for..."
  671. msgstr "Hledat…"
  672. #: searx/templates/simple/search.html:10
  673. #: searx/templates/simple/simple_search.html:6
  674. msgid "clear"
  675. msgstr "vyčistit"
  676. #: searx/templates/simple/search.html:11
  677. #: searx/templates/simple/simple_search.html:7
  678. msgid "search"
  679. msgstr "vyhledat"
  680. #: searx/templates/simple/stats.html:21
  681. msgid "There is currently no data available. "
  682. msgstr "Aktuálně nejsou k dispozici žádná data. "
  683. #: searx/templates/simple/preferences/engines.html:24
  684. #: searx/templates/simple/stats.html:25
  685. msgid "Engine name"
  686. msgstr "Jméno vyhledávače"
  687. #: searx/templates/simple/stats.html:26
  688. msgid "Scores"
  689. msgstr "Skóre"
  690. #: searx/templates/simple/stats.html:27
  691. msgid "Result count"
  692. msgstr "Počet výsledků"
  693. #: searx/templates/simple/elements/engines_msg.html:7
  694. #: searx/templates/simple/preferences/engines.html:31
  695. #: searx/templates/simple/stats.html:28
  696. msgid "Response time"
  697. msgstr "Čas odpovědi"
  698. #: searx/templates/simple/preferences/engines.html:35
  699. #: searx/templates/simple/stats.html:29
  700. msgid "Reliability"
  701. msgstr "Spolehlivost"
  702. #: searx/templates/simple/stats.html:59
  703. msgid "Total"
  704. msgstr "Celkem"
  705. #: searx/templates/simple/stats.html:60
  706. msgid "HTTP"
  707. msgstr "HTTP"
  708. #: searx/templates/simple/stats.html:61
  709. msgid "Processing"
  710. msgstr "Zpracovávám"
  711. #: searx/templates/simple/stats.html:99
  712. msgid "Warnings"
  713. msgstr "Varování"
  714. #: searx/templates/simple/stats.html:99
  715. msgid "Errors and exceptions"
  716. msgstr "Chyby a výjimky"
  717. #: searx/templates/simple/stats.html:105
  718. msgid "Exception"
  719. msgstr "Výjimka"
  720. #: searx/templates/simple/stats.html:107
  721. msgid "Message"
  722. msgstr "Zpráva"
  723. #: searx/templates/simple/stats.html:109
  724. msgid "Percentage"
  725. msgstr "Procenta"
  726. #: searx/templates/simple/stats.html:111
  727. msgid "Parameter"
  728. msgstr "Parametr"
  729. #: searx/templates/simple/result_templates/files.html:36
  730. #: searx/templates/simple/stats.html:119
  731. msgid "Filename"
  732. msgstr "Název souboru"
  733. #: searx/templates/simple/stats.html:120
  734. msgid "Function"
  735. msgstr "Funkce"
  736. #: searx/templates/simple/stats.html:121
  737. msgid "Code"
  738. msgstr "Kód"
  739. #: searx/templates/simple/stats.html:128
  740. msgid "Checker"
  741. msgstr "Zkoušeč"
  742. #: searx/templates/simple/stats.html:131
  743. msgid "Failed test"
  744. msgstr "Test selhal"
  745. #: searx/templates/simple/stats.html:132
  746. msgid "Comment(s)"
  747. msgstr "Komentář(e)"
  748. #: searx/templates/simple/elements/apis.html:3
  749. msgid "Download results"
  750. msgstr "Stáhnout výsledky vyhledávání"
  751. #: searx/templates/simple/elements/engines_msg.html:4
  752. msgid "Messages from the search engines"
  753. msgstr "Hlášení vyhledávačů"
  754. #: searx/templates/simple/elements/engines_msg.html:7
  755. msgid "seconds"
  756. msgstr "sekund"
  757. #: searx/templates/simple/elements/search_url.html:3
  758. msgid "Search URL"
  759. msgstr "URL vyhledávání"
  760. #: searx/templates/simple/elements/search_url.html:4
  761. #: searx/templates/simple/preferences/cookies.html:54
  762. msgid "Copied"
  763. msgstr "Zkopírováno"
  764. #: searx/templates/simple/elements/search_url.html:4
  765. #: searx/templates/simple/preferences/cookies.html:54
  766. msgid "Copy"
  767. msgstr "Kopírovat"
  768. #: searx/templates/simple/elements/suggestions.html:3
  769. msgid "Suggestions"
  770. msgstr "Návrhy"
  771. #: searx/templates/simple/filters/languages.html:1
  772. #: searx/templates/simple/preferences/language.html:2
  773. msgid "Search language"
  774. msgstr "Jazyk hledání"
  775. #: searx/templates/simple/filters/languages.html:4
  776. #: searx/templates/simple/preferences/language.html:7
  777. msgid "Default language"
  778. msgstr "Výchozí jazyk"
  779. #: searx/templates/simple/filters/languages.html:8
  780. #: searx/templates/simple/preferences/language.html:11
  781. msgid "Auto-detect"
  782. msgstr "Automatická detekce"
  783. #: searx/templates/simple/filters/safesearch.html:1
  784. #: searx/templates/simple/filters/safesearch.html:2
  785. #: searx/templates/simple/filters/safesearch.html:3
  786. #: searx/templates/simple/filters/safesearch.html:4
  787. #: searx/templates/simple/preferences/engines.html:27
  788. #: searx/templates/simple/preferences/safesearch.html:2
  789. msgid "SafeSearch"
  790. msgstr "Bezpečné vyhledávání"
  791. #: searx/templates/simple/filters/safesearch.html:2
  792. #: searx/templates/simple/preferences/safesearch.html:7
  793. msgid "Strict"
  794. msgstr "Přísné"
  795. #: searx/templates/simple/filters/safesearch.html:3
  796. #: searx/templates/simple/preferences/safesearch.html:11
  797. msgid "Moderate"
  798. msgstr "Střední"
  799. #: searx/templates/simple/filters/safesearch.html:4
  800. #: searx/templates/simple/preferences/safesearch.html:15
  801. msgid "None"
  802. msgstr "Vypnuto"
  803. #: searx/templates/simple/filters/time_range.html:1
  804. #: searx/templates/simple/preferences/engines.html:28
  805. msgid "Time range"
  806. msgstr "Čásový interval"
  807. #: searx/templates/simple/filters/time_range.html:3
  808. msgid "Anytime"
  809. msgstr "Kdykoli"
  810. #: searx/templates/simple/filters/time_range.html:6
  811. msgid "Last day"
  812. msgstr "Dnes"
  813. #: searx/templates/simple/filters/time_range.html:9
  814. msgid "Last week"
  815. msgstr "Tento týden"
  816. #: searx/templates/simple/filters/time_range.html:12
  817. msgid "Last month"
  818. msgstr "Měsíc"
  819. #: searx/templates/simple/filters/time_range.html:15
  820. msgid "Last year"
  821. msgstr "Rok"
  822. #: searx/templates/simple/messages/no_cookies.html:3
  823. msgid "Information!"
  824. msgstr "Informace!"
  825. #: searx/templates/simple/messages/no_cookies.html:4
  826. msgid "currently, there are no cookies defined."
  827. msgstr "aktuálně nejsou definované žádné cookies."
  828. #: searx/templates/simple/messages/no_results.html:6
  829. msgid "Sorry!"
  830. msgstr "Omlouváme se!"
  831. #: searx/templates/simple/messages/no_results.html:12
  832. msgid "No results were found. You can try to:"
  833. msgstr "Nebyly nalezeny žádné výsledky. Můžete zkusit:"
  834. #: searx/templates/simple/messages/no_results.html:14
  835. msgid "There are no more results. You can try to:"
  836. msgstr "Nenašli jsme žádné další výsledky. Můžete zkusit:"
  837. #: searx/templates/simple/messages/no_results.html:19
  838. msgid "Refresh the page."
  839. msgstr "Znovu načíst stránku."
  840. #: searx/templates/simple/messages/no_results.html:20
  841. msgid "Search for another query or select another category (above)."
  842. msgstr "Vyhledat jinou frázi nebo vybrat jinou kategorii (výše)."
  843. #: searx/templates/simple/messages/no_results.html:21
  844. msgid "Change the search engine used in the preferences:"
  845. msgstr "Změnit použitý vyhledávač v předvolbách:"
  846. #: searx/templates/simple/messages/no_results.html:22
  847. msgid "Switch to another instance:"
  848. msgstr "Přepnout na jinou instanci:"
  849. #: searx/templates/simple/messages/no_results.html:24
  850. msgid "Search for another query or select another category."
  851. msgstr "Vyhledat jiný dotaz nebo vybrat jinou kategorii."
  852. #: searx/templates/simple/messages/no_results.html:25
  853. msgid "Go back to the previous page using the previous page button."
  854. msgstr "Vrátit se zpět na předchozí stranu."
  855. #: searx/templates/simple/preferences/answerers.html:4
  856. #: searx/templates/simple/preferences/engines.html:23
  857. msgid "Allow"
  858. msgstr "Povolit"
  859. #: searx/templates/simple/preferences/answerers.html:5
  860. msgid "Keywords"
  861. msgstr "Klíčová slova"
  862. #: searx/templates/simple/preferences/answerers.html:6
  863. #: searx/templates/simple/result_templates/packages.html:7
  864. msgid "Name"
  865. msgstr "Název"
  866. #: searx/templates/simple/preferences/answerers.html:7
  867. msgid "Description"
  868. msgstr "Popis"
  869. #: searx/templates/simple/preferences/answerers.html:8
  870. msgid "Examples"
  871. msgstr "Příklady"
  872. #: searx/templates/simple/preferences/answerers.html:13
  873. msgid "This is the list of SearXNG's instant answering modules."
  874. msgstr "Toto je seznam našeptávačů SearXNG."
  875. #: searx/templates/simple/preferences/answerers.html:29
  876. msgid "This is the list of plugins."
  877. msgstr "Toto je seznam doplňků."
  878. #: searx/templates/simple/preferences/autocomplete.html:2
  879. msgid "Autocomplete"
  880. msgstr "Našeptávač"
  881. #: searx/templates/simple/preferences/autocomplete.html:15
  882. msgid "Find stuff as you type"
  883. msgstr "Vyhledávat během psaní"
  884. #: searx/templates/simple/preferences/center_alignment.html:2
  885. msgid "Center Alignment"
  886. msgstr "Zarovnání na střed"
  887. #: searx/templates/simple/preferences/center_alignment.html:14
  888. msgid "Displays results in the center of the page (Oscar layout)."
  889. msgstr "Zobrazí výsledky uprostřed stránky (rozložení Oscar)."
  890. #: searx/templates/simple/preferences/cookies.html:2
  891. msgid ""
  892. "This is the list of cookies and their values SearXNG is storing on your "
  893. "computer."
  894. msgstr ""
  895. "Toto je seznam cookies a jejich hodnoty, které si SearXNG ukládá na vašem"
  896. " počítači."
  897. #: searx/templates/simple/preferences/cookies.html:3
  898. msgid "With that list, you can assess SearXNG transparency."
  899. msgstr "S pomocí tohoto seznamu můžete určit transparentnost SearXNG."
  900. #: searx/templates/simple/preferences/cookies.html:9
  901. msgid "Cookie name"
  902. msgstr "Název cookie"
  903. #: searx/templates/simple/preferences/cookies.html:10
  904. msgid "Value"
  905. msgstr "Hodnota"
  906. #: searx/templates/simple/preferences/cookies.html:23
  907. msgid "Search URL of the currently saved preferences"
  908. msgstr "URL pro vyhledávání s aktuálně uloženými předvolbami"
  909. #: searx/templates/simple/preferences/cookies.html:32
  910. msgid ""
  911. "Note: specifying custom settings in the search URL can reduce privacy by "
  912. "leaking data to the clicked result sites."
  913. msgstr ""
  914. "Poznámka: zadaní vlastních nastavení v URL může snížit soukromí "
  915. "prozrazením dat při kliknutí na výsledky hledání."
  916. #: searx/templates/simple/preferences/cookies.html:35
  917. msgid "URL to restore your preferences in another browser"
  918. msgstr "URL k obnovení vašich preferencí v jiném prohlížeči"
  919. #: searx/templates/simple/preferences/cookies.html:43
  920. msgid ""
  921. "Specifying custom settings in the preferences URL can be used to sync "
  922. "preferences across devices."
  923. msgstr ""
  924. "Zadání vlastních nastavení v URL předvoleb lze použít k synchronizaci "
  925. "předvoleb mezi zařízeními."
  926. #: searx/templates/simple/preferences/cookies.html:46
  927. msgid "Copy preferences hash"
  928. msgstr "Kopírovat hash předvoleb"
  929. #: searx/templates/simple/preferences/cookies.html:57
  930. msgid "Insert copied preferences hash (without URL) to restore"
  931. msgstr "Pro obnovení vložte zkopírovaný hash předvoleb (bez adresy URL)"
  932. #: searx/templates/simple/preferences/cookies.html:59
  933. msgid "Preferences hash"
  934. msgstr "Hash předvoleb"
  935. #: searx/templates/simple/preferences/doi_resolver.html:2
  936. msgid "Open Access DOI resolver"
  937. msgstr "Web pro přesměrování na Open Access DOI"
  938. #: searx/templates/simple/preferences/doi_resolver.html:14
  939. msgid "Select service used by DOI rewrite"
  940. msgstr "Výběr služby použité při přepisu DOI"
  941. #: searx/templates/simple/preferences/engines.html:9
  942. msgid ""
  943. "This tab does not exists in the user interface, but you can search in "
  944. "these engines by its !bangs."
  945. msgstr ""
  946. "Tato karta v uživatelském rozhraní neexistuje, ale můžete v těchto "
  947. "vyhledávačích vyhledávat podle jejích !bang."
  948. #: searx/templates/simple/preferences/engines.html:15
  949. msgid "Enable all"
  950. msgstr "Povolit vše"
  951. #: searx/templates/simple/preferences/engines.html:16
  952. msgid "Disable all"
  953. msgstr "Zakázat vše"
  954. #: searx/templates/simple/preferences/engines.html:25
  955. msgid "!bang"
  956. msgstr "!bang"
  957. #: searx/templates/simple/preferences/engines.html:26
  958. msgid "Supports selected language"
  959. msgstr "Podporuje vybraný jazyk"
  960. #: searx/templates/simple/preferences/engines.html:29
  961. msgid "Weight"
  962. msgstr "Váha"
  963. #: searx/templates/simple/preferences/engines.html:33
  964. msgid "Max time"
  965. msgstr "Max. čas"
  966. #: searx/templates/simple/preferences/favicon.html:2
  967. msgid "Favicon Resolver"
  968. msgstr "Zobrazit ikony"
  969. #: searx/templates/simple/preferences/favicon.html:15
  970. msgid "Display favicons near search results"
  971. msgstr "Zobrazit ikony webů vedle výsledků vyhledávání"
  972. #: searx/templates/simple/preferences/footer.html:2
  973. msgid ""
  974. "These settings are stored in your cookies, this allows us not to store "
  975. "this data about you."
  976. msgstr ""
  977. "Tato nastavení jsou uložena ve vašich cookies, což nám umožňuje tyto data"
  978. " neuchovávat nikde jinde."
  979. #: searx/templates/simple/preferences/footer.html:3
  980. msgid ""
  981. "These cookies serve your sole convenience, we don't use these cookies to "
  982. "track you."
  983. msgstr ""
  984. "Tyto cookies existují výhradně pro vaše pohodlí, nepoužíváme je ke "
  985. "sledování."
  986. #: searx/templates/simple/preferences/footer.html:6
  987. msgid "Save"
  988. msgstr "Uložit"
  989. #: searx/templates/simple/preferences/footer.html:9
  990. msgid "Reset defaults"
  991. msgstr "Obnovit výchozí"
  992. #: searx/templates/simple/preferences/footer.html:13
  993. msgid "Back"
  994. msgstr "Zpět"
  995. #: searx/templates/simple/preferences/hotkeys.html:2
  996. msgid "Hotkeys"
  997. msgstr "Klávesové zkratky"
  998. #: searx/templates/simple/preferences/hotkeys.html:13
  999. msgid "Vim-like"
  1000. msgstr "Podobné editoru Vim"
  1001. #: searx/templates/simple/preferences/hotkeys.html:18
  1002. msgid ""
  1003. "Navigate search results with hotkeys (JavaScript required). Press \"h\" "
  1004. "key on main or result page to get help."
  1005. msgstr ""
  1006. "Procházejte výsledky vyhledávání klávesovými zkratkami (vyžadován "
  1007. "JavaScript). Pro nápovědu stiskněte na hlavní stránce nebo stránce s "
  1008. "výsledky klávesu „H“."
  1009. #: searx/templates/simple/preferences/image_proxy.html:2
  1010. msgid "Image proxy"
  1011. msgstr "Nepřímé vyhledávání obrázků"
  1012. #: searx/templates/simple/preferences/image_proxy.html:14
  1013. msgid "Proxying image results through SearXNG"
  1014. msgstr "Používat SearXNG jako prostředníka pro vyhledávání obrázků"
  1015. #: searx/templates/simple/preferences/infinite_scroll.html:2
  1016. msgid "Infinite scroll"
  1017. msgstr "Nekonečné výsledky"
  1018. #: searx/templates/simple/preferences/infinite_scroll.html:14
  1019. msgid "Automatically load next page when scrolling to bottom of current page"
  1020. msgstr "Automaticky načítat další výsledky při rolování"
  1021. #: searx/templates/simple/preferences/language.html:24
  1022. msgid "What language do you prefer for search?"
  1023. msgstr "Jaký jazyk vyhledávání upřednostňujete?"
  1024. #: searx/templates/simple/preferences/language.html:25
  1025. msgid "Choose Auto-detect to let SearXNG detect the language of your query."
  1026. msgstr "Zvolte Automaticky detekovat, aby SearXNG detekoval jazyk vašeho dotazu."
  1027. #: searx/templates/simple/preferences/method.html:2
  1028. msgid "HTTP Method"
  1029. msgstr "Metoda HTTP"
  1030. #: searx/templates/simple/preferences/method.html:14
  1031. msgid "Change how forms are submitted"
  1032. msgstr "Změnit způsob odesílání dotazů"
  1033. #: searx/templates/simple/preferences/query_in_title.html:2
  1034. msgid "Query in the page's title"
  1035. msgstr "Dotaz v titulku stránky"
  1036. #: searx/templates/simple/preferences/query_in_title.html:14
  1037. msgid ""
  1038. "When enabled, the result page's title contains your query. Your browser "
  1039. "can record this title"
  1040. msgstr ""
  1041. "Titulek stránky s výsledky bude obsahovat váš vyhledávací dotaz, pokud "
  1042. "toto zapnete. Váš prohlížeč může tento titulek zaznamenat"
  1043. #: searx/templates/simple/preferences/results_on_new_tab.html:2
  1044. msgid "Results on new tabs"
  1045. msgstr "Výsledky na novém panelu"
  1046. #: searx/templates/simple/preferences/results_on_new_tab.html:14
  1047. msgid "Open result links on new browser tabs"
  1048. msgstr "Otevírat výsledky na novém panelu prohlížeče"
  1049. #: searx/templates/simple/preferences/safesearch.html:20
  1050. msgid "Filter content"
  1051. msgstr "Filtrovat obsah"
  1052. #: searx/templates/simple/preferences/search_on_category_select.html:2
  1053. msgid "Search on category select"
  1054. msgstr "Spustit vyhledávání při výběru kategorie"
  1055. #: searx/templates/simple/preferences/search_on_category_select.html:14
  1056. msgid ""
  1057. "Perform search immediately if a category selected. Disable to select "
  1058. "multiple categories"
  1059. msgstr ""
  1060. "Pokud je vybrána kategorie, ihned provést vyhledávání. Zakažte pro "
  1061. "vybrání několika kategorií"
  1062. #: searx/templates/simple/preferences/theme.html:2
  1063. msgid "Theme"
  1064. msgstr "Vzhled"
  1065. #: searx/templates/simple/preferences/theme.html:14
  1066. msgid "Change SearXNG layout"
  1067. msgstr "Změnit vzhled SearXNG"
  1068. #: searx/templates/simple/preferences/theme.html:19
  1069. msgid "Theme style"
  1070. msgstr "Styl vzhledu"
  1071. #: searx/templates/simple/preferences/theme.html:31
  1072. msgid "Choose auto to follow your browser settings"
  1073. msgstr "Zvolte automaticky pro sledování nastavení vašeho prohlížeče"
  1074. #: searx/templates/simple/preferences/tokens.html:2
  1075. msgid "Engine tokens"
  1076. msgstr "Tokeny vyhledávačů"
  1077. #: searx/templates/simple/preferences/tokens.html:9
  1078. msgid "Access tokens for private engines"
  1079. msgstr "Přístupové tokeny pro soukromé vyhledávače"
  1080. #: searx/templates/simple/preferences/ui_locale.html:2
  1081. msgid "Interface language"
  1082. msgstr "Jazyk rozhraní"
  1083. #: searx/templates/simple/preferences/ui_locale.html:14
  1084. msgid "Change the language of the layout"
  1085. msgstr "Nastavit jazyk rozhraní"
  1086. #: searx/templates/simple/result_templates/code.html:13
  1087. msgid "repo"
  1088. msgstr "repozitář"
  1089. #: searx/templates/simple/result_templates/default.html:6
  1090. #: searx/templates/simple/result_templates/files.html:8
  1091. #: searx/templates/simple/result_templates/files.html:11
  1092. msgid "show media"
  1093. msgstr "ukázat média"
  1094. #: searx/templates/simple/result_templates/default.html:6
  1095. #: searx/templates/simple/result_templates/files.html:8
  1096. msgid "hide media"
  1097. msgstr "skrýt média"
  1098. #: searx/templates/simple/result_templates/default.html:14
  1099. #: searx/templates/simple/result_templates/videos.html:14
  1100. msgid "This site did not provide any description."
  1101. msgstr "Tato stránka nemá žádný popis."
  1102. #: searx/templates/simple/result_templates/files.html:38
  1103. #: searx/templates/simple/result_templates/images.html:22
  1104. #: searx/templates/simple/result_templates/torrent.html:11
  1105. msgid "Filesize"
  1106. msgstr "Velikost"
  1107. #: searx/templates/simple/result_templates/files.html:40
  1108. msgid "Date"
  1109. msgstr "Datum"
  1110. #: searx/templates/simple/result_templates/files.html:42
  1111. #: searx/templates/simple/result_templates/paper.html:24
  1112. msgid "Type"
  1113. msgstr "Typ"
  1114. #: searx/templates/simple/result_templates/images.html:20
  1115. msgid "Resolution"
  1116. msgstr "Rozlišení"
  1117. #: searx/templates/simple/result_templates/images.html:21
  1118. msgid "Format"
  1119. msgstr "Formát"
  1120. #: searx/templates/simple/result_templates/images.html:24
  1121. msgid "Engine"
  1122. msgstr "Vyhledávač"
  1123. #: searx/templates/simple/result_templates/images.html:25
  1124. msgid "View source"
  1125. msgstr "Zobrazit zdroj"
  1126. #: searx/templates/simple/result_templates/map.html:12
  1127. msgid "address"
  1128. msgstr "adresa"
  1129. #: searx/templates/simple/result_templates/map.html:43
  1130. msgid "show map"
  1131. msgstr "zobrazit mapu"
  1132. #: searx/templates/simple/result_templates/map.html:43
  1133. msgid "hide map"
  1134. msgstr "skrýt mapu"
  1135. #: searx/templates/simple/result_templates/packages.html:12
  1136. msgid "Version"
  1137. msgstr "Verze"
  1138. #: searx/templates/simple/result_templates/packages.html:18
  1139. msgid "Maintainer"
  1140. msgstr "Správce"
  1141. #: searx/templates/simple/result_templates/packages.html:24
  1142. msgid "Updated at"
  1143. msgstr "Aktualizováno"
  1144. #: searx/templates/simple/result_templates/packages.html:30
  1145. #: searx/templates/simple/result_templates/paper.html:25
  1146. msgid "Tags"
  1147. msgstr "Značky"
  1148. #: searx/templates/simple/result_templates/packages.html:36
  1149. msgid "Popularity"
  1150. msgstr "Popularita"
  1151. #: searx/templates/simple/result_templates/packages.html:42
  1152. msgid "License"
  1153. msgstr "Licence"
  1154. #: searx/templates/simple/result_templates/packages.html:52
  1155. msgid "Project"
  1156. msgstr "Projekt"
  1157. #: searx/templates/simple/result_templates/packages.html:55
  1158. msgid "Project homepage"
  1159. msgstr "Domovská stránka projektu"
  1160. #: searx/templates/simple/result_templates/paper.html:5
  1161. msgid "Published date"
  1162. msgstr "Datum vydání"
  1163. #: searx/templates/simple/result_templates/paper.html:9
  1164. msgid "Journal"
  1165. msgstr "Časopis"
  1166. #: searx/templates/simple/result_templates/paper.html:22
  1167. msgid "Editor"
  1168. msgstr "Editor"
  1169. #: searx/templates/simple/result_templates/paper.html:23
  1170. msgid "Publisher"
  1171. msgstr "Nakladatel"
  1172. #: searx/templates/simple/result_templates/paper.html:26
  1173. msgid "DOI"
  1174. msgstr "DOI"
  1175. #: searx/templates/simple/result_templates/paper.html:27
  1176. msgid "ISSN"
  1177. msgstr "ISSN"
  1178. #: searx/templates/simple/result_templates/paper.html:28
  1179. msgid "ISBN"
  1180. msgstr "ISBN"
  1181. #: searx/templates/simple/result_templates/paper.html:33
  1182. msgid "PDF"
  1183. msgstr "PDF"
  1184. #: searx/templates/simple/result_templates/paper.html:34
  1185. msgid "HTML"
  1186. msgstr "HTML"
  1187. #: searx/templates/simple/result_templates/torrent.html:6
  1188. msgid "magnet link"
  1189. msgstr "odkaz magnet"
  1190. #: searx/templates/simple/result_templates/torrent.html:7
  1191. msgid "torrent file"
  1192. msgstr "soubor torrentu"
  1193. #: searx/templates/simple/result_templates/torrent.html:9
  1194. msgid "Seeder"
  1195. msgstr "Seeder"
  1196. #: searx/templates/simple/result_templates/torrent.html:9
  1197. msgid "Leecher"
  1198. msgstr "Leecher"
  1199. #: searx/templates/simple/result_templates/torrent.html:13
  1200. msgid "Number of Files"
  1201. msgstr "Počet souborů"
  1202. #: searx/templates/simple/result_templates/videos.html:6
  1203. msgid "show video"
  1204. msgstr "zobrazit video"
  1205. #: searx/templates/simple/result_templates/videos.html:6
  1206. msgid "hide video"
  1207. msgstr "skrýt video"
  1208. #~ msgid "Engine time (sec)"
  1209. #~ msgstr "Strojový čas (s)"
  1210. #~ msgid "Page loads (sec)"
  1211. #~ msgstr "Načítání stránky (s)"
  1212. #~ msgid "Errors"
  1213. #~ msgstr "Chyby"
  1214. #~ msgid "CAPTCHA required"
  1215. #~ msgstr "Je vyžadována CAPTCHA"
  1216. #~ msgid "Rewrite HTTP links to HTTPS if possible"
  1217. #~ msgstr "Přesměrovat HTTP na HTTPS, pokud je to možné"
  1218. #~ msgid ""
  1219. #~ "Results are opened in the same "
  1220. #~ "window by default. This plugin "
  1221. #~ "overwrites the default behaviour to open"
  1222. #~ " links on new tabs/windows. (JavaScript "
  1223. #~ "required)"
  1224. #~ msgstr ""
  1225. #~ "Ve výchozím nastavení se výsledky "
  1226. #~ "zobrazují v aktuálním okně. Tento "
  1227. #~ "zásuvný modul umožňuje otevírat odkazy v"
  1228. #~ " novém panelu/okně (vyžaduje JavaScript)."
  1229. #~ msgid "Color"
  1230. #~ msgstr "Barva"
  1231. #~ msgid "Blue (default)"
  1232. #~ msgstr "Modrá (výchozí)"
  1233. #~ msgid "Violet"
  1234. #~ msgstr "Fialová"
  1235. #~ msgid "Green"
  1236. #~ msgstr "Zelená"
  1237. #~ msgid "Cyan"
  1238. #~ msgstr "Modrozelená"
  1239. #~ msgid "Orange"
  1240. #~ msgstr "Oranžová"
  1241. #~ msgid "Red"
  1242. #~ msgstr "Červená"
  1243. #~ msgid "Category"
  1244. #~ msgstr "Kategorie"
  1245. #~ msgid "Block"
  1246. #~ msgstr "Zakázat"
  1247. #~ msgid "original context"
  1248. #~ msgstr "původní kontext"
  1249. #~ msgid "Plugins"
  1250. #~ msgstr "Zásuvné moduly"
  1251. #~ msgid "Answerers"
  1252. #~ msgstr "Odpovídači"
  1253. #~ msgid "Avg. time"
  1254. #~ msgstr "Prům. čas"
  1255. #~ msgid "show details"
  1256. #~ msgstr "zobrazit podrobnosti"
  1257. #~ msgid "hide details"
  1258. #~ msgstr "skrýt podrobnosti"
  1259. #~ msgid "Load more..."
  1260. #~ msgstr "Načíst více…"
  1261. #~ msgid "Loading..."
  1262. #~ msgstr "Načítání…"
  1263. #~ msgid "Change searx layout"
  1264. #~ msgstr "Motiv rozhraní searx"
  1265. #~ msgid "Proxying image results through searx"
  1266. #~ msgstr "Načítat výsledky vyhledávání obrázků přes proxy"
  1267. #~ msgid "This is the list of searx's instant answering modules."
  1268. #~ msgstr ""
  1269. #~ "Toto je seznam modulů vyhledávače searx,"
  1270. #~ " které poskytují okamžité odpovědi."
  1271. #~ msgid ""
  1272. #~ "This is the list of cookies and"
  1273. #~ " their values searx is storing on "
  1274. #~ "your computer."
  1275. #~ msgstr ""
  1276. #~ "Toto je seznam cookies a jejich "
  1277. #~ "hodnot, které searx ukládá na vašem "
  1278. #~ "počítači."
  1279. #~ msgid "With that list, you can assess searx transparency."
  1280. #~ msgstr "Pomocí něj můžete posoudit, jestli je searx transparentní."
  1281. #~ msgid "It look like you are using searx first time."
  1282. #~ msgstr "Zdá se, že používáte searx poprvé."
  1283. #~ msgid "Please, try again later or find another searx instance."
  1284. #~ msgstr "Zkuste to prosím později, nebo použijte jinou instanci searx."
  1285. #~ msgid "Themes"
  1286. #~ msgstr "Motivy"
  1287. #~ msgid "Reliablity"
  1288. #~ msgstr ""
  1289. #~ msgid ""
  1290. #~ "When enabled, the result page's title"
  1291. #~ " contains your query. Your browser "
  1292. #~ "can record this title."
  1293. #~ msgstr ""
  1294. #~ msgid "Method"
  1295. #~ msgstr "Dotazovací metoda"
  1296. #~ msgid ""
  1297. #~ "This tab does not show up for "
  1298. #~ "search results but you can search "
  1299. #~ "the engines listed here via bangs."
  1300. #~ msgstr ""
  1301. #~ msgid "Advanced settings"
  1302. #~ msgstr "Pokročilá nastavení"
  1303. #~ msgid "Close"
  1304. #~ msgstr "Zavřít"
  1305. #~ msgid "Language"
  1306. #~ msgstr "Jazyk"
  1307. #~ msgid "broken"
  1308. #~ msgstr "rozbitý"
  1309. #~ msgid "supported"
  1310. #~ msgstr "podporováno"
  1311. #~ msgid "not supported"
  1312. #~ msgstr "nepodporováno"
  1313. #~ msgid "about"
  1314. #~ msgstr "o nás"
  1315. #~ msgid "Avg."
  1316. #~ msgstr "Prům."
  1317. #~ msgid "User Interface"
  1318. #~ msgstr "Uživatelské rozhraní"
  1319. #~ msgid "Choose style for this theme"
  1320. #~ msgstr "Styl daného motivu"
  1321. #~ msgid "Style"
  1322. #~ msgstr "Styl"
  1323. #~ msgid "Show advanced settings"
  1324. #~ msgstr "Zobrazit rozšířená nastavení"
  1325. #~ msgid "Show advanced settings panel in the home page by default"
  1326. #~ msgstr ""
  1327. #~ "Ve výchozím stavu zobrazovat na domovské"
  1328. #~ " stránce panel pokročilého nastavení"
  1329. #~ msgid "Allow all"
  1330. #~ msgstr "Povolit vše"
  1331. #~ msgid "Disable all"
  1332. #~ msgstr "Zakázat vše"
  1333. #~ msgid "Selected language"
  1334. #~ msgstr "Váš jazyk vyhledávání"
  1335. #~ msgid "Query"
  1336. #~ msgstr "Dotaz"
  1337. #~ msgid "save"
  1338. #~ msgstr "uložit"
  1339. #~ msgid "back"
  1340. #~ msgstr "zpět"
  1341. #~ msgid "Links"
  1342. #~ msgstr "Odkazy"
  1343. #~ msgid "RSS subscription"
  1344. #~ msgstr "Odběr RSS"
  1345. #~ msgid "Search results"
  1346. #~ msgstr "Výsledky vyhledávání"
  1347. #~ msgid "next page"
  1348. #~ msgstr "další stránka"
  1349. #~ msgid "previous page"
  1350. #~ msgstr "předchozí stránka"
  1351. #~ msgid "Start search"
  1352. #~ msgstr "Začít hledat"
  1353. #~ msgid "Clear search"
  1354. #~ msgstr "Smazat vyhledávání"
  1355. #~ msgid "Clear"
  1356. #~ msgstr "Smazat"
  1357. #~ msgid "stats"
  1358. #~ msgstr "statistiky"
  1359. #~ msgid "Heads up!"
  1360. #~ msgstr "Jen krátká informace!"
  1361. #~ msgid "It look like you are using SearXNG first time."
  1362. #~ msgstr "Zdá se, že jste použili SearXNG poprvé."
  1363. #~ msgid "Well done!"
  1364. #~ msgstr "Výborně!"
  1365. #~ msgid "Settings saved successfully."
  1366. #~ msgstr "Nastavení úspěšně uloženo."
  1367. #~ msgid "Oh snap!"
  1368. #~ msgstr "Ale ne!"
  1369. #~ msgid "Something went wrong."
  1370. #~ msgstr "Něco se nepovedlo."
  1371. #~ msgid "Date"
  1372. #~ msgstr "Datum"
  1373. #~ msgid "Type"
  1374. #~ msgstr "Typ"
  1375. #~ msgid "Get image"
  1376. #~ msgstr "Načíst obrázek"
  1377. #~ msgid "Center Alignment"
  1378. #~ msgstr ""
  1379. #~ msgid "Displays results in the center of the page (Oscar layout)."
  1380. #~ msgstr ""
  1381. #~ msgid "preferences"
  1382. #~ msgstr "nastavení"
  1383. #~ msgid "Scores per result"
  1384. #~ msgstr "Skóre na výsledek"
  1385. #~ msgid "a privacy-respecting, hackable metasearch engine"
  1386. #~ msgstr "soukromí respektujícím, nastavitelným multivyhledávačem"
  1387. #~ msgid "No abstract is available for this publication."
  1388. #~ msgstr "Pro tuto publikaci neexistuje žádný abstrakt."
  1389. #~ msgid "Self Informations"
  1390. #~ msgstr "Informace o sobě"
  1391. #~ msgid ""
  1392. #~ "Change how forms are submited, <a "
  1393. #~ "href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
  1394. #~ " rel=\"external\">learn more about request "
  1395. #~ "methods</a>"
  1396. #~ msgstr ""
  1397. #~ "Určuje způsob odesílání formulářů. Informace"
  1398. #~ " o dotazovacích metodách <a "
  1399. #~ "href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
  1400. #~ " rel=\"external\">viz Wikipedie</a>"
  1401. #~ msgid ""
  1402. #~ "This plugin checks if the address "
  1403. #~ "of the request is a TOR exit "
  1404. #~ "node, and informs the user if it"
  1405. #~ " is, like check.torproject.org but from "
  1406. #~ "searxng."
  1407. #~ msgstr ""
  1408. #~ "Tento plugin kontroluje, jestli adresa "
  1409. #~ "požadavku je výstupní uzel TORu, a "
  1410. #~ "infromuje uživatele pokud je, jako "
  1411. #~ "check.torproject.org ale od searxng."
  1412. #~ msgid ""
  1413. #~ "The TOR exit node list "
  1414. #~ "(https://check.torproject.org/exit-addresses) is "
  1415. #~ "unreachable."
  1416. #~ msgstr ""
  1417. #~ "Seznam výstupních uzlů TOR "
  1418. #~ "(https://check.torproject.org/exit-addresses) je "
  1419. #~ "nedostupný."
  1420. #~ msgid "You are using TOR. Your IP address seems to be: {ip_address}."
  1421. #~ msgstr "Používáte TOR. Zdá se, že vaše IP adresa je: {ip_address}."
  1422. #~ msgid "You are not using TOR. Your IP address seems to be: {ip_address}."
  1423. #~ msgstr "Nepoužíváte TOR. Zdá se, že vaše IP adresa je: {ip_address}."
  1424. #~ msgid ""
  1425. #~ "The could not download the list of"
  1426. #~ " Tor exit-nodes from "
  1427. #~ "https://check.torproject.org/exit-addresses."
  1428. #~ msgstr ""
  1429. #~ msgid ""
  1430. #~ "You are using Tor. It looks like"
  1431. #~ " you have this external IP address:"
  1432. #~ " {ip_address}."
  1433. #~ msgstr ""
  1434. #~ msgid "You are not using Tor. You have this external IP address: {ip_address}."
  1435. #~ msgstr ""
  1436. #~ msgid "Autodetect search language"
  1437. #~ msgstr "Automaticky rozpoznaný jazyk vyhledávání"
  1438. #~ msgid "Automatically detect the query search language and switch to it."
  1439. #~ msgstr "Automaticky detekuj jazyk vyhledávaného dotazu a přepni se do něj."
  1440. #~ msgid "others"
  1441. #~ msgstr "ostatní"
  1442. #~ msgid ""
  1443. #~ "This tab does not show up for "
  1444. #~ "search results, but you can search "
  1445. #~ "the engines listed here via bangs."
  1446. #~ msgstr ""
  1447. #~ "Tato záložka se nezobrazuje ve "
  1448. #~ "výsledcích vyhledávání, ale můžete použít "
  1449. #~ "vyhledávače zde uvedené pomocí vykřičníku."
  1450. #~ msgid "Shortcut"
  1451. #~ msgstr "Zkratka"
  1452. #~ msgid "!bang"
  1453. #~ msgstr ""
  1454. #~ msgid ""
  1455. #~ "This tab dues not exists in the"
  1456. #~ " user interface, but you can search"
  1457. #~ " in these engines by its !bangs."
  1458. #~ msgstr ""
  1459. #~ "Tato karta v uživatelském rozhraní "
  1460. #~ "neexistuje, ale můžete v těchto "
  1461. #~ "vyhledávačích vyhledávat podle jejích !bang."
  1462. #~ msgid "Engines cannot retrieve results."
  1463. #~ msgstr "Načtení výsledků vyhledávači se nezdařilo."
  1464. #~ msgid "Please, try again later or find another SearXNG instance."
  1465. #~ msgstr "Prosím zkuste to znovu později, nebo si najděte jinou instanci SearXNG."
  1466. #~ msgid ""
  1467. #~ "Redirect to open-access versions of "
  1468. #~ "publications when available (plugin required)"
  1469. #~ msgstr ""
  1470. #~ "Přesměrovat na volně přístupné verze "
  1471. #~ "publikací, pokud jsou k dispozici "
  1472. #~ "(vyžaduje zásuvný modul)"
  1473. #~ msgid "Bang"
  1474. #~ msgstr "!bang"
  1475. #~ msgid ""
  1476. #~ "Change how forms are submitted, <a "
  1477. #~ "href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
  1478. #~ " rel=\"external\">learn more about request "
  1479. #~ "methods</a>"
  1480. #~ msgstr ""
  1481. #~ "Změna způsobu odesílání formulářů, <a "
  1482. #~ "href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
  1483. #~ " rel=\"external\">naočit se více o metodách"
  1484. #~ " žádání</a>"
  1485. #~ msgid "On"
  1486. #~ msgstr "Zapnuto"
  1487. #~ msgid "Off"
  1488. #~ msgstr "Vypnuto"
  1489. #~ msgid "Enabled"
  1490. #~ msgstr "Zapnuto"
  1491. #~ msgid "Disabled"
  1492. #~ msgstr "Vypnuto"
  1493. #~ msgid ""
  1494. #~ "Perform search immediately if a category"
  1495. #~ " selected. Disable to select multiple "
  1496. #~ "categories. (JavaScript required)"
  1497. #~ msgstr ""
  1498. #~ "Provede hledání okamžitě při výběru "
  1499. #~ "kategorie. Pokud je tato funkce vypnuta,"
  1500. #~ " je možné vybrat více kategorií "
  1501. #~ "(vyžaduje JavaScript)"
  1502. #~ msgid "Vim-like hotkeys"
  1503. #~ msgstr "Klávesové zkratky jako v textovém editoru Vim"
  1504. #~ msgid ""
  1505. #~ "Navigate search results with Vim-like"
  1506. #~ " hotkeys (JavaScript required). Press \"h\""
  1507. #~ " key on main or result page to"
  1508. #~ " get help."
  1509. #~ msgstr ""
  1510. #~ "Procházení výsledků pomocí kláves stejných "
  1511. #~ "jako v textovém editoru Vim (vyžaduje"
  1512. #~ " JavaScript). Stisknutím klávesy \"h\" na"
  1513. #~ " hlavní stránce či stránce výsledků "
  1514. #~ "zobrazíte nápovědu."
  1515. #~ msgid ""
  1516. #~ "we didn't find any results. Please "
  1517. #~ "use another query or search in "
  1518. #~ "more categories."
  1519. #~ msgstr ""
  1520. #~ "Nenašli jsme žádné výsledky. Použijte "
  1521. #~ "prosím jiný dotaz nebo hledejte ve "
  1522. #~ "více kategoriích."
  1523. #~ msgid "Rewrite result hostnames or remove results based on the hostname"
  1524. #~ msgstr "Přepsat adresy serverů nebo odstranit výsledky podle adresy"
  1525. #~ msgid "Bytes"
  1526. #~ msgstr "bajtů"
  1527. #~ msgid "kiB"
  1528. #~ msgstr "kiB"
  1529. #~ msgid "MiB"
  1530. #~ msgstr "MiB"
  1531. #~ msgid "GiB"
  1532. #~ msgstr "GiB"
  1533. #~ msgid "TiB"
  1534. #~ msgstr "TiB"
  1535. #~ msgid "Hostname replace"
  1536. #~ msgstr "Nahrazení adresy serveru"
  1537. #~ msgid "Error!"
  1538. #~ msgstr "Chyba!"
  1539. #~ msgid "Engines cannot retrieve results"
  1540. #~ msgstr "Vyhledávače nemohou získat výsledky"