messages.po 58 KB

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