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