messages.po 52 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004
  1. # Slovak translations for .
  2. # Copyright (C) 2020 ORGANIZATION
  3. # This file is distributed under the same license as the project.
  4. #
  5. # Translators:
  6. # Jan Hovancik, 2017
  7. # Markus Heiser <markus.heiser@darmarit.de>, 2022.
  8. # Fero Novák <itzwowsmile@gmail.com>, 2022.
  9. # JohnyPeaN <johnypean@gmail.com>, 2022.
  10. # return42 <markus.heiser@darmarit.de>, 2023.
  11. # return42 <return42@users.noreply.translate.codeberg.org>, 2024.
  12. # Vision <Vision@users.noreply.translate.codeberg.org>, 2024.
  13. msgid ""
  14. msgstr ""
  15. "Project-Id-Version: searx\n"
  16. "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
  17. "POT-Creation-Date: 2024-12-16 07:46+0000\n"
  18. "PO-Revision-Date: 2024-11-25 12:40+0000\n"
  19. "Last-Translator: return42 <return42@users.noreply.translate.codeberg.org>"
  20. "\n"
  21. "Language: sk\n"
  22. "Language-Team: Slovak "
  23. "<https://translate.codeberg.org/projects/searxng/searxng/sk/>\n"
  24. "Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 "
  25. "&& n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n"
  26. "MIME-Version: 1.0\n"
  27. "Content-Type: text/plain; charset=utf-8\n"
  28. "Content-Transfer-Encoding: 8bit\n"
  29. "Generated-By: Babel 2.16.0\n"
  30. #. CONSTANT_NAMES['NO_SUBGROUPING']
  31. #: searx/searxng.msg
  32. msgid "without further subgrouping"
  33. msgstr "bez ďalšieho zoskupenia"
  34. #. CONSTANT_NAMES['DEFAULT_CATEGORY']
  35. #: searx/searxng.msg
  36. msgid "other"
  37. msgstr "ostatné"
  38. #. CATEGORY_NAMES['FILES']
  39. #: searx/searxng.msg
  40. msgid "files"
  41. msgstr "súbory"
  42. #. CATEGORY_NAMES['GENERAL']
  43. #: searx/searxng.msg
  44. msgid "general"
  45. msgstr "všeobecné"
  46. #. CATEGORY_NAMES['MUSIC']
  47. #: searx/searxng.msg
  48. msgid "music"
  49. msgstr "hudba"
  50. #. CATEGORY_NAMES['SOCIAL_MEDIA']
  51. #: searx/searxng.msg
  52. msgid "social media"
  53. msgstr "sociálne médiá"
  54. #. CATEGORY_NAMES['IMAGES']
  55. #: searx/searxng.msg
  56. msgid "images"
  57. msgstr "obrázky"
  58. #. CATEGORY_NAMES['VIDEOS']
  59. #: searx/searxng.msg
  60. msgid "videos"
  61. msgstr "videá"
  62. #. CATEGORY_NAMES['RADIO']
  63. #: searx/engines/radio_browser.py:103 searx/searxng.msg
  64. msgid "radio"
  65. msgstr "rádio"
  66. #. CATEGORY_NAMES['TV']
  67. #: searx/searxng.msg
  68. msgid "tv"
  69. msgstr "tv"
  70. #. CATEGORY_NAMES['IT']
  71. #: searx/searxng.msg
  72. msgid "it"
  73. msgstr "technológia"
  74. #. CATEGORY_NAMES['NEWS']
  75. #: searx/searxng.msg
  76. msgid "news"
  77. msgstr "správy"
  78. #. CATEGORY_NAMES['MAP']
  79. #: searx/searxng.msg
  80. msgid "map"
  81. msgstr "mapa"
  82. #. CATEGORY_NAMES['ONIONS']
  83. #: searx/searxng.msg
  84. msgid "onions"
  85. msgstr "onions"
  86. #. CATEGORY_NAMES['SCIENCE']
  87. #: searx/searxng.msg
  88. msgid "science"
  89. msgstr "veda"
  90. #. CATEGORY_NAMES['DUMMY']
  91. #: searx/searxng.msg
  92. msgid "dummy"
  93. msgstr ""
  94. #. CATEGORY_GROUPS['APPS']
  95. #: searx/searxng.msg
  96. msgid "apps"
  97. msgstr "aplikácie"
  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 piesní"
  106. #. CATEGORY_GROUPS['PACKAGES']
  107. #: searx/searxng.msg
  108. msgid "packages"
  109. msgstr "programové balíčky"
  110. #. CATEGORY_GROUPS['Q_A']
  111. #: searx/searxng.msg
  112. msgid "q&a"
  113. msgstr "otázky a odpovede"
  114. #. CATEGORY_GROUPS['REPOS']
  115. #: searx/searxng.msg
  116. msgid "repos"
  117. msgstr "repozitáre"
  118. #. CATEGORY_GROUPS['SOFTWARE_WIKIS']
  119. #: searx/searxng.msg
  120. msgid "software wikis"
  121. msgstr "Dokumentácie aplikácií"
  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 "vedecké publikácie"
  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 "svetlý"
  138. #. STYLE_NAMES['DARK']
  139. #: searx/searxng.msg
  140. msgid "dark"
  141. msgstr "tmavý"
  142. #. STYLE_NAMES['BLACK']
  143. #: searx/searxng.msg
  144. msgid "black"
  145. msgstr ""
  146. #. BRAND_CUSTOM_LINKS['UPTIME']
  147. #: searx/searxng.msg
  148. msgid "Uptime"
  149. msgstr "Doba prevádzky"
  150. #. BRAND_CUSTOM_LINKS['ABOUT']
  151. #: searx/searxng.msg searx/templates/simple/base.html:50
  152. msgid "About"
  153. msgstr "O nás"
  154. #. WEATHER_TERMS['AVERAGE TEMP.']
  155. #: searx/engines/wttr.py:32 searx/searxng.msg
  156. msgid "Average temp."
  157. msgstr "Priemerná teplota"
  158. #. WEATHER_TERMS['CLOUD COVER']
  159. #: searx/engines/open_meteo.py:91 searx/searxng.msg
  160. msgid "Cloud cover"
  161. msgstr "Oblačnosť"
  162. #. WEATHER_TERMS['CONDITION']
  163. #: searx/engines/duckduckgo_weather.py:45 searx/engines/wttr.py:51
  164. #: searx/searxng.msg
  165. msgid "Condition"
  166. msgstr "Podmienka"
  167. #. WEATHER_TERMS['CURRENT CONDITION']
  168. #: searx/engines/duckduckgo_weather.py:118 searx/engines/wttr.py:104
  169. #: searx/searxng.msg
  170. msgid "Current condition"
  171. msgstr "Aktuálna podmienka"
  172. #. WEATHER_TERMS['EVENING']
  173. #: searx/engines/wttr.py:100 searx/searxng.msg
  174. msgid "Evening"
  175. msgstr "Večer"
  176. #. WEATHER_TERMS['FEELS LIKE']
  177. #: searx/engines/duckduckgo_weather.py:53 searx/engines/open_meteo.py:81
  178. #: searx/engines/wttr.py:59 searx/searxng.msg
  179. msgid "Feels like"
  180. msgstr "Pocitovo ako"
  181. #. WEATHER_TERMS['HUMIDITY']
  182. #: searx/engines/duckduckgo_weather.py:64 searx/engines/open_meteo.py:93
  183. #: searx/engines/wttr.py:68 searx/searxng.msg
  184. msgid "Humidity"
  185. msgstr "Vlhkosť"
  186. #. WEATHER_TERMS['MAX TEMP.']
  187. #: searx/engines/duckduckgo_weather.py:77 searx/engines/wttr.py:34
  188. #: searx/searxng.msg
  189. msgid "Max temp."
  190. msgstr "Max teplota"
  191. #. WEATHER_TERMS['MIN TEMP.']
  192. #: searx/engines/duckduckgo_weather.py:73 searx/engines/wttr.py:33
  193. #: searx/searxng.msg
  194. msgid "Min temp."
  195. msgstr "Min teplota"
  196. #. WEATHER_TERMS['MORNING']
  197. #: searx/engines/wttr.py:100 searx/searxng.msg
  198. msgid "Morning"
  199. msgstr "Ráno"
  200. #. WEATHER_TERMS['NIGHT']
  201. #: searx/engines/wttr.py:100 searx/searxng.msg
  202. msgid "Night"
  203. msgstr "Noc"
  204. #. WEATHER_TERMS['NOON']
  205. #: searx/engines/wttr.py:100 searx/searxng.msg
  206. msgid "Noon"
  207. msgstr "Poludnie"
  208. #. WEATHER_TERMS['PRESSURE']
  209. #: searx/engines/open_meteo.py:95 searx/searxng.msg
  210. msgid "Pressure"
  211. msgstr "Tlak"
  212. #. WEATHER_TERMS['SUNRISE']
  213. #: searx/engines/duckduckgo_weather.py:81 searx/engines/wttr.py:36
  214. #: searx/searxng.msg
  215. msgid "Sunrise"
  216. msgstr "Východ slnka"
  217. #. WEATHER_TERMS['SUNSET']
  218. #: searx/engines/duckduckgo_weather.py:82 searx/engines/wttr.py:37
  219. #: searx/searxng.msg
  220. msgid "Sunset"
  221. msgstr "Západ slnka"
  222. #. WEATHER_TERMS['TEMPERATURE']
  223. #: searx/engines/duckduckgo_weather.py:48 searx/engines/open_meteo.py:76
  224. #: searx/engines/wttr.py:55 searx/searxng.msg
  225. msgid "Temperature"
  226. msgstr "Teplota"
  227. #. WEATHER_TERMS['UV INDEX']
  228. #: searx/engines/duckduckgo_weather.py:80 searx/engines/wttr.py:35
  229. #: searx/searxng.msg
  230. msgid "UV index"
  231. msgstr "Index UV"
  232. #. WEATHER_TERMS['VISIBILITY']
  233. #: searx/engines/duckduckgo_weather.py:62 searx/engines/wttr.py:66
  234. #: searx/searxng.msg
  235. msgid "Visibility"
  236. msgstr "Viditeľnosť"
  237. #. WEATHER_TERMS['WIND']
  238. #: searx/engines/duckduckgo_weather.py:58 searx/engines/open_meteo.py:86
  239. #: searx/engines/wttr.py:62 searx/searxng.msg
  240. msgid "Wind"
  241. msgstr "Vietor"
  242. #. SOCIAL_MEDIA_TERMS['SUBSCRIBERS']
  243. #: searx/engines/lemmy.py:85 searx/searxng.msg
  244. msgid "subscribers"
  245. msgstr "odberatelia"
  246. #. SOCIAL_MEDIA_TERMS['POSTS']
  247. #: searx/engines/lemmy.py:86 searx/searxng.msg
  248. msgid "posts"
  249. msgstr "príspevky"
  250. #. SOCIAL_MEDIA_TERMS['ACTIVE USERS']
  251. #: searx/engines/lemmy.py:87 searx/searxng.msg
  252. msgid "active users"
  253. msgstr "aktívny používatelia"
  254. #. SOCIAL_MEDIA_TERMS['COMMENTS']
  255. #: searx/engines/discourse.py:157 searx/engines/hackernews.py:82
  256. #: searx/engines/lemmy.py:130 searx/searxng.msg
  257. msgid "comments"
  258. msgstr "komentáre"
  259. #. SOCIAL_MEDIA_TERMS['USER']
  260. #: searx/engines/lemmy.py:129 searx/engines/lemmy.py:164 searx/searxng.msg
  261. msgid "user"
  262. msgstr "používateľ"
  263. #. SOCIAL_MEDIA_TERMS['COMMUNITY']
  264. #: searx/engines/lemmy.py:131 searx/engines/lemmy.py:165 searx/searxng.msg
  265. msgid "community"
  266. msgstr "komunita"
  267. #. SOCIAL_MEDIA_TERMS['POINTS']
  268. #: searx/engines/hackernews.py:82 searx/searxng.msg
  269. msgid "points"
  270. msgstr "body"
  271. #. SOCIAL_MEDIA_TERMS['TITLE']
  272. #: searx/searxng.msg
  273. msgid "title"
  274. msgstr "názov"
  275. #. SOCIAL_MEDIA_TERMS['AUTHOR']
  276. #: searx/engines/hackernews.py:85 searx/searxng.msg
  277. msgid "author"
  278. msgstr "autor"
  279. #. SOCIAL_MEDIA_TERMS['THREAD OPEN']
  280. #: searx/engines/discourse.py:149 searx/searxng.msg
  281. msgid "open"
  282. msgstr "Otvoriť"
  283. #. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
  284. #: searx/engines/discourse.py:149 searx/searxng.msg
  285. msgid "closed"
  286. msgstr "Zatvoriť"
  287. #. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
  288. #: searx/engines/discourse.py:160 searx/searxng.msg
  289. msgid "answered"
  290. msgstr ""
  291. #: searx/webapp.py:323
  292. msgid "No item found"
  293. msgstr "Nič sa nenašlo"
  294. #: searx/engines/qwant.py:288
  295. #: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:325
  296. msgid "Source"
  297. msgstr "Zdroj"
  298. #: searx/webapp.py:327
  299. msgid "Error loading the next page"
  300. msgstr "Chyba pri načítaní ďalšej stránky"
  301. #: searx/webapp.py:496 searx/webapp.py:904
  302. msgid "Invalid settings, please edit your preferences"
  303. msgstr "Nesprávne nastavenia, prosím upravte svoje predvoľby"
  304. #: searx/webapp.py:512
  305. msgid "Invalid settings"
  306. msgstr "Nesprávne nastavenia"
  307. #: searx/webapp.py:589 searx/webapp.py:679
  308. msgid "search error"
  309. msgstr "chyba vyhľadávania"
  310. #: searx/webutils.py:36
  311. msgid "timeout"
  312. msgstr "časový limit"
  313. #: searx/webutils.py:37
  314. msgid "parsing error"
  315. msgstr "chyba parsovania"
  316. #: searx/webutils.py:38
  317. msgid "HTTP protocol error"
  318. msgstr "chyba HTTP protokolu"
  319. #: searx/webutils.py:39
  320. msgid "network error"
  321. msgstr "chyba siete"
  322. #: searx/webutils.py:40
  323. msgid "SSL error: certificate validation has failed"
  324. msgstr "SSL error: overenie certifikátu zlyhalo"
  325. #: searx/webutils.py:42
  326. msgid "unexpected crash"
  327. msgstr "neočakávaná chyba"
  328. #: searx/webutils.py:49
  329. msgid "HTTP error"
  330. msgstr "HTTP chyba"
  331. #: searx/webutils.py:50
  332. msgid "HTTP connection error"
  333. msgstr "chyba pripojenia cez HTTP"
  334. #: searx/webutils.py:56
  335. msgid "proxy error"
  336. msgstr "chyba proxy"
  337. #: searx/webutils.py:57
  338. msgid "CAPTCHA"
  339. msgstr "CAPTCHA"
  340. #: searx/webutils.py:58
  341. msgid "too many requests"
  342. msgstr "priveľa žiadostí"
  343. #: searx/webutils.py:59
  344. msgid "access denied"
  345. msgstr "prístup bol odmietnutý"
  346. #: searx/webutils.py:60
  347. msgid "server API error"
  348. msgstr "API chyba servera"
  349. #: searx/webutils.py:79
  350. msgid "Suspended"
  351. msgstr "Pozastavené"
  352. #: searx/webutils.py:314
  353. msgid "{minutes} minute(s) ago"
  354. msgstr "pred {minutes} min."
  355. #: searx/webutils.py:315
  356. msgid "{hours} hour(s), {minutes} minute(s) ago"
  357. msgstr "pred {hours} hod., {minutes} min."
  358. #: searx/answerers/random/answerer.py:76
  359. msgid "Random value generator"
  360. msgstr "Generátor nahodných hodnôt"
  361. #: searx/answerers/random/answerer.py:77
  362. msgid "Generate different random values"
  363. msgstr "Vytvoriť rôzné náhodné hodnoty"
  364. #: searx/answerers/statistics/answerer.py:50
  365. msgid "Statistics functions"
  366. msgstr "Štatistické funkcie"
  367. #: searx/answerers/statistics/answerer.py:51
  368. msgid "Compute {functions} of the arguments"
  369. msgstr "Vypočítať {functions} argumentov"
  370. #: searx/engines/mozhi.py:57
  371. msgid "Synonyms"
  372. msgstr ""
  373. #: searx/engines/openstreetmap.py:159
  374. msgid "Get directions"
  375. msgstr "Požiadať o navigáciu"
  376. #: searx/engines/pdbe.py:96
  377. msgid "{title} (OBSOLETE)"
  378. msgstr "{title} (ZASTARANÉ)"
  379. #: searx/engines/pdbe.py:103
  380. msgid "This entry has been superseded by"
  381. msgstr "Táto položka bola nahradená"
  382. #: searx/engines/qwant.py:290
  383. msgid "Channel"
  384. msgstr "Kanál"
  385. #: searx/engines/radio_browser.py:105
  386. msgid "bitrate"
  387. msgstr "bitrate"
  388. #: searx/engines/radio_browser.py:106
  389. msgid "votes"
  390. msgstr "hlasy"
  391. #: searx/engines/radio_browser.py:107
  392. msgid "clicks"
  393. msgstr "kliknutia"
  394. #: searx/engines/seekr.py:193 searx/engines/yummly.py:71
  395. #: searx/engines/zlibrary.py:137
  396. msgid "Language"
  397. msgstr "Jazyk"
  398. #: searx/engines/semantic_scholar.py:78
  399. msgid ""
  400. "{numCitations} citations from the year {firstCitationVelocityYear} to "
  401. "{lastCitationVelocityYear}"
  402. msgstr ""
  403. "{numCitations} citácií od roku {firstCitationVelocityYear} do roku "
  404. "{lastCitationVelocityYear}"
  405. #: searx/engines/tineye.py:45
  406. msgid ""
  407. "Could not read that image url. This may be due to an unsupported file "
  408. "format. TinEye only supports images that are JPEG, PNG, GIF, BMP, TIFF or"
  409. " WebP."
  410. msgstr ""
  411. "Danú webovú adresu obrázka sa nepodarilo načítať. Môže to byť spôsobené "
  412. "nepodporovaným formátom súboru. TinEye podporuje iba obrázky JPEG, PNG, "
  413. "GIF, BMP, TIFF alebo WebP."
  414. #: searx/engines/tineye.py:51
  415. msgid ""
  416. "The image is too simple to find matches. TinEye requires a basic level of"
  417. " visual detail to successfully identify matches."
  418. msgstr ""
  419. "Obrázok je príliš nízkej kvality na to aby sa našla zhoda. TinEye "
  420. "vyžaduje vyššiu kvalitu detailov v obrázku na identifikáciu zhôd."
  421. #: searx/engines/tineye.py:57
  422. msgid "The image could not be downloaded."
  423. msgstr "Obrázok nemohol byť stiahnutý."
  424. #: searx/engines/zlibrary.py:138
  425. msgid "Book rating"
  426. msgstr "Hodnotenie knižky"
  427. #: searx/engines/zlibrary.py:139
  428. msgid "File quality"
  429. msgstr "Kvalita súboru"
  430. #: searx/plugins/calculator.py:18
  431. msgid "Calculate mathematical expressions via the search bar"
  432. msgstr "Vypočítaj matematické výrazy cez vyhľadávací panel"
  433. #: searx/plugins/hash_plugin.py:10
  434. msgid "Converts strings to different hash digests."
  435. msgstr "Skonvertuje text pomocou rôznych hash funkcií."
  436. #: searx/plugins/hash_plugin.py:38
  437. msgid "hash digest"
  438. msgstr "hash hodnota"
  439. #: searx/plugins/hostnames.py:103
  440. msgid "Hostnames plugin"
  441. msgstr ""
  442. #: searx/plugins/hostnames.py:104
  443. msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
  444. msgstr ""
  445. #: searx/plugins/oa_doi_rewrite.py:12
  446. msgid "Open Access DOI rewrite"
  447. msgstr "Otvoriť prístup k prepísaniu DOI"
  448. #: searx/plugins/oa_doi_rewrite.py:13
  449. msgid ""
  450. "Avoid paywalls by redirecting to open-access versions of publications "
  451. "when available"
  452. msgstr ""
  453. "Vyhnúť sa plateným bránam presmerovaním na verejne prístupné verzie "
  454. "publikácií ak sú k dispozícii"
  455. #: searx/plugins/self_info.py:9
  456. msgid "Self Information"
  457. msgstr "Vlastné informácie"
  458. #: searx/plugins/self_info.py:10
  459. msgid ""
  460. "Displays your IP if the query is \"ip\" and your user agent if the query "
  461. "contains \"user agent\"."
  462. msgstr ""
  463. "Zobrazí vašu IP ak je dotaz \"ip\" a user agenta ak dotaz obsahuje \"user"
  464. " agent\"."
  465. #: searx/plugins/self_info.py:28
  466. msgid "Your IP is: "
  467. msgstr ""
  468. #: searx/plugins/self_info.py:31
  469. msgid "Your user-agent is: "
  470. msgstr ""
  471. #: searx/plugins/tor_check.py:24
  472. msgid "Tor check plugin"
  473. msgstr "Kontrola Tor plugin"
  474. #: searx/plugins/tor_check.py:27
  475. msgid ""
  476. "This plugin checks if the address of the request is a Tor exit-node, and "
  477. "informs the user if it is; like check.torproject.org, but from SearXNG."
  478. msgstr ""
  479. "Tento plugin kontroluje, či žiadaná adresa je výstupný bod TORu, a "
  480. "informuje používateľa ak je, ako check.torproject.org ale od SearXNG."
  481. #: searx/plugins/tor_check.py:61
  482. msgid ""
  483. "Could not download the list of Tor exit-nodes from: "
  484. "https://check.torproject.org/exit-addresses"
  485. msgstr ""
  486. "Nepodarilo sa stiahnuť zoznam Tor exit-nodes z: "
  487. "https://check.torproject.org/exit-addresses"
  488. #: searx/plugins/tor_check.py:77
  489. msgid ""
  490. "You are using Tor and it looks like you have this external IP address: "
  491. "{ip_address}"
  492. msgstr "Používate Tor a vyzerá to, že máte túto externú IP adresu: {ip_address}"
  493. #: searx/plugins/tor_check.py:85
  494. msgid "You are not using Tor and you have this external IP address: {ip_address}"
  495. msgstr "Nepoužívate Tor a máte túto externú IP adresu: {ip_address}"
  496. #: searx/plugins/tracker_url_remover.py:16
  497. msgid "Tracker URL remover"
  498. msgstr "Odstraňovanie sledovacích argumentov"
  499. #: searx/plugins/tracker_url_remover.py:17
  500. msgid "Remove trackers arguments from the returned URL"
  501. msgstr "Odstrániť sledovacie argumenty z vrátenej URL"
  502. #: searx/plugins/unit_converter.py:29
  503. msgid "Convert between units"
  504. msgstr "Previesť medzi jednotkami"
  505. #: searx/templates/simple/404.html:4
  506. msgid "Page not found"
  507. msgstr "Stránka sa nenašla"
  508. #: searx/templates/simple/404.html:6
  509. #, python-format
  510. msgid "Go to %(search_page)s."
  511. msgstr "Choď na %(search_page)s."
  512. #: searx/templates/simple/404.html:6
  513. msgid "search page"
  514. msgstr "stránka vyhľadávania"
  515. #: searx/templates/simple/base.html:54
  516. msgid "Donate"
  517. msgstr "Prispejte"
  518. #: searx/templates/simple/base.html:58
  519. #: searx/templates/simple/preferences.html:156
  520. msgid "Preferences"
  521. msgstr "Nastavenia"
  522. #: searx/templates/simple/base.html:68
  523. msgid "Powered by"
  524. msgstr "Používame"
  525. #: searx/templates/simple/base.html:68
  526. msgid "a privacy-respecting, open metasearch engine"
  527. msgstr "otvorený metavyhľadávač rešpektujúci súkromie"
  528. #: searx/templates/simple/base.html:69
  529. #: searx/templates/simple/result_templates/packages.html:59
  530. msgid "Source code"
  531. msgstr "Zdrojový kód"
  532. #: searx/templates/simple/base.html:70
  533. msgid "Issue tracker"
  534. msgstr "Sledovanie problémov"
  535. #: searx/templates/simple/base.html:71 searx/templates/simple/stats.html:18
  536. msgid "Engine stats"
  537. msgstr "Štatistiky vyhľadávača"
  538. #: searx/templates/simple/base.html:73
  539. msgid "Public instances"
  540. msgstr "Verejné inštancie"
  541. #: searx/templates/simple/base.html:76
  542. msgid "Privacy policy"
  543. msgstr "Ochrana súkromia"
  544. #: searx/templates/simple/base.html:79
  545. msgid "Contact instance maintainer"
  546. msgstr "Kontaktujte správcu inštancie"
  547. #: searx/templates/simple/categories.html:26
  548. msgid "Click on the magnifier to perform search"
  549. msgstr "Kliknite na lupu pre vyhľadávanie"
  550. #: searx/templates/simple/macros.html:40
  551. msgid "Length"
  552. msgstr "Dĺžka"
  553. #: searx/templates/simple/macros.html:41
  554. msgid "Views"
  555. msgstr ""
  556. #: searx/templates/simple/macros.html:42
  557. #: searx/templates/simple/result_templates/files.html:34
  558. #: searx/templates/simple/result_templates/images.html:19
  559. #: searx/templates/simple/result_templates/paper.html:6
  560. msgid "Author"
  561. msgstr "Autor"
  562. #: searx/templates/simple/macros.html:50
  563. msgid "cached"
  564. msgstr "z vyrovnávacej pamäte"
  565. #: searx/templates/simple/macros.html:50
  566. msgid "proxied"
  567. msgstr "cez proxy"
  568. #: searx/templates/simple/new_issue.html:64
  569. msgid "Start submitting a new issue on GitHub"
  570. msgstr "Začnite s pridaním nového problému na Githube"
  571. #: searx/templates/simple/new_issue.html:66
  572. msgid "Please check for existing bugs about this engine on GitHub"
  573. msgstr "Skontrolujte prosím existujúce chyby tohto vyhľadávaču na Githube"
  574. #: searx/templates/simple/new_issue.html:69
  575. msgid "I confirm there is no existing bug about the issue I encounter"
  576. msgstr ""
  577. "Potvrdzujem, že neexistuje žiadna chyba týkajúca sa problému, s ktorým sa"
  578. " stretávam"
  579. #: searx/templates/simple/new_issue.html:71
  580. msgid "If this is a public instance, please specify the URL in the bug report"
  581. msgstr "Ak ide o verejnú inštanciu, uveďte v hlásení o chybe adresu URL"
  582. #: searx/templates/simple/new_issue.html:72
  583. msgid "Submit a new issue on Github including the above information"
  584. msgstr "Odošlite novú chybu na Github vrátane informácii nad"
  585. #: searx/templates/simple/preferences.html:65
  586. msgid "No HTTPS"
  587. msgstr "Žiadne HTTPS"
  588. #: searx/templates/simple/elements/engines_msg.html:14
  589. #: searx/templates/simple/preferences.html:69
  590. #: searx/templates/simple/preferences.html:70
  591. msgid "View error logs and submit a bug report"
  592. msgstr "Zobraziť záznamy chýb a odoslať hlásenie o chybe"
  593. #: searx/templates/simple/preferences.html:74
  594. msgid "!bang for this engine"
  595. msgstr "!bang pre tento vyhľadávač"
  596. #: searx/templates/simple/preferences.html:80
  597. msgid "!bang for its categories"
  598. msgstr "!bang pre jeho kategórie"
  599. #: searx/templates/simple/preferences.html:102
  600. #: searx/templates/simple/stats.html:64
  601. msgid "Median"
  602. msgstr "Medián"
  603. #: searx/templates/simple/preferences.html:103
  604. #: searx/templates/simple/stats.html:70
  605. msgid "P80"
  606. msgstr "P80"
  607. #: searx/templates/simple/preferences.html:104
  608. #: searx/templates/simple/stats.html:76
  609. msgid "P95"
  610. msgstr "P95"
  611. #: searx/templates/simple/preferences.html:136
  612. msgid "Failed checker test(s): "
  613. msgstr "Neúspešný(é) kontrolný(é) test(y): "
  614. #: searx/templates/simple/preferences.html:138
  615. msgid "Errors:"
  616. msgstr "Chyby:"
  617. #: searx/templates/simple/preferences.html:162
  618. msgid "General"
  619. msgstr "Všeobecné"
  620. #: searx/templates/simple/preferences.html:165
  621. msgid "Default categories"
  622. msgstr "Predvolené kategórie"
  623. #: searx/templates/simple/preferences.html:190
  624. msgid "User interface"
  625. msgstr "UI"
  626. #: searx/templates/simple/preferences.html:212
  627. msgid "Privacy"
  628. msgstr "Súkromie"
  629. #: searx/templates/simple/preferences.html:225
  630. msgid "Engines"
  631. msgstr "Vyhľadávače"
  632. #: searx/templates/simple/preferences.html:227
  633. msgid "Currently used search engines"
  634. msgstr "List práve používaných vyhľadávačov"
  635. #: searx/templates/simple/preferences.html:235
  636. msgid "Special Queries"
  637. msgstr "Špeciálne vyhľadávania"
  638. #: searx/templates/simple/preferences.html:241
  639. msgid "Cookies"
  640. msgstr "Cookies"
  641. #: searx/templates/simple/results.html:23
  642. msgid "Answers"
  643. msgstr "Odpovede"
  644. #: searx/templates/simple/results.html:42
  645. msgid "Number of results"
  646. msgstr "Počet výsledkov"
  647. #: searx/templates/simple/results.html:48
  648. msgid "Info"
  649. msgstr "Informácie"
  650. #: searx/templates/simple/results.html:75
  651. msgid "Try searching for:"
  652. msgstr "Skús hľadať:"
  653. #: searx/templates/simple/results.html:107
  654. msgid "Back to top"
  655. msgstr "Späť na začiatok"
  656. #: searx/templates/simple/results.html:125
  657. msgid "Previous page"
  658. msgstr "Predošlá strana"
  659. #: searx/templates/simple/results.html:143
  660. msgid "Next page"
  661. msgstr "Ďalšia strana"
  662. #: searx/templates/simple/search.html:3
  663. msgid "Display the front page"
  664. msgstr "Zobraz úvodnú stranu"
  665. #: searx/templates/simple/search.html:9
  666. #: searx/templates/simple/simple_search.html:5
  667. msgid "Search for..."
  668. msgstr "Hľadať..."
  669. #: searx/templates/simple/search.html:10
  670. #: searx/templates/simple/simple_search.html:6
  671. msgid "clear"
  672. msgstr "vyčistiť"
  673. #: searx/templates/simple/search.html:11
  674. #: searx/templates/simple/simple_search.html:7
  675. msgid "search"
  676. msgstr "hľadať"
  677. #: searx/templates/simple/stats.html:21
  678. msgid "There is currently no data available. "
  679. msgstr "Momentálne nie su dostupné žiadne dáta."
  680. #: searx/templates/simple/preferences/engines.html:24
  681. #: searx/templates/simple/stats.html:25
  682. msgid "Engine name"
  683. msgstr "Názov vyhľadávača"
  684. #: searx/templates/simple/stats.html:26
  685. msgid "Scores"
  686. msgstr "Hodnotenia"
  687. #: searx/templates/simple/stats.html:27
  688. msgid "Result count"
  689. msgstr "Počet výsledkov"
  690. #: searx/templates/simple/elements/engines_msg.html:7
  691. #: searx/templates/simple/preferences/engines.html:31
  692. #: searx/templates/simple/stats.html:28
  693. msgid "Response time"
  694. msgstr "Doba odozvy"
  695. #: searx/templates/simple/preferences/engines.html:35
  696. #: searx/templates/simple/stats.html:29
  697. msgid "Reliability"
  698. msgstr "Spoľahlivosť"
  699. #: searx/templates/simple/stats.html:59
  700. msgid "Total"
  701. msgstr "Celkom"
  702. #: searx/templates/simple/stats.html:60
  703. msgid "HTTP"
  704. msgstr "HTTP"
  705. #: searx/templates/simple/stats.html:61
  706. msgid "Processing"
  707. msgstr "Spracovávanie"
  708. #: searx/templates/simple/stats.html:99
  709. msgid "Warnings"
  710. msgstr "Varovania"
  711. #: searx/templates/simple/stats.html:99
  712. msgid "Errors and exceptions"
  713. msgstr "Chyby a výnimky"
  714. #: searx/templates/simple/stats.html:105
  715. msgid "Exception"
  716. msgstr "Výnimka"
  717. #: searx/templates/simple/stats.html:107
  718. msgid "Message"
  719. msgstr "Správa"
  720. #: searx/templates/simple/stats.html:109
  721. msgid "Percentage"
  722. msgstr "Úroveň"
  723. #: searx/templates/simple/stats.html:111
  724. msgid "Parameter"
  725. msgstr "Parameter"
  726. #: searx/templates/simple/result_templates/files.html:36
  727. #: searx/templates/simple/stats.html:119
  728. msgid "Filename"
  729. msgstr "Názov súboru"
  730. #: searx/templates/simple/stats.html:120
  731. msgid "Function"
  732. msgstr "Funkcia"
  733. #: searx/templates/simple/stats.html:121
  734. msgid "Code"
  735. msgstr "Kód"
  736. #: searx/templates/simple/stats.html:128
  737. msgid "Checker"
  738. msgstr "Kontrolór"
  739. #: searx/templates/simple/stats.html:131
  740. msgid "Failed test"
  741. msgstr "Zlyhaný test"
  742. #: searx/templates/simple/stats.html:132
  743. msgid "Comment(s)"
  744. msgstr "Komentár(e)"
  745. #: searx/templates/simple/elements/apis.html:3
  746. msgid "Download results"
  747. msgstr "Výsledky na stiahnutie"
  748. #: searx/templates/simple/elements/engines_msg.html:4
  749. msgid "Messages from the search engines"
  750. msgstr "Hlásenia z vyhľadávačov"
  751. #: searx/templates/simple/elements/engines_msg.html:7
  752. msgid "seconds"
  753. msgstr ""
  754. #: searx/templates/simple/elements/search_url.html:3
  755. msgid "Search URL"
  756. msgstr "Adresa URL vyhľadávania"
  757. #: searx/templates/simple/elements/search_url.html:4
  758. #: searx/templates/simple/preferences/cookies.html:54
  759. msgid "Copied"
  760. msgstr "Skopírované"
  761. #: searx/templates/simple/elements/search_url.html:4
  762. #: searx/templates/simple/preferences/cookies.html:54
  763. msgid "Copy"
  764. msgstr "Kopírovať"
  765. #: searx/templates/simple/elements/suggestions.html:3
  766. msgid "Suggestions"
  767. msgstr "Návrhy"
  768. #: searx/templates/simple/filters/languages.html:1
  769. #: searx/templates/simple/preferences/language.html:2
  770. msgid "Search language"
  771. msgstr "Jazyk vyhľadávania"
  772. #: searx/templates/simple/filters/languages.html:4
  773. #: searx/templates/simple/preferences/language.html:7
  774. msgid "Default language"
  775. msgstr "Predvolený jazyk"
  776. #: searx/templates/simple/filters/languages.html:8
  777. #: searx/templates/simple/preferences/language.html:11
  778. msgid "Auto-detect"
  779. msgstr "Auto-detekcia"
  780. #: searx/templates/simple/filters/safesearch.html:1
  781. #: searx/templates/simple/filters/safesearch.html:2
  782. #: searx/templates/simple/filters/safesearch.html:3
  783. #: searx/templates/simple/filters/safesearch.html:4
  784. #: searx/templates/simple/preferences/engines.html:27
  785. #: searx/templates/simple/preferences/safesearch.html:2
  786. msgid "SafeSearch"
  787. msgstr "Bezpečné vyhľadávanie"
  788. #: searx/templates/simple/filters/safesearch.html:2
  789. #: searx/templates/simple/preferences/safesearch.html:7
  790. msgid "Strict"
  791. msgstr "Striktné"
  792. #: searx/templates/simple/filters/safesearch.html:3
  793. #: searx/templates/simple/preferences/safesearch.html:11
  794. msgid "Moderate"
  795. msgstr "Mierne"
  796. #: searx/templates/simple/filters/safesearch.html:4
  797. #: searx/templates/simple/preferences/safesearch.html:15
  798. msgid "None"
  799. msgstr "Žiadne"
  800. #: searx/templates/simple/filters/time_range.html:1
  801. #: searx/templates/simple/preferences/engines.html:28
  802. msgid "Time range"
  803. msgstr "Časový rozsah"
  804. #: searx/templates/simple/filters/time_range.html:3
  805. msgid "Anytime"
  806. msgstr "Kedykoľvek"
  807. #: searx/templates/simple/filters/time_range.html:6
  808. msgid "Last day"
  809. msgstr "Posledný deň"
  810. #: searx/templates/simple/filters/time_range.html:9
  811. msgid "Last week"
  812. msgstr "Posledný týždeň"
  813. #: searx/templates/simple/filters/time_range.html:12
  814. msgid "Last month"
  815. msgstr "Posledný mesiac"
  816. #: searx/templates/simple/filters/time_range.html:15
  817. msgid "Last year"
  818. msgstr "Posledný rok"
  819. #: searx/templates/simple/messages/no_cookies.html:3
  820. msgid "Information!"
  821. msgstr "Informácia!"
  822. #: searx/templates/simple/messages/no_cookies.html:4
  823. msgid "currently, there are no cookies defined."
  824. msgstr "momentálne nie su definované žiadne cookies."
  825. #: searx/templates/simple/messages/no_results.html:6
  826. msgid "Sorry!"
  827. msgstr "Je nám ľúto!"
  828. #: searx/templates/simple/messages/no_results.html:12
  829. msgid "No results were found. You can try to:"
  830. msgstr "Nenašli sa žiadne výsledky. Môžete skúsiť:"
  831. #: searx/templates/simple/messages/no_results.html:14
  832. msgid "There are no more results. You can try to:"
  833. msgstr "Nie sú k dispozícii žiadne ďalšie výsledky. Môžete skúsiť:"
  834. #: searx/templates/simple/messages/no_results.html:19
  835. msgid "Refresh the page."
  836. msgstr "Obnovte stránku."
  837. #: searx/templates/simple/messages/no_results.html:20
  838. msgid "Search for another query or select another category (above)."
  839. msgstr "Vyhľadajte inú požiadavku alebo vyberte inú kategóriu (vyššie)."
  840. #: searx/templates/simple/messages/no_results.html:21
  841. msgid "Change the search engine used in the preferences:"
  842. msgstr "Zmeňte použitý vyhľadávač v preferenciách:"
  843. #: searx/templates/simple/messages/no_results.html:22
  844. msgid "Switch to another instance:"
  845. msgstr "Prepnúť na inú inštanciu:"
  846. #: searx/templates/simple/messages/no_results.html:24
  847. msgid "Search for another query or select another category."
  848. msgstr "Vyhľadajte inú požiadavku alebo vyberte inú kategóriu."
  849. #: searx/templates/simple/messages/no_results.html:25
  850. msgid "Go back to the previous page using the previous page button."
  851. msgstr ""
  852. "Vráťte sa na predchádzajúcu stránku pomocou tlačidla predchádzajúcej "
  853. "stránky."
  854. #: searx/templates/simple/preferences/answerers.html:4
  855. #: searx/templates/simple/preferences/engines.html:23
  856. msgid "Allow"
  857. msgstr "Povoliť"
  858. #: searx/templates/simple/preferences/answerers.html:5
  859. msgid "Keywords"
  860. msgstr "Kľúčové slová"
  861. #: searx/templates/simple/preferences/answerers.html:6
  862. #: searx/templates/simple/result_templates/packages.html:7
  863. msgid "Name"
  864. msgstr "Názov"
  865. #: searx/templates/simple/preferences/answerers.html:7
  866. msgid "Description"
  867. msgstr "Popis"
  868. #: searx/templates/simple/preferences/answerers.html:8
  869. msgid "Examples"
  870. msgstr "Príklady"
  871. #: searx/templates/simple/preferences/answerers.html:13
  872. msgid "This is the list of SearXNG's instant answering modules."
  873. msgstr "Toto je zoznam modulov okamžitých odpovedí SearXNG."
  874. #: searx/templates/simple/preferences/answerers.html:29
  875. msgid "This is the list of plugins."
  876. msgstr "Toto je zoznam pluginov."
  877. #: searx/templates/simple/preferences/autocomplete.html:2
  878. msgid "Autocomplete"
  879. msgstr "Automatické dokončovanie"
  880. #: searx/templates/simple/preferences/autocomplete.html:15
  881. msgid "Find stuff as you type"
  882. msgstr "Vyhľadávať počas písania"
  883. #: searx/templates/simple/preferences/center_alignment.html:2
  884. msgid "Center Alignment"
  885. msgstr "Zarovnanie na stred"
  886. #: searx/templates/simple/preferences/center_alignment.html:14
  887. msgid "Displays results in the center of the page (Oscar layout)."
  888. msgstr "Zobrazenie výsledkov v strede stránky (Oscar layout)."
  889. #: searx/templates/simple/preferences/cookies.html:2
  890. msgid ""
  891. "This is the list of cookies and their values SearXNG is storing on your "
  892. "computer."
  893. msgstr ""
  894. "Toto je zoznam cookies a ich hodnôt, ktoré vo vašom počítači ukladá "
  895. "SearXNG."
  896. #: searx/templates/simple/preferences/cookies.html:3
  897. msgid "With that list, you can assess SearXNG transparency."
  898. msgstr "Týmto zoznamom môžete zhodnotiť priehľadnosť SearXNG."
  899. #: searx/templates/simple/preferences/cookies.html:9
  900. msgid "Cookie name"
  901. msgstr "Názov cookie"
  902. #: searx/templates/simple/preferences/cookies.html:10
  903. msgid "Value"
  904. msgstr "Hodnota"
  905. #: searx/templates/simple/preferences/cookies.html:23
  906. msgid "Search URL of the currently saved preferences"
  907. msgstr "Vyhľadávacia adresa (URL) stávajúcich, uložených nastavení"
  908. #: searx/templates/simple/preferences/cookies.html:32
  909. msgid ""
  910. "Note: specifying custom settings in the search URL can reduce privacy by "
  911. "leaking data to the clicked result sites."
  912. msgstr ""
  913. "Poznámka: zadanie osobitých nastavení vo vyhľadávacej adrese (URL) môže "
  914. "zredukovať úroveň súkromia tým že poskytne doplňujúce údaje kliknutým "
  915. "adresám vo výsledkoch."
  916. #: searx/templates/simple/preferences/cookies.html:35
  917. msgid "URL to restore your preferences in another browser"
  918. msgstr "Adresa (URL) pre obnovu nastavení v inom prehliadači"
  919. #: searx/templates/simple/preferences/cookies.html:43
  920. msgid ""
  921. "Specifying custom settings in the preferences URL can be used to sync "
  922. "preferences across devices."
  923. msgstr ""
  924. "Zadaním osobitých nastavení v adrese (URL) nastavení je možné "
  925. "synchronizovať nastavenia do iných zariadení."
  926. #: searx/templates/simple/preferences/cookies.html:46
  927. msgid "Copy preferences hash"
  928. msgstr "Kopírovať hash predvolieb"
  929. #: searx/templates/simple/preferences/cookies.html:57
  930. msgid "Insert copied preferences hash (without URL) to restore"
  931. msgstr "Vložte skopírovaný hash kód predvolieb (bez adresy URL) na obnovenie"
  932. #: searx/templates/simple/preferences/cookies.html:59
  933. msgid "Preferences hash"
  934. msgstr "Hash kód predvolieb"
  935. #: searx/templates/simple/preferences/doi_resolver.html:2
  936. msgid "Open Access DOI resolver"
  937. msgstr "DOI vyhodnocovač otvoreným prístupom"
  938. #: searx/templates/simple/preferences/doi_resolver.html:14
  939. msgid "Select service used by DOI rewrite"
  940. msgstr "Vyberte službu, ktorú používa DOI rewrite"
  941. #: searx/templates/simple/preferences/engines.html:9
  942. msgid ""
  943. "This tab does not exists in the user interface, but you can search in "
  944. "these engines by its !bangs."
  945. msgstr ""
  946. "Táto stránka neexistuje v používateľskom rozhraní, ale môžete v nich "
  947. "vyhľadávať pomocou jej !bangs."
  948. #: searx/templates/simple/preferences/engines.html:15
  949. msgid "Enable all"
  950. msgstr "Povoliť všetko"
  951. #: searx/templates/simple/preferences/engines.html:16
  952. msgid "Disable all"
  953. msgstr "Zakázať všetko"
  954. #: searx/templates/simple/preferences/engines.html:25
  955. msgid "!bang"
  956. msgstr "!bang"
  957. #: searx/templates/simple/preferences/engines.html:26
  958. msgid "Supports selected language"
  959. msgstr "Podporuje zvolený jazyk"
  960. #: searx/templates/simple/preferences/engines.html:29
  961. msgid "Weight"
  962. msgstr "Váha/Hmotnosť"
  963. #: searx/templates/simple/preferences/engines.html:33
  964. msgid "Max time"
  965. msgstr "Maximálny čas"
  966. #: searx/templates/simple/preferences/favicon.html:2
  967. msgid "Favicon Resolver"
  968. msgstr ""
  969. #: searx/templates/simple/preferences/favicon.html:15
  970. msgid "Display favicons near search results"
  971. msgstr ""
  972. #: searx/templates/simple/preferences/footer.html:2
  973. msgid ""
  974. "These settings are stored in your cookies, this allows us not to store "
  975. "this data about you."
  976. msgstr ""
  977. "Tieto nastavenia sú uložené v cookies, čo nám umožňuje neukladať dáta o "
  978. "vás na našej strane."
  979. #: searx/templates/simple/preferences/footer.html:3
  980. msgid ""
  981. "These cookies serve your sole convenience, we don't use these cookies to "
  982. "track you."
  983. msgstr ""
  984. "Tieto cookies slúžia výhradné pre vaše pohodlie a nie sú používané na "
  985. "sledovanie."
  986. #: searx/templates/simple/preferences/footer.html:6
  987. msgid "Save"
  988. msgstr "Uložiť"
  989. #: searx/templates/simple/preferences/footer.html:9
  990. msgid "Reset defaults"
  991. msgstr "Obnoviť predvolené"
  992. #: searx/templates/simple/preferences/footer.html:13
  993. msgid "Back"
  994. msgstr "Späť"
  995. #: searx/templates/simple/preferences/hotkeys.html:2
  996. msgid "Hotkeys"
  997. msgstr "Klávesové skratky"
  998. #: searx/templates/simple/preferences/hotkeys.html:13
  999. msgid "Vim-like"
  1000. msgstr "Ako Vim"
  1001. #: searx/templates/simple/preferences/hotkeys.html:18
  1002. msgid ""
  1003. "Navigate search results with hotkeys (JavaScript required). Press \"h\" "
  1004. "key on main or result page to get help."
  1005. msgstr ""
  1006. "Navigujte vo výsledkoch vyhľadávania pomocou klávesových skratiek "
  1007. "(vyžaduje sa JavaScript). Stlačte klávesu \"h\" na hlavnej stránke alebo "
  1008. "na stránke s výsledkami vyhľadávania pre získanie pomoci."
  1009. #: searx/templates/simple/preferences/image_proxy.html:2
  1010. msgid "Image proxy"
  1011. msgstr "Proxy pre obrázky"
  1012. #: searx/templates/simple/preferences/image_proxy.html:14
  1013. msgid "Proxying image results through SearXNG"
  1014. msgstr "Sprostredkovanie výsledkov snímok cez SearXNG"
  1015. #: searx/templates/simple/preferences/infinite_scroll.html:2
  1016. msgid "Infinite scroll"
  1017. msgstr "Nekonečné posúvanie"
  1018. #: searx/templates/simple/preferences/infinite_scroll.html:14
  1019. msgid "Automatically load next page when scrolling to bottom of current page"
  1020. msgstr ""
  1021. "Automaticky načítať ďalšiu stránku pri posunutí na koniec aktuálnej "
  1022. "stránky"
  1023. #: searx/templates/simple/preferences/language.html:24
  1024. msgid "What language do you prefer for search?"
  1025. msgstr "Aký jazyk preferujete pre vyhľadávanie?"
  1026. #: searx/templates/simple/preferences/language.html:25
  1027. msgid "Choose Auto-detect to let SearXNG detect the language of your query."
  1028. msgstr ""
  1029. "Ak chcete, aby SearXNG zistil jazyk vášho vyhľadávania, vyberte možnosť "
  1030. "Auto-detect (Automatické zisťovanie)."
  1031. #: searx/templates/simple/preferences/method.html:2
  1032. msgid "HTTP Method"
  1033. msgstr "Metóda HTTP"
  1034. #: searx/templates/simple/preferences/method.html:14
  1035. msgid "Change how forms are submitted"
  1036. msgstr "Zmena spôsobu odosielania formulárov"
  1037. #: searx/templates/simple/preferences/query_in_title.html:2
  1038. msgid "Query in the page's title"
  1039. msgstr "Dotaz v názve stránky"
  1040. #: searx/templates/simple/preferences/query_in_title.html:14
  1041. msgid ""
  1042. "When enabled, the result page's title contains your query. Your browser "
  1043. "can record this title"
  1044. msgstr ""
  1045. "Ak je táto možnosť povolená, názov stránky s výsledkami obsahuje vašu "
  1046. "požiadavku. Váš prehliadač môže tento názov zaznamenať"
  1047. #: searx/templates/simple/preferences/results_on_new_tab.html:2
  1048. msgid "Results on new tabs"
  1049. msgstr "Výsledky v novom tabe"
  1050. #: searx/templates/simple/preferences/results_on_new_tab.html:14
  1051. msgid "Open result links on new browser tabs"
  1052. msgstr "Otvoriť odkazy v novom tabe"
  1053. #: searx/templates/simple/preferences/safesearch.html:20
  1054. msgid "Filter content"
  1055. msgstr "Filtrovanie obsahu"
  1056. #: searx/templates/simple/preferences/search_on_category_select.html:2
  1057. msgid "Search on category select"
  1058. msgstr "Vyhľadávanie pri výbere kategórie"
  1059. #: searx/templates/simple/preferences/search_on_category_select.html:14
  1060. msgid ""
  1061. "Perform search immediately if a category selected. Disable to select "
  1062. "multiple categories"
  1063. msgstr ""
  1064. "Okamžité vykonanie vyhľadávania, ak je vybraná kategória. Zakážte pre "
  1065. "výber viacerých kategórií"
  1066. #: searx/templates/simple/preferences/theme.html:2
  1067. msgid "Theme"
  1068. msgstr "Téma"
  1069. #: searx/templates/simple/preferences/theme.html:14
  1070. msgid "Change SearXNG layout"
  1071. msgstr "Zmena SearXNG vzhľadu"
  1072. #: searx/templates/simple/preferences/theme.html:19
  1073. msgid "Theme style"
  1074. msgstr "Štýl témy"
  1075. #: searx/templates/simple/preferences/theme.html:31
  1076. msgid "Choose auto to follow your browser settings"
  1077. msgstr "Vyberte možnosť auto, aby sa riadila nastaveniami vášho prehliadača"
  1078. #: searx/templates/simple/preferences/tokens.html:2
  1079. msgid "Engine tokens"
  1080. msgstr "Engine tokeny"
  1081. #: searx/templates/simple/preferences/tokens.html:9
  1082. msgid "Access tokens for private engines"
  1083. msgstr "Prístupové tokwny pre súkromné nástroje"
  1084. #: searx/templates/simple/preferences/ui_locale.html:2
  1085. msgid "Interface language"
  1086. msgstr "Jazyk rozhrania"
  1087. #: searx/templates/simple/preferences/ui_locale.html:14
  1088. msgid "Change the language of the layout"
  1089. msgstr "Zmena jazyku rozhrania"
  1090. #: searx/templates/simple/preferences/urlformatting.html:2
  1091. msgid "URL formatting"
  1092. msgstr ""
  1093. #: searx/templates/simple/preferences/urlformatting.html:8
  1094. msgid "Pretty"
  1095. msgstr ""
  1096. #: searx/templates/simple/preferences/urlformatting.html:13
  1097. msgid "Full"
  1098. msgstr ""
  1099. #: searx/templates/simple/preferences/urlformatting.html:18
  1100. msgid "Host"
  1101. msgstr ""
  1102. #: searx/templates/simple/preferences/urlformatting.html:23
  1103. msgid "Change result URL formatting"
  1104. msgstr ""
  1105. #: searx/templates/simple/result_templates/code.html:13
  1106. msgid "repo"
  1107. msgstr "repozitár"
  1108. #: searx/templates/simple/result_templates/default.html:6
  1109. #: searx/templates/simple/result_templates/files.html:8
  1110. #: searx/templates/simple/result_templates/files.html:11
  1111. msgid "show media"
  1112. msgstr "ukázať médiá"
  1113. #: searx/templates/simple/result_templates/default.html:6
  1114. #: searx/templates/simple/result_templates/files.html:8
  1115. msgid "hide media"
  1116. msgstr "skryť médiá"
  1117. #: searx/templates/simple/result_templates/default.html:14
  1118. #: searx/templates/simple/result_templates/videos.html:14
  1119. msgid "This site did not provide any description."
  1120. msgstr "Táto stránka neposkytuje žiaden popis."
  1121. #: searx/templates/simple/result_templates/files.html:38
  1122. #: searx/templates/simple/result_templates/images.html:22
  1123. #: searx/templates/simple/result_templates/torrent.html:11
  1124. msgid "Filesize"
  1125. msgstr "Veľkosť súboru"
  1126. #: searx/templates/simple/result_templates/files.html:40
  1127. msgid "Date"
  1128. msgstr "Dátum"
  1129. #: searx/templates/simple/result_templates/files.html:42
  1130. #: searx/templates/simple/result_templates/paper.html:24
  1131. msgid "Type"
  1132. msgstr "Typ"
  1133. #: searx/templates/simple/result_templates/images.html:20
  1134. msgid "Resolution"
  1135. msgstr "Rozlíšenie"
  1136. #: searx/templates/simple/result_templates/images.html:21
  1137. msgid "Format"
  1138. msgstr "Formát"
  1139. #: searx/templates/simple/result_templates/images.html:24
  1140. msgid "Engine"
  1141. msgstr "Vyhľadávač"
  1142. #: searx/templates/simple/result_templates/images.html:25
  1143. msgid "View source"
  1144. msgstr "Zobraziť zdroj"
  1145. #: searx/templates/simple/result_templates/map.html:12
  1146. msgid "address"
  1147. msgstr "adresa"
  1148. #: searx/templates/simple/result_templates/map.html:43
  1149. msgid "show map"
  1150. msgstr "ukázať mapu"
  1151. #: searx/templates/simple/result_templates/map.html:43
  1152. msgid "hide map"
  1153. msgstr "skryť mapu"
  1154. #: searx/templates/simple/result_templates/packages.html:12
  1155. msgid "Version"
  1156. msgstr "Verzia"
  1157. #: searx/templates/simple/result_templates/packages.html:18
  1158. msgid "Maintainer"
  1159. msgstr "Správca"
  1160. #: searx/templates/simple/result_templates/packages.html:24
  1161. msgid "Updated at"
  1162. msgstr "Aktualizované v"
  1163. #: searx/templates/simple/result_templates/packages.html:30
  1164. #: searx/templates/simple/result_templates/paper.html:25
  1165. msgid "Tags"
  1166. msgstr "Značky"
  1167. #: searx/templates/simple/result_templates/packages.html:36
  1168. msgid "Popularity"
  1169. msgstr "Popularita"
  1170. #: searx/templates/simple/result_templates/packages.html:42
  1171. msgid "License"
  1172. msgstr "Licencia"
  1173. #: searx/templates/simple/result_templates/packages.html:52
  1174. msgid "Project"
  1175. msgstr "Projekt"
  1176. #: searx/templates/simple/result_templates/packages.html:55
  1177. msgid "Project homepage"
  1178. msgstr "Domovská stránka projektu"
  1179. #: searx/templates/simple/result_templates/paper.html:5
  1180. msgid "Published date"
  1181. msgstr "Dátum publikácie"
  1182. #: searx/templates/simple/result_templates/paper.html:9
  1183. msgid "Journal"
  1184. msgstr "Žurnál"
  1185. #: searx/templates/simple/result_templates/paper.html:22
  1186. msgid "Editor"
  1187. msgstr "Editor"
  1188. #: searx/templates/simple/result_templates/paper.html:23
  1189. msgid "Publisher"
  1190. msgstr "Vydavateľ"
  1191. #: searx/templates/simple/result_templates/paper.html:26
  1192. msgid "DOI"
  1193. msgstr "DOI"
  1194. #: searx/templates/simple/result_templates/paper.html:27
  1195. msgid "ISSN"
  1196. msgstr "ISSN"
  1197. #: searx/templates/simple/result_templates/paper.html:28
  1198. msgid "ISBN"
  1199. msgstr "ISBN"
  1200. #: searx/templates/simple/result_templates/paper.html:33
  1201. msgid "PDF"
  1202. msgstr "PDF"
  1203. #: searx/templates/simple/result_templates/paper.html:34
  1204. msgid "HTML"
  1205. msgstr "HTML"
  1206. #: searx/templates/simple/result_templates/torrent.html:6
  1207. msgid "magnet link"
  1208. msgstr "odkaz na magnet"
  1209. #: searx/templates/simple/result_templates/torrent.html:7
  1210. msgid "torrent file"
  1211. msgstr "torrent súbor"
  1212. #: searx/templates/simple/result_templates/torrent.html:9
  1213. msgid "Seeder"
  1214. msgstr "Odosielateľ"
  1215. #: searx/templates/simple/result_templates/torrent.html:9
  1216. msgid "Leecher"
  1217. msgstr "Príjemca"
  1218. #: searx/templates/simple/result_templates/torrent.html:13
  1219. msgid "Number of Files"
  1220. msgstr "Počet súborov"
  1221. #: searx/templates/simple/result_templates/videos.html:6
  1222. msgid "show video"
  1223. msgstr "ukázať video"
  1224. #: searx/templates/simple/result_templates/videos.html:6
  1225. msgid "hide video"
  1226. msgstr "skryť video"
  1227. #~ msgid "Engine time (sec)"
  1228. #~ msgstr "Načítanie vyhľadávača (sek)"
  1229. #~ msgid "Page loads (sec)"
  1230. #~ msgstr "Načítanie stránky (sek)"
  1231. #~ msgid "Errors"
  1232. #~ msgstr "Chyby"
  1233. #~ msgid "CAPTCHA required"
  1234. #~ msgstr ""
  1235. #~ msgid "Rewrite HTTP links to HTTPS if possible"
  1236. #~ msgstr "Prepísať odkazy HTTP na HTTPS, ak je to možné"
  1237. #~ msgid ""
  1238. #~ "Results are opened in the same "
  1239. #~ "window by default. This plugin "
  1240. #~ "overwrites the default behaviour to open"
  1241. #~ " links on new tabs/windows. (JavaScript "
  1242. #~ "required)"
  1243. #~ msgstr ""
  1244. #~ "Výsledky sú otvorené v rovnakom okne "
  1245. #~ "predvolene. Tento plugin prepíše predvolené"
  1246. #~ " správanie otvoriania odkazov na nových "
  1247. #~ "taboch a oknách. (Je potrebný "
  1248. #~ "JavaScript)"
  1249. #~ msgid "Color"
  1250. #~ msgstr "Farba"
  1251. #~ msgid "Blue (default)"
  1252. #~ msgstr "Modrá (predvolené)"
  1253. #~ msgid "Violet"
  1254. #~ msgstr "Fialová"
  1255. #~ msgid "Green"
  1256. #~ msgstr "Zelená"
  1257. #~ msgid "Cyan"
  1258. #~ msgstr "Azúrová"
  1259. #~ msgid "Orange"
  1260. #~ msgstr "Oranžová"
  1261. #~ msgid "Red"
  1262. #~ msgstr "Červená"
  1263. #~ msgid "Category"
  1264. #~ msgstr "Kategória"
  1265. #~ msgid "Block"
  1266. #~ msgstr "Blokovať"
  1267. #~ msgid "original context"
  1268. #~ msgstr "pôvodný kontext"
  1269. #~ msgid "Plugins"
  1270. #~ msgstr "Zásuvné moduly"
  1271. #~ msgid "Answerers"
  1272. #~ msgstr "Rýchle odpovede"
  1273. #~ msgid "Avg. time"
  1274. #~ msgstr "Priemerný čas"
  1275. #~ msgid "show details"
  1276. #~ msgstr "ukázať detaily"
  1277. #~ msgid "hide details"
  1278. #~ msgstr "skryť detaily"
  1279. #~ msgid "Load more..."
  1280. #~ msgstr "Načítať viac..."
  1281. #~ msgid "Loading..."
  1282. #~ msgstr ""
  1283. #~ msgid "Change searx layout"
  1284. #~ msgstr "Zmena rozhrania searx"
  1285. #~ msgid "Proxying image results through searx"
  1286. #~ msgstr "Zobrazovanie výsledkov obrázkov cez searx proxy"
  1287. #~ msgid "This is the list of searx's instant answering modules."
  1288. #~ msgstr "Toto je zoznam modulov rýchlej odpovede pre searx."
  1289. #~ msgid ""
  1290. #~ "This is the list of cookies and"
  1291. #~ " their values searx is storing on "
  1292. #~ "your computer."
  1293. #~ msgstr "Toto je zoznam cookies a ich hodnôt uložených searx na vašom počítači"
  1294. #~ msgid "With that list, you can assess searx transparency."
  1295. #~ msgstr "Pomocou tohto zoznamu môžte vidieť transparentnosť searx."
  1296. #~ msgid "It look like you are using searx first time."
  1297. #~ msgstr "Zdá sa, že používate searx prvýkrát."
  1298. #~ msgid "Please, try again later or find another searx instance."
  1299. #~ msgstr ""
  1300. #~ msgid "Themes"
  1301. #~ msgstr "Téma"
  1302. #~ msgid "Reliablity"
  1303. #~ msgstr ""
  1304. #~ msgid ""
  1305. #~ "When enabled, the result page's title"
  1306. #~ " contains your query. Your browser "
  1307. #~ "can record this title."
  1308. #~ msgstr ""
  1309. #~ msgid "Method"
  1310. #~ msgstr "Metóda"
  1311. #~ msgid ""
  1312. #~ "This tab does not show up for "
  1313. #~ "search results but you can search "
  1314. #~ "the engines listed here via bangs."
  1315. #~ msgstr ""
  1316. #~ msgid "Advanced settings"
  1317. #~ msgstr "Pokročilé nastavenia"
  1318. #~ msgid "Close"
  1319. #~ msgstr "Zatvoriť"
  1320. #~ msgid "Language"
  1321. #~ msgstr "Jazyk"
  1322. #~ msgid "broken"
  1323. #~ msgstr ""
  1324. #~ msgid "supported"
  1325. #~ msgstr "podporovaný"
  1326. #~ msgid "not supported"
  1327. #~ msgstr "nepodporovaný"
  1328. #~ msgid "about"
  1329. #~ msgstr "o nás"
  1330. #~ msgid "Avg."
  1331. #~ msgstr ""
  1332. #~ msgid "User Interface"
  1333. #~ msgstr "Používateľské prostredie"
  1334. #~ msgid "Choose style for this theme"
  1335. #~ msgstr "Vyberte si štýl pre túto tému"
  1336. #~ msgid "Style"
  1337. #~ msgstr "Štýl"
  1338. #~ msgid "Show advanced settings"
  1339. #~ msgstr "Zobraziť pokročilé nastavenia"
  1340. #~ msgid "Show advanced settings panel in the home page by default"
  1341. #~ msgstr ""
  1342. #~ msgid "Allow all"
  1343. #~ msgstr ""
  1344. #~ msgid "Disable all"
  1345. #~ msgstr ""
  1346. #~ msgid "Selected language"
  1347. #~ msgstr ""
  1348. #~ msgid "Query"
  1349. #~ msgstr "Dotaz"
  1350. #~ msgid "save"
  1351. #~ msgstr "uložiť"
  1352. #~ msgid "back"
  1353. #~ msgstr "späť"
  1354. #~ msgid "Links"
  1355. #~ msgstr "Odkazy"
  1356. #~ msgid "RSS subscription"
  1357. #~ msgstr ""
  1358. #~ msgid "Search results"
  1359. #~ msgstr "Výsledky vyhľadávania"
  1360. #~ msgid "next page"
  1361. #~ msgstr "ďalšia strana"
  1362. #~ msgid "previous page"
  1363. #~ msgstr "predchádzajúca strana"
  1364. #~ msgid "Start search"
  1365. #~ msgstr "Začať vyhľadávanie"
  1366. #~ msgid "Clear search"
  1367. #~ msgstr ""
  1368. #~ msgid "Clear"
  1369. #~ msgstr ""
  1370. #~ msgid "stats"
  1371. #~ msgstr "štatistiky"
  1372. #~ msgid "Heads up!"
  1373. #~ msgstr "Pozor!"
  1374. #~ msgid "It look like you are using SearXNG first time."
  1375. #~ msgstr ""
  1376. #~ msgid "Well done!"
  1377. #~ msgstr "Dobrá práca!"
  1378. #~ msgid "Settings saved successfully."
  1379. #~ msgstr "Nastavenia sa uložili."
  1380. #~ msgid "Oh snap!"
  1381. #~ msgstr "Ó nie!"
  1382. #~ msgid "Something went wrong."
  1383. #~ msgstr "Stalo sa niečo neočakávané."
  1384. #~ msgid "Date"
  1385. #~ msgstr ""
  1386. #~ msgid "Type"
  1387. #~ msgstr ""
  1388. #~ msgid "Get image"
  1389. #~ msgstr "Získať obrázok"
  1390. #~ msgid "Center Alignment"
  1391. #~ msgstr ""
  1392. #~ msgid "Displays results in the center of the page (Oscar layout)."
  1393. #~ msgstr ""
  1394. #~ msgid "preferences"
  1395. #~ msgstr "nastavenia"
  1396. #~ msgid "Scores per result"
  1397. #~ msgstr ""
  1398. #~ msgid "a privacy-respecting, hackable metasearch engine"
  1399. #~ msgstr "prispôsobitelný meta-vyhľadávač, ktorý rešpektuje vaše súkromie"
  1400. #~ msgid "No abstract is available for this publication."
  1401. #~ msgstr "Pre túto publikáciu nie je dostupný žiadny abstrakt."
  1402. #~ msgid "Self Informations"
  1403. #~ msgstr "Informácie o sebe"
  1404. #~ msgid ""
  1405. #~ "Change how forms are submited, <a "
  1406. #~ "href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
  1407. #~ " rel=\"external\">learn more about request "
  1408. #~ "methods</a>"
  1409. #~ msgstr ""
  1410. #~ "Zmeniť spôsob, akým sú odosielané "
  1411. #~ "formuláre, <a "
  1412. #~ "href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
  1413. #~ " rel=\"external\">dozvedieť sa viac o "
  1414. #~ "týchto metódach</a>"
  1415. #~ msgid ""
  1416. #~ "This plugin checks if the address "
  1417. #~ "of the request is a TOR exit "
  1418. #~ "node, and informs the user if it"
  1419. #~ " is, like check.torproject.org but from "
  1420. #~ "searxng."
  1421. #~ msgstr ""
  1422. #~ "Tento plugin kontroluje, či žiadaná "
  1423. #~ "adresa je výstupný bod TORu, a "
  1424. #~ "informuje používateľa ak je, ako "
  1425. #~ "check.torproject.org ale od searxng."
  1426. #~ msgid ""
  1427. #~ "The TOR exit node list "
  1428. #~ "(https://check.torproject.org/exit-addresses) is "
  1429. #~ "unreachable."
  1430. #~ msgstr ""
  1431. #~ "Zoznam výstupných bodov TORu "
  1432. #~ "(https://check.torproject.org/exit-addresses) je "
  1433. #~ "nedostupný."
  1434. #~ msgid "You are using TOR. Your IP address seems to be: {ip_address}."
  1435. #~ msgstr "Používate TOR. Zdá sa, že vaša IP adresa je: {ip_address}."
  1436. #~ msgid "You are not using TOR. Your IP address seems to be: {ip_address}."
  1437. #~ msgstr "Nepoužívate TOR. Zdá sa, že vaša IP adresa je: {ip_address}."
  1438. #~ msgid ""
  1439. #~ "The could not download the list of"
  1440. #~ " Tor exit-nodes from "
  1441. #~ "https://check.torproject.org/exit-addresses."
  1442. #~ msgstr ""
  1443. #~ msgid ""
  1444. #~ "You are using Tor. It looks like"
  1445. #~ " you have this external IP address:"
  1446. #~ " {ip_address}."
  1447. #~ msgstr ""
  1448. #~ msgid "You are not using Tor. You have this external IP address: {ip_address}."
  1449. #~ msgstr ""
  1450. #~ msgid "Autodetect search language"
  1451. #~ msgstr "Autodetekcia jazyka vyhľadávania"
  1452. #~ msgid "Automatically detect the query search language and switch to it."
  1453. #~ msgstr "Automatická detekcia a prepnutie na jazyk dopytu."
  1454. #~ msgid "others"
  1455. #~ msgstr "iné"
  1456. #~ msgid ""
  1457. #~ "This tab does not show up for "
  1458. #~ "search results, but you can search "
  1459. #~ "the engines listed here via bangs."
  1460. #~ msgstr ""
  1461. #~ "Táto karta sa nezobrazuje vo výsledkoch"
  1462. #~ " vyhľadávania, ale môžete vyhľadávať v "
  1463. #~ "enginoch, ktoré sú tu uvedené, pomocou"
  1464. #~ " Bangs."
  1465. #~ msgid "Shortcut"
  1466. #~ msgstr "Skratka"
  1467. #~ msgid "!bang"
  1468. #~ msgstr ""
  1469. #~ msgid ""
  1470. #~ "This tab dues not exists in the"
  1471. #~ " user interface, but you can search"
  1472. #~ " in these engines by its !bangs."
  1473. #~ msgstr ""
  1474. #~ msgid "Engines cannot retrieve results."
  1475. #~ msgstr "Vyhľadávače nemôžu získať výsledky."
  1476. #~ msgid "Please, try again later or find another SearXNG instance."
  1477. #~ msgstr "Skúste znova neskôr, prosím, alebo použite inú inštanciu SearXNG."
  1478. #~ msgid ""
  1479. #~ "Redirect to open-access versions of "
  1480. #~ "publications when available (plugin required)"
  1481. #~ msgstr ""
  1482. #~ "Presmerovanie na verzie publikácií s "
  1483. #~ "otvoreným prístupom, ak sú k dispozícii"
  1484. #~ " (vyžaduje sa plugin)"
  1485. #~ msgid "Bang"
  1486. #~ msgstr ""
  1487. #~ msgid ""
  1488. #~ "Change how forms are submitted, <a "
  1489. #~ "href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
  1490. #~ " rel=\"external\">learn more about request "
  1491. #~ "methods</a>"
  1492. #~ msgstr ""
  1493. #~ "Zmena spôsobu odosielania formulárov, <a "
  1494. #~ "href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
  1495. #~ " rel=\"external\">dozvedieť sa viac o "
  1496. #~ "metódach žiadosti</a>"
  1497. #~ msgid "On"
  1498. #~ msgstr "Zapnuté"
  1499. #~ msgid "Off"
  1500. #~ msgstr "Vypnuté"
  1501. #~ msgid "Enabled"
  1502. #~ msgstr "Povolené"
  1503. #~ msgid "Disabled"
  1504. #~ msgstr "Zakázané"
  1505. #~ msgid ""
  1506. #~ "Perform search immediately if a category"
  1507. #~ " selected. Disable to select multiple "
  1508. #~ "categories. (JavaScript required)"
  1509. #~ msgstr ""
  1510. #~ "Vyhľadávať okamžite, ak je kategória "
  1511. #~ "vybraná. Vypnúť pre vyberanie viacerých "
  1512. #~ "kategórií. (Je potrebný JavaScript)"
  1513. #~ msgid "Vim-like hotkeys"
  1514. #~ msgstr "Skratky ako vo VIM"
  1515. #~ msgid ""
  1516. #~ "Navigate search results with Vim-like"
  1517. #~ " hotkeys (JavaScript required). Press \"h\""
  1518. #~ " key on main or result page to"
  1519. #~ " get help."
  1520. #~ msgstr ""
  1521. #~ "Prechádzať výsledky vyhľadávania klávesovými "
  1522. #~ "skratkami ako VIM (je potrebný "
  1523. #~ "JavaScript). Stlačte klávesy \"h\" na "
  1524. #~ "hlavnej stránke alebo na stránke s "
  1525. #~ "výsledkami pre zobrazenie pomoci."
  1526. #~ msgid ""
  1527. #~ "we didn't find any results. Please "
  1528. #~ "use another query or search in "
  1529. #~ "more categories."
  1530. #~ msgstr ""
  1531. #~ "nepodarilo sa nájsť žiadne výsledky. "
  1532. #~ "Skúste použiť iné zadanie alebo "
  1533. #~ "vyhľadávajte vo viacerých kategóriach."
  1534. #~ msgid "Rewrite result hostnames or remove results based on the hostname"
  1535. #~ msgstr "Informácie o sebe"
  1536. #~ msgid "Bytes"
  1537. #~ msgstr "bajtov"
  1538. #~ msgid "kiB"
  1539. #~ msgstr "kB"
  1540. #~ msgid "MiB"
  1541. #~ msgstr "MB"
  1542. #~ msgid "GiB"
  1543. #~ msgstr "GB"
  1544. #~ msgid "TiB"
  1545. #~ msgstr "TB"
  1546. #~ msgid "Hostname replace"
  1547. #~ msgstr "Nahradenie názvu servera"
  1548. #~ msgid "Error!"
  1549. #~ msgstr "Chyba!"
  1550. #~ msgid "Engines cannot retrieve results"
  1551. #~ msgstr "Vyhľadávače nemôžu získať výsledky"
  1552. #~ msgid "Start submiting a new issue on GitHub"
  1553. #~ msgstr "Začnite s pridaním nového problému na Githube"