messages.po 52 KB

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