messages.po 50 KB

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